1 /* Python interface to inferior stop events.
3 Copyright (C) 2009-2024 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 "py-stopevent.h"
22 #include "thread-fsm.h"
25 create_stop_event_object (PyTypeObject
*py_type
, const gdbpy_ref
<> &dict
)
27 gdbpy_ref
<> thread
= py_get_event_thread (inferior_ptid
);
28 if (thread
== nullptr)
31 gdbpy_ref
<> result
= create_thread_event_object (py_type
, thread
.get ());
32 if (result
== nullptr)
35 if (evpy_add_attribute (result
.get (), "details", dict
.get ()) < 0)
41 /* Print BPSTAT to a new Python dictionary. Returns the dictionary,
42 or null if a Python exception occurred. */
45 py_print_bpstat (bpstat
*bs
, enum gdb_signal stop_signal
)
48 struct value
*return_value
= nullptr;
52 scoped_restore save_uiout
= make_scoped_restore (¤t_uiout
, &uiout
);
54 thread_info
*tp
= inferior_thread ();
55 if (tp
->thread_fsm () != nullptr && tp
->thread_fsm ()->finished_p ())
57 async_reply_reason reason
= tp
->thread_fsm ()->async_reply_reason ();
58 uiout
.field_string ("reason", async_reason_lookup (reason
));
60 return_value_info
*rvinfo
= tp
->thread_fsm ()->return_value ();
61 if (rvinfo
!= nullptr && rvinfo
->value
!= nullptr)
62 return_value
= rvinfo
->value
;
65 if (stop_signal
!= GDB_SIGNAL_0
&& stop_signal
!= GDB_SIGNAL_TRAP
)
66 print_signal_received_reason (&uiout
, stop_signal
);
69 struct target_waitstatus last
;
70 get_last_target_status (nullptr, nullptr, &last
);
72 bpstat_print (bs
, last
.kind ());
75 catch (const gdb_exception
&except
)
77 return gdbpy_handle_gdb_exception (nullptr, except
);
80 gdbpy_ref
<> dict
= uiout
.result ();
84 /* This has to be done separately to avoid error issues, and because
85 there's no API to add generic Python objects to a py_ui_out. */
86 if (return_value
!= nullptr)
88 gdbpy_ref
<> val (value_to_value_object (return_value
));
91 if (PyDict_SetItemString (dict
.get (), "finish-value", val
.get ()) < 0)
98 /* Callback observers when a stop event occurs. This function will create a
99 new Python stop event object. If only a specific thread is stopped the
100 thread object of the event will be set to that thread. Otherwise, if all
101 threads are stopped thread object will be set to None.
102 return 0 if the event was created and emitted successfully otherwise
106 emit_stop_event (struct bpstat
*bs
, enum gdb_signal stop_signal
)
108 gdbpy_ref
<> stop_event_obj
;
110 PyObject
*first_bp
= NULL
;
111 struct bpstat
*current_bs
;
113 if (evregpy_no_listeners_p (gdb_py_events
.stop
))
116 gdbpy_ref
<> dict
= py_print_bpstat (bs
, stop_signal
);
120 /* Add any breakpoint set at this location to the list. */
121 for (current_bs
= bs
; current_bs
!= NULL
; current_bs
= current_bs
->next
)
123 if (current_bs
->breakpoint_at
124 && current_bs
->breakpoint_at
->py_bp_object
)
126 PyObject
*current_py_bp
=
127 (PyObject
*) current_bs
->breakpoint_at
->py_bp_object
;
131 list
.reset (PyList_New (0));
136 if (PyList_Append (list
.get (), current_py_bp
))
139 if (first_bp
== NULL
)
140 first_bp
= current_py_bp
;
146 stop_event_obj
= create_breakpoint_event_object (dict
,
149 if (stop_event_obj
== NULL
)
153 /* Check if the signal is "Signal 0" or "Trace/breakpoint trap". */
154 if (stop_signal
!= GDB_SIGNAL_0
155 && stop_signal
!= GDB_SIGNAL_TRAP
)
157 stop_event_obj
= create_signal_event_object (dict
, stop_signal
);
158 if (stop_event_obj
== NULL
)
162 /* If all fails emit an unknown stop event. All event types should
163 be known and this should eventually be unused. */
164 if (stop_event_obj
== NULL
)
166 stop_event_obj
= create_stop_event_object (&stop_event_object_type
,
168 if (stop_event_obj
== NULL
)
172 return evpy_emit_event (stop_event_obj
.get (), gdb_py_events
.stop
);