manual copyright year range of various GDB files to add 2023
[binutils-gdb.git] / gdb / python / py-infthread.c
blob9343c8bba70d5bb2355baa8b2106e5e51eb90926
1 /* Python interface to inferior threads.
3 Copyright (C) 2009-2023 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "defs.h"
21 #include "gdbthread.h"
22 #include "inferior.h"
23 #include "python-internal.h"
25 extern PyTypeObject thread_object_type
26 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("thread_object");
28 /* Require that INFERIOR be a valid inferior ID. */
29 #define THPY_REQUIRE_VALID(Thread) \
30 do { \
31 if (!Thread->thread) \
32 { \
33 PyErr_SetString (PyExc_RuntimeError, \
34 _("Thread no longer exists.")); \
35 return NULL; \
36 } \
37 } while (0)
39 gdbpy_ref<thread_object>
40 create_thread_object (struct thread_info *tp)
42 gdbpy_ref<thread_object> thread_obj;
44 gdbpy_ref<inferior_object> inf_obj = inferior_to_inferior_object (tp->inf);
45 if (inf_obj == NULL)
46 return NULL;
48 thread_obj.reset (PyObject_New (thread_object, &thread_object_type));
49 if (thread_obj == NULL)
50 return NULL;
52 thread_obj->thread = tp;
53 thread_obj->inf_obj = (PyObject *) inf_obj.release ();
55 return thread_obj;
58 static void
59 thpy_dealloc (PyObject *self)
61 Py_DECREF (((thread_object *) self)->inf_obj);
62 Py_TYPE (self)->tp_free (self);
65 static PyObject *
66 thpy_get_name (PyObject *self, void *ignore)
68 thread_object *thread_obj = (thread_object *) self;
70 THPY_REQUIRE_VALID (thread_obj);
72 const char *name = thread_name (thread_obj->thread);
73 if (name == NULL)
74 Py_RETURN_NONE;
76 return PyUnicode_FromString (name);
79 /* Return a string containing target specific additional information about
80 the state of the thread, or None, if there is no such additional
81 information. */
83 static PyObject *
84 thpy_get_details (PyObject *self, void *ignore)
86 thread_object *thread_obj = (thread_object *) self;
88 THPY_REQUIRE_VALID (thread_obj);
90 /* GCC can't tell that extra_info will always be assigned after the
91 'catch', so initialize it. */
92 const char *extra_info = nullptr;
93 try
95 extra_info = target_extra_thread_info (thread_obj->thread);
97 catch (const gdb_exception &except)
99 GDB_PY_HANDLE_EXCEPTION (except);
101 if (extra_info == nullptr)
102 Py_RETURN_NONE;
104 return PyUnicode_FromString (extra_info);
107 static int
108 thpy_set_name (PyObject *self, PyObject *newvalue, void *ignore)
110 thread_object *thread_obj = (thread_object *) self;
111 gdb::unique_xmalloc_ptr<char> name;
113 if (! thread_obj->thread)
115 PyErr_SetString (PyExc_RuntimeError, _("Thread no longer exists."));
116 return -1;
119 if (newvalue == NULL)
121 PyErr_SetString (PyExc_TypeError,
122 _("Cannot delete `name' attribute."));
123 return -1;
125 else if (newvalue == Py_None)
127 /* Nothing. */
129 else if (! gdbpy_is_string (newvalue))
131 PyErr_SetString (PyExc_TypeError,
132 _("The value of `name' must be a string."));
133 return -1;
135 else
137 name = python_string_to_host_string (newvalue);
138 if (! name)
139 return -1;
142 thread_obj->thread->set_name (std::move (name));
144 return 0;
147 /* Getter for InferiorThread.num. */
149 static PyObject *
150 thpy_get_num (PyObject *self, void *closure)
152 thread_object *thread_obj = (thread_object *) self;
154 THPY_REQUIRE_VALID (thread_obj);
156 gdbpy_ref<> result
157 = gdb_py_object_from_longest (thread_obj->thread->per_inf_num);
158 return result.release ();
161 /* Getter for InferiorThread.global_num. */
163 static PyObject *
164 thpy_get_global_num (PyObject *self, void *closure)
166 thread_object *thread_obj = (thread_object *) self;
168 THPY_REQUIRE_VALID (thread_obj);
170 gdbpy_ref<> result
171 = gdb_py_object_from_longest (thread_obj->thread->global_num);
172 return result.release ();
175 /* Getter for InferiorThread.ptid -> (pid, lwp, tid).
176 Returns a tuple with the thread's ptid components. */
178 static PyObject *
179 thpy_get_ptid (PyObject *self, void *closure)
181 thread_object *thread_obj = (thread_object *) self;
183 THPY_REQUIRE_VALID (thread_obj);
185 return gdbpy_create_ptid_object (thread_obj->thread->ptid);
188 /* Getter for InferiorThread.inferior -> Inferior. */
190 static PyObject *
191 thpy_get_inferior (PyObject *self, void *ignore)
193 thread_object *thread_obj = (thread_object *) self;
195 THPY_REQUIRE_VALID (thread_obj);
196 Py_INCREF (thread_obj->inf_obj);
198 return thread_obj->inf_obj;
201 /* Implementation of InferiorThread.switch ().
202 Makes this the GDB selected thread. */
204 static PyObject *
205 thpy_switch (PyObject *self, PyObject *args)
207 thread_object *thread_obj = (thread_object *) self;
209 THPY_REQUIRE_VALID (thread_obj);
213 switch_to_thread (thread_obj->thread);
215 catch (const gdb_exception &except)
217 GDB_PY_HANDLE_EXCEPTION (except);
220 Py_RETURN_NONE;
223 /* Implementation of InferiorThread.is_stopped () -> Boolean.
224 Return whether the thread is stopped. */
226 static PyObject *
227 thpy_is_stopped (PyObject *self, PyObject *args)
229 thread_object *thread_obj = (thread_object *) self;
231 THPY_REQUIRE_VALID (thread_obj);
233 if (thread_obj->thread->state == THREAD_STOPPED)
234 Py_RETURN_TRUE;
236 Py_RETURN_FALSE;
239 /* Implementation of InferiorThread.is_running () -> Boolean.
240 Return whether the thread is running. */
242 static PyObject *
243 thpy_is_running (PyObject *self, PyObject *args)
245 thread_object *thread_obj = (thread_object *) self;
247 THPY_REQUIRE_VALID (thread_obj);
249 if (thread_obj->thread->state == THREAD_RUNNING)
250 Py_RETURN_TRUE;
252 Py_RETURN_FALSE;
255 /* Implementation of InferiorThread.is_exited () -> Boolean.
256 Return whether the thread is exited. */
258 static PyObject *
259 thpy_is_exited (PyObject *self, PyObject *args)
261 thread_object *thread_obj = (thread_object *) self;
263 THPY_REQUIRE_VALID (thread_obj);
265 if (thread_obj->thread->state == THREAD_EXITED)
266 Py_RETURN_TRUE;
268 Py_RETURN_FALSE;
271 /* Implementation of gdb.InfThread.is_valid (self) -> Boolean.
272 Returns True if this inferior Thread object still exists
273 in GDB. */
275 static PyObject *
276 thpy_is_valid (PyObject *self, PyObject *args)
278 thread_object *thread_obj = (thread_object *) self;
280 if (! thread_obj->thread)
281 Py_RETURN_FALSE;
283 Py_RETURN_TRUE;
286 /* Implementation of gdb.InferiorThread.handle (self) -> handle. */
288 static PyObject *
289 thpy_thread_handle (PyObject *self, PyObject *args)
291 thread_object *thread_obj = (thread_object *) self;
292 THPY_REQUIRE_VALID (thread_obj);
294 gdb::byte_vector hv;
298 hv = target_thread_info_to_thread_handle (thread_obj->thread);
300 catch (const gdb_exception &except)
302 GDB_PY_HANDLE_EXCEPTION (except);
305 if (hv.size () == 0)
307 PyErr_SetString (PyExc_RuntimeError, _("Thread handle not found."));
308 return NULL;
311 PyObject *object = PyBytes_FromStringAndSize ((const char *) hv.data (),
312 hv.size());
313 return object;
316 /* Return a reference to a new Python object representing a ptid_t.
317 The object is a tuple containing (pid, lwp, tid). */
318 PyObject *
319 gdbpy_create_ptid_object (ptid_t ptid)
321 int pid;
322 long lwp;
323 ULONGEST tid;
324 PyObject *ret;
326 ret = PyTuple_New (3);
327 if (!ret)
328 return NULL;
330 pid = ptid.pid ();
331 lwp = ptid.lwp ();
332 tid = ptid.tid ();
334 gdbpy_ref<> pid_obj = gdb_py_object_from_longest (pid);
335 if (pid_obj == nullptr)
336 return nullptr;
337 gdbpy_ref<> lwp_obj = gdb_py_object_from_longest (lwp);
338 if (lwp_obj == nullptr)
339 return nullptr;
340 gdbpy_ref<> tid_obj = gdb_py_object_from_ulongest (tid);
341 if (tid_obj == nullptr)
342 return nullptr;
344 /* Note that these steal references, hence the use of 'release'. */
345 PyTuple_SET_ITEM (ret, 0, pid_obj.release ());
346 PyTuple_SET_ITEM (ret, 1, lwp_obj.release ());
347 PyTuple_SET_ITEM (ret, 2, tid_obj.release ());
349 return ret;
352 /* Implementation of gdb.selected_thread () -> gdb.InferiorThread.
353 Returns the selected thread object. */
355 PyObject *
356 gdbpy_selected_thread (PyObject *self, PyObject *args)
358 if (inferior_ptid != null_ptid)
359 return thread_to_thread_object (inferior_thread ()).release ();
361 Py_RETURN_NONE;
365 gdbpy_initialize_thread (void)
367 if (PyType_Ready (&thread_object_type) < 0)
368 return -1;
370 return gdb_pymodule_addobject (gdb_module, "InferiorThread",
371 (PyObject *) &thread_object_type);
374 static gdb_PyGetSetDef thread_object_getset[] =
376 { "name", thpy_get_name, thpy_set_name,
377 "The name of the thread, as set by the user or the OS.", NULL },
378 { "details", thpy_get_details, NULL,
379 "A target specific string containing extra thread state details.",
380 NULL },
381 { "num", thpy_get_num, NULL,
382 "Per-inferior number of the thread, as assigned by GDB.", NULL },
383 { "global_num", thpy_get_global_num, NULL,
384 "Global number of the thread, as assigned by GDB.", NULL },
385 { "ptid", thpy_get_ptid, NULL, "ID of the thread, as assigned by the OS.",
386 NULL },
387 { "inferior", thpy_get_inferior, NULL,
388 "The Inferior object this thread belongs to.", NULL },
390 { NULL }
393 static PyMethodDef thread_object_methods[] =
395 { "is_valid", thpy_is_valid, METH_NOARGS,
396 "is_valid () -> Boolean.\n\
397 Return true if this inferior thread is valid, false if not." },
398 { "switch", thpy_switch, METH_NOARGS,
399 "switch ()\n\
400 Makes this the GDB selected thread." },
401 { "is_stopped", thpy_is_stopped, METH_NOARGS,
402 "is_stopped () -> Boolean\n\
403 Return whether the thread is stopped." },
404 { "is_running", thpy_is_running, METH_NOARGS,
405 "is_running () -> Boolean\n\
406 Return whether the thread is running." },
407 { "is_exited", thpy_is_exited, METH_NOARGS,
408 "is_exited () -> Boolean\n\
409 Return whether the thread is exited." },
410 { "handle", thpy_thread_handle, METH_NOARGS,
411 "handle () -> handle\n\
412 Return thread library specific handle for thread." },
414 { NULL }
417 PyTypeObject thread_object_type =
419 PyVarObject_HEAD_INIT (NULL, 0)
420 "gdb.InferiorThread", /*tp_name*/
421 sizeof (thread_object), /*tp_basicsize*/
422 0, /*tp_itemsize*/
423 thpy_dealloc, /*tp_dealloc*/
424 0, /*tp_print*/
425 0, /*tp_getattr*/
426 0, /*tp_setattr*/
427 0, /*tp_compare*/
428 0, /*tp_repr*/
429 0, /*tp_as_number*/
430 0, /*tp_as_sequence*/
431 0, /*tp_as_mapping*/
432 0, /*tp_hash */
433 0, /*tp_call*/
434 0, /*tp_str*/
435 0, /*tp_getattro*/
436 0, /*tp_setattro*/
437 0, /*tp_as_buffer*/
438 Py_TPFLAGS_DEFAULT, /*tp_flags*/
439 "GDB thread object", /* tp_doc */
440 0, /* tp_traverse */
441 0, /* tp_clear */
442 0, /* tp_richcompare */
443 0, /* tp_weaklistoffset */
444 0, /* tp_iter */
445 0, /* tp_iternext */
446 thread_object_methods, /* tp_methods */
447 0, /* tp_members */
448 thread_object_getset, /* tp_getset */
449 0, /* tp_base */
450 0, /* tp_dict */
451 0, /* tp_descr_get */
452 0, /* tp_descr_set */
453 0, /* tp_dictoffset */
454 0, /* tp_init */
455 0 /* tp_alloc */