]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/auto-load.h
Move .debug_gdb_script processing to auto-load.c.
[thirdparty/binutils-gdb.git] / gdb / auto-load.h
1 /* GDB routines for supporting auto-loaded scripts.
2
3 Copyright (C) 2012-2013 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 #ifndef AUTO_LOAD_H
21 #define AUTO_LOAD_H 1
22
23 struct program_space;
24
25 struct script_language
26 {
27 /* The name of the language, lowercase. */
28 const char *name;
29
30 /* The suffix added to objfiles to get their auto-load script.
31 E.g., "-gdb.py". */
32 const char *suffix;
33
34 /* Returns non-zero if auto-loading scripts in this language is enabled. */
35 int (*auto_load_enabled) (void);
36
37 /* Worker routine to load the script. It has already been opened and
38 deemed safe to load. */
39 void (*source_script_for_objfile) (struct objfile *objfile, FILE *file,
40 const char *filename);
41 };
42
43 extern int global_auto_load;
44
45 extern int auto_load_local_gdbinit;
46 extern char *auto_load_local_gdbinit_pathname;
47 extern int auto_load_local_gdbinit_loaded;
48
49 extern struct auto_load_pspace_info *
50 get_auto_load_pspace_data_for_loading (struct program_space *pspace);
51 extern int maybe_add_script (struct auto_load_pspace_info *pspace_info,
52 int loaded, const char *name,
53 const char *full_path,
54 const struct script_language *language);
55 extern void load_auto_scripts_for_objfile (struct objfile *objfile);
56 extern int
57 script_not_found_warning_print (struct auto_load_pspace_info *pspace_info);
58 extern char auto_load_info_scripts_pattern_nl[];
59 extern void auto_load_info_scripts (char *pattern, int from_tty,
60 const struct script_language *language);
61
62 extern struct cmd_list_element **auto_load_set_cmdlist_get (void);
63 extern struct cmd_list_element **auto_load_show_cmdlist_get (void);
64 extern struct cmd_list_element **auto_load_info_cmdlist_get (void);
65
66 extern int file_is_auto_load_safe (const char *filename,
67 const char *debug_fmt, ...);
68
69 #endif /* AUTO_LOAD_H */