Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / python / py-infthread.c
CommitLineData
595939de
PM
1/* Python interface to inferior threads.
2
88b9d363 3 Copyright (C) 2009-2022 Free Software Foundation, Inc.
595939de
PM
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20#include "defs.h"
595939de
PM
21#include "gdbthread.h"
22#include "inferior.h"
23#include "python-internal.h"
24
e36122e9 25extern PyTypeObject thread_object_type
62eec1a5 26 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("thread_object");
595939de
PM
27
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)
38
05b08ac1 39gdbpy_ref<thread_object>
595939de
PM
40create_thread_object (struct thread_info *tp)
41{
05b08ac1 42 gdbpy_ref<thread_object> thread_obj;
595939de 43
61fd3e73
TT
44 gdbpy_ref<inferior_object> inf_obj = inferior_to_inferior_object (tp->inf);
45 if (inf_obj == NULL)
46 return NULL;
47
05b08ac1
TT
48 thread_obj.reset (PyObject_New (thread_object, &thread_object_type));
49 if (thread_obj == NULL)
595939de
PM
50 return NULL;
51
52 thread_obj->thread = tp;
61fd3e73 53 thread_obj->inf_obj = (PyObject *) inf_obj.release ();
595939de
PM
54
55 return thread_obj;
56}
57
595939de
PM
58static void
59thpy_dealloc (PyObject *self)
60{
61 Py_DECREF (((thread_object *) self)->inf_obj);
9a27f2c6 62 Py_TYPE (self)->tp_free (self);
595939de
PM
63}
64
4694da01
TT
65static PyObject *
66thpy_get_name (PyObject *self, void *ignore)
67{
68 thread_object *thread_obj = (thread_object *) self;
73ede765 69 const char *name;
4694da01
TT
70
71 THPY_REQUIRE_VALID (thread_obj);
72
73 name = thread_obj->thread->name;
74 if (name == NULL)
75 name = target_thread_name (thread_obj->thread);
76
77 if (name == NULL)
78 Py_RETURN_NONE;
79
80 return PyString_FromString (name);
81}
82
83static int
84thpy_set_name (PyObject *self, PyObject *newvalue, void *ignore)
85{
86 thread_object *thread_obj = (thread_object *) self;
9b972014 87 gdb::unique_xmalloc_ptr<char> name;
4694da01
TT
88
89 if (! thread_obj->thread)
90 {
91 PyErr_SetString (PyExc_RuntimeError, _("Thread no longer exists."));
92 return -1;
93 }
94
95 if (newvalue == NULL)
96 {
256458bc 97 PyErr_SetString (PyExc_TypeError,
4694da01
TT
98 _("Cannot delete `name' attribute."));
99 return -1;
100 }
101 else if (newvalue == Py_None)
9b972014
TT
102 {
103 /* Nothing. */
104 }
4694da01
TT
105 else if (! gdbpy_is_string (newvalue))
106 {
107 PyErr_SetString (PyExc_TypeError,
108 _("The value of `name' must be a string."));
109 return -1;
110 }
111 else
112 {
113 name = python_string_to_host_string (newvalue);
114 if (! name)
115 return -1;
116 }
117
118 xfree (thread_obj->thread->name);
9b972014 119 thread_obj->thread->name = name.release ();
4694da01
TT
120
121 return 0;
122}
123
5d5658a1
PA
124/* Getter for InferiorThread.num. */
125
595939de
PM
126static PyObject *
127thpy_get_num (PyObject *self, void *closure)
128{
129 thread_object *thread_obj = (thread_object *) self;
130
131 THPY_REQUIRE_VALID (thread_obj);
132
062534d4
TT
133 gdbpy_ref<> result
134 = gdb_py_object_from_longest (thread_obj->thread->per_inf_num);
135 return result.release ();
595939de
PM
136}
137
22a02324
PA
138/* Getter for InferiorThread.global_num. */
139
140static PyObject *
141thpy_get_global_num (PyObject *self, void *closure)
142{
143 thread_object *thread_obj = (thread_object *) self;
144
145 THPY_REQUIRE_VALID (thread_obj);
146
062534d4
TT
147 gdbpy_ref<> result
148 = gdb_py_object_from_longest (thread_obj->thread->global_num);
149 return result.release ();
22a02324
PA
150}
151
595939de
PM
152/* Getter for InferiorThread.ptid -> (pid, lwp, tid).
153 Returns a tuple with the thread's ptid components. */
007baf27 154
595939de
PM
155static PyObject *
156thpy_get_ptid (PyObject *self, void *closure)
157{
595939de 158 thread_object *thread_obj = (thread_object *) self;
595939de
PM
159
160 THPY_REQUIRE_VALID (thread_obj);
161
162078c8 162 return gdbpy_create_ptid_object (thread_obj->thread->ptid);
595939de
PM
163}
164
84654457
PA
165/* Getter for InferiorThread.inferior -> Inferior. */
166
167static PyObject *
168thpy_get_inferior (PyObject *self, void *ignore)
169{
170 thread_object *thread_obj = (thread_object *) self;
171
172 THPY_REQUIRE_VALID (thread_obj);
484d8d36 173 Py_INCREF (thread_obj->inf_obj);
84654457
PA
174
175 return thread_obj->inf_obj;
176}
177
595939de
PM
178/* Implementation of InferiorThread.switch ().
179 Makes this the GDB selected thread. */
007baf27 180
595939de
PM
181static PyObject *
182thpy_switch (PyObject *self, PyObject *args)
183{
184 thread_object *thread_obj = (thread_object *) self;
595939de
PM
185
186 THPY_REQUIRE_VALID (thread_obj);
187
a70b8144 188 try
595939de 189 {
00431a78 190 switch_to_thread (thread_obj->thread);
595939de 191 }
230d2906 192 catch (const gdb_exception &except)
492d29ea
PA
193 {
194 GDB_PY_HANDLE_EXCEPTION (except);
195 }
595939de
PM
196
197 Py_RETURN_NONE;
198}
199
200/* Implementation of InferiorThread.is_stopped () -> Boolean.
201 Return whether the thread is stopped. */
007baf27 202
595939de
PM
203static PyObject *
204thpy_is_stopped (PyObject *self, PyObject *args)
205{
206 thread_object *thread_obj = (thread_object *) self;
207
208 THPY_REQUIRE_VALID (thread_obj);
209
00431a78 210 if (thread_obj->thread->state == THREAD_STOPPED)
595939de
PM
211 Py_RETURN_TRUE;
212
213 Py_RETURN_FALSE;
214}
215
216/* Implementation of InferiorThread.is_running () -> Boolean.
217 Return whether the thread is running. */
007baf27 218
595939de
PM
219static PyObject *
220thpy_is_running (PyObject *self, PyObject *args)
221{
222 thread_object *thread_obj = (thread_object *) self;
223
224 THPY_REQUIRE_VALID (thread_obj);
225
00431a78 226 if (thread_obj->thread->state == THREAD_RUNNING)
595939de
PM
227 Py_RETURN_TRUE;
228
229 Py_RETURN_FALSE;
230}
231
232/* Implementation of InferiorThread.is_exited () -> Boolean.
233 Return whether the thread is exited. */
007baf27 234
595939de
PM
235static PyObject *
236thpy_is_exited (PyObject *self, PyObject *args)
237{
238 thread_object *thread_obj = (thread_object *) self;
239
240 THPY_REQUIRE_VALID (thread_obj);
241
00431a78 242 if (thread_obj->thread->state == THREAD_EXITED)
595939de
PM
243 Py_RETURN_TRUE;
244
245 Py_RETURN_FALSE;
246}
247
29703da4
PM
248/* Implementation of gdb.InfThread.is_valid (self) -> Boolean.
249 Returns True if this inferior Thread object still exists
250 in GDB. */
595939de 251
29703da4
PM
252static PyObject *
253thpy_is_valid (PyObject *self, PyObject *args)
254{
255 thread_object *thread_obj = (thread_object *) self;
256
257 if (! thread_obj->thread)
258 Py_RETURN_FALSE;
259
260 Py_RETURN_TRUE;
261}
595939de 262
cf63b016
KB
263/* Implementation of gdb.InferiorThread.handle (self) -> handle. */
264
265static PyObject *
266thpy_thread_handle (PyObject *self, PyObject *args)
267{
268 thread_object *thread_obj = (thread_object *) self;
269 THPY_REQUIRE_VALID (thread_obj);
270
271 gdb::byte_vector hv;
272
273 try
274 {
275 hv = target_thread_info_to_thread_handle (thread_obj->thread);
276 }
277 catch (const gdb_exception &except)
278 {
279 GDB_PY_HANDLE_EXCEPTION (except);
280 }
281
282 if (hv.size () == 0)
283 {
284 PyErr_SetString (PyExc_RuntimeError, _("Thread handle not found."));
285 return NULL;
286 }
287
288 PyObject *object = PyBytes_FromStringAndSize ((const char *) hv.data (),
dda83cd7 289 hv.size());
cf63b016
KB
290 return object;
291}
292
162078c8
NB
293/* Return a reference to a new Python object representing a ptid_t.
294 The object is a tuple containing (pid, lwp, tid). */
295PyObject *
296gdbpy_create_ptid_object (ptid_t ptid)
297{
298 int pid;
299 long tid, lwp;
300 PyObject *ret;
301
302 ret = PyTuple_New (3);
303 if (!ret)
304 return NULL;
305
e99b03dc 306 pid = ptid.pid ();
e38504b3 307 lwp = ptid.lwp ();
cc6bcb54 308 tid = ptid.tid ();
162078c8 309
47f0e2ff
TT
310 gdbpy_ref<> pid_obj = gdb_py_object_from_longest (pid);
311 if (pid_obj == nullptr)
312 return nullptr;
313 gdbpy_ref<> lwp_obj = gdb_py_object_from_longest (lwp);
314 if (lwp_obj == nullptr)
315 return nullptr;
316 gdbpy_ref<> tid_obj = gdb_py_object_from_longest (tid);
317 if (tid_obj == nullptr)
318 return nullptr;
319
320 /* Note that these steal references, hence the use of 'release'. */
321 PyTuple_SET_ITEM (ret, 0, pid_obj.release ());
322 PyTuple_SET_ITEM (ret, 1, lwp_obj.release ());
323 PyTuple_SET_ITEM (ret, 2, tid_obj.release ());
324
162078c8
NB
325 return ret;
326}
327
595939de
PM
328/* Implementation of gdb.selected_thread () -> gdb.InferiorThread.
329 Returns the selected thread object. */
007baf27 330
595939de
PM
331PyObject *
332gdbpy_selected_thread (PyObject *self, PyObject *args)
333{
00431a78 334 if (inferior_ptid != null_ptid)
db1337cc 335 return thread_to_thread_object (inferior_thread ()).release ();
595939de
PM
336
337 Py_RETURN_NONE;
338}
339
999633ed 340int
595939de
PM
341gdbpy_initialize_thread (void)
342{
343 if (PyType_Ready (&thread_object_type) < 0)
999633ed 344 return -1;
595939de 345
aa36459a
TT
346 return gdb_pymodule_addobject (gdb_module, "InferiorThread",
347 (PyObject *) &thread_object_type);
595939de
PM
348}
349
0d1f4ceb 350static gdb_PyGetSetDef thread_object_getset[] =
595939de 351{
4694da01
TT
352 { "name", thpy_get_name, thpy_set_name,
353 "The name of the thread, as set by the user or the OS.", NULL },
5d5658a1
PA
354 { "num", thpy_get_num, NULL,
355 "Per-inferior number of the thread, as assigned by GDB.", NULL },
22a02324
PA
356 { "global_num", thpy_get_global_num, NULL,
357 "Global number of the thread, as assigned by GDB.", NULL },
595939de
PM
358 { "ptid", thpy_get_ptid, NULL, "ID of the thread, as assigned by the OS.",
359 NULL },
84654457
PA
360 { "inferior", thpy_get_inferior, NULL,
361 "The Inferior object this thread belongs to.", NULL },
595939de
PM
362
363 { NULL }
364};
365
366static PyMethodDef thread_object_methods[] =
367{
29703da4
PM
368 { "is_valid", thpy_is_valid, METH_NOARGS,
369 "is_valid () -> Boolean.\n\
370Return true if this inferior thread is valid, false if not." },
595939de
PM
371 { "switch", thpy_switch, METH_NOARGS,
372 "switch ()\n\
373Makes this the GDB selected thread." },
374 { "is_stopped", thpy_is_stopped, METH_NOARGS,
375 "is_stopped () -> Boolean\n\
376Return whether the thread is stopped." },
377 { "is_running", thpy_is_running, METH_NOARGS,
378 "is_running () -> Boolean\n\
379Return whether the thread is running." },
380 { "is_exited", thpy_is_exited, METH_NOARGS,
381 "is_exited () -> Boolean\n\
382Return whether the thread is exited." },
cf63b016
KB
383 { "handle", thpy_thread_handle, METH_NOARGS,
384 "handle () -> handle\n\
385Return thread library specific handle for thread." },
595939de
PM
386
387 { NULL }
388};
389
e36122e9 390PyTypeObject thread_object_type =
595939de 391{
9a27f2c6 392 PyVarObject_HEAD_INIT (NULL, 0)
595939de
PM
393 "gdb.InferiorThread", /*tp_name*/
394 sizeof (thread_object), /*tp_basicsize*/
395 0, /*tp_itemsize*/
396 thpy_dealloc, /*tp_dealloc*/
397 0, /*tp_print*/
398 0, /*tp_getattr*/
399 0, /*tp_setattr*/
400 0, /*tp_compare*/
401 0, /*tp_repr*/
402 0, /*tp_as_number*/
403 0, /*tp_as_sequence*/
404 0, /*tp_as_mapping*/
405 0, /*tp_hash */
406 0, /*tp_call*/
407 0, /*tp_str*/
408 0, /*tp_getattro*/
409 0, /*tp_setattro*/
410 0, /*tp_as_buffer*/
411 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_ITER, /*tp_flags*/
412 "GDB thread object", /* tp_doc */
413 0, /* tp_traverse */
414 0, /* tp_clear */
415 0, /* tp_richcompare */
416 0, /* tp_weaklistoffset */
417 0, /* tp_iter */
418 0, /* tp_iternext */
419 thread_object_methods, /* tp_methods */
420 0, /* tp_members */
421 thread_object_getset, /* tp_getset */
422 0, /* tp_base */
423 0, /* tp_dict */
424 0, /* tp_descr_get */
425 0, /* tp_descr_set */
426 0, /* tp_dictoffset */
427 0, /* tp_init */
428 0 /* tp_alloc */
429};
This page took 1.16444 seconds and 4 git commands to generate.