Allow breakpoint commands to be set from Python
[deliverable/binutils-gdb.git] / gdb / python / python.c
CommitLineData
d57a3c85
TJB
1/* General python/gdb code
2
e2882c85 3 Copyright (C) 2008-2018 Free Software Foundation, Inc.
d57a3c85
TJB
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"
d452c4bc 21#include "arch-utils.h"
d57a3c85
TJB
22#include "command.h"
23#include "ui-out.h"
24#include "cli/cli-script.h"
25#include "gdbcmd.h"
fa33c3cd 26#include "progspace.h"
89c73ade 27#include "objfiles.h"
d452c4bc
UW
28#include "value.h"
29#include "language.h"
ca5c20b6 30#include "event-loop.h"
4a532131 31#include "serial.h"
3ab1ec27 32#include "readline/tilde.h"
7371cf6d 33#include "python.h"
6dddc817 34#include "extension-priv.h"
529480d0 35#include "cli/cli-utils.h"
d57a3c85 36#include <ctype.h>
f00aae0f 37#include "location.h"
6eddd09a 38#include "ser-event.h"
d57a3c85 39
80b6e756
PM
40/* Declared constants and enum for python stack printing. */
41static const char python_excp_none[] = "none";
42static const char python_excp_full[] = "full";
43static const char python_excp_message[] = "message";
44
45/* "set python print-stack" choices. */
40478521 46static const char *const python_excp_enums[] =
80b6e756
PM
47 {
48 python_excp_none,
49 python_excp_full,
50 python_excp_message,
51 NULL
52 };
53
54/* The exception printing variable. 'full' if we want to print the
55 error message and stack, 'none' if we want to print nothing, and
56 'message' if we only want to print the error message. 'message' is
57 the default. */
58static const char *gdbpy_should_print_stack = python_excp_message;
d57a3c85 59
6dddc817
DE
60#ifdef HAVE_PYTHON
61/* Forward decls, these are defined later. */
e36122e9
TT
62extern const struct extension_language_script_ops python_extension_script_ops;
63extern const struct extension_language_ops python_extension_ops;
6dddc817
DE
64#endif
65
66/* The main struct describing GDB's interface to the Python
67 extension language. */
68const struct extension_language_defn extension_language_python =
69{
70 EXT_LANG_PYTHON,
71 "python",
72 "Python",
73
74 ".py",
75 "-gdb.py",
76
77 python_control,
78
79#ifdef HAVE_PYTHON
80 &python_extension_script_ops,
81 &python_extension_ops
82#else
83 NULL,
84 NULL
85#endif
86};
87\f
d57a3c85
TJB
88#ifdef HAVE_PYTHON
89
d57a3c85
TJB
90#include "cli/cli-decode.h"
91#include "charset.h"
92#include "top.h"
cb2e07a6 93#include "solib.h"
d57a3c85 94#include "python-internal.h"
cb2e07a6
PM
95#include "linespec.h"
96#include "source.h"
d57a3c85
TJB
97#include "version.h"
98#include "target.h"
99#include "gdbthread.h"
b4a14fd0 100#include "interps.h"
9a27f2c6 101#include "event-top.h"
ff3724f5 102#include "py-ref.h"
3f77c769 103#include "py-event.h"
d57a3c85 104
999633ed
TT
105/* True if Python has been successfully initialized, false
106 otherwise. */
107
108int gdb_python_initialized;
109
bcabf420 110extern PyMethodDef python_GdbMethods[];
d57a3c85 111
9a27f2c6 112#ifdef IS_PY3K
bcabf420 113extern struct PyModuleDef python_GdbModuleDef;
9a27f2c6
PK
114#endif
115
d57a3c85 116PyObject *gdb_module;
b9516fa1 117PyObject *gdb_python_module;
d57a3c85 118
a6bac58e
TT
119/* Some string constants we may wish to use. */
120PyObject *gdbpy_to_string_cst;
121PyObject *gdbpy_children_cst;
122PyObject *gdbpy_display_hint_cst;
d8906c6f 123PyObject *gdbpy_doc_cst;
967cf477 124PyObject *gdbpy_enabled_cst;
fb6a3ed3 125PyObject *gdbpy_value_cst;
d8906c6f 126
07ca107c
DE
127/* The GdbError exception. */
128PyObject *gdbpy_gdberror_exc;
d452c4bc 129
621c8364
TT
130/* The `gdb.error' base class. */
131PyObject *gdbpy_gdb_error;
132
133/* The `gdb.MemoryError' exception. */
134PyObject *gdbpy_gdb_memory_error;
135
6dddc817
DE
136static script_sourcer_func gdbpy_source_script;
137static objfile_script_sourcer_func gdbpy_source_objfile_script;
9f050062 138static objfile_script_executor_func gdbpy_execute_objfile_script;
6dddc817
DE
139static void gdbpy_finish_initialization
140 (const struct extension_language_defn *);
141static int gdbpy_initialized (const struct extension_language_defn *);
142static void gdbpy_eval_from_control_command
143 (const struct extension_language_defn *, struct command_line *cmd);
144static void gdbpy_start_type_printers (const struct extension_language_defn *,
145 struct ext_lang_type_printers *);
146static enum ext_lang_rc gdbpy_apply_type_printers
147 (const struct extension_language_defn *,
148 const struct ext_lang_type_printers *, struct type *, char **);
149static void gdbpy_free_type_printers (const struct extension_language_defn *,
150 struct ext_lang_type_printers *);
6dddc817
DE
151static void gdbpy_set_quit_flag (const struct extension_language_defn *);
152static int gdbpy_check_quit_flag (const struct extension_language_defn *);
153static enum ext_lang_rc gdbpy_before_prompt_hook
154 (const struct extension_language_defn *, const char *current_gdb_prompt);
155
156/* The interface between gdb proper and loading of python scripts. */
157
e36122e9 158const struct extension_language_script_ops python_extension_script_ops =
6dddc817
DE
159{
160 gdbpy_source_script,
161 gdbpy_source_objfile_script,
9f050062 162 gdbpy_execute_objfile_script,
6dddc817
DE
163 gdbpy_auto_load_enabled
164};
165
166/* The interface between gdb proper and python extensions. */
167
e36122e9 168const struct extension_language_ops python_extension_ops =
6dddc817
DE
169{
170 gdbpy_finish_initialization,
171 gdbpy_initialized,
172
173 gdbpy_eval_from_control_command,
174
175 gdbpy_start_type_printers,
176 gdbpy_apply_type_printers,
177 gdbpy_free_type_printers,
178
179 gdbpy_apply_val_pretty_printer,
180
181 gdbpy_apply_frame_filter,
182
183 gdbpy_preserve_values,
184
185 gdbpy_breakpoint_has_cond,
186 gdbpy_breakpoint_cond_says_stop,
187
6dddc817
DE
188 gdbpy_set_quit_flag,
189 gdbpy_check_quit_flag,
190
883964a7
SC
191 gdbpy_before_prompt_hook,
192
883964a7 193 gdbpy_get_matching_xmethod_workers,
6dddc817
DE
194};
195
d452c4bc
UW
196/* Architecture and language to be used in callbacks from
197 the Python interpreter. */
198struct gdbarch *python_gdbarch;
199const struct language_defn *python_language;
200
4ecee2c4
TT
201gdbpy_enter::gdbpy_enter (struct gdbarch *gdbarch,
202 const struct language_defn *language)
203: m_gdbarch (python_gdbarch),
204 m_language (python_language)
d452c4bc 205{
4ecee2c4
TT
206 /* We should not ever enter Python unless initialized. */
207 if (!gdb_python_initialized)
208 error (_("Python not initialized"));
d452c4bc 209
4ecee2c4 210 m_previous_active = set_active_ext_lang (&extension_language_python);
d59b6f6c 211
4ecee2c4
TT
212 m_state = PyGILState_Ensure ();
213
214 python_gdbarch = gdbarch;
215 python_language = language;
216
217 /* Save it and ensure ! PyErr_Occurred () afterwards. */
218 PyErr_Fetch (&m_error_type, &m_error_value, &m_error_traceback);
219}
220
221gdbpy_enter::~gdbpy_enter ()
222{
8dc78533
JK
223 /* Leftover Python error is forbidden by Python Exception Handling. */
224 if (PyErr_Occurred ())
225 {
226 /* This order is similar to the one calling error afterwards. */
227 gdbpy_print_stack ();
228 warning (_("internal error: Unhandled Python exception"));
229 }
230
4ecee2c4 231 PyErr_Restore (m_error_type, m_error_value, m_error_traceback);
8dc78533 232
4ecee2c4
TT
233 PyGILState_Release (m_state);
234 python_gdbarch = m_gdbarch;
235 python_language = m_language;
6dddc817 236
4ecee2c4
TT
237 restore_active_ext_lang (m_previous_active);
238}
239
522002f9
TT
240/* Set the quit flag. */
241
6dddc817
DE
242static void
243gdbpy_set_quit_flag (const struct extension_language_defn *extlang)
522002f9
TT
244{
245 PyErr_SetInterrupt ();
246}
247
248/* Return true if the quit flag has been set, false otherwise. */
249
6dddc817
DE
250static int
251gdbpy_check_quit_flag (const struct extension_language_defn *extlang)
522002f9
TT
252{
253 return PyOS_InterruptOccurred ();
254}
255
8315665e
YPK
256/* Evaluate a Python command like PyRun_SimpleString, but uses
257 Py_single_input which prints the result of expressions, and does
258 not automatically print the stack on errors. */
259
260static int
261eval_python_command (const char *command)
262{
59876f8f 263 PyObject *m, *d;
8315665e
YPK
264
265 m = PyImport_AddModule ("__main__");
266 if (m == NULL)
267 return -1;
268
269 d = PyModule_GetDict (m);
270 if (d == NULL)
271 return -1;
7780f186 272 gdbpy_ref<> v (PyRun_StringFlags (command, Py_single_input, d, d, NULL));
8315665e
YPK
273 if (v == NULL)
274 return -1;
275
9a27f2c6 276#ifndef IS_PY3K
8315665e
YPK
277 if (Py_FlushLine ())
278 PyErr_Clear ();
9a27f2c6 279#endif
8315665e
YPK
280
281 return 0;
282}
283
284/* Implementation of the gdb "python-interactive" command. */
285
286static void
0b39b52e 287python_interactive_command (const char *arg, int from_tty)
8315665e 288{
f38d3ad1 289 struct ui *ui = current_ui;
8315665e
YPK
290 int err;
291
b7b633e9 292 scoped_restore save_async = make_scoped_restore (&current_ui->async, 0);
8315665e 293
529480d0 294 arg = skip_spaces (arg);
8315665e 295
396a78b6 296 gdbpy_enter enter_py (get_current_arch (), current_language);
8315665e
YPK
297
298 if (arg && *arg)
299 {
300 int len = strlen (arg);
224c3ddb 301 char *script = (char *) xmalloc (len + 2);
8315665e
YPK
302
303 strcpy (script, arg);
304 script[len] = '\n';
305 script[len + 1] = '\0';
306 err = eval_python_command (script);
307 xfree (script);
308 }
309 else
310 {
f38d3ad1 311 err = PyRun_InteractiveLoop (ui->instream, "<stdin>");
8315665e
YPK
312 dont_repeat ();
313 }
314
315 if (err)
316 {
317 gdbpy_print_stack ();
318 error (_("Error while executing Python code."));
319 }
8315665e
YPK
320}
321
4c63965b
JK
322/* A wrapper around PyRun_SimpleFile. FILE is the Python script to run
323 named FILENAME.
324
325 On Windows hosts few users would build Python themselves (this is no
326 trivial task on this platform), and thus use binaries built by
327 someone else instead. There may happen situation where the Python
328 library and GDB are using two different versions of the C runtime
329 library. Python, being built with VC, would use one version of the
330 msvcr DLL (Eg. msvcr100.dll), while MinGW uses msvcrt.dll.
331 A FILE * from one runtime does not necessarily operate correctly in
7ed7d719
JB
332 the other runtime.
333
4c63965b
JK
334 To work around this potential issue, we create on Windows hosts the
335 FILE object using Python routines, thus making sure that it is
336 compatible with the Python library. */
7ed7d719
JB
337
338static void
4c63965b 339python_run_simple_file (FILE *file, const char *filename)
7ed7d719 340{
4c63965b
JK
341#ifndef _WIN32
342
343 PyRun_SimpleFile (file, filename);
344
345#else /* _WIN32 */
346
3ab1ec27
PM
347 /* Because we have a string for a filename, and are using Python to
348 open the file, we need to expand any tilde in the path first. */
9de10f6d 349 gdb::unique_xmalloc_ptr<char> full_path (tilde_expand (filename));
0dedf377 350 gdbpy_ref<> python_file (PyFile_FromString (full_path.get (), (char *) "r"));
9de10f6d 351 if (python_file == NULL)
3ab1ec27 352 {
3ab1ec27 353 gdbpy_print_stack ();
9de10f6d 354 error (_("Error while opening file: %s"), full_path.get ());
3ab1ec27 355 }
256458bc 356
9de10f6d 357 PyRun_SimpleFile (PyFile_AsFile (python_file.get ()), filename);
4c63965b
JK
358
359#endif /* _WIN32 */
7ed7d719 360}
d452c4bc 361
d57a3c85 362/* Given a command_line, return a command string suitable for passing
7f968c89 363 to Python. Lines in the string are separated by newlines. */
d57a3c85 364
7f968c89 365static std::string
d57a3c85
TJB
366compute_python_string (struct command_line *l)
367{
368 struct command_line *iter;
7f968c89 369 std::string script;
d57a3c85 370
d57a3c85
TJB
371 for (iter = l; iter; iter = iter->next)
372 {
7f968c89
TT
373 script += iter->line;
374 script += '\n';
d57a3c85 375 }
d57a3c85
TJB
376 return script;
377}
378
379/* Take a command line structure representing a 'python' command, and
380 evaluate its body using the Python interpreter. */
381
6dddc817
DE
382static void
383gdbpy_eval_from_control_command (const struct extension_language_defn *extlang,
384 struct command_line *cmd)
d57a3c85 385{
12453b93 386 int ret;
d57a3c85 387
12973681 388 if (cmd->body_list_1 != nullptr)
d57a3c85
TJB
389 error (_("Invalid \"python\" block structure."));
390
60e600ec 391 gdbpy_enter enter_py (get_current_arch (), current_language);
ca30a762 392
12973681 393 std::string script = compute_python_string (cmd->body_list_0.get ());
7f968c89 394 ret = PyRun_SimpleString (script.c_str ());
12453b93 395 if (ret)
80b6e756 396 error (_("Error while executing Python code."));
d57a3c85
TJB
397}
398
399/* Implementation of the gdb "python" command. */
400
401static void
0b39b52e 402python_command (const char *arg, int from_tty)
d57a3c85 403{
a7785f8c 404 gdbpy_enter enter_py (get_current_arch (), current_language);
b4a14fd0 405
b7b633e9 406 scoped_restore save_async = make_scoped_restore (&current_ui->async, 0);
b4a14fd0 407
529480d0 408 arg = skip_spaces (arg);
d57a3c85
TJB
409 if (arg && *arg)
410 {
12453b93 411 if (PyRun_SimpleString (arg))
80b6e756 412 error (_("Error while executing Python code."));
d57a3c85
TJB
413 }
414 else
415 {
12973681 416 counted_command_line l = get_command_line (python_control, "");
d59b6f6c 417
93921405 418 execute_control_command_untraced (l.get ());
d57a3c85
TJB
419 }
420}
421
422\f
423
424/* Transform a gdb parameters's value into a Python value. May return
425 NULL (and set a Python exception) on error. Helper function for
426 get_parameter. */
d7b32ed3
PM
427PyObject *
428gdbpy_parameter_value (enum var_types type, void *var)
d57a3c85 429{
d7b32ed3 430 switch (type)
d57a3c85
TJB
431 {
432 case var_string:
433 case var_string_noescape:
434 case var_optional_filename:
435 case var_filename:
436 case var_enum:
437 {
a121b7c1 438 const char *str = *(char **) var;
d59b6f6c 439
d57a3c85
TJB
440 if (! str)
441 str = "";
4ae6cc19 442 return host_string_to_python_string (str);
d57a3c85
TJB
443 }
444
445 case var_boolean:
446 {
d7b32ed3 447 if (* (int *) var)
d57a3c85
TJB
448 Py_RETURN_TRUE;
449 else
450 Py_RETURN_FALSE;
451 }
452
453 case var_auto_boolean:
454 {
d7b32ed3 455 enum auto_boolean ab = * (enum auto_boolean *) var;
d59b6f6c 456
d57a3c85
TJB
457 if (ab == AUTO_BOOLEAN_TRUE)
458 Py_RETURN_TRUE;
459 else if (ab == AUTO_BOOLEAN_FALSE)
460 Py_RETURN_FALSE;
461 else
462 Py_RETURN_NONE;
463 }
464
465 case var_integer:
d7b32ed3 466 if ((* (int *) var) == INT_MAX)
d57a3c85
TJB
467 Py_RETURN_NONE;
468 /* Fall through. */
469 case var_zinteger:
0489430a 470 case var_zuinteger_unlimited:
d7b32ed3 471 return PyLong_FromLong (* (int *) var);
d57a3c85
TJB
472
473 case var_uinteger:
474 {
d7b32ed3 475 unsigned int val = * (unsigned int *) var;
d59b6f6c 476
d57a3c85
TJB
477 if (val == UINT_MAX)
478 Py_RETURN_NONE;
479 return PyLong_FromUnsignedLong (val);
0489430a
TT
480 }
481
482 case var_zuinteger:
483 {
484 unsigned int val = * (unsigned int *) var;
485 return PyLong_FromUnsignedLong (val);
d57a3c85
TJB
486 }
487 }
488
256458bc 489 return PyErr_Format (PyExc_RuntimeError,
044c0f87 490 _("Programmer error: unhandled type."));
d57a3c85
TJB
491}
492
493/* A Python function which returns a gdb parameter's value as a Python
494 value. */
495
0c72ed4c 496static PyObject *
8f500870 497gdbpy_parameter (PyObject *self, PyObject *args)
d57a3c85 498{
492d29ea 499 struct gdb_exception except = exception_none;
d57a3c85 500 struct cmd_list_element *alias, *prefix, *cmd;
ddd49eee
TT
501 const char *arg;
502 char *newarg;
cc924cad 503 int found = -1;
d57a3c85
TJB
504
505 if (! PyArg_ParseTuple (args, "s", &arg))
506 return NULL;
507
508 newarg = concat ("show ", arg, (char *) NULL);
509
492d29ea 510 TRY
d57a3c85 511 {
cc924cad 512 found = lookup_cmd_composition (newarg, &alias, &prefix, &cmd);
d57a3c85 513 }
492d29ea
PA
514 CATCH (ex, RETURN_MASK_ALL)
515 {
516 except = ex;
517 }
518 END_CATCH
519
d57a3c85
TJB
520 xfree (newarg);
521 GDB_PY_HANDLE_EXCEPTION (except);
cc924cad
TJB
522 if (!found)
523 return PyErr_Format (PyExc_RuntimeError,
044c0f87 524 _("Could not find parameter `%s'."), arg);
d57a3c85
TJB
525
526 if (! cmd->var)
256458bc 527 return PyErr_Format (PyExc_RuntimeError,
044c0f87 528 _("`%s' is not a parameter."), arg);
d7b32ed3 529 return gdbpy_parameter_value (cmd->var_type, cmd->var);
d57a3c85
TJB
530}
531
f870a310
TT
532/* Wrapper for target_charset. */
533
534static PyObject *
535gdbpy_target_charset (PyObject *self, PyObject *args)
536{
537 const char *cset = target_charset (python_gdbarch);
d59b6f6c 538
f870a310
TT
539 return PyUnicode_Decode (cset, strlen (cset), host_charset (), NULL);
540}
541
542/* Wrapper for target_wide_charset. */
543
544static PyObject *
545gdbpy_target_wide_charset (PyObject *self, PyObject *args)
546{
547 const char *cset = target_wide_charset (python_gdbarch);
d59b6f6c 548
f870a310
TT
549 return PyUnicode_Decode (cset, strlen (cset), host_charset (), NULL);
550}
551
d57a3c85
TJB
552/* A Python function which evaluates a string using the gdb CLI. */
553
554static PyObject *
bc9f0842 555execute_gdb_command (PyObject *self, PyObject *args, PyObject *kw)
d57a3c85 556{
ddd49eee 557 const char *arg;
bc9f0842
TT
558 PyObject *from_tty_obj = NULL, *to_string_obj = NULL;
559 int from_tty, to_string;
2adadf51 560 static const char *keywords[] = { "command", "from_tty", "to_string", NULL };
d57a3c85 561
2adadf51
PA
562 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "s|O!O!", keywords, &arg,
563 &PyBool_Type, &from_tty_obj,
564 &PyBool_Type, &to_string_obj))
d57a3c85
TJB
565 return NULL;
566
12453b93
TJB
567 from_tty = 0;
568 if (from_tty_obj)
569 {
bc9f0842 570 int cmp = PyObject_IsTrue (from_tty_obj);
12453b93 571 if (cmp < 0)
bc9f0842 572 return NULL;
12453b93
TJB
573 from_tty = cmp;
574 }
575
bc9f0842
TT
576 to_string = 0;
577 if (to_string_obj)
578 {
579 int cmp = PyObject_IsTrue (to_string_obj);
580 if (cmp < 0)
581 return NULL;
582 to_string = cmp;
583 }
584
db1ec11f
PA
585 std::string to_string_res;
586
492d29ea 587 TRY
d57a3c85 588 {
e7ea3ec7 589 struct interp *interp;
bc9f0842 590
b7b633e9 591 scoped_restore save_async = make_scoped_restore (&current_ui->async, 0);
b4a14fd0 592
67ad9399 593 scoped_restore save_uiout = make_scoped_restore (&current_uiout);
cd94f6d5 594
e7ea3ec7
CU
595 /* Use the console interpreter uiout to have the same print format
596 for console or MI. */
8322445e 597 interp = interp_lookup (current_ui, "console");
e7ea3ec7
CU
598 current_uiout = interp_ui_out (interp);
599
1ac32117 600 scoped_restore preventer = prevent_dont_repeat ();
bc9f0842 601 if (to_string)
95a6b0a1 602 to_string_res = execute_command_to_string (arg, from_tty);
5da1313b 603 else
95a6b0a1 604 execute_command (arg, from_tty);
d57a3c85 605 }
492d29ea
PA
606 CATCH (except, RETURN_MASK_ALL)
607 {
608 GDB_PY_HANDLE_EXCEPTION (except);
609 }
610 END_CATCH
d57a3c85 611
347bddb7
PA
612 /* Do any commands attached to breakpoint we stopped at. */
613 bpstat_do_actions ();
d57a3c85 614
db1ec11f
PA
615 if (to_string)
616 return PyString_FromString (to_string_res.c_str ());
d57a3c85
TJB
617 Py_RETURN_NONE;
618}
619
cb2e07a6
PM
620/* Implementation of gdb.solib_name (Long) -> String.
621 Returns the name of the shared library holding a given address, or None. */
622
623static PyObject *
624gdbpy_solib_name (PyObject *self, PyObject *args)
625{
626 char *soname;
627 PyObject *str_obj;
1b40ec05 628 gdb_py_ulongest pc;
74aedc46 629
1b40ec05 630 if (!PyArg_ParseTuple (args, GDB_PY_LLU_ARG, &pc))
cb2e07a6
PM
631 return NULL;
632
633 soname = solib_name_from_address (current_program_space, pc);
634 if (soname)
4ae6cc19 635 str_obj = host_string_to_python_string (soname);
cb2e07a6
PM
636 else
637 {
638 str_obj = Py_None;
639 Py_INCREF (Py_None);
640 }
641
642 return str_obj;
643}
644
d8ae99a7
PM
645/* Implementation of Python rbreak command. Take a REGEX and
646 optionally a MINSYMS, THROTTLE and SYMTABS keyword and return a
647 Python list that contains newly set breakpoints that match that
648 criteria. REGEX refers to a GDB format standard regex pattern of
649 symbols names to search; MINSYMS is an optional boolean (default
650 False) that indicates if the function should search GDB's minimal
651 symbols; THROTTLE is an optional integer (default unlimited) that
652 indicates the maximum amount of breakpoints allowable before the
653 function exits (note, if the throttle bound is passed, no
654 breakpoints will be set and a runtime error returned); SYMTABS is
655 an optional Python iterable that contains a set of gdb.Symtabs to
656 constrain the search within. */
657
658static PyObject *
659gdbpy_rbreak (PyObject *self, PyObject *args, PyObject *kw)
660{
661 /* A simple type to ensure clean up of a vector of allocated strings
662 when a C interface demands a const char *array[] type
663 interface. */
664 struct symtab_list_type
665 {
666 ~symtab_list_type ()
667 {
668 for (const char *elem: vec)
669 xfree ((void *) elem);
670 }
671 std::vector<const char *> vec;
672 };
673
674 char *regex = NULL;
675 std::vector<symbol_search> symbols;
676 unsigned long count = 0;
677 PyObject *symtab_list = NULL;
678 PyObject *minsyms_p_obj = NULL;
679 int minsyms_p = 0;
680 unsigned int throttle = 0;
681 static const char *keywords[] = {"regex","minsyms", "throttle",
682 "symtabs", NULL};
683 symtab_list_type symtab_paths;
684
685 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "s|O!IO", keywords,
686 &regex, &PyBool_Type,
687 &minsyms_p_obj, &throttle,
688 &symtab_list))
689 return NULL;
690
691 /* Parse minsyms keyword. */
692 if (minsyms_p_obj != NULL)
693 {
694 int cmp = PyObject_IsTrue (minsyms_p_obj);
695 if (cmp < 0)
696 return NULL;
697 minsyms_p = cmp;
698 }
699
700 /* The "symtabs" keyword is any Python iterable object that returns
701 a gdb.Symtab on each iteration. If specified, iterate through
702 the provided gdb.Symtabs and extract their full path. As
703 python_string_to_target_string returns a
704 gdb::unique_xmalloc_ptr<char> and a vector containing these types
705 cannot be coerced to a const char **p[] via the vector.data call,
706 release the value from the unique_xmalloc_ptr and place it in a
707 simple type symtab_list_type (which holds the vector and a
708 destructor that frees the contents of the allocated strings. */
709 if (symtab_list != NULL)
710 {
711 gdbpy_ref<> iter (PyObject_GetIter (symtab_list));
712
713 if (iter == NULL)
714 return NULL;
715
716 while (true)
717 {
718 gdbpy_ref<> next (PyIter_Next (iter.get ()));
719
720 if (next == NULL)
721 {
722 if (PyErr_Occurred ())
723 return NULL;
724 break;
725 }
726
727 gdbpy_ref<> obj_name (PyObject_GetAttrString (next.get (),
728 "filename"));
729
730 if (obj_name == NULL)
731 return NULL;
732
733 /* Is the object file still valid? */
734 if (obj_name == Py_None)
735 continue;
736
737 gdb::unique_xmalloc_ptr<char> filename =
738 python_string_to_target_string (obj_name.get ());
739
740 if (filename == NULL)
741 return NULL;
742
743 /* Make sure there is a definite place to store the value of
744 filename before it is released. */
745 symtab_paths.vec.push_back (nullptr);
746 symtab_paths.vec.back () = filename.release ();
747 }
748 }
749
750 if (symtab_list)
751 {
752 const char **files = symtab_paths.vec.data ();
753
754 symbols = search_symbols (regex, FUNCTIONS_DOMAIN,
755 symtab_paths.vec.size (), files);
756 }
757 else
758 symbols = search_symbols (regex, FUNCTIONS_DOMAIN, 0, NULL);
759
760 /* Count the number of symbols (both symbols and optionally minimal
761 symbols) so we can correctly check the throttle limit. */
762 for (const symbol_search &p : symbols)
763 {
764 /* Minimal symbols included? */
765 if (minsyms_p)
766 {
767 if (p.msymbol.minsym != NULL)
768 count++;
769 }
770
771 if (p.symbol != NULL)
772 count++;
773 }
774
775 /* Check throttle bounds and exit if in excess. */
776 if (throttle != 0 && count > throttle)
777 {
778 PyErr_SetString (PyExc_RuntimeError,
779 _("Number of breakpoints exceeds throttled maximum."));
780 return NULL;
781 }
782
783 gdbpy_ref<> return_list (PyList_New (0));
784
785 if (return_list == NULL)
786 return NULL;
787
788 /* Construct full path names for symbols and call the Python
789 breakpoint constructor on the resulting names. Be tolerant of
790 individual breakpoint failures. */
791 for (const symbol_search &p : symbols)
792 {
793 std::string symbol_name;
794
795 /* Skipping minimal symbols? */
796 if (minsyms_p == 0)
797 if (p.msymbol.minsym != NULL)
798 continue;
799
800 if (p.msymbol.minsym == NULL)
801 {
802 struct symtab *symtab = symbol_symtab (p.symbol);
803 const char *fullname = symtab_to_fullname (symtab);
804
805 symbol_name = fullname;
806 symbol_name += ":";
807 symbol_name += SYMBOL_LINKAGE_NAME (p.symbol);
808 }
809 else
810 symbol_name = MSYMBOL_LINKAGE_NAME (p.msymbol.minsym);
811
812 gdbpy_ref<> argList (Py_BuildValue("(s)", symbol_name.c_str ()));
813 gdbpy_ref<> obj (PyObject_CallObject ((PyObject *)
814 &breakpoint_object_type,
815 argList.get ()));
816
817 /* Tolerate individual breakpoint failures. */
818 if (obj == NULL)
819 gdbpy_print_stack ();
820 else
821 {
822 if (PyList_Append (return_list.get (), obj.get ()) == -1)
823 return NULL;
824 }
825 }
826 return return_list.release ();
827}
828
cb2e07a6
PM
829/* A Python function which is a wrapper for decode_line_1. */
830
831static PyObject *
832gdbpy_decode_line (PyObject *self, PyObject *args)
833{
f2fc3015 834 const char *arg = NULL;
7780f186
TT
835 gdbpy_ref<> result;
836 gdbpy_ref<> unparsed;
ffc2605c 837 event_location_up location;
cb2e07a6
PM
838
839 if (! PyArg_ParseTuple (args, "|s", &arg))
840 return NULL;
841
f00aae0f 842 if (arg != NULL)
a20714ff
PA
843 location = string_to_event_location_basic (&arg, python_language,
844 symbol_name_match_type::WILD);
f00aae0f 845
6c5b2ebe
PA
846 std::vector<symtab_and_line> decoded_sals;
847 symtab_and_line def_sal;
848 gdb::array_view<symtab_and_line> sals;
492d29ea 849 TRY
cb2e07a6 850 {
59ecaff3 851 if (location != NULL)
6c5b2ebe
PA
852 {
853 decoded_sals = decode_line_1 (location.get (), 0, NULL, NULL, 0);
854 sals = decoded_sals;
855 }
cb2e07a6
PM
856 else
857 {
858 set_default_source_symtab_and_line ();
6c5b2ebe
PA
859 def_sal = get_current_source_symtab_and_line ();
860 sals = def_sal;
cb2e07a6
PM
861 }
862 }
492d29ea 863 CATCH (ex, RETURN_MASK_ALL)
cb2e07a6 864 {
cb2e07a6 865 /* We know this will always throw. */
6c5b2ebe 866 gdbpy_convert_exception (ex);
f3300387 867 return NULL;
cb2e07a6 868 }
6c5b2ebe 869 END_CATCH
cb2e07a6 870
6c5b2ebe 871 if (!sals.empty ())
cb2e07a6 872 {
6c5b2ebe 873 result.reset (PyTuple_New (sals.size ()));
59876f8f 874 if (result == NULL)
0d50bde3 875 return NULL;
6c5b2ebe 876 for (size_t i = 0; i < sals.size (); ++i)
cb2e07a6 877 {
6c5b2ebe
PA
878 PyObject *obj = symtab_and_line_to_sal_object (sals[i]);
879 if (obj == NULL)
0d50bde3 880 return NULL;
cb2e07a6 881
59876f8f 882 PyTuple_SetItem (result.get (), i, obj);
cb2e07a6
PM
883 }
884 }
885 else
7c66fffc 886 result = gdbpy_ref<>::new_reference (Py_None);
cb2e07a6 887
7780f186 888 gdbpy_ref<> return_result (PyTuple_New (2));
59876f8f 889 if (return_result == NULL)
0d50bde3 890 return NULL;
cb2e07a6 891
f00aae0f 892 if (arg != NULL && strlen (arg) > 0)
9bc3523d 893 {
59876f8f 894 unparsed.reset (PyString_FromString (arg));
9bc3523d 895 if (unparsed == NULL)
0d50bde3 896 return NULL;
9bc3523d 897 }
cb2e07a6 898 else
7c66fffc 899 unparsed = gdbpy_ref<>::new_reference (Py_None);
cb2e07a6 900
59876f8f
TT
901 PyTuple_SetItem (return_result.get (), 0, unparsed.release ());
902 PyTuple_SetItem (return_result.get (), 1, result.release ());
cb2e07a6 903
59876f8f 904 return return_result.release ();
cb2e07a6
PM
905}
906
57a1d736
TT
907/* Parse a string and evaluate it as an expression. */
908static PyObject *
909gdbpy_parse_and_eval (PyObject *self, PyObject *args)
910{
ddd49eee 911 const char *expr_str;
57a1d736 912 struct value *result = NULL;
57a1d736
TT
913
914 if (!PyArg_ParseTuple (args, "s", &expr_str))
915 return NULL;
916
492d29ea 917 TRY
57a1d736 918 {
bbc13ae3 919 result = parse_and_eval (expr_str);
57a1d736 920 }
492d29ea
PA
921 CATCH (except, RETURN_MASK_ALL)
922 {
923 GDB_PY_HANDLE_EXCEPTION (except);
924 }
925 END_CATCH
57a1d736
TT
926
927 return value_to_value_object (result);
928}
929
7efc75aa
SCR
930/* Implementation of gdb.find_pc_line function.
931 Returns the gdb.Symtab_and_line object corresponding to a PC value. */
932
933static PyObject *
934gdbpy_find_pc_line (PyObject *self, PyObject *args)
935{
29ca12b3 936 gdb_py_ulongest pc_llu;
62d7fb51 937 PyObject *result = NULL; /* init for gcc -Wall */
7efc75aa
SCR
938
939 if (!PyArg_ParseTuple (args, GDB_PY_LLU_ARG, &pc_llu))
940 return NULL;
941
492d29ea 942 TRY
9e974e55
TT
943 {
944 struct symtab_and_line sal;
945 CORE_ADDR pc;
946
947 pc = (CORE_ADDR) pc_llu;
948 sal = find_pc_line (pc, 0);
949 result = symtab_and_line_to_sal_object (sal);
950 }
492d29ea
PA
951 CATCH (except, RETURN_MASK_ALL)
952 {
953 GDB_PY_HANDLE_EXCEPTION (except);
954 }
955 END_CATCH
9e974e55
TT
956
957 return result;
7efc75aa
SCR
958}
959
e0f3fd7c
TT
960/* Implementation of gdb.invalidate_cached_frames. */
961
962static PyObject *
963gdbpy_invalidate_cached_frames (PyObject *self, PyObject *args)
964{
965 reinit_frame_cache ();
966 Py_RETURN_NONE;
967}
968
d234ef5c 969/* Read a file as Python code.
6dddc817
DE
970 This is the extension_language_script_ops.script_sourcer "method".
971 FILE is the file to load. FILENAME is name of the file FILE.
d234ef5c
DE
972 This does not throw any errors. If an exception occurs python will print
973 the traceback and clear the error indicator. */
973817a3 974
6dddc817
DE
975static void
976gdbpy_source_script (const struct extension_language_defn *extlang,
977 FILE *file, const char *filename)
973817a3 978{
60e600ec 979 gdbpy_enter enter_py (get_current_arch (), current_language);
4c63965b 980 python_run_simple_file (file, filename);
973817a3
JB
981}
982
d57a3c85
TJB
983\f
984
ca5c20b6
PM
985/* Posting and handling events. */
986
987/* A single event. */
988struct gdbpy_event
989{
990 /* The Python event. This is just a callable object. */
991 PyObject *event;
992 /* The next event. */
993 struct gdbpy_event *next;
994};
995
996/* All pending events. */
997static struct gdbpy_event *gdbpy_event_list;
998/* The final link of the event list. */
999static struct gdbpy_event **gdbpy_event_list_end;
1000
6eddd09a
PA
1001/* So that we can wake up the main thread even when it is blocked in
1002 poll(). */
1003static struct serial_event *gdbpy_serial_event;
ca5c20b6
PM
1004
1005/* The file handler callback. This reads from the internal pipe, and
1006 then processes the Python event queue. This will always be run in
1007 the main gdb thread. */
4a532131 1008
ca5c20b6 1009static void
6eddd09a 1010gdbpy_run_events (int error, gdb_client_data client_data)
ca5c20b6 1011{
60e600ec 1012 gdbpy_enter enter_py (get_current_arch (), current_language);
ca5c20b6 1013
6eddd09a
PA
1014 /* Clear the event fd. Do this before flushing the events list, so
1015 that any new event post afterwards is sure to re-awake the event
4a532131 1016 loop. */
6eddd09a 1017 serial_event_clear (gdbpy_serial_event);
ca5c20b6
PM
1018
1019 while (gdbpy_event_list)
1020 {
1021 /* Dispatching the event might push a new element onto the event
1022 loop, so we update here "atomically enough". */
1023 struct gdbpy_event *item = gdbpy_event_list;
1024 gdbpy_event_list = gdbpy_event_list->next;
1025 if (gdbpy_event_list == NULL)
1026 gdbpy_event_list_end = &gdbpy_event_list;
1027
1028 /* Ignore errors. */
7780f186 1029 gdbpy_ref<> call_result (PyObject_CallObject (item->event, NULL));
02146ba5 1030 if (call_result == NULL)
ca5c20b6
PM
1031 PyErr_Clear ();
1032
1033 Py_DECREF (item->event);
1034 xfree (item);
1035 }
ca5c20b6
PM
1036}
1037
1038/* Submit an event to the gdb thread. */
1039static PyObject *
1040gdbpy_post_event (PyObject *self, PyObject *args)
1041{
1042 struct gdbpy_event *event;
1043 PyObject *func;
1044 int wakeup;
1045
1046 if (!PyArg_ParseTuple (args, "O", &func))
1047 return NULL;
1048
1049 if (!PyCallable_Check (func))
1050 {
256458bc 1051 PyErr_SetString (PyExc_RuntimeError,
ca5c20b6
PM
1052 _("Posted event is not callable"));
1053 return NULL;
1054 }
1055
1056 Py_INCREF (func);
1057
1058 /* From here until the end of the function, we have the GIL, so we
1059 can operate on our global data structures without worrying. */
1060 wakeup = gdbpy_event_list == NULL;
1061
1062 event = XNEW (struct gdbpy_event);
1063 event->event = func;
1064 event->next = NULL;
1065 *gdbpy_event_list_end = event;
1066 gdbpy_event_list_end = &event->next;
1067
1068 /* Wake up gdb when needed. */
1069 if (wakeup)
6eddd09a 1070 serial_event_set (gdbpy_serial_event);
ca5c20b6
PM
1071
1072 Py_RETURN_NONE;
1073}
1074
1075/* Initialize the Python event handler. */
999633ed 1076static int
ca5c20b6
PM
1077gdbpy_initialize_events (void)
1078{
6eddd09a
PA
1079 gdbpy_event_list_end = &gdbpy_event_list;
1080
1081 gdbpy_serial_event = make_serial_event ();
1082 add_file_handler (serial_event_fd (gdbpy_serial_event),
1083 gdbpy_run_events, NULL);
999633ed
TT
1084
1085 return 0;
ca5c20b6
PM
1086}
1087
d17b6f81
PM
1088\f
1089
6dddc817
DE
1090/* This is the extension_language_ops.before_prompt "method". */
1091
1092static enum ext_lang_rc
1093gdbpy_before_prompt_hook (const struct extension_language_defn *extlang,
1094 const char *current_gdb_prompt)
d17b6f81 1095{
0646da15 1096 if (!gdb_python_initialized)
6dddc817 1097 return EXT_LANG_RC_NOP;
0646da15 1098
a88b13c7 1099 gdbpy_enter enter_py (get_current_arch (), current_language);
d17b6f81 1100
3f77c769
TT
1101 if (!evregpy_no_listeners_p (gdb_py_events.before_prompt)
1102 && evpy_emit_event (NULL, gdb_py_events.before_prompt) < 0)
1103 return EXT_LANG_RC_ERROR;
1104
b9516fa1
YPK
1105 if (gdb_python_module
1106 && PyObject_HasAttrString (gdb_python_module, "prompt_hook"))
d17b6f81 1107 {
7780f186
TT
1108 gdbpy_ref<> hook (PyObject_GetAttrString (gdb_python_module,
1109 "prompt_hook"));
d17b6f81 1110 if (hook == NULL)
d17b6f81 1111 {
a88b13c7
TT
1112 gdbpy_print_stack ();
1113 return EXT_LANG_RC_ERROR;
1114 }
d17b6f81 1115
a88b13c7
TT
1116 if (PyCallable_Check (hook.get ()))
1117 {
7780f186 1118 gdbpy_ref<> current_prompt (PyString_FromString (current_gdb_prompt));
d17b6f81 1119 if (current_prompt == NULL)
a88b13c7
TT
1120 {
1121 gdbpy_print_stack ();
1122 return EXT_LANG_RC_ERROR;
1123 }
d17b6f81 1124
7780f186
TT
1125 gdbpy_ref<> result
1126 (PyObject_CallFunctionObjArgs (hook.get (), current_prompt.get (),
1127 NULL));
d17b6f81 1128 if (result == NULL)
a88b13c7
TT
1129 {
1130 gdbpy_print_stack ();
1131 return EXT_LANG_RC_ERROR;
1132 }
d17b6f81
PM
1133
1134 /* Return type should be None, or a String. If it is None,
1135 fall through, we will not set a prompt. If it is a
1136 string, set PROMPT. Anything else, set an exception. */
a88b13c7 1137 if (result != Py_None && ! PyString_Check (result.get ()))
d17b6f81
PM
1138 {
1139 PyErr_Format (PyExc_RuntimeError,
1140 _("Return from prompt_hook must " \
1141 "be either a Python string, or None"));
a88b13c7
TT
1142 gdbpy_print_stack ();
1143 return EXT_LANG_RC_ERROR;
d17b6f81
PM
1144 }
1145
1146 if (result != Py_None)
1147 {
a88b13c7
TT
1148 gdb::unique_xmalloc_ptr<char>
1149 prompt (python_string_to_host_string (result.get ()));
d17b6f81
PM
1150
1151 if (prompt == NULL)
a88b13c7
TT
1152 {
1153 gdbpy_print_stack ();
1154 return EXT_LANG_RC_ERROR;
1155 }
1156
1157 set_prompt (prompt.get ());
1158 return EXT_LANG_RC_OK;
d17b6f81
PM
1159 }
1160 }
1161 }
1162
a88b13c7 1163 return EXT_LANG_RC_NOP;
d17b6f81
PM
1164}
1165
1166\f
1167
d57a3c85
TJB
1168/* Printing. */
1169
1170/* A python function to write a single string using gdb's filtered
99c3dc11
PM
1171 output stream . The optional keyword STREAM can be used to write
1172 to a particular stream. The default stream is to gdb_stdout. */
1173
d57a3c85 1174static PyObject *
99c3dc11 1175gdbpy_write (PyObject *self, PyObject *args, PyObject *kw)
d57a3c85 1176{
ddd49eee 1177 const char *arg;
2adadf51 1178 static const char *keywords[] = { "text", "stream", NULL };
99c3dc11 1179 int stream_type = 0;
256458bc 1180
2adadf51
PA
1181 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "s|i", keywords, &arg,
1182 &stream_type))
d57a3c85 1183 return NULL;
99c3dc11 1184
492d29ea 1185 TRY
99c3dc11 1186 {
adb4fe3b
ME
1187 switch (stream_type)
1188 {
1189 case 1:
1190 {
1191 fprintf_filtered (gdb_stderr, "%s", arg);
1192 break;
1193 }
1194 case 2:
1195 {
1196 fprintf_filtered (gdb_stdlog, "%s", arg);
1197 break;
1198 }
1199 default:
1200 fprintf_filtered (gdb_stdout, "%s", arg);
1201 }
99c3dc11 1202 }
492d29ea
PA
1203 CATCH (except, RETURN_MASK_ALL)
1204 {
1205 GDB_PY_HANDLE_EXCEPTION (except);
1206 }
1207 END_CATCH
256458bc 1208
d57a3c85
TJB
1209 Py_RETURN_NONE;
1210}
1211
99c3dc11
PM
1212/* A python function to flush a gdb stream. The optional keyword
1213 STREAM can be used to flush a particular stream. The default stream
1214 is gdb_stdout. */
1215
d57a3c85 1216static PyObject *
99c3dc11 1217gdbpy_flush (PyObject *self, PyObject *args, PyObject *kw)
d57a3c85 1218{
2adadf51 1219 static const char *keywords[] = { "stream", NULL };
99c3dc11 1220 int stream_type = 0;
256458bc 1221
2adadf51
PA
1222 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "|i", keywords,
1223 &stream_type))
99c3dc11
PM
1224 return NULL;
1225
1226 switch (stream_type)
1227 {
1228 case 1:
1229 {
1230 gdb_flush (gdb_stderr);
1231 break;
1232 }
1233 case 2:
1234 {
1235 gdb_flush (gdb_stdlog);
1236 break;
1237 }
1238 default:
1239 gdb_flush (gdb_stdout);
1240 }
256458bc 1241
d57a3c85
TJB
1242 Py_RETURN_NONE;
1243}
1244
69b4374a
DE
1245/* Return non-zero if print-stack is not "none". */
1246
1247int
1248gdbpy_print_python_errors_p (void)
1249{
1250 return gdbpy_should_print_stack != python_excp_none;
1251}
1252
80b6e756
PM
1253/* Print a python exception trace, print just a message, or print
1254 nothing and clear the python exception, depending on
1255 gdbpy_should_print_stack. Only call this if a python exception is
1256 set. */
d57a3c85
TJB
1257void
1258gdbpy_print_stack (void)
1259{
7f6a5dde 1260
80b6e756
PM
1261 /* Print "none", just clear exception. */
1262 if (gdbpy_should_print_stack == python_excp_none)
1263 {
1264 PyErr_Clear ();
1265 }
1266 /* Print "full" message and backtrace. */
1267 else if (gdbpy_should_print_stack == python_excp_full)
0bf0f8c4
DE
1268 {
1269 PyErr_Print ();
1270 /* PyErr_Print doesn't necessarily end output with a newline.
1271 This works because Python's stdout/stderr is fed through
1272 printf_filtered. */
492d29ea 1273 TRY
7f6a5dde
TT
1274 {
1275 begin_line ();
1276 }
492d29ea
PA
1277 CATCH (except, RETURN_MASK_ALL)
1278 {
1279 }
1280 END_CATCH
0bf0f8c4 1281 }
80b6e756 1282 /* Print "message", just error print message. */
d57a3c85 1283 else
80b6e756
PM
1284 {
1285 PyObject *ptype, *pvalue, *ptraceback;
80b6e756
PM
1286
1287 PyErr_Fetch (&ptype, &pvalue, &ptraceback);
1288
1289 /* Fetch the error message contained within ptype, pvalue. */
9b972014
TT
1290 gdb::unique_xmalloc_ptr<char>
1291 msg (gdbpy_exception_to_string (ptype, pvalue));
1292 gdb::unique_xmalloc_ptr<char> type (gdbpy_obj_to_string (ptype));
7f6a5dde 1293
492d29ea 1294 TRY
80b6e756 1295 {
7f6a5dde
TT
1296 if (msg == NULL)
1297 {
1298 /* An error occurred computing the string representation of the
1299 error message. */
1300 fprintf_filtered (gdb_stderr,
1301 _("Error occurred computing Python error" \
1302 "message.\n"));
1303 }
1304 else
1305 fprintf_filtered (gdb_stderr, "Python Exception %s %s: \n",
9b972014 1306 type.get (), msg.get ());
80b6e756 1307 }
492d29ea
PA
1308 CATCH (except, RETURN_MASK_ALL)
1309 {
1310 }
1311 END_CATCH
80b6e756
PM
1312
1313 Py_XDECREF (ptype);
1314 Py_XDECREF (pvalue);
1315 Py_XDECREF (ptraceback);
80b6e756 1316 }
d57a3c85
TJB
1317}
1318
89c73ade
TT
1319\f
1320
fa33c3cd
DE
1321/* Return the current Progspace.
1322 There always is one. */
1323
1324static PyObject *
1325gdbpy_get_current_progspace (PyObject *unused1, PyObject *unused2)
1326{
1327 PyObject *result;
1328
1329 result = pspace_to_pspace_object (current_program_space);
1330 if (result)
1331 Py_INCREF (result);
1332 return result;
1333}
1334
1335/* Return a sequence holding all the Progspaces. */
1336
1337static PyObject *
1338gdbpy_progspaces (PyObject *unused1, PyObject *unused2)
1339{
1340 struct program_space *ps;
fa33c3cd 1341
7780f186 1342 gdbpy_ref<> list (PyList_New (0));
ff3724f5 1343 if (list == NULL)
fa33c3cd
DE
1344 return NULL;
1345
1346 ALL_PSPACES (ps)
1347 {
1348 PyObject *item = pspace_to_pspace_object (ps);
d59b6f6c 1349
ff3724f5
TT
1350 if (!item || PyList_Append (list.get (), item) == -1)
1351 return NULL;
fa33c3cd
DE
1352 }
1353
ff3724f5 1354 return list.release ();
fa33c3cd
DE
1355}
1356
1357\f
1358
89c73ade 1359/* The "current" objfile. This is set when gdb detects that a new
8a1ea21f 1360 objfile has been loaded. It is only set for the duration of a call to
9f050062
DE
1361 gdbpy_source_objfile_script and gdbpy_execute_objfile_script; it is NULL
1362 at other times. */
89c73ade
TT
1363static struct objfile *gdbpy_current_objfile;
1364
4c63965b
JK
1365/* Set the current objfile to OBJFILE and then read FILE named FILENAME
1366 as Python code. This does not throw any errors. If an exception
6dddc817
DE
1367 occurs python will print the traceback and clear the error indicator.
1368 This is the extension_language_script_ops.objfile_script_sourcer
1369 "method". */
89c73ade 1370
6dddc817
DE
1371static void
1372gdbpy_source_objfile_script (const struct extension_language_defn *extlang,
1373 struct objfile *objfile, FILE *file,
1374 const char *filename)
89c73ade 1375{
0646da15
TT
1376 if (!gdb_python_initialized)
1377 return;
1378
60e600ec 1379 gdbpy_enter enter_py (get_objfile_arch (objfile), current_language);
89c73ade
TT
1380 gdbpy_current_objfile = objfile;
1381
4c63965b 1382 python_run_simple_file (file, filename);
89c73ade 1383
89c73ade 1384 gdbpy_current_objfile = NULL;
89c73ade
TT
1385}
1386
9f050062
DE
1387/* Set the current objfile to OBJFILE and then execute SCRIPT
1388 as Python code. This does not throw any errors. If an exception
1389 occurs python will print the traceback and clear the error indicator.
1390 This is the extension_language_script_ops.objfile_script_executor
1391 "method". */
1392
1393static void
1394gdbpy_execute_objfile_script (const struct extension_language_defn *extlang,
1395 struct objfile *objfile, const char *name,
1396 const char *script)
1397{
9f050062
DE
1398 if (!gdb_python_initialized)
1399 return;
1400
60e600ec 1401 gdbpy_enter enter_py (get_objfile_arch (objfile), current_language);
9f050062
DE
1402 gdbpy_current_objfile = objfile;
1403
1404 PyRun_SimpleString (script);
1405
9f050062
DE
1406 gdbpy_current_objfile = NULL;
1407}
1408
89c73ade 1409/* Return the current Objfile, or None if there isn't one. */
8a1ea21f 1410
89c73ade
TT
1411static PyObject *
1412gdbpy_get_current_objfile (PyObject *unused1, PyObject *unused2)
1413{
1414 PyObject *result;
1415
1416 if (! gdbpy_current_objfile)
1417 Py_RETURN_NONE;
1418
1419 result = objfile_to_objfile_object (gdbpy_current_objfile);
1420 if (result)
1421 Py_INCREF (result);
1422 return result;
1423}
1424
1425/* Return a sequence holding all the Objfiles. */
fa33c3cd 1426
89c73ade
TT
1427static PyObject *
1428gdbpy_objfiles (PyObject *unused1, PyObject *unused2)
1429{
1430 struct objfile *objf;
89c73ade 1431
7780f186 1432 gdbpy_ref<> list (PyList_New (0));
ff3724f5 1433 if (list == NULL)
89c73ade
TT
1434 return NULL;
1435
1436 ALL_OBJFILES (objf)
1437 {
1438 PyObject *item = objfile_to_objfile_object (objf);
d59b6f6c 1439
ff3724f5
TT
1440 if (!item || PyList_Append (list.get (), item) == -1)
1441 return NULL;
89c73ade
TT
1442 }
1443
ff3724f5 1444 return list.release ();
89c73ade
TT
1445}
1446
6dddc817
DE
1447/* Compute the list of active python type printers and store them in
1448 EXT_PRINTERS->py_type_printers. The product of this function is used by
1449 gdbpy_apply_type_printers, and freed by gdbpy_free_type_printers.
1450 This is the extension_language_ops.start_type_printers "method". */
18a9fc12 1451
6dddc817
DE
1452static void
1453gdbpy_start_type_printers (const struct extension_language_defn *extlang,
1454 struct ext_lang_type_printers *ext_printers)
18a9fc12 1455{
59876f8f 1456 PyObject *printers_obj = NULL;
18a9fc12 1457
0646da15 1458 if (!gdb_python_initialized)
6dddc817 1459 return;
0646da15 1460
60e600ec 1461 gdbpy_enter enter_py (get_current_arch (), current_language);
18a9fc12 1462
7780f186 1463 gdbpy_ref<> type_module (PyImport_ImportModule ("gdb.types"));
18a9fc12
TT
1464 if (type_module == NULL)
1465 {
1466 gdbpy_print_stack ();
59876f8f 1467 return;
18a9fc12 1468 }
18a9fc12 1469
7780f186
TT
1470 gdbpy_ref<> func (PyObject_GetAttrString (type_module.get (),
1471 "get_type_recognizers"));
18a9fc12
TT
1472 if (func == NULL)
1473 {
1474 gdbpy_print_stack ();
59876f8f 1475 return;
18a9fc12 1476 }
18a9fc12 1477
59876f8f 1478 printers_obj = PyObject_CallFunctionObjArgs (func.get (), (char *) NULL);
6dddc817 1479 if (printers_obj == NULL)
18a9fc12 1480 gdbpy_print_stack ();
6dddc817
DE
1481 else
1482 ext_printers->py_type_printers = printers_obj;
18a9fc12
TT
1483}
1484
6dddc817
DE
1485/* If TYPE is recognized by some type printer, store in *PRETTIED_TYPE
1486 a newly allocated string holding the type's replacement name, and return
1487 EXT_LANG_RC_OK. The caller is responsible for freeing the string.
1488 If there's a Python error return EXT_LANG_RC_ERROR.
1489 Otherwise, return EXT_LANG_RC_NOP.
1490 This is the extension_language_ops.apply_type_printers "method". */
1491
1492static enum ext_lang_rc
1493gdbpy_apply_type_printers (const struct extension_language_defn *extlang,
1494 const struct ext_lang_type_printers *ext_printers,
1495 struct type *type, char **prettied_type)
18a9fc12 1496{
19ba03f4 1497 PyObject *printers_obj = (PyObject *) ext_printers->py_type_printers;
9b972014 1498 gdb::unique_xmalloc_ptr<char> result;
18a9fc12
TT
1499
1500 if (printers_obj == NULL)
6dddc817 1501 return EXT_LANG_RC_NOP;
18a9fc12 1502
0646da15 1503 if (!gdb_python_initialized)
6dddc817 1504 return EXT_LANG_RC_NOP;
0646da15 1505
60e600ec 1506 gdbpy_enter enter_py (get_current_arch (), current_language);
18a9fc12 1507
7780f186 1508 gdbpy_ref<> type_obj (type_to_type_object (type));
18a9fc12
TT
1509 if (type_obj == NULL)
1510 {
1511 gdbpy_print_stack ();
59876f8f 1512 return EXT_LANG_RC_ERROR;
18a9fc12 1513 }
18a9fc12 1514
7780f186 1515 gdbpy_ref<> type_module (PyImport_ImportModule ("gdb.types"));
18a9fc12
TT
1516 if (type_module == NULL)
1517 {
1518 gdbpy_print_stack ();
59876f8f 1519 return EXT_LANG_RC_ERROR;
18a9fc12 1520 }
18a9fc12 1521
7780f186
TT
1522 gdbpy_ref<> func (PyObject_GetAttrString (type_module.get (),
1523 "apply_type_recognizers"));
18a9fc12
TT
1524 if (func == NULL)
1525 {
1526 gdbpy_print_stack ();
59876f8f 1527 return EXT_LANG_RC_ERROR;
18a9fc12 1528 }
18a9fc12 1529
7780f186
TT
1530 gdbpy_ref<> result_obj (PyObject_CallFunctionObjArgs (func.get (),
1531 printers_obj,
1532 type_obj.get (),
1533 (char *) NULL));
18a9fc12
TT
1534 if (result_obj == NULL)
1535 {
1536 gdbpy_print_stack ();
59876f8f 1537 return EXT_LANG_RC_ERROR;
18a9fc12 1538 }
18a9fc12 1539
59876f8f
TT
1540 if (result_obj == Py_None)
1541 return EXT_LANG_RC_NOP;
18a9fc12 1542
59876f8f
TT
1543 result = python_string_to_host_string (result_obj.get ());
1544 if (result == NULL)
9b972014 1545 {
59876f8f
TT
1546 gdbpy_print_stack ();
1547 return EXT_LANG_RC_ERROR;
9b972014 1548 }
59876f8f
TT
1549
1550 *prettied_type = result.release ();
1551 return EXT_LANG_RC_OK;
18a9fc12
TT
1552}
1553
6dddc817
DE
1554/* Free the result of start_type_printers.
1555 This is the extension_language_ops.free_type_printers "method". */
18a9fc12 1556
6dddc817
DE
1557static void
1558gdbpy_free_type_printers (const struct extension_language_defn *extlang,
1559 struct ext_lang_type_printers *ext_printers)
18a9fc12 1560{
19ba03f4 1561 PyObject *printers = (PyObject *) ext_printers->py_type_printers;
18a9fc12
TT
1562
1563 if (printers == NULL)
1564 return;
1565
0646da15
TT
1566 if (!gdb_python_initialized)
1567 return;
1568
60e600ec 1569 gdbpy_enter enter_py (get_current_arch (), current_language);
18a9fc12 1570 Py_DECREF (printers);
18a9fc12
TT
1571}
1572
d57a3c85
TJB
1573#else /* HAVE_PYTHON */
1574
8315665e
YPK
1575/* Dummy implementation of the gdb "python-interactive" and "python"
1576 command. */
d57a3c85
TJB
1577
1578static void
0b39b52e 1579python_interactive_command (const char *arg, int from_tty)
d57a3c85 1580{
529480d0 1581 arg = skip_spaces (arg);
d57a3c85
TJB
1582 if (arg && *arg)
1583 error (_("Python scripting is not supported in this copy of GDB."));
1584 else
1585 {
12973681 1586 counted_command_line l = get_command_line (python_control, "");
d59b6f6c 1587
93921405 1588 execute_control_command_untraced (l.get ());
d57a3c85
TJB
1589 }
1590}
1591
8315665e 1592static void
0b39b52e 1593python_command (const char *arg, int from_tty)
8315665e
YPK
1594{
1595 python_interactive_command (arg, from_tty);
1596}
1597
d57a3c85
TJB
1598#endif /* HAVE_PYTHON */
1599
1600\f
1601
713389e0
PM
1602/* Lists for 'set python' commands. */
1603
1604static struct cmd_list_element *user_set_python_list;
1605static struct cmd_list_element *user_show_python_list;
d57a3c85 1606
713389e0
PM
1607/* Function for use by 'set python' prefix command. */
1608
1609static void
981a3fb3 1610user_set_python (const char *args, int from_tty)
713389e0
PM
1611{
1612 help_list (user_set_python_list, "set python ", all_commands,
1613 gdb_stdout);
1614}
1615
1616/* Function for use by 'show python' prefix command. */
1617
1618static void
981a3fb3 1619user_show_python (const char *args, int from_tty)
d57a3c85 1620{
713389e0 1621 cmd_show_list (user_show_python_list, from_tty, "");
d57a3c85
TJB
1622}
1623
1624/* Initialize the Python code. */
1625
810849a3
AS
1626#ifdef HAVE_PYTHON
1627
d7de8e3c
TT
1628/* This is installed as a final cleanup and cleans up the
1629 interpreter. This lets Python's 'atexit' work. */
1630
1631static void
1632finalize_python (void *ignore)
1633{
6dddc817
DE
1634 struct active_ext_lang_state *previous_active;
1635
d7de8e3c
TT
1636 /* We don't use ensure_python_env here because if we ever ran the
1637 cleanup, gdb would crash -- because the cleanup calls into the
1638 Python interpreter, which we are about to destroy. It seems
1639 clearer to make the needed calls explicitly here than to create a
1640 cleanup and then mysteriously discard it. */
6dddc817
DE
1641
1642 /* This is only called as a final cleanup so we can assume the active
1643 SIGINT handler is gdb's. We still need to tell it to notify Python. */
1644 previous_active = set_active_ext_lang (&extension_language_python);
1645
b1209b03 1646 (void) PyGILState_Ensure ();
f5656ead 1647 python_gdbarch = target_gdbarch ();
d7de8e3c
TT
1648 python_language = current_language;
1649
1650 Py_Finalize ();
6dddc817
DE
1651
1652 restore_active_ext_lang (previous_active);
d7de8e3c 1653}
2bb8f231
TT
1654
1655static bool
1656do_start_initialization ()
d57a3c85 1657{
9a27f2c6 1658#ifdef IS_PY3K
9a27f2c6 1659 size_t progsize, count;
9a27f2c6
PK
1660 wchar_t *progname_copy;
1661#endif
713389e0 1662
0c4a4063
DE
1663#ifdef WITH_PYTHON_PATH
1664 /* Work around problem where python gets confused about where it is,
1665 and then can't find its libraries, etc.
1666 NOTE: Python assumes the following layout:
1667 /foo/bin/python
1668 /foo/lib/pythonX.Y/...
1669 This must be done before calling Py_Initialize. */
e8e7d10c
SM
1670 gdb::unique_xmalloc_ptr<char> progname
1671 (concat (ldirname (python_libdir).c_str (), SLASH_STRING, "bin",
1672 SLASH_STRING, "python", (char *) NULL));
9a27f2c6 1673#ifdef IS_PY3K
7f968c89 1674 std::string oldloc = setlocale (LC_ALL, NULL);
9a27f2c6 1675 setlocale (LC_ALL, "");
e8e7d10c 1676 progsize = strlen (progname.get ());
db0f0d0c 1677 progname_copy = (wchar_t *) PyMem_Malloc ((progsize + 1) * sizeof (wchar_t));
9a27f2c6
PK
1678 if (!progname_copy)
1679 {
1680 fprintf (stderr, "out of memory\n");
2bb8f231 1681 return false;
9a27f2c6 1682 }
e8e7d10c 1683 count = mbstowcs (progname_copy, progname.get (), progsize + 1);
9a27f2c6
PK
1684 if (count == (size_t) -1)
1685 {
1686 fprintf (stderr, "Could not convert python path to string\n");
2bb8f231 1687 return false;
9a27f2c6 1688 }
7f968c89 1689 setlocale (LC_ALL, oldloc.c_str ());
9a27f2c6
PK
1690
1691 /* Note that Py_SetProgramName expects the string it is passed to
1692 remain alive for the duration of the program's execution, so
1693 it is not freed after this call. */
1694 Py_SetProgramName (progname_copy);
1695#else
e8e7d10c 1696 Py_SetProgramName (progname.release ());
9a27f2c6 1697#endif
0c4a4063
DE
1698#endif
1699
d57a3c85 1700 Py_Initialize ();
ca30a762 1701 PyEval_InitThreads ();
d57a3c85 1702
9a27f2c6 1703#ifdef IS_PY3K
bcabf420 1704 gdb_module = PyModule_Create (&python_GdbModuleDef);
9a27f2c6
PK
1705 /* Add _gdb module to the list of known built-in modules. */
1706 _PyImport_FixupBuiltin (gdb_module, "_gdb");
1707#else
bcabf420 1708 gdb_module = Py_InitModule ("_gdb", python_GdbMethods);
9a27f2c6 1709#endif
999633ed 1710 if (gdb_module == NULL)
2bb8f231 1711 return false;
d57a3c85
TJB
1712
1713 /* The casts to (char*) are for python 2.4. */
999633ed
TT
1714 if (PyModule_AddStringConstant (gdb_module, "VERSION", (char*) version) < 0
1715 || PyModule_AddStringConstant (gdb_module, "HOST_CONFIG",
1716 (char*) host_name) < 0
1717 || PyModule_AddStringConstant (gdb_module, "TARGET_CONFIG",
1718 (char*) target_name) < 0)
2bb8f231 1719 return false;
f17618ea 1720
99c3dc11 1721 /* Add stream constants. */
999633ed
TT
1722 if (PyModule_AddIntConstant (gdb_module, "STDOUT", 0) < 0
1723 || PyModule_AddIntConstant (gdb_module, "STDERR", 1) < 0
1724 || PyModule_AddIntConstant (gdb_module, "STDLOG", 2) < 0)
2bb8f231 1725 return false;
d57a3c85 1726
621c8364 1727 gdbpy_gdb_error = PyErr_NewException ("gdb.error", PyExc_RuntimeError, NULL);
999633ed 1728 if (gdbpy_gdb_error == NULL
aa36459a 1729 || gdb_pymodule_addobject (gdb_module, "error", gdbpy_gdb_error) < 0)
2bb8f231 1730 return false;
621c8364
TT
1731
1732 gdbpy_gdb_memory_error = PyErr_NewException ("gdb.MemoryError",
1733 gdbpy_gdb_error, NULL);
999633ed 1734 if (gdbpy_gdb_memory_error == NULL
aa36459a
TT
1735 || gdb_pymodule_addobject (gdb_module, "MemoryError",
1736 gdbpy_gdb_memory_error) < 0)
2bb8f231 1737 return false;
621c8364 1738
07ca107c 1739 gdbpy_gdberror_exc = PyErr_NewException ("gdb.GdbError", NULL, NULL);
999633ed 1740 if (gdbpy_gdberror_exc == NULL
aa36459a
TT
1741 || gdb_pymodule_addobject (gdb_module, "GdbError",
1742 gdbpy_gdberror_exc) < 0)
2bb8f231 1743 return false;
07ca107c 1744
037bbc8e 1745 gdbpy_initialize_gdb_readline ();
999633ed
TT
1746
1747 if (gdbpy_initialize_auto_load () < 0
1748 || gdbpy_initialize_values () < 0
1749 || gdbpy_initialize_frames () < 0
1750 || gdbpy_initialize_commands () < 0
d050f7d7 1751 || gdbpy_initialize_instruction () < 0
4726b2d8 1752 || gdbpy_initialize_record () < 0
75c0bdf4 1753 || gdbpy_initialize_btrace () < 0
999633ed
TT
1754 || gdbpy_initialize_symbols () < 0
1755 || gdbpy_initialize_symtabs () < 0
1756 || gdbpy_initialize_blocks () < 0
1757 || gdbpy_initialize_functions () < 0
1758 || gdbpy_initialize_parameters () < 0
1759 || gdbpy_initialize_types () < 0
1760 || gdbpy_initialize_pspace () < 0
1761 || gdbpy_initialize_objfile () < 0
1762 || gdbpy_initialize_breakpoints () < 0
1763 || gdbpy_initialize_finishbreakpoints () < 0
1764 || gdbpy_initialize_lazy_string () < 0
bc79de95 1765 || gdbpy_initialize_linetable () < 0
999633ed
TT
1766 || gdbpy_initialize_thread () < 0
1767 || gdbpy_initialize_inferior () < 0
1768 || gdbpy_initialize_events () < 0
1769 || gdbpy_initialize_eventregistry () < 0
1770 || gdbpy_initialize_py_events () < 0
1771 || gdbpy_initialize_event () < 0
883964a7 1772 || gdbpy_initialize_arch () < 0
d11916aa
SS
1773 || gdbpy_initialize_xmethods () < 0
1774 || gdbpy_initialize_unwind () < 0)
2bb8f231 1775 return false;
505500db 1776
7d221d74
TT
1777#define GDB_PY_DEFINE_EVENT_TYPE(name, py_name, doc, base) \
1778 if (gdbpy_initialize_event_generic (&name##_event_object_type, py_name) < 0) \
1779 return false;
1780#include "py-event-types.def"
1781#undef GDB_PY_DEFINE_EVENT_TYPE
1782
a6bac58e 1783 gdbpy_to_string_cst = PyString_FromString ("to_string");
999633ed 1784 if (gdbpy_to_string_cst == NULL)
2bb8f231 1785 return false;
a6bac58e 1786 gdbpy_children_cst = PyString_FromString ("children");
999633ed 1787 if (gdbpy_children_cst == NULL)
2bb8f231 1788 return false;
a6bac58e 1789 gdbpy_display_hint_cst = PyString_FromString ("display_hint");
999633ed 1790 if (gdbpy_display_hint_cst == NULL)
2bb8f231 1791 return false;
d8906c6f 1792 gdbpy_doc_cst = PyString_FromString ("__doc__");
999633ed 1793 if (gdbpy_doc_cst == NULL)
2bb8f231 1794 return false;
967cf477 1795 gdbpy_enabled_cst = PyString_FromString ("enabled");
999633ed 1796 if (gdbpy_enabled_cst == NULL)
2bb8f231 1797 return false;
fb6a3ed3 1798 gdbpy_value_cst = PyString_FromString ("value");
999633ed 1799 if (gdbpy_value_cst == NULL)
2bb8f231 1800 return false;
d8906c6f 1801
9dea9163
DE
1802 /* Release the GIL while gdb runs. */
1803 PyThreadState_Swap (NULL);
1804 PyEval_ReleaseLock ();
1805
d7de8e3c 1806 make_final_cleanup (finalize_python, NULL);
999633ed 1807
2bb8f231 1808 /* Only set this when initialization has succeeded. */
999633ed 1809 gdb_python_initialized = 1;
2bb8f231
TT
1810 return true;
1811}
999633ed 1812
2bb8f231 1813#endif /* HAVE_PYTHON */
999633ed 1814
2bb8f231
TT
1815void
1816_initialize_python (void)
1817{
1818 add_com ("python-interactive", class_obscure,
1819 python_interactive_command,
1820#ifdef HAVE_PYTHON
1821 _("\
1822Start an interactive Python prompt.\n\
1823\n\
1824To return to GDB, type the EOF character (e.g., Ctrl-D on an empty\n\
1825prompt).\n\
1826\n\
1827Alternatively, a single-line Python command can be given as an\n\
1828argument, and if the command is an expression, the result will be\n\
1829printed. For example:\n\
1830\n\
1831 (gdb) python-interactive 2 + 3\n\
1832 5\n\
1833")
1834#else /* HAVE_PYTHON */
1835 _("\
1836Start a Python interactive prompt.\n\
1837\n\
1838Python scripting is not supported in this copy of GDB.\n\
1839This command is only a placeholder.")
1840#endif /* HAVE_PYTHON */
1841 );
1842 add_com_alias ("pi", "python-interactive", class_obscure, 1);
1843
1844 add_com ("python", class_obscure, python_command,
1845#ifdef HAVE_PYTHON
1846 _("\
1847Evaluate a Python command.\n\
1848\n\
1849The command can be given as an argument, for instance:\n\
1850\n\
1851 python print 23\n\
1852\n\
1853If no argument is given, the following lines are read and used\n\
1854as the Python commands. Type a line containing \"end\" to indicate\n\
1855the end of the command.")
1856#else /* HAVE_PYTHON */
1857 _("\
1858Evaluate a Python command.\n\
1859\n\
1860Python scripting is not supported in this copy of GDB.\n\
1861This command is only a placeholder.")
1862#endif /* HAVE_PYTHON */
1863 );
1864 add_com_alias ("py", "python", class_obscure, 1);
1865
1866 /* Add set/show python print-stack. */
1867 add_prefix_cmd ("python", no_class, user_show_python,
1868 _("Prefix command for python preference settings."),
1869 &user_show_python_list, "show python ", 0,
1870 &showlist);
1871
1872 add_prefix_cmd ("python", no_class, user_set_python,
1873 _("Prefix command for python preference settings."),
1874 &user_set_python_list, "set python ", 0,
1875 &setlist);
1876
1877 add_setshow_enum_cmd ("print-stack", no_class, python_excp_enums,
1878 &gdbpy_should_print_stack, _("\
1879Set mode for Python stack dump on error."), _("\
1880Show the mode of Python stack printing on error."), _("\
1881none == no stack or message will be printed.\n\
1882full == a message and a stack will be printed.\n\
1883message == an error message without a stack will be printed."),
1884 NULL, NULL,
1885 &user_set_python_list,
1886 &user_show_python_list);
1887
1888#ifdef HAVE_PYTHON
1889 if (!do_start_initialization () && PyErr_Occurred ())
1890 gdbpy_print_stack ();
9dea9163
DE
1891#endif /* HAVE_PYTHON */
1892}
1893
1894#ifdef HAVE_PYTHON
1895
a7785f8c
TT
1896/* Helper function for gdbpy_finish_initialization. This does the
1897 work and then returns false if an error has occurred and must be
1898 displayed, or true on success. */
9dea9163 1899
a7785f8c
TT
1900static bool
1901do_finish_initialization (const struct extension_language_defn *extlang)
9dea9163 1902{
b9516fa1 1903 PyObject *m;
b9516fa1 1904 PyObject *sys_path;
f17618ea 1905
b9516fa1
YPK
1906 /* Add the initial data-directory to sys.path. */
1907
a7785f8c
TT
1908 std::string gdb_pythondir = (std::string (gdb_datadir) + SLASH_STRING
1909 + "python");
b9516fa1
YPK
1910
1911 sys_path = PySys_GetObject ("path");
ca30a762 1912
9a27f2c6
PK
1913 /* If sys.path is not defined yet, define it first. */
1914 if (!(sys_path && PyList_Check (sys_path)))
1915 {
1916#ifdef IS_PY3K
1917 PySys_SetPath (L"");
1918#else
1919 PySys_SetPath ("");
1920#endif
1921 sys_path = PySys_GetObject ("path");
1922 }
256458bc 1923 if (sys_path && PyList_Check (sys_path))
b9516fa1 1924 {
7780f186 1925 gdbpy_ref<> pythondir (PyString_FromString (gdb_pythondir.c_str ()));
a7785f8c
TT
1926 if (pythondir == NULL || PyList_Insert (sys_path, 0, pythondir.get ()))
1927 return false;
b9516fa1
YPK
1928 }
1929 else
a7785f8c 1930 return false;
b9516fa1
YPK
1931
1932 /* Import the gdb module to finish the initialization, and
1933 add it to __main__ for convenience. */
1934 m = PyImport_AddModule ("__main__");
1935 if (m == NULL)
a7785f8c 1936 return false;
b9516fa1 1937
a7785f8c
TT
1938 /* Keep the reference to gdb_python_module since it is in a global
1939 variable. */
b9516fa1
YPK
1940 gdb_python_module = PyImport_ImportModule ("gdb");
1941 if (gdb_python_module == NULL)
1942 {
1943 gdbpy_print_stack ();
41245087
DE
1944 /* This is passed in one call to warning so that blank lines aren't
1945 inserted between each line of text. */
1946 warning (_("\n"
1947 "Could not load the Python gdb module from `%s'.\n"
1948 "Limited Python support is available from the _gdb module.\n"
1949 "Suggest passing --data-directory=/path/to/gdb/data-directory.\n"),
a7785f8c
TT
1950 gdb_pythondir.c_str ());
1951 /* We return "success" here as we've already emitted the
1952 warning. */
1953 return true;
b9516fa1
YPK
1954 }
1955
a7785f8c
TT
1956 return gdb_pymodule_addobject (m, "gdb", gdb_python_module) >= 0;
1957}
b9516fa1 1958
a7785f8c
TT
1959/* Perform the remaining python initializations.
1960 These must be done after GDB is at least mostly initialized.
1961 E.g., The "info pretty-printer" command needs the "info" prefix
1962 command installed.
1963 This is the extension_language_ops.finish_initialization "method". */
b9516fa1 1964
a7785f8c
TT
1965static void
1966gdbpy_finish_initialization (const struct extension_language_defn *extlang)
1967{
1968 gdbpy_enter enter_py (get_current_arch (), current_language);
b9516fa1 1969
a7785f8c
TT
1970 if (!do_finish_initialization (extlang))
1971 {
1972 gdbpy_print_stack ();
1973 warning (_("internal error: Unhandled Python exception"));
1974 }
9dea9163 1975}
ca30a762 1976
6dddc817
DE
1977/* Return non-zero if Python has successfully initialized.
1978 This is the extension_languages_ops.initialized "method". */
1979
1980static int
1981gdbpy_initialized (const struct extension_language_defn *extlang)
1982{
1983 return gdb_python_initialized;
1984}
1985
d57a3c85 1986#endif /* HAVE_PYTHON */
12453b93
TJB
1987
1988\f
1989
9dea9163 1990#ifdef HAVE_PYTHON
12453b93 1991
bcabf420 1992PyMethodDef python_GdbMethods[] =
12453b93
TJB
1993{
1994 { "history", gdbpy_history, METH_VARARGS,
1995 "Get a value from history" },
bc9f0842 1996 { "execute", (PyCFunction) execute_gdb_command, METH_VARARGS | METH_KEYWORDS,
751e7549
PM
1997 "execute (command [, from_tty] [, to_string]) -> [String]\n\
1998Evaluate command, a string, as a gdb CLI command. Optionally returns\n\
1999a Python String containing the output of the command if to_string is\n\
2000set to True." },
8f500870 2001 { "parameter", gdbpy_parameter, METH_VARARGS,
12453b93
TJB
2002 "Return a gdb parameter's value" },
2003
adc36818
PM
2004 { "breakpoints", gdbpy_breakpoints, METH_NOARGS,
2005 "Return a tuple of all breakpoint objects" },
2006
b6313243
TT
2007 { "default_visualizer", gdbpy_default_visualizer, METH_VARARGS,
2008 "Find the default visualizer for a Value." },
2009
fa33c3cd
DE
2010 { "current_progspace", gdbpy_get_current_progspace, METH_NOARGS,
2011 "Return the current Progspace." },
2012 { "progspaces", gdbpy_progspaces, METH_NOARGS,
2013 "Return a sequence of all progspaces." },
2014
89c73ade
TT
2015 { "current_objfile", gdbpy_get_current_objfile, METH_NOARGS,
2016 "Return the current Objfile being loaded, or None." },
2017 { "objfiles", gdbpy_objfiles, METH_NOARGS,
2018 "Return a sequence of all loaded objfiles." },
2019
d8e22779
TT
2020 { "newest_frame", gdbpy_newest_frame, METH_NOARGS,
2021 "newest_frame () -> gdb.Frame.\n\
2022Return the newest frame object." },
f8f6f20b
TJB
2023 { "selected_frame", gdbpy_selected_frame, METH_NOARGS,
2024 "selected_frame () -> gdb.Frame.\n\
2025Return the selected frame object." },
2026 { "frame_stop_reason_string", gdbpy_frame_stop_reason_string, METH_VARARGS,
2027 "stop_reason_string (Integer) -> String.\n\
2028Return a string explaining unwind stop reason." },
2029
4726b2d8
TW
2030 { "start_recording", gdbpy_start_recording, METH_VARARGS,
2031 "start_recording ([method] [, format]) -> gdb.Record.\n\
2032Start recording with the given method. If no method is given, will fall back\n\
2033to the system default method. If no format is given, will fall back to the\n\
2034default format for the given method."},
2035 { "current_recording", gdbpy_current_recording, METH_NOARGS,
2036 "current_recording () -> gdb.Record.\n\
2037Return current recording object." },
2038 { "stop_recording", gdbpy_stop_recording, METH_NOARGS,
2039 "stop_recording () -> None.\n\
2040Stop current recording." },
2041
2c74e833
TT
2042 { "lookup_type", (PyCFunction) gdbpy_lookup_type,
2043 METH_VARARGS | METH_KEYWORDS,
2044 "lookup_type (name [, block]) -> type\n\
2045Return a Type corresponding to the given name." },
f3e9a817
PM
2046 { "lookup_symbol", (PyCFunction) gdbpy_lookup_symbol,
2047 METH_VARARGS | METH_KEYWORDS,
2048 "lookup_symbol (name [, block] [, domain]) -> (symbol, is_field_of_this)\n\
2049Return a tuple with the symbol corresponding to the given name (or None) and\n\
2050a boolean indicating if name is a field of the current implied argument\n\
2051`this' (when the current language is object-oriented)." },
6e6fbe60
DE
2052 { "lookup_global_symbol", (PyCFunction) gdbpy_lookup_global_symbol,
2053 METH_VARARGS | METH_KEYWORDS,
2054 "lookup_global_symbol (name [, domain]) -> symbol\n\
2055Return the symbol corresponding to the given name (or None)." },
6dddd6a5
DE
2056
2057 { "lookup_objfile", (PyCFunction) gdbpy_lookup_objfile,
2058 METH_VARARGS | METH_KEYWORDS,
2059 "lookup_objfile (name, [by_build_id]) -> objfile\n\
2060Look up the specified objfile.\n\
2061If by_build_id is True, the objfile is looked up by using name\n\
2062as its build id." },
2063
f3e9a817
PM
2064 { "block_for_pc", gdbpy_block_for_pc, METH_VARARGS,
2065 "Return the block containing the given pc value, or None." },
cb2e07a6
PM
2066 { "solib_name", gdbpy_solib_name, METH_VARARGS,
2067 "solib_name (Long) -> String.\n\
2068Return the name of the shared library holding a given address, or None." },
2069 { "decode_line", gdbpy_decode_line, METH_VARARGS,
2070 "decode_line (String) -> Tuple. Decode a string argument the way\n\
2071that 'break' or 'edit' does. Return a tuple containing two elements.\n\
2072The first element contains any unparsed portion of the String parameter\n\
2073(or None if the string was fully parsed). The second element contains\n\
2074a tuple that contains all the locations that match, represented as\n\
2075gdb.Symtab_and_line objects (or None)."},
57a1d736
TT
2076 { "parse_and_eval", gdbpy_parse_and_eval, METH_VARARGS,
2077 "parse_and_eval (String) -> Value.\n\
2078Parse String as an expression, evaluate it, and return the result as a Value."
2079 },
7efc75aa
SCR
2080 { "find_pc_line", gdbpy_find_pc_line, METH_VARARGS,
2081 "find_pc_line (pc) -> Symtab_and_line.\n\
2082Return the gdb.Symtab_and_line object corresponding to the pc value." },
57a1d736 2083
ca5c20b6
PM
2084 { "post_event", gdbpy_post_event, METH_VARARGS,
2085 "Post an event into gdb's event loop." },
2086
f870a310
TT
2087 { "target_charset", gdbpy_target_charset, METH_NOARGS,
2088 "target_charset () -> string.\n\
2089Return the name of the current target charset." },
2090 { "target_wide_charset", gdbpy_target_wide_charset, METH_NOARGS,
2091 "target_wide_charset () -> string.\n\
2092Return the name of the current target wide charset." },
d8ae99a7
PM
2093 { "rbreak", (PyCFunction) gdbpy_rbreak, METH_VARARGS | METH_KEYWORDS,
2094 "rbreak (Regex) -> List.\n\
2095Return a Tuple containing gdb.Breakpoint objects that match the given Regex." },
07ca107c
DE
2096 { "string_to_argv", gdbpy_string_to_argv, METH_VARARGS,
2097 "string_to_argv (String) -> Array.\n\
2098Parse String and return an argv-like array.\n\
2099Arguments are separate by spaces and may be quoted."
2100 },
99c3dc11 2101 { "write", (PyCFunction)gdbpy_write, METH_VARARGS | METH_KEYWORDS,
12453b93 2102 "Write a string using gdb's filtered stream." },
99c3dc11 2103 { "flush", (PyCFunction)gdbpy_flush, METH_VARARGS | METH_KEYWORDS,
12453b93 2104 "Flush gdb's filtered stdout stream." },
595939de
PM
2105 { "selected_thread", gdbpy_selected_thread, METH_NOARGS,
2106 "selected_thread () -> gdb.InferiorThread.\n\
2107Return the selected thread object." },
2aa48337
KP
2108 { "selected_inferior", gdbpy_selected_inferior, METH_NOARGS,
2109 "selected_inferior () -> gdb.Inferior.\n\
2110Return the selected inferior object." },
595939de
PM
2111 { "inferiors", gdbpy_inferiors, METH_NOARGS,
2112 "inferiors () -> (gdb.Inferior, ...).\n\
2113Return a tuple containing all inferiors." },
e0f3fd7c
TT
2114
2115 { "invalidate_cached_frames", gdbpy_invalidate_cached_frames, METH_NOARGS,
2116 "invalidate_cached_frames () -> None.\n\
2117Invalidate any cached frame objects in gdb.\n\
2118Intended for internal use only." },
2119
12453b93
TJB
2120 {NULL, NULL, 0, NULL}
2121};
2122
9a27f2c6 2123#ifdef IS_PY3K
bcabf420 2124struct PyModuleDef python_GdbModuleDef =
9a27f2c6
PK
2125{
2126 PyModuleDef_HEAD_INIT,
2127 "_gdb",
2128 NULL,
256458bc 2129 -1,
02e62830 2130 python_GdbMethods,
9a27f2c6
PK
2131 NULL,
2132 NULL,
2133 NULL,
2134 NULL
2135};
2136#endif
7d221d74
TT
2137
2138/* Define all the event objects. */
2139#define GDB_PY_DEFINE_EVENT_TYPE(name, py_name, doc, base) \
2140 PyTypeObject name##_event_object_type \
2141 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("event_object") \
2142 = { \
2143 PyVarObject_HEAD_INIT (NULL, 0) \
2144 "gdb." py_name, /* tp_name */ \
2145 sizeof (event_object), /* tp_basicsize */ \
2146 0, /* tp_itemsize */ \
2147 evpy_dealloc, /* tp_dealloc */ \
2148 0, /* tp_print */ \
2149 0, /* tp_getattr */ \
2150 0, /* tp_setattr */ \
2151 0, /* tp_compare */ \
2152 0, /* tp_repr */ \
2153 0, /* tp_as_number */ \
2154 0, /* tp_as_sequence */ \
2155 0, /* tp_as_mapping */ \
2156 0, /* tp_hash */ \
2157 0, /* tp_call */ \
2158 0, /* tp_str */ \
2159 0, /* tp_getattro */ \
2160 0, /* tp_setattro */ \
2161 0, /* tp_as_buffer */ \
2162 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ \
2163 doc, /* tp_doc */ \
2164 0, /* tp_traverse */ \
2165 0, /* tp_clear */ \
2166 0, /* tp_richcompare */ \
2167 0, /* tp_weaklistoffset */ \
2168 0, /* tp_iter */ \
2169 0, /* tp_iternext */ \
2170 0, /* tp_methods */ \
2171 0, /* tp_members */ \
2172 0, /* tp_getset */ \
2173 &base, /* tp_base */ \
2174 0, /* tp_dict */ \
2175 0, /* tp_descr_get */ \
2176 0, /* tp_descr_set */ \
2177 0, /* tp_dictoffset */ \
2178 0, /* tp_init */ \
2179 0 /* tp_alloc */ \
2180 };
2181#include "py-event-types.def"
2182#undef GDB_PY_DEFINE_EVENT_TYPE
2183
12453b93 2184#endif /* HAVE_PYTHON */
This page took 1.094386 seconds and 4 git commands to generate.