gdb: rename cmd_list_element::prefixlist to subcommands
[deliverable/binutils-gdb.git] / gdb / python / py-cmd.c
CommitLineData
d8906c6f
TJB
1/* gdb commands implemented in Python
2
3666a048 3 Copyright (C) 2008-2021 Free Software Foundation, Inc.
d8906c6f
TJB
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
21#include "defs.h"
d452c4bc 22#include "arch-utils.h"
d8906c6f 23#include "value.h"
d8906c6f
TJB
24#include "python-internal.h"
25#include "charset.h"
26#include "gdbcmd.h"
27#include "cli/cli-decode.h"
28#include "completer.h"
d452c4bc 29#include "language.h"
d8906c6f
TJB
30
31/* Struct representing built-in completion types. */
32struct cmdpy_completer
33{
a121b7c1
PA
34 /* Python symbol name. */
35 const char *name;
d8906c6f 36 /* Completion function. */
625e8578 37 completer_ftype *completer;
d8906c6f
TJB
38};
39
75ddda77 40static const struct cmdpy_completer completers[] =
d8906c6f
TJB
41{
42 { "COMPLETE_NONE", noop_completer },
43 { "COMPLETE_FILENAME", filename_completer },
44 { "COMPLETE_LOCATION", location_completer },
45 { "COMPLETE_COMMAND", command_completer },
78b13106 46 { "COMPLETE_SYMBOL", symbol_completer },
92e32e33 47 { "COMPLETE_EXPRESSION", expression_completer },
d8906c6f
TJB
48};
49
50#define N_COMPLETERS (sizeof (completers) / sizeof (completers[0]))
51
52/* A gdb command. For the time being only ordinary commands (not
53 set/show commands) are allowed. */
54struct cmdpy_object
55{
56 PyObject_HEAD
57
58 /* The corresponding gdb command object, or NULL if the command is
59 no longer installed. */
60 struct cmd_list_element *command;
61
62 /* A prefix command requires storage for a list of its sub-commands.
63 A pointer to this is passed to add_prefix_command, and to add_cmd
64 for sub-commands of that prefix. If this Command is not a prefix
65 command, then this field is unused. */
66 struct cmd_list_element *sub_list;
67};
68
e36122e9 69extern PyTypeObject cmdpy_object_type
62eec1a5 70 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("cmdpy_object");
d8906c6f 71
d8906c6f
TJB
72/* Constants used by this module. */
73static PyObject *invoke_cst;
74static PyObject *complete_cst;
75
76\f
77
78/* Python function which wraps dont_repeat. */
79static PyObject *
80cmdpy_dont_repeat (PyObject *self, PyObject *args)
81{
82 dont_repeat ();
83 Py_RETURN_NONE;
84}
85
86\f
87
88/* Called if the gdb cmd_list_element is destroyed. */
07ca107c 89
d8906c6f
TJB
90static void
91cmdpy_destroyer (struct cmd_list_element *self, void *context)
92{
6ba0cd40 93 gdbpy_enter enter_py (get_current_arch (), current_language);
d8906c6f
TJB
94
95 /* Release our hold on the command object. */
88b6faea 96 gdbpy_ref<cmdpy_object> cmd ((cmdpy_object *) context);
d8906c6f 97 cmd->command = NULL;
d8906c6f
TJB
98}
99
100/* Called by gdb to invoke the command. */
07ca107c 101
d8906c6f 102static void
a121b7c1 103cmdpy_function (struct cmd_list_element *command,
95a6b0a1 104 const char *args, int from_tty)
d8906c6f
TJB
105{
106 cmdpy_object *obj = (cmdpy_object *) get_cmd_context (command);
d8906c6f 107
12a5cedd 108 gdbpy_enter enter_py (get_current_arch (), current_language);
d8906c6f
TJB
109
110 if (! obj)
111 error (_("Invalid invocation of Python command object."));
112 if (! PyObject_HasAttr ((PyObject *) obj, invoke_cst))
113 {
14b42fc4 114 if (obj->command->subcommands != nullptr)
d8906c6f
TJB
115 {
116 /* A prefix command does not need an invoke method. */
d8906c6f
TJB
117 return;
118 }
119 error (_("Python command object missing 'invoke' method."));
120 }
121
122 if (! args)
123 args = "";
7780f186
TT
124 gdbpy_ref<> argobj (PyUnicode_Decode (args, strlen (args), host_charset (),
125 NULL));
12a5cedd 126 if (argobj == NULL)
8dc78533
JK
127 {
128 gdbpy_print_stack ();
129 error (_("Could not convert arguments to Python string."));
130 }
d8906c6f 131
7c66fffc
TT
132 gdbpy_ref<> ttyobj
133 = gdbpy_ref<>::new_reference (from_tty ? Py_True : Py_False);
7780f186
TT
134 gdbpy_ref<> result (PyObject_CallMethodObjArgs ((PyObject *) obj, invoke_cst,
135 argobj.get (), ttyobj.get (),
136 NULL));
07ca107c 137
12a5cedd 138 if (result == NULL)
2b4ad2fe 139 gdbpy_handle_exception ();
d8906c6f
TJB
140}
141
7d793aa9
SDJ
142/* Helper function for the Python command completers (both "pure"
143 completer and brkchar handler). This function takes COMMAND, TEXT
144 and WORD and tries to call the Python method for completion with
6d62641c
SDJ
145 these arguments.
146
147 This function is usually called twice: once when we are figuring out
148 the break characters to be used, and another to perform the real
149 completion itself. The reason for this two step dance is that we
150 need to know the set of "brkchars" to use early on, before we
151 actually try to perform the completion. But if a Python command
152 supplies a "complete" method then we have to call that method
153 first: it may return as its result the kind of completion to
154 perform and that will in turn specify which brkchars to use. IOW,
155 we need the result of the "complete" method before we actually
156 perform the completion. The only situation when this function is
157 not called twice is when the user uses the "complete" command: in
158 this scenario, there is no call to determine the "brkchars".
159
160 Ideally, it would be nice to cache the result of the first call (to
161 determine the "brkchars") and return this value directly in the
162 second call (to perform the actual completion). However, due to
163 the peculiarity of the "complete" command mentioned above, it is
164 possible to put GDB in a bad state if you perform a TAB-completion
165 and then a "complete"-completion sequentially. Therefore, we just
166 recalculate everything twice for TAB-completions.
7d793aa9 167
50db9ef4
AB
168 This function returns a reference to the PyObject representing the
169 Python method call. */
7d793aa9 170
50db9ef4 171static gdbpy_ref<>
7d793aa9 172cmdpy_completer_helper (struct cmd_list_element *command,
6d62641c 173 const char *text, const char *word)
7d793aa9
SDJ
174{
175 cmdpy_object *obj = (cmdpy_object *) get_cmd_context (command);
7d793aa9 176
6d62641c
SDJ
177 if (obj == NULL)
178 error (_("Invalid invocation of Python command object."));
179 if (!PyObject_HasAttr ((PyObject *) obj, complete_cst))
7d793aa9 180 {
6d62641c
SDJ
181 /* If there is no complete method, don't error. */
182 return NULL;
183 }
7d793aa9 184
7780f186
TT
185 gdbpy_ref<> textobj (PyUnicode_Decode (text, strlen (text), host_charset (),
186 NULL));
6d62641c
SDJ
187 if (textobj == NULL)
188 error (_("Could not convert argument to Python string."));
eb3ff9a5
PA
189
190 gdbpy_ref<> wordobj;
191 if (word == NULL)
192 {
193 /* "brkchars" phase. */
7c66fffc 194 wordobj = gdbpy_ref<>::new_reference (Py_None);
eb3ff9a5
PA
195 }
196 else
197 {
198 wordobj.reset (PyUnicode_Decode (word, strlen (word), host_charset (),
199 NULL));
200 if (wordobj == NULL)
201 error (_("Could not convert argument to Python string."));
202 }
7d793aa9 203
7780f186
TT
204 gdbpy_ref<> resultobj (PyObject_CallMethodObjArgs ((PyObject *) obj,
205 complete_cst,
206 textobj.get (),
207 wordobj.get (), NULL));
905f2cca 208 if (resultobj == NULL)
6d62641c
SDJ
209 {
210 /* Just swallow errors here. */
211 PyErr_Clear ();
7d793aa9
SDJ
212 }
213
50db9ef4 214 return resultobj;
7d793aa9
SDJ
215}
216
217/* Python function called to determine the break characters of a
218 certain completer. We are only interested in knowing if the
219 completer registered by the user will return one of the integer
220 codes (see COMPLETER_* symbols). */
221
222static void
223cmdpy_completer_handle_brkchars (struct cmd_list_element *command,
eb3ff9a5 224 completion_tracker &tracker,
7d793aa9
SDJ
225 const char *text, const char *word)
226{
6ba0cd40 227 gdbpy_enter enter_py (get_current_arch (), current_language);
7d793aa9 228
50db9ef4 229 /* Calling our helper to obtain a reference to the PyObject of the Python
7d793aa9 230 function. */
50db9ef4 231 gdbpy_ref<> resultobj = cmdpy_completer_helper (command, text, word);
7d793aa9
SDJ
232
233 /* Check if there was an error. */
234 if (resultobj == NULL)
905f2cca 235 return;
7d793aa9 236
905f2cca 237 if (PyInt_Check (resultobj.get ()))
7d793aa9
SDJ
238 {
239 /* User code may also return one of the completion constants,
240 thus requesting that sort of completion. We are only
241 interested in this kind of return. */
242 long value;
243
905f2cca 244 if (!gdb_py_int_as_long (resultobj.get (), &value))
7d793aa9
SDJ
245 {
246 /* Ignore. */
247 PyErr_Clear ();
248 }
249 else if (value >= 0 && value < (long) N_COMPLETERS)
250 {
6e1dbf8c
PA
251 completer_handle_brkchars_ftype *brkchars_fn;
252
7d793aa9
SDJ
253 /* This is the core of this function. Depending on which
254 completer type the Python function returns, we have to
255 adjust the break characters accordingly. */
6e1dbf8c
PA
256 brkchars_fn = (completer_handle_brkchars_func_for_completer
257 (completers[value].completer));
eb3ff9a5 258 brkchars_fn (command, tracker, text, word);
7d793aa9
SDJ
259 }
260 }
7d793aa9
SDJ
261}
262
d8906c6f 263/* Called by gdb for command completion. */
63d97a20 264
eb3ff9a5 265static void
6f937416 266cmdpy_completer (struct cmd_list_element *command,
eb3ff9a5 267 completion_tracker &tracker,
6f937416 268 const char *text, const char *word)
d8906c6f 269{
6ba0cd40 270 gdbpy_enter enter_py (get_current_arch (), current_language);
d8906c6f 271
50db9ef4 272 /* Calling our helper to obtain a reference to the PyObject of the Python
7d793aa9 273 function. */
50db9ef4 274 gdbpy_ref<> resultobj = cmdpy_completer_helper (command, text, word);
d8906c6f 275
7d793aa9 276 /* If the result object of calling the Python function is NULL, it
eb3ff9a5 277 means that there was an error. In this case, just give up. */
7d793aa9 278 if (resultobj == NULL)
eb3ff9a5 279 return;
d8906c6f 280
905f2cca 281 if (PyInt_Check (resultobj.get ()))
d8906c6f 282 {
ba327838
TT
283 /* User code may also return one of the completion constants,
284 thus requesting that sort of completion. */
285 long value;
286
905f2cca 287 if (! gdb_py_int_as_long (resultobj.get (), &value))
ba327838
TT
288 {
289 /* Ignore. */
290 PyErr_Clear ();
291 }
292 else if (value >= 0 && value < (long) N_COMPLETERS)
eb3ff9a5 293 completers[value].completer (command, tracker, text, word);
ba327838
TT
294 }
295 else
296 {
7780f186 297 gdbpy_ref<> iter (PyObject_GetIter (resultobj.get ()));
d59b6f6c 298
ba327838 299 if (iter == NULL)
eb3ff9a5 300 return;
d8906c6f 301
eb3ff9a5 302 bool got_matches = false;
905f2cca 303 while (true)
d8906c6f 304 {
7780f186 305 gdbpy_ref<> elt (PyIter_Next (iter.get ()));
905f2cca
TT
306 if (elt == NULL)
307 break;
d59b6f6c 308
905f2cca 309 if (! gdbpy_is_string (elt.get ()))
d8906c6f
TJB
310 {
311 /* Skip problem elements. */
d8906c6f
TJB
312 continue;
313 }
9b972014 314 gdb::unique_xmalloc_ptr<char>
905f2cca 315 item (python_string_to_host_string (elt.get ()));
49c4e619 316 if (item == NULL)
8dc78533
JK
317 {
318 /* Skip problem elements. */
319 PyErr_Clear ();
320 continue;
321 }
eb3ff9a5
PA
322 tracker.add_completion (std::move (item));
323 got_matches = true;
d8906c6f 324 }
d59b6f6c 325
ba327838
TT
326 /* If we got some results, ignore problems. Otherwise, report
327 the problem. */
eb3ff9a5 328 if (got_matches && PyErr_Occurred ())
ba327838 329 PyErr_Clear ();
d8906c6f 330 }
d8906c6f
TJB
331}
332
333/* Helper for cmdpy_init which locates the command list to use and
334 pulls out the command name.
256458bc 335
63d97a20 336 NAME is the command name list. The final word in the list is the
d8906c6f
TJB
337 name of the new command. All earlier words must be existing prefix
338 commands.
339
340 *BASE_LIST is set to the final prefix command's list of
341 *sub-commands.
256458bc 342
d7b32ed3
PM
343 START_LIST is the list in which the search starts.
344
4b8cb9dd
SM
345 This function returns the name of the new command. On error sets the Python
346 error and returns NULL. */
63d97a20 347
4b8cb9dd 348gdb::unique_xmalloc_ptr<char>
63d97a20 349gdbpy_parse_command_name (const char *name,
d7b32ed3
PM
350 struct cmd_list_element ***base_list,
351 struct cmd_list_element **start_list)
d8906c6f
TJB
352{
353 struct cmd_list_element *elt;
63d97a20 354 int len = strlen (name);
d8906c6f 355 int i, lastchar;
6f937416 356 const char *prefix_text2;
d8906c6f
TJB
357
358 /* Skip trailing whitespace. */
63d97a20 359 for (i = len - 1; i >= 0 && (name[i] == ' ' || name[i] == '\t'); --i)
d8906c6f
TJB
360 ;
361 if (i < 0)
362 {
044c0f87 363 PyErr_SetString (PyExc_RuntimeError, _("No command name found."));
d8906c6f
TJB
364 return NULL;
365 }
366 lastchar = i;
367
368 /* Find first character of the final word. */
be09caf1 369 for (; i > 0 && valid_cmd_char_p (name[i - 1]); --i)
d8906c6f 370 ;
4b8cb9dd
SM
371
372 gdb::unique_xmalloc_ptr<char> result ((char *) xmalloc (lastchar - i + 2));
373 memcpy (result.get (), &name[i], lastchar - i + 1);
374 result.get ()[lastchar - i + 1] = '\0';
d8906c6f
TJB
375
376 /* Skip whitespace again. */
63d97a20 377 for (--i; i >= 0 && (name[i] == ' ' || name[i] == '\t'); --i)
d8906c6f
TJB
378 ;
379 if (i < 0)
380 {
d7b32ed3 381 *base_list = start_list;
d8906c6f
TJB
382 return result;
383 }
384
075c55e0 385 std::string prefix_text (name, i + 1);
d8906c6f 386
075c55e0 387 prefix_text2 = prefix_text.c_str ();
cf00cd6f 388 elt = lookup_cmd_1 (&prefix_text2, *start_list, NULL, NULL, 1);
d81412aa 389 if (elt == NULL || elt == CMD_LIST_AMBIGUOUS)
d8906c6f 390 {
044c0f87 391 PyErr_Format (PyExc_RuntimeError, _("Could not find command prefix %s."),
075c55e0 392 prefix_text.c_str ());
d8906c6f
TJB
393 return NULL;
394 }
395
14b42fc4 396 if (elt->subcommands)
d8906c6f 397 {
14b42fc4 398 *base_list = elt->subcommands;
d8906c6f
TJB
399 return result;
400 }
401
044c0f87 402 PyErr_Format (PyExc_RuntimeError, _("'%s' is not a prefix command."),
075c55e0 403 prefix_text.c_str ());
d8906c6f
TJB
404 return NULL;
405}
406
407/* Object initializer; sets up gdb-side structures for command.
408
cc924cad 409 Use: __init__(NAME, COMMAND_CLASS [, COMPLETER_CLASS][, PREFIX]]).
d8906c6f
TJB
410
411 NAME is the name of the command. It may consist of multiple words,
412 in which case the final word is the name of the new command, and
413 earlier words must be prefix commands.
414
cc924cad 415 COMMAND_CLASS is the kind of command. It should be one of the COMMAND_*
d8906c6f
TJB
416 constants defined in the gdb module.
417
cc924cad 418 COMPLETER_CLASS is the kind of completer. If not given, the
d8906c6f
TJB
419 "complete" method will be used. Otherwise, it should be one of the
420 COMPLETE_* constants defined in the gdb module.
421
422 If PREFIX is True, then this command is a prefix command.
423
424 The documentation for the command is taken from the doc string for
63d97a20
DE
425 the python class. */
426
d8906c6f 427static int
cc924cad 428cmdpy_init (PyObject *self, PyObject *args, PyObject *kw)
d8906c6f
TJB
429{
430 cmdpy_object *obj = (cmdpy_object *) self;
ddd49eee 431 const char *name;
d8906c6f
TJB
432 int cmdtype;
433 int completetype = -1;
434 char *docstring = NULL;
d8906c6f 435 struct cmd_list_element **cmd_list;
2adadf51
PA
436 static const char *keywords[] = { "name", "command_class", "completer_class",
437 "prefix", NULL };
2f822da5
MB
438 PyObject *is_prefix_obj = NULL;
439 bool is_prefix = false;
d8906c6f
TJB
440
441 if (obj->command)
442 {
443 /* Note: this is apparently not documented in Python. We return
444 0 for success, -1 for failure. */
445 PyErr_Format (PyExc_RuntimeError,
044c0f87 446 _("Command object already initialized."));
d8906c6f
TJB
447 return -1;
448 }
449
2adadf51
PA
450 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "si|iO",
451 keywords, &name, &cmdtype,
2f822da5 452 &completetype, &is_prefix_obj))
d8906c6f
TJB
453 return -1;
454
455 if (cmdtype != no_class && cmdtype != class_run
456 && cmdtype != class_vars && cmdtype != class_stack
457 && cmdtype != class_files && cmdtype != class_support
458 && cmdtype != class_info && cmdtype != class_breakpoint
459 && cmdtype != class_trace && cmdtype != class_obscure
2b2fbab8
TT
460 && cmdtype != class_maintenance && cmdtype != class_user
461 && cmdtype != class_tui)
d8906c6f 462 {
044c0f87 463 PyErr_Format (PyExc_RuntimeError, _("Invalid command class argument."));
d8906c6f
TJB
464 return -1;
465 }
466
467 if (completetype < -1 || completetype >= (int) N_COMPLETERS)
468 {
9a2b4c1b
MS
469 PyErr_Format (PyExc_RuntimeError,
470 _("Invalid completion type argument."));
d8906c6f
TJB
471 return -1;
472 }
473
4b8cb9dd
SM
474 gdb::unique_xmalloc_ptr<char> cmd_name
475 = gdbpy_parse_command_name (name, &cmd_list, &cmdlist);
476 if (cmd_name == nullptr)
d8906c6f
TJB
477 return -1;
478
2f822da5 479 if (is_prefix_obj != NULL)
d8906c6f 480 {
2f822da5 481 int cmp = PyObject_IsTrue (is_prefix_obj);
4b8cb9dd
SM
482 if (cmp < 0)
483 return -1;
484
485 is_prefix = cmp > 0;
d8906c6f 486 }
2f822da5 487
d8906c6f
TJB
488 if (PyObject_HasAttr (self, gdbpy_doc_cst))
489 {
7780f186 490 gdbpy_ref<> ds_obj (PyObject_GetAttr (self, gdbpy_doc_cst));
d59b6f6c 491
905f2cca 492 if (ds_obj != NULL && gdbpy_is_string (ds_obj.get ()))
8dc78533 493 {
905f2cca 494 docstring = python_string_to_host_string (ds_obj.get ()).release ();
8dc78533 495 if (docstring == NULL)
4b8cb9dd 496 return -1;
8dc78533 497 }
d8906c6f
TJB
498 }
499 if (! docstring)
500 docstring = xstrdup (_("This command is not documented."));
501
2a3c71d6 502 gdbpy_ref<> self_ref = gdbpy_ref<>::new_reference (self);
d8906c6f 503
a70b8144 504 try
d8906c6f
TJB
505 {
506 struct cmd_list_element *cmd;
507
2f822da5 508 if (is_prefix)
d8906c6f
TJB
509 {
510 int allow_unknown;
511
512 /* If we have our own "invoke" method, then allow unknown
513 sub-commands. */
514 allow_unknown = PyObject_HasAttr (self, invoke_cst);
4b8cb9dd
SM
515 cmd = add_prefix_cmd (cmd_name.get (),
516 (enum command_class) cmdtype,
d8906c6f 517 NULL, docstring, &obj->sub_list,
2f822da5 518 allow_unknown, cmd_list);
d8906c6f
TJB
519 }
520 else
4b8cb9dd 521 cmd = add_cmd (cmd_name.get (), (enum command_class) cmdtype,
d8906c6f
TJB
522 docstring, cmd_list);
523
4b8cb9dd
SM
524 /* If successful, the above takes ownership of the name, since we set
525 name_allocated, so release it. */
526 cmd_name.release ();
527
d8906c6f
TJB
528 /* There appears to be no API to set this. */
529 cmd->func = cmdpy_function;
530 cmd->destroyer = cmdpy_destroyer;
8318f3c3 531 cmd->doc_allocated = 1;
3ea16160 532 cmd->name_allocated = 1;
d8906c6f
TJB
533
534 obj->command = cmd;
2a3c71d6 535 set_cmd_context (cmd, self_ref.release ());
d8906c6f
TJB
536 set_cmd_completer (cmd, ((completetype == -1) ? cmdpy_completer
537 : completers[completetype].completer));
7d793aa9
SDJ
538 if (completetype == -1)
539 set_cmd_completer_handle_brkchars (cmd,
540 cmdpy_completer_handle_brkchars);
d8906c6f 541 }
230d2906 542 catch (const gdb_exception &except)
d8906c6f 543 {
d8906c6f 544 xfree (docstring);
ec9c2750 545 gdbpy_convert_exception (except);
d8906c6f
TJB
546 return -1;
547 }
492d29ea 548
d8906c6f
TJB
549 return 0;
550}
551
552\f
553
554/* Initialize the 'commands' code. */
63d97a20 555
999633ed 556int
d8906c6f
TJB
557gdbpy_initialize_commands (void)
558{
559 int i;
560
6a1b1664 561 cmdpy_object_type.tp_new = PyType_GenericNew;
d8906c6f 562 if (PyType_Ready (&cmdpy_object_type) < 0)
999633ed 563 return -1;
d8906c6f 564
2b2fbab8 565 /* Note: alias and user are special. */
d8906c6f
TJB
566 if (PyModule_AddIntConstant (gdb_module, "COMMAND_NONE", no_class) < 0
567 || PyModule_AddIntConstant (gdb_module, "COMMAND_RUNNING", class_run) < 0
568 || PyModule_AddIntConstant (gdb_module, "COMMAND_DATA", class_vars) < 0
569 || PyModule_AddIntConstant (gdb_module, "COMMAND_STACK", class_stack) < 0
570 || PyModule_AddIntConstant (gdb_module, "COMMAND_FILES", class_files) < 0
571 || PyModule_AddIntConstant (gdb_module, "COMMAND_SUPPORT",
572 class_support) < 0
573 || PyModule_AddIntConstant (gdb_module, "COMMAND_STATUS", class_info) < 0
574 || PyModule_AddIntConstant (gdb_module, "COMMAND_BREAKPOINTS",
575 class_breakpoint) < 0
576 || PyModule_AddIntConstant (gdb_module, "COMMAND_TRACEPOINTS",
577 class_trace) < 0
578 || PyModule_AddIntConstant (gdb_module, "COMMAND_OBSCURE",
579 class_obscure) < 0
580 || PyModule_AddIntConstant (gdb_module, "COMMAND_MAINTENANCE",
7d74f244 581 class_maintenance) < 0
2b2fbab8
TT
582 || PyModule_AddIntConstant (gdb_module, "COMMAND_USER", class_user) < 0
583 || PyModule_AddIntConstant (gdb_module, "COMMAND_TUI", class_tui) < 0)
999633ed 584 return -1;
d8906c6f
TJB
585
586 for (i = 0; i < N_COMPLETERS; ++i)
587 {
588 if (PyModule_AddIntConstant (gdb_module, completers[i].name, i) < 0)
999633ed 589 return -1;
d8906c6f
TJB
590 }
591
aa36459a
TT
592 if (gdb_pymodule_addobject (gdb_module, "Command",
593 (PyObject *) &cmdpy_object_type) < 0)
999633ed 594 return -1;
d8906c6f
TJB
595
596 invoke_cst = PyString_FromString ("invoke");
999633ed
TT
597 if (invoke_cst == NULL)
598 return -1;
d8906c6f 599 complete_cst = PyString_FromString ("complete");
999633ed
TT
600 if (complete_cst == NULL)
601 return -1;
602
603 return 0;
d8906c6f
TJB
604}
605
606\f
607
608static PyMethodDef cmdpy_object_methods[] =
609{
610 { "dont_repeat", cmdpy_dont_repeat, METH_NOARGS,
611 "Prevent command repetition when user enters empty line." },
612
613 { 0 }
614};
615
e36122e9 616PyTypeObject cmdpy_object_type =
d8906c6f 617{
9a27f2c6 618 PyVarObject_HEAD_INIT (NULL, 0)
d8906c6f
TJB
619 "gdb.Command", /*tp_name*/
620 sizeof (cmdpy_object), /*tp_basicsize*/
621 0, /*tp_itemsize*/
622 0, /*tp_dealloc*/
623 0, /*tp_print*/
624 0, /*tp_getattr*/
625 0, /*tp_setattr*/
626 0, /*tp_compare*/
627 0, /*tp_repr*/
628 0, /*tp_as_number*/
629 0, /*tp_as_sequence*/
630 0, /*tp_as_mapping*/
631 0, /*tp_hash */
632 0, /*tp_call*/
633 0, /*tp_str*/
634 0, /*tp_getattro*/
635 0, /*tp_setattro*/
636 0, /*tp_as_buffer*/
637 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
638 "GDB command object", /* tp_doc */
639 0, /* tp_traverse */
640 0, /* tp_clear */
641 0, /* tp_richcompare */
642 0, /* tp_weaklistoffset */
643 0, /* tp_iter */
644 0, /* tp_iternext */
645 cmdpy_object_methods, /* tp_methods */
646 0, /* tp_members */
647 0, /* tp_getset */
648 0, /* tp_base */
649 0, /* tp_dict */
650 0, /* tp_descr_get */
651 0, /* tp_descr_set */
652 0, /* tp_dictoffset */
653 cmdpy_init, /* tp_init */
654 0, /* tp_alloc */
d8906c6f 655};
07ca107c
DE
656
657\f
658
659/* Utility to build a buildargv-like result from ARGS.
660 This intentionally parses arguments the way libiberty/argv.c:buildargv
661 does. It splits up arguments in a reasonable way, and we want a standard
662 way of parsing arguments. Several gdb commands use buildargv to parse their
663 arguments. Plus we want to be able to write compatible python
664 implementations of gdb commands. */
665
666PyObject *
667gdbpy_string_to_argv (PyObject *self, PyObject *args)
668{
ddd49eee 669 const char *input;
07ca107c
DE
670
671 if (!PyArg_ParseTuple (args, "s", &input))
672 return NULL;
673
7780f186 674 gdbpy_ref<> py_argv (PyList_New (0));
3919fd96
TT
675 if (py_argv == NULL)
676 return NULL;
07ca107c
DE
677
678 /* buildargv uses NULL to represent an empty argument list, but we can't use
679 that in Python. Instead, if ARGS is "" then return an empty list.
680 This undoes the NULL -> "" conversion that cmdpy_function does. */
681
682 if (*input != '\0')
683 {
773a1edc 684 gdb_argv c_argv (input);
07ca107c 685
773a1edc 686 for (char *arg : c_argv)
07ca107c 687 {
773a1edc 688 gdbpy_ref<> argp (PyString_FromString (arg));
07ca107c
DE
689
690 if (argp == NULL
d1b3de2e 691 || PyList_Append (py_argv.get (), argp.get ()) < 0)
773a1edc 692 return NULL;
07ca107c 693 }
07ca107c
DE
694 }
695
d1b3de2e 696 return py_argv.release ();
07ca107c 697}
This page took 1.522017 seconds and 4 git commands to generate.