* mi/mi-cmd-break.c: Enforce coding standards, fix comments.
[deliverable/binutils-gdb.git] / gdb / mi / mi-parse.c
1 /* MI Command Set - MI parser.
2
3 Copyright (C) 2000-2002, 2007-2012 Free Software Foundation, Inc.
4
5 Contributed by Cygnus Solutions (a Red Hat company).
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
11 the Free Software Foundation; either version 3 of the License, or
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
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 #include "defs.h"
23 #include "mi-cmds.h"
24 #include "mi-parse.h"
25 #include "charset.h"
26
27 #include <ctype.h>
28 #include "gdb_string.h"
29
30 /* Like parse_escape, but leave the results as a host char, not a
31 target char. */
32
33 static int
34 mi_parse_escape (char **string_ptr)
35 {
36 int c = *(*string_ptr)++;
37
38 switch (c)
39 {
40 case '\n':
41 return -2;
42 case 0:
43 (*string_ptr)--;
44 return 0;
45
46 case '0':
47 case '1':
48 case '2':
49 case '3':
50 case '4':
51 case '5':
52 case '6':
53 case '7':
54 {
55 int i = host_hex_value (c);
56 int count = 0;
57
58 while (++count < 3)
59 {
60 c = (**string_ptr);
61 if (isdigit (c) && c != '8' && c != '9')
62 {
63 (*string_ptr)++;
64 i *= 8;
65 i += host_hex_value (c);
66 }
67 else
68 {
69 break;
70 }
71 }
72 return i;
73 }
74
75 case 'a':
76 c = '\a';
77 break;
78 case 'b':
79 c = '\b';
80 break;
81 case 'f':
82 c = '\f';
83 break;
84 case 'n':
85 c = '\n';
86 break;
87 case 'r':
88 c = '\r';
89 break;
90 case 't':
91 c = '\t';
92 break;
93 case 'v':
94 c = '\v';
95 break;
96
97 default:
98 break;
99 }
100
101 return c;
102 }
103
104 static void
105 mi_parse_argv (char *args, struct mi_parse *parse)
106 {
107 char *chp = args;
108 int argc = 0;
109 char **argv = xmalloc ((argc + 1) * sizeof (char *));
110
111 argv[argc] = NULL;
112 while (1)
113 {
114 char *arg;
115
116 /* Skip leading white space. */
117 while (isspace (*chp))
118 chp++;
119 /* Three possibilities: EOF, quoted string, or other text. */
120 switch (*chp)
121 {
122 case '\0':
123 parse->argv = argv;
124 parse->argc = argc;
125 return;
126 case '"':
127 {
128 /* A quoted string. */
129 int len;
130 char *start = chp + 1;
131
132 /* Determine the buffer size. */
133 chp = start;
134 len = 0;
135 while (*chp != '\0' && *chp != '"')
136 {
137 if (*chp == '\\')
138 {
139 chp++;
140 if (mi_parse_escape (&chp) <= 0)
141 {
142 /* Do not allow split lines or "\000". */
143 freeargv (argv);
144 return;
145 }
146 }
147 else
148 chp++;
149 len++;
150 }
151 /* Insist on a closing quote. */
152 if (*chp != '"')
153 {
154 freeargv (argv);
155 return;
156 }
157 /* Insist on trailing white space. */
158 if (chp[1] != '\0' && !isspace (chp[1]))
159 {
160 freeargv (argv);
161 return;
162 }
163 /* Create the buffer and copy characters in. */
164 arg = xmalloc ((len + 1) * sizeof (char));
165 chp = start;
166 len = 0;
167 while (*chp != '\0' && *chp != '"')
168 {
169 if (*chp == '\\')
170 {
171 chp++;
172 arg[len] = mi_parse_escape (&chp);
173 }
174 else
175 arg[len] = *chp++;
176 len++;
177 }
178 arg[len] = '\0';
179 chp++; /* That closing quote. */
180 break;
181 }
182 default:
183 {
184 /* An unquoted string. Accumulate all non-blank
185 characters into a buffer. */
186 int len;
187 char *start = chp;
188
189 while (*chp != '\0' && !isspace (*chp))
190 {
191 chp++;
192 }
193 len = chp - start;
194 arg = xmalloc ((len + 1) * sizeof (char));
195 strncpy (arg, start, len);
196 arg[len] = '\0';
197 break;
198 }
199 }
200 /* Append arg to argv. */
201 argv = xrealloc (argv, (argc + 2) * sizeof (char *));
202 argv[argc++] = arg;
203 argv[argc] = NULL;
204 }
205 }
206
207 void
208 mi_parse_free (struct mi_parse *parse)
209 {
210 if (parse == NULL)
211 return;
212 if (parse->command != NULL)
213 xfree (parse->command);
214 if (parse->token != NULL)
215 xfree (parse->token);
216 if (parse->args != NULL)
217 xfree (parse->args);
218 if (parse->argv != NULL)
219 freeargv (parse->argv);
220 xfree (parse);
221 }
222
223 /* A cleanup that calls mi_parse_free. */
224
225 static void
226 mi_parse_cleanup (void *arg)
227 {
228 mi_parse_free (arg);
229 }
230
231 struct mi_parse *
232 mi_parse (char *cmd, char **token)
233 {
234 char *chp;
235 struct mi_parse *parse = XMALLOC (struct mi_parse);
236 struct cleanup *cleanup;
237
238 memset (parse, 0, sizeof (*parse));
239 parse->all = 0;
240 parse->thread_group = -1;
241 parse->thread = -1;
242 parse->frame = -1;
243
244 cleanup = make_cleanup (mi_parse_cleanup, parse);
245
246 /* Before starting, skip leading white space. */
247 while (isspace (*cmd))
248 cmd++;
249
250 /* Find/skip any token and then extract it. */
251 for (chp = cmd; *chp >= '0' && *chp <= '9'; chp++)
252 ;
253 *token = xmalloc (chp - cmd + 1);
254 memcpy (*token, cmd, (chp - cmd));
255 (*token)[chp - cmd] = '\0';
256
257 /* This wasn't a real MI command. Return it as a CLI_COMMAND. */
258 if (*chp != '-')
259 {
260 while (isspace (*chp))
261 chp++;
262 parse->command = xstrdup (chp);
263 parse->op = CLI_COMMAND;
264
265 discard_cleanups (cleanup);
266
267 return parse;
268 }
269
270 /* Extract the command. */
271 {
272 char *tmp = chp + 1; /* discard ``-'' */
273
274 for (; *chp && !isspace (*chp); chp++)
275 ;
276 parse->command = xmalloc (chp - tmp + 1);
277 memcpy (parse->command, tmp, chp - tmp);
278 parse->command[chp - tmp] = '\0';
279 }
280
281 /* Find the command in the MI table. */
282 parse->cmd = mi_lookup (parse->command);
283 if (parse->cmd == NULL)
284 error (_("Undefined MI command: %s"), parse->command);
285
286 /* Skip white space following the command. */
287 while (isspace (*chp))
288 chp++;
289
290 /* Parse the --thread and --frame options, if present. At present,
291 some important commands, like '-break-*' are implemented by
292 forwarding to the CLI layer directly. We want to parse --thread
293 and --frame here, so as not to leave those option in the string
294 that will be passed to CLI. */
295 for (;;)
296 {
297 const char *option;
298 size_t as = sizeof ("--all ") - 1;
299 size_t tgs = sizeof ("--thread-group ") - 1;
300 size_t ts = sizeof ("--thread ") - 1;
301 size_t fs = sizeof ("--frame ") - 1;
302
303 if (strncmp (chp, "--all ", as) == 0)
304 {
305 parse->all = 1;
306 chp += as;
307 }
308 /* See if --all is the last token in the input. */
309 if (strcmp (chp, "--all") == 0)
310 {
311 parse->all = 1;
312 chp += strlen (chp);
313 }
314 if (strncmp (chp, "--thread-group ", tgs) == 0)
315 {
316 option = "--thread-group";
317 if (parse->thread_group != -1)
318 error (_("Duplicate '--thread-group' option"));
319 chp += tgs;
320 if (*chp != 'i')
321 error (_("Invalid thread group id"));
322 chp += 1;
323 parse->thread_group = strtol (chp, &chp, 10);
324 }
325 else if (strncmp (chp, "--thread ", ts) == 0)
326 {
327 option = "--thread";
328 if (parse->thread != -1)
329 error (_("Duplicate '--thread' option"));
330 chp += ts;
331 parse->thread = strtol (chp, &chp, 10);
332 }
333 else if (strncmp (chp, "--frame ", fs) == 0)
334 {
335 option = "--frame";
336 if (parse->frame != -1)
337 error (_("Duplicate '--frame' option"));
338 chp += fs;
339 parse->frame = strtol (chp, &chp, 10);
340 }
341 else
342 break;
343
344 if (*chp != '\0' && !isspace (*chp))
345 error (_("Invalid value for the '%s' option"), option);
346 while (isspace (*chp))
347 chp++;
348 }
349
350 /* For new argv commands, attempt to return the parsed argument
351 list. */
352 if (parse->cmd->argv_func != NULL)
353 {
354 mi_parse_argv (chp, parse);
355 if (parse->argv == NULL)
356 error (_("Problem parsing arguments: %s %s"), parse->command, chp);
357 }
358
359 /* FIXME: DELETE THIS */
360 /* For CLI commands, also return the remainder of the
361 command line as a single string. */
362 if (parse->cmd->cli.cmd != NULL)
363 parse->args = xstrdup (chp);
364
365 discard_cleanups (cleanup);
366
367 /* Fully parsed, flag as an MI command. */
368 parse->op = MI_COMMAND;
369 return parse;
370 }
This page took 0.042281 seconds and 4 git commands to generate.