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