Commit | Line | Data |
---|---|---|
c906108c SS |
1 | /* Generic support for remote debugging interfaces. |
2 | ||
197e01b6 | 3 | Copyright (C) 1993, 1994, 2000, 2001 Free Software Foundation, Inc. |
c906108c | 4 | |
c5aa993b | 5 | This file is part of GDB. |
c906108c | 6 | |
c5aa993b JM |
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 2 of the License, or | |
10 | (at your option) any later version. | |
c906108c | 11 | |
c5aa993b JM |
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. | |
c906108c | 16 | |
c5aa993b JM |
17 | You should have received a copy of the GNU General Public License |
18 | along with this program; if not, write to the Free Software | |
197e01b6 EZ |
19 | Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 | Boston, MA 02110-1301, USA. */ | |
c906108c SS |
21 | |
22 | #ifndef REMOTE_UTILS_H | |
23 | #define REMOTE_UTILS_H | |
24 | ||
da3331ec AC |
25 | struct target_ops; |
26 | ||
c906108c | 27 | #include "target.h" |
ba3a8523 | 28 | struct serial; |
c906108c SS |
29 | |
30 | /* Stuff that should be shared (and handled consistently) among the various | |
31 | remote targets. */ | |
32 | ||
c5aa993b JM |
33 | struct _sr_settings |
34 | { | |
35 | unsigned int timeout; | |
c906108c | 36 | |
c5aa993b | 37 | int retries; |
c906108c | 38 | |
c5aa993b | 39 | char *device; |
ba3a8523 | 40 | struct serial *desc; |
c906108c | 41 | |
c5aa993b | 42 | }; |
c906108c SS |
43 | |
44 | extern struct _sr_settings sr_settings; | |
45 | ||
46 | /* get and set debug value. */ | |
47 | #define sr_get_debug() (remote_debug) | |
48 | #define sr_set_debug(newval) (remote_debug = (newval)) | |
49 | ||
50 | /* get and set timeout. */ | |
51 | #define sr_get_timeout() (sr_settings.timeout) | |
52 | #define sr_set_timeout(newval) (sr_settings.timeout = (newval)) | |
53 | ||
54 | /* get and set device. */ | |
55 | #define sr_get_device() (sr_settings.device) | |
56 | #define sr_set_device(newval) \ | |
57 | { \ | |
338d7c5c | 58 | if (sr_settings.device) xfree (sr_settings.device); \ |
c906108c SS |
59 | sr_settings.device = (newval); \ |
60 | } | |
61 | ||
62 | /* get and set descriptor value. */ | |
63 | #define sr_get_desc() (sr_settings.desc) | |
64 | #define sr_set_desc(newval) (sr_settings.desc = (newval)) | |
65 | ||
66 | /* get and set retries. */ | |
67 | #define sr_get_retries() (sr_settings.retries) | |
68 | #define sr_set_retries(newval) (sr_settings.retries = (newval)) | |
69 | ||
70 | #define sr_is_open() (sr_settings.desc != NULL) | |
71 | ||
72 | #define sr_check_open() { if (!sr_is_open()) \ | |
8a3fe4f8 | 73 | error (_("Remote device not open")); } |
c906108c | 74 | |
c5aa993b JM |
75 | struct gr_settings |
76 | { | |
c5aa993b JM |
77 | char *prompt; |
78 | struct target_ops *ops; | |
507f3c78 | 79 | int (*clear_all_breakpoints) (void); |
507f3c78 | 80 | void (*checkin) (void); |
c5aa993b | 81 | }; |
c906108c SS |
82 | |
83 | extern struct gr_settings *gr_settings; | |
84 | ||
c906108c SS |
85 | /* get and set prompt. */ |
86 | #define gr_get_prompt() (gr_settings->prompt) | |
87 | #define gr_set_prompt(newval) (gr_settings->prompt = (newval)) | |
88 | ||
89 | /* get and set ops. */ | |
90 | #define gr_get_ops() (gr_settings->ops) | |
91 | #define gr_set_ops(newval) (gr_settings->ops = (newval)) | |
92 | ||
93 | #define gr_clear_all_breakpoints() ((gr_settings->clear_all_breakpoints)()) | |
94 | #define gr_checkin() ((gr_settings->checkin)()) | |
95 | ||
96 | /* Keep discarding input until we see the prompt. | |
97 | ||
98 | The convention for dealing with the prompt is that you | |
99 | o give your command | |
100 | o *then* wait for the prompt. | |
101 | ||
102 | Thus the last thing that a procedure does with the serial line | |
103 | will be an gr_expect_prompt(). Exception: resume does not | |
104 | wait for the prompt, because the terminal is being handed over | |
105 | to the inferior. However, the next thing which happens after that | |
106 | is a bug_wait which does wait for the prompt. | |
107 | Note that this includes abnormal exit, e.g. error(). This is | |
108 | necessary to prevent getting into states from which we can't | |
109 | recover. */ | |
110 | ||
111 | #define gr_expect_prompt() sr_expect(gr_get_prompt()) | |
112 | ||
a14ed312 KB |
113 | int gr_multi_scan (char *list[], int passthrough); |
114 | int sr_get_hex_digit (int ignore_space); | |
115 | int sr_pollchar (void); | |
116 | int sr_readchar (void); | |
117 | int sr_timed_read (char *buf, int n); | |
118 | long sr_get_hex_word (void); | |
119 | void gr_close (int quitting); | |
120 | void gr_create_inferior (char *execfile, char *args, char **env); | |
121 | void gr_detach (char *args, int from_tty); | |
122 | void gr_files_info (struct target_ops *ops); | |
123 | void gr_generic_checkin (void); | |
124 | void gr_kill (void); | |
125 | void gr_mourn (void); | |
126 | void gr_prepare_to_store (void); | |
a14ed312 KB |
127 | void sr_expect (char *string); |
128 | void sr_get_hex_byte (char *byt); | |
129 | void sr_scan_args (char *proto, char *args); | |
130 | void sr_write (char *a, int l); | |
131 | void sr_write_cr (char *s); | |
132 | ||
133 | void gr_open (char *args, int from_tty, struct gr_settings *gr_settings); | |
134 | void gr_load_image (char *, int from_tty); | |
c906108c | 135 | #endif /* REMOTE_UTILS_H */ |