Updated Serbian translations for th bfd, gold and opcodes directories
[binutils-gdb.git] / gdb / python / py-stopevent.c
blob61d93727b31a149c6b48c2beda3c03abcc1cbf5f
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 "defs.h"
21 #include "py-stopevent.h"
22 #include "py-uiout.h"
24 gdbpy_ref<>
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)
29 return nullptr;
31 gdbpy_ref<> result = create_thread_event_object (py_type, thread.get ());
32 if (result == nullptr)
33 return nullptr;
35 if (evpy_add_attribute (result.get (), "details", dict.get ()) < 0)
36 return nullptr;
38 return result;
41 /* Print BPSTAT to a new Python dictionary. Returns the dictionary,
42 or null if a Python exception occurred. */
44 static gdbpy_ref<>
45 py_print_bpstat (bpstat *bs, enum gdb_signal stop_signal)
47 py_ui_out uiout;
49 try
51 scoped_restore save_uiout = make_scoped_restore (&current_uiout, &uiout);
53 thread_info *tp = inferior_thread ();
54 if (tp->thread_fsm () != nullptr && tp->thread_fsm ()->finished_p ())
56 async_reply_reason reason = tp->thread_fsm ()->async_reply_reason ();
57 uiout.field_string ("reason", async_reason_lookup (reason));
60 if (stop_signal != GDB_SIGNAL_0 && stop_signal != GDB_SIGNAL_TRAP)
61 print_signal_received_reason (&uiout, stop_signal);
62 else
64 struct target_waitstatus last;
65 get_last_target_status (nullptr, nullptr, &last);
67 bpstat_print (bs, last.kind ());
70 catch (const gdb_exception &except)
72 gdbpy_convert_exception (except);
73 return nullptr;
76 return uiout.result ();
79 /* Callback observers when a stop event occurs. This function will create a
80 new Python stop event object. If only a specific thread is stopped the
81 thread object of the event will be set to that thread. Otherwise, if all
82 threads are stopped thread object will be set to None.
83 return 0 if the event was created and emitted successfully otherwise
84 returns -1. */
86 int
87 emit_stop_event (struct bpstat *bs, enum gdb_signal stop_signal)
89 gdbpy_ref<> stop_event_obj;
90 gdbpy_ref<> list;
91 PyObject *first_bp = NULL;
92 struct bpstat *current_bs;
94 if (evregpy_no_listeners_p (gdb_py_events.stop))
95 return 0;
97 gdbpy_ref<> dict = py_print_bpstat (bs, stop_signal);
98 if (dict == nullptr)
99 return -1;
101 /* Add any breakpoint set at this location to the list. */
102 for (current_bs = bs; current_bs != NULL; current_bs = current_bs->next)
104 if (current_bs->breakpoint_at
105 && current_bs->breakpoint_at->py_bp_object)
107 PyObject *current_py_bp =
108 (PyObject *) current_bs->breakpoint_at->py_bp_object;
110 if (list == NULL)
112 list.reset (PyList_New (0));
113 if (list == NULL)
114 return -1;
117 if (PyList_Append (list.get (), current_py_bp))
118 return -1;
120 if (first_bp == NULL)
121 first_bp = current_py_bp;
125 if (list != NULL)
127 stop_event_obj = create_breakpoint_event_object (dict,
128 list.get (),
129 first_bp);
130 if (stop_event_obj == NULL)
131 return -1;
134 /* Check if the signal is "Signal 0" or "Trace/breakpoint trap". */
135 if (stop_signal != GDB_SIGNAL_0
136 && stop_signal != GDB_SIGNAL_TRAP)
138 stop_event_obj = create_signal_event_object (dict, stop_signal);
139 if (stop_event_obj == NULL)
140 return -1;
143 /* If all fails emit an unknown stop event. All event types should
144 be known and this should eventually be unused. */
145 if (stop_event_obj == NULL)
147 stop_event_obj = create_stop_event_object (&stop_event_object_type,
148 dict);
149 if (stop_event_obj == NULL)
150 return -1;
153 return evpy_emit_event (stop_event_obj.get (), gdb_py_events.stop);