]>
Commit | Line | Data |
---|---|---|
1 | /* Python interface to inferior stop events. | |
2 | ||
3 | Copyright (C) 2009-2025 Free Software Foundation, Inc. | |
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 "py-stopevent.h" | |
21 | #include "py-uiout.h" | |
22 | #include "thread-fsm.h" | |
23 | ||
24 | gdbpy_ref<> | |
25 | create_stop_event_object (PyTypeObject *py_type, const gdbpy_ref<> &dict) | |
26 | { | |
27 | gdbpy_ref<> thread = py_get_event_thread (inferior_ptid); | |
28 | if (thread == nullptr) | |
29 | return nullptr; | |
30 | ||
31 | gdbpy_ref<> result = create_thread_event_object (py_type, thread.get ()); | |
32 | if (result == nullptr) | |
33 | return nullptr; | |
34 | ||
35 | if (evpy_add_attribute (result.get (), "details", dict.get ()) < 0) | |
36 | return nullptr; | |
37 | ||
38 | return result; | |
39 | } | |
40 | ||
41 | /* Print BPSTAT to a new Python dictionary. Returns the dictionary, | |
42 | or null if a Python exception occurred. */ | |
43 | ||
44 | static gdbpy_ref<> | |
45 | py_print_bpstat (bpstat *bs, enum gdb_signal stop_signal) | |
46 | { | |
47 | py_ui_out uiout; | |
48 | struct value *return_value = nullptr; | |
49 | ||
50 | try | |
51 | { | |
52 | scoped_restore save_uiout = make_scoped_restore (¤t_uiout, &uiout); | |
53 | ||
54 | thread_info *tp = inferior_thread (); | |
55 | if (tp->thread_fsm () != nullptr && tp->thread_fsm ()->finished_p ()) | |
56 | { | |
57 | async_reply_reason reason = tp->thread_fsm ()->async_reply_reason (); | |
58 | uiout.field_string ("reason", async_reason_lookup (reason)); | |
59 | ||
60 | return_value_info *rvinfo = tp->thread_fsm ()->return_value (); | |
61 | if (rvinfo != nullptr && rvinfo->value != nullptr) | |
62 | return_value = rvinfo->value; | |
63 | } | |
64 | ||
65 | if (stop_signal != GDB_SIGNAL_0 && stop_signal != GDB_SIGNAL_TRAP) | |
66 | print_signal_received_reason (&uiout, stop_signal); | |
67 | else | |
68 | { | |
69 | struct target_waitstatus last; | |
70 | get_last_target_status (nullptr, nullptr, &last); | |
71 | ||
72 | bpstat_print (bs, last.kind ()); | |
73 | } | |
74 | } | |
75 | catch (const gdb_exception &except) | |
76 | { | |
77 | return gdbpy_handle_gdb_exception (nullptr, except); | |
78 | } | |
79 | ||
80 | gdbpy_ref<> dict = uiout.result (); | |
81 | if (dict == nullptr) | |
82 | return nullptr; | |
83 | ||
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) | |
87 | { | |
88 | gdbpy_ref<> val (value_to_value_object (return_value)); | |
89 | if (val == nullptr) | |
90 | return nullptr; | |
91 | if (PyDict_SetItemString (dict.get (), "finish-value", val.get ()) < 0) | |
92 | return nullptr; | |
93 | } | |
94 | ||
95 | return dict; | |
96 | } | |
97 | ||
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 | |
103 | returns -1. */ | |
104 | ||
105 | int | |
106 | emit_stop_event (struct bpstat *bs, enum gdb_signal stop_signal) | |
107 | { | |
108 | gdbpy_ref<> stop_event_obj; | |
109 | gdbpy_ref<> list; | |
110 | PyObject *first_bp = NULL; | |
111 | struct bpstat *current_bs; | |
112 | ||
113 | if (evregpy_no_listeners_p (gdb_py_events.stop)) | |
114 | return 0; | |
115 | ||
116 | gdbpy_ref<> dict = py_print_bpstat (bs, stop_signal); | |
117 | if (dict == nullptr) | |
118 | return -1; | |
119 | ||
120 | /* Add any breakpoint set at this location to the list. */ | |
121 | for (current_bs = bs; current_bs != NULL; current_bs = current_bs->next) | |
122 | { | |
123 | if (current_bs->breakpoint_at | |
124 | && current_bs->breakpoint_at->py_bp_object) | |
125 | { | |
126 | PyObject *current_py_bp = | |
127 | (PyObject *) current_bs->breakpoint_at->py_bp_object; | |
128 | ||
129 | if (list == NULL) | |
130 | { | |
131 | list.reset (PyList_New (0)); | |
132 | if (list == NULL) | |
133 | return -1; | |
134 | } | |
135 | ||
136 | if (PyList_Append (list.get (), current_py_bp)) | |
137 | return -1; | |
138 | ||
139 | if (first_bp == NULL) | |
140 | first_bp = current_py_bp; | |
141 | } | |
142 | } | |
143 | ||
144 | if (list != NULL) | |
145 | { | |
146 | stop_event_obj = create_breakpoint_event_object (dict, | |
147 | list.get (), | |
148 | first_bp); | |
149 | if (stop_event_obj == NULL) | |
150 | return -1; | |
151 | } | |
152 | ||
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) | |
156 | { | |
157 | stop_event_obj = create_signal_event_object (dict, stop_signal); | |
158 | if (stop_event_obj == NULL) | |
159 | return -1; | |
160 | } | |
161 | ||
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) | |
165 | { | |
166 | stop_event_obj = create_stop_event_object (&stop_event_object_type, | |
167 | dict); | |
168 | if (stop_event_obj == NULL) | |
169 | return -1; | |
170 | } | |
171 | ||
172 | return evpy_emit_event (stop_event_obj.get (), gdb_py_events.stop); | |
173 | } |