GDB (xrefs)
Loading...
Searching...
No Matches
py-auto-load.c
Go to the documentation of this file.
1/* GDB routines for supporting auto-loaded scripts.
2
3 Copyright (C) 2010-2023 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
21#include "top.h"
22#include "gdbcmd.h"
23#include "objfiles.h"
24#include "python.h"
25#include "auto-load.h"
26#include "python-internal.h"
27
28/* User-settable option to enable/disable auto-loading of Python scripts:
29 set auto-load python-scripts on|off
30 This is true if we should auto-load associated Python scripts when an
31 objfile is opened, false otherwise. */
32static bool auto_load_python_scripts = true;
33
34/* "show" command for the auto_load_python_scripts configuration variable. */
35
36static void
37show_auto_load_python_scripts (struct ui_file *file, int from_tty,
38 struct cmd_list_element *c, const char *value)
39{
40 gdb_printf (file, _("Auto-loading of Python scripts is %s.\n"), value);
41}
42
43/* See python-internal.h. */
44
45bool
50
51/* Wrapper for "info auto-load python-scripts". */
52
53static void
54info_auto_load_python_scripts (const char *pattern, int from_tty)
55{
58}
59
62{
63 add_setshow_boolean_cmd ("python-scripts", class_support,
65Set the debugger's behaviour regarding auto-loaded Python scripts."), _("\
66Show the debugger's behaviour regarding auto-loaded Python scripts."), _("\
67If enabled, auto-loaded Python scripts are loaded when the debugger reads\n\
68an executable or shared library.\n\
69This options has security implications for untrusted inferiors."),
73
74 set_show_commands auto_load_scripts_cmds
75 = add_setshow_boolean_cmd ("auto-load-scripts", class_support,
77Set the debugger's behaviour regarding auto-loaded Python scripts, "
78 "deprecated."),
79 _("\
80Show the debugger's behaviour regarding auto-loaded Python scripts, "
81 "deprecated."),
83 &setlist, &showlist);
84 deprecate_cmd (auto_load_scripts_cmds.set, "set auto-load python-scripts");
85 deprecate_cmd (auto_load_scripts_cmds.show, "show auto-load python-scripts");
86
88 _("Print the list of automatically loaded Python scripts.\n\
89Usage: info auto-load python-scripts [REGEXP]"),
91
92 cmd_list_element *info_auto_load_scripts_cmd
93 = add_info ("auto-load-scripts", info_auto_load_python_scripts, _("\
94Print the list of automatically loaded Python scripts, deprecated."));
95 deprecate_cmd (info_auto_load_scripts_cmd, "info auto-load python-scripts");
96
97 return 0;
98}
99
struct cmd_list_element ** auto_load_info_cmdlist_get(void)
Definition auto-load.c:1492
void auto_load_info_scripts(program_space *pspace, const char *pattern, int from_tty, const extension_language_defn *language)
Definition auto-load.c:1247
struct cmd_list_element ** auto_load_set_cmdlist_get(void)
Definition auto-load.c:1433
struct cmd_list_element ** auto_load_show_cmdlist_get(void)
Definition auto-load.c:1450
struct cmd_list_element * showlist
Definition cli-cmds.c:127
struct cmd_list_element * setlist
Definition cli-cmds.c:119
struct cmd_list_element * add_cmd(const char *name, enum command_class theclass, const char *doc, struct cmd_list_element **list)
Definition cli-decode.c:233
struct cmd_list_element * deprecate_cmd(struct cmd_list_element *cmd, const char *replacement)
Definition cli-decode.c:280
set_show_commands add_setshow_boolean_cmd(const char *name, enum command_class theclass, bool *var, const char *set_doc, const char *show_doc, const char *help_doc, cmd_func_ftype *set_func, show_value_ftype *show_func, struct cmd_list_element **set_list, struct cmd_list_element **show_list)
Definition cli-decode.c:809
struct cmd_list_element * add_info(const char *name, cmd_simple_func_ftype *fun, const char *doc)
@ class_support
Definition command.h:58
@ class_info
Definition command.h:59
struct program_space * current_program_space
Definition progspace.c:40
bool gdbpy_auto_load_enabled(const struct extension_language_defn *extlang)
static int CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION gdbpy_initialize_auto_load(void)
static void show_auto_load_python_scripts(struct ui_file *file, int from_tty, struct cmd_list_element *c, const char *value)
static bool auto_load_python_scripts
static void info_auto_load_python_scripts(const char *pattern, int from_tty)
#define CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION
#define GDBPY_INITIALIZE_FILE(INIT,...)
const struct extension_language_defn extension_language_python
Definition python.c:179
cmd_list_element * set
Definition command.h:422
cmd_list_element * show
Definition command.h:422
Definition value.h:130
void gdb_printf(struct ui_file *stream, const char *format,...)
Definition utils.c:1886