constify error_no_arg
[deliverable/binutils-gdb.git] / gdb / interps.h
CommitLineData
4a8f6654
AC
1/* Manages interpreters for GDB, the GNU debugger.
2
ecd75fc8 3 Copyright (C) 2000-2014 Free Software Foundation, Inc.
4a8f6654
AC
4
5 Written by Jim Ingham <jingham@apple.com> of Apple Computer, Inc.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
4a8f6654
AC
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
1777feb0 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
4a8f6654
AC
21
22#ifndef INTERPS_H
23#define INTERPS_H
24
c1043fc2
AC
25#include "exceptions.h"
26
4a8f6654
AC
27struct ui_out;
28struct interp;
29
30extern int interp_resume (struct interp *interp);
31extern int interp_suspend (struct interp *interp);
71fff37b
AC
32extern struct gdb_exception interp_exec (struct interp *interp,
33 const char *command);
4a8f6654
AC
34extern int interp_quiet_p (struct interp *interp);
35
4801a9a3 36typedef void *(interp_init_ftype) (struct interp *self, int top_level);
4a8f6654
AC
37typedef int (interp_resume_ftype) (void *data);
38typedef int (interp_suspend_ftype) (void *data);
71fff37b
AC
39typedef struct gdb_exception (interp_exec_ftype) (void *data,
40 const char *command);
1cdac4ef 41typedef void (interp_command_loop_ftype) (void *data);
4801a9a3 42typedef struct ui_out *(interp_ui_out_ftype) (struct interp *self);
4a8f6654 43
37ce89eb
SS
44typedef int (interp_set_logging_ftype) (struct interp *self, int start_log,
45 struct ui_file *out,
46 struct ui_file *logfile);
47
4a8f6654
AC
48struct interp_procs
49{
50 interp_init_ftype *init_proc;
51 interp_resume_ftype *resume_proc;
52 interp_suspend_ftype *suspend_proc;
53 interp_exec_ftype *exec_proc;
4801a9a3
PA
54
55 /* Returns the ui_out currently used to collect results for this
56 interpreter. It can be a formatter for stdout, as is the case
57 for the console & mi outputs, or it might be a result
58 formatter. */
59 interp_ui_out_ftype *ui_out_proc;
60
37ce89eb
SS
61 /* Provides a hook for interpreters to do any additional
62 setup/cleanup that they might need when logging is enabled or
63 disabled. */
64 interp_set_logging_ftype *set_logging_proc;
65
4a8f6654
AC
66 interp_command_loop_ftype *command_loop_proc;
67};
68
4801a9a3 69extern struct interp *interp_new (const char *name, const struct interp_procs *procs);
4a8f6654 70extern void interp_add (struct interp *interp);
683f2885 71extern int interp_set (struct interp *interp, int top_level);
4a8f6654
AC
72extern struct interp *interp_lookup (const char *name);
73extern struct ui_out *interp_ui_out (struct interp *interp);
4801a9a3
PA
74extern void *interp_data (struct interp *interp);
75extern const char *interp_name (struct interp *interp);
c41535fd 76extern struct interp *interp_set_temp (const char *name);
4a8f6654
AC
77
78extern int current_interp_named_p (const char *name);
92bcb5f9 79
4a8f6654 80extern void current_interp_command_loop (void);
37ce89eb
SS
81
82/* Call this function to give the current interpreter an opportunity
83 to do any special handling of streams when logging is enabled or
84 disabled. START_LOG is 1 when logging is starting, 0 when it ends,
85 and OUT is the stream for the log file; it will be NULL when
86 logging is ending. LOGFILE is non-NULL if the output streams
87 are to be tees, with the log file as one of the outputs. */
88
89extern int current_interp_set_logging (int start_log, struct ui_file *out,
90 struct ui_file *logfile);
91
683f2885
VP
92/* Returns opaque data associated with the top-level interpreter. */
93extern void *top_level_interpreter_data (void);
79a68887 94extern struct interp *top_level_interpreter (void);
4a8f6654 95
17b2616c
PA
96extern struct interp *command_interp (void);
97
b4a14fd0
PA
98/* True if the current interpreter is in async mode, false if in sync
99 mode. If in sync mode, running a synchronous execution command
100 (with execute_command, e.g, "next") will not return until the
101 command is finished. If in async mode, then running a synchronous
102 command returns right after resuming the target. Waiting for the
103 command's completion is later done on the top event loop (using
104 continuations). */
105extern int interpreter_async;
106
b9362cc7 107extern void clear_interpreter_hooks (void);
4a8f6654
AC
108
109/* well-known interpreters */
110#define INTERP_CONSOLE "console"
111#define INTERP_MI1 "mi1"
2fcf52f0
AC
112#define INTERP_MI2 "mi2"
113#define INTERP_MI3 "mi3"
4a8f6654 114#define INTERP_MI "mi"
226361c4 115#define INTERP_TUI "tui"
cc4349ed 116#define INTERP_INSIGHT "insight"
4a8f6654
AC
117
118#endif
This page took 0.91855 seconds and 4 git commands to generate.