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