]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/python/py-param.c
Update copyright year range in all GDB files
[thirdparty/binutils-gdb.git] / gdb / python / py-param.c
CommitLineData
d7b32ed3
PM
1/* GDB parameters implemented in Python
2
3666a048 3 Copyright (C) 2008-2021 Free Software Foundation, Inc.
d7b32ed3
PM
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"
22#include "value.h"
d7b32ed3
PM
23#include "python-internal.h"
24#include "charset.h"
25#include "gdbcmd.h"
26#include "cli/cli-decode.h"
27#include "completer.h"
ecec24e6
PM
28#include "language.h"
29#include "arch-utils.h"
d7b32ed3
PM
30
31/* Parameter constants and their values. */
32struct parm_constant
33{
a121b7c1 34 const char *name;
d7b32ed3
PM
35 int value;
36};
37
38struct parm_constant parm_constants[] =
39{
3c0ee1a4 40 { "PARAM_BOOLEAN", var_boolean }, /* ARI: var_boolean */
d7b32ed3
PM
41 { "PARAM_AUTO_BOOLEAN", var_auto_boolean },
42 { "PARAM_UINTEGER", var_uinteger },
43 { "PARAM_INTEGER", var_integer },
44 { "PARAM_STRING", var_string },
45 { "PARAM_STRING_NOESCAPE", var_string_noescape },
46 { "PARAM_OPTIONAL_FILENAME", var_optional_filename },
47 { "PARAM_FILENAME", var_filename },
48 { "PARAM_ZINTEGER", var_zinteger },
0489430a
TT
49 { "PARAM_ZUINTEGER", var_zuinteger },
50 { "PARAM_ZUINTEGER_UNLIMITED", var_zuinteger_unlimited },
d7b32ed3
PM
51 { "PARAM_ENUM", var_enum },
52 { NULL, 0 }
53};
54
55/* A union that can hold anything described by enum var_types. */
56union parmpy_variable
57{
491144b5
CB
58 /* Hold a boolean value. */
59 bool boolval;
60
61 /* Hold an integer value. */
d7b32ed3
PM
62 int intval;
63
64 /* Hold an auto_boolean. */
65 enum auto_boolean autoboolval;
66
67 /* Hold an unsigned integer value, for uinteger. */
68 unsigned int uintval;
69
70 /* Hold a string, for the various string types. */
71 char *stringval;
72
73 /* Hold a string, for enums. */
74 const char *cstringval;
75};
76
77/* A GDB parameter. */
78struct parmpy_object
79{
80 PyObject_HEAD
81
82 /* The type of the parameter. */
83 enum var_types type;
84
85 /* The value of the parameter. */
86 union parmpy_variable value;
87
88 /* For an enum command, the possible values. The vector is
89 allocated with xmalloc, as is each element. It is
90 NULL-terminated. */
91 const char **enumeration;
92};
93
e36122e9 94extern PyTypeObject parmpy_object_type
62eec1a5 95 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("parmpy_object");
d7b32ed3
PM
96
97/* Some handy string constants. */
98static PyObject *set_doc_cst;
99static PyObject *show_doc_cst;
100
101\f
102
103/* Get an attribute. */
104static PyObject *
105get_attr (PyObject *obj, PyObject *attr_name)
106{
107 if (PyString_Check (attr_name)
9a27f2c6
PK
108#ifdef IS_PY3K
109 && ! PyUnicode_CompareWithASCIIString (attr_name, "value"))
110#else
d7b32ed3 111 && ! strcmp (PyString_AsString (attr_name), "value"))
9a27f2c6 112#endif
d7b32ed3
PM
113 {
114 parmpy_object *self = (parmpy_object *) obj;
d59b6f6c 115
d7b32ed3
PM
116 return gdbpy_parameter_value (self->type, &self->value);
117 }
118
119 return PyObject_GenericGetAttr (obj, attr_name);
120}
121
8dc78533
JK
122/* Set a parameter value from a Python value. Return 0 on success. Returns
123 -1 on error, with a python exception set. */
d7b32ed3
PM
124static int
125set_parameter_value (parmpy_object *self, PyObject *value)
126{
127 int cmp;
128
129 switch (self->type)
130 {
131 case var_string:
132 case var_string_noescape:
133 case var_optional_filename:
134 case var_filename:
135 if (! gdbpy_is_string (value)
136 && (self->type == var_filename
137 || value != Py_None))
138 {
256458bc 139 PyErr_SetString (PyExc_RuntimeError,
d7b32ed3
PM
140 _("String required for filename."));
141
142 return -1;
143 }
d7b32ed3
PM
144 if (value == Py_None)
145 {
8dc78533 146 xfree (self->value.stringval);
d7b32ed3
PM
147 if (self->type == var_optional_filename)
148 self->value.stringval = xstrdup ("");
149 else
150 self->value.stringval = NULL;
151 }
152 else
8dc78533 153 {
9b972014
TT
154 gdb::unique_xmalloc_ptr<char>
155 string (python_string_to_host_string (value));
8dc78533
JK
156 if (string == NULL)
157 return -1;
158
159 xfree (self->value.stringval);
9b972014 160 self->value.stringval = string.release ();
8dc78533 161 }
d7b32ed3
PM
162 break;
163
164 case var_enum:
165 {
166 int i;
d7b32ed3
PM
167
168 if (! gdbpy_is_string (value))
169 {
256458bc 170 PyErr_SetString (PyExc_RuntimeError,
d7b32ed3
PM
171 _("ENUM arguments must be a string."));
172 return -1;
173 }
174
9b972014
TT
175 gdb::unique_xmalloc_ptr<char>
176 str (python_string_to_host_string (value));
8dc78533
JK
177 if (str == NULL)
178 return -1;
d7b32ed3 179 for (i = 0; self->enumeration[i]; ++i)
9b972014 180 if (! strcmp (self->enumeration[i], str.get ()))
d7b32ed3 181 break;
d7b32ed3
PM
182 if (! self->enumeration[i])
183 {
184 PyErr_SetString (PyExc_RuntimeError,
185 _("The value must be member of an enumeration."));
186 return -1;
187 }
188 self->value.cstringval = self->enumeration[i];
189 break;
190 }
191
192 case var_boolean:
193 if (! PyBool_Check (value))
194 {
256458bc 195 PyErr_SetString (PyExc_RuntimeError,
d7b32ed3
PM
196 _("A boolean argument is required."));
197 return -1;
198 }
199 cmp = PyObject_IsTrue (value);
256458bc 200 if (cmp < 0)
d7b32ed3 201 return -1;
491144b5 202 self->value.boolval = cmp;
d7b32ed3
PM
203 break;
204
205 case var_auto_boolean:
206 if (! PyBool_Check (value) && value != Py_None)
207 {
208 PyErr_SetString (PyExc_RuntimeError,
209 _("A boolean or None is required"));
210 return -1;
211 }
212
213 if (value == Py_None)
214 self->value.autoboolval = AUTO_BOOLEAN_AUTO;
215 else
216 {
217 cmp = PyObject_IsTrue (value);
218 if (cmp < 0 )
256458bc 219 return -1;
d7b32ed3
PM
220 if (cmp == 1)
221 self->value.autoboolval = AUTO_BOOLEAN_TRUE;
256458bc 222 else
d7b32ed3 223 self->value.autoboolval = AUTO_BOOLEAN_FALSE;
d7b32ed3 224 }
92e96192 225 break;
d7b32ed3
PM
226
227 case var_integer:
228 case var_zinteger:
229 case var_uinteger:
0489430a
TT
230 case var_zuinteger:
231 case var_zuinteger_unlimited:
d7b32ed3
PM
232 {
233 long l;
234 int ok;
235
236 if (! PyInt_Check (value))
237 {
256458bc 238 PyErr_SetString (PyExc_RuntimeError,
d7b32ed3
PM
239 _("The value must be integer."));
240 return -1;
241 }
242
74aedc46
TT
243 if (! gdb_py_int_as_long (value, &l))
244 return -1;
245
0489430a 246 switch (self->type)
d7b32ed3 247 {
0489430a 248 case var_uinteger:
d7b32ed3
PM
249 if (l == 0)
250 l = UINT_MAX;
0489430a
TT
251 /* Fall through. */
252 case var_zuinteger:
253 ok = (l >= 0 && l <= UINT_MAX);
254 break;
255
256 case var_zuinteger_unlimited:
257 ok = (l >= -1 && l <= INT_MAX);
258 break;
259
260 case var_integer:
d7b32ed3
PM
261 ok = (l >= INT_MIN && l <= INT_MAX);
262 if (l == 0)
263 l = INT_MAX;
0489430a
TT
264 break;
265
266 case var_zinteger:
267 ok = (l >= INT_MIN && l <= INT_MAX);
268 break;
269
270 default:
271 gdb_assert_not_reached ("unknown var_ constant");
d7b32ed3 272 }
d7b32ed3
PM
273
274 if (! ok)
275 {
256458bc 276 PyErr_SetString (PyExc_RuntimeError,
d7b32ed3
PM
277 _("Range exceeded."));
278 return -1;
279 }
280
0489430a
TT
281 if (self->type == var_uinteger || self->type == var_zuinteger)
282 self->value.uintval = (unsigned) l;
283 else
284 self->value.intval = (int) l;
d7b32ed3
PM
285 break;
286 }
287
288 default:
256458bc 289 PyErr_SetString (PyExc_RuntimeError,
d7b32ed3
PM
290 _("Unhandled type in parameter value."));
291 return -1;
292 }
293
294 return 0;
295}
296
8dc78533 297/* Set an attribute. Returns -1 on error, with a python exception set. */
d7b32ed3
PM
298static int
299set_attr (PyObject *obj, PyObject *attr_name, PyObject *val)
300{
301 if (PyString_Check (attr_name)
9a27f2c6
PK
302#ifdef IS_PY3K
303 && ! PyUnicode_CompareWithASCIIString (attr_name, "value"))
304#else
d7b32ed3 305 && ! strcmp (PyString_AsString (attr_name), "value"))
9a27f2c6 306#endif
d7b32ed3
PM
307 {
308 if (!val)
309 {
310 PyErr_SetString (PyExc_RuntimeError,
311 _("Cannot delete a parameter's value."));
312 return -1;
313 }
314 return set_parameter_value ((parmpy_object *) obj, val);
315 }
316
317 return PyObject_GenericSetAttr (obj, attr_name, val);
318}
319
ecec24e6
PM
320/* A helper function which returns a documentation string for an
321 object. */
322
9b972014 323static gdb::unique_xmalloc_ptr<char>
ecec24e6
PM
324get_doc_string (PyObject *object, PyObject *attr)
325{
9b972014 326 gdb::unique_xmalloc_ptr<char> result;
ecec24e6
PM
327
328 if (PyObject_HasAttr (object, attr))
329 {
7780f186 330 gdbpy_ref<> ds_obj (PyObject_GetAttr (object, attr));
ecec24e6 331
97d83487 332 if (ds_obj != NULL && gdbpy_is_string (ds_obj.get ()))
ecec24e6 333 {
97d83487 334 result = python_string_to_host_string (ds_obj.get ());
ecec24e6
PM
335 if (result == NULL)
336 gdbpy_print_stack ();
337 }
ecec24e6
PM
338 }
339 if (! result)
9b972014 340 result.reset (xstrdup (_("This command is not documented.")));
ecec24e6
PM
341 return result;
342}
343
344/* Helper function which will execute a METHOD in OBJ passing the
345 argument ARG. ARG can be NULL. METHOD should return a Python
346 string. If this function returns NULL, there has been an error and
347 the appropriate exception set. */
9b972014 348static gdb::unique_xmalloc_ptr<char>
ecec24e6
PM
349call_doc_function (PyObject *obj, PyObject *method, PyObject *arg)
350{
9b972014 351 gdb::unique_xmalloc_ptr<char> data;
7780f186 352 gdbpy_ref<> result (PyObject_CallMethodObjArgs (obj, method, arg, NULL));
ecec24e6 353
1bb44c9f 354 if (result == NULL)
ecec24e6
PM
355 return NULL;
356
1bb44c9f 357 if (gdbpy_is_string (result.get ()))
ecec24e6 358 {
1bb44c9f 359 data = python_string_to_host_string (result.get ());
ecec24e6
PM
360 if (! data)
361 return NULL;
362 }
363 else
364 {
365 PyErr_SetString (PyExc_RuntimeError,
366 _("Parameter must return a string value."));
367 return NULL;
368 }
369
370 return data;
371}
372
373/* A callback function that is registered against the respective
374 add_setshow_* set_doc prototype. This function will either call
375 the Python function "get_set_string" or extract the Python
376 attribute "set_doc" and return the contents as a string. If
377 neither exist, insert a string indicating the Parameter is not
378 documented. */
379static void
eb4c3f4a 380get_set_value (const char *args, int from_tty,
ecec24e6
PM
381 struct cmd_list_element *c)
382{
383 PyObject *obj = (PyObject *) get_cmd_context (c);
9b972014 384 gdb::unique_xmalloc_ptr<char> set_doc_string;
ecec24e6 385
2865bfce 386 gdbpy_enter enter_py (get_current_arch (), current_language);
7780f186 387 gdbpy_ref<> set_doc_func (PyString_FromString ("get_set_string"));
ecec24e6 388
2865bfce 389 if (set_doc_func == NULL)
ecec24e6 390 {
2865bfce
TT
391 gdbpy_print_stack ();
392 return;
393 }
394
395 if (PyObject_HasAttr (obj, set_doc_func.get ()))
396 {
397 set_doc_string = call_doc_function (obj, set_doc_func.get (), NULL);
ecec24e6 398 if (! set_doc_string)
ae778caf 399 gdbpy_handle_exception ();
ecec24e6 400 }
ecec24e6 401
984ee559
TT
402 const char *str = set_doc_string.get ();
403 if (str != nullptr && str[0] != '\0')
404 fprintf_filtered (gdb_stdout, "%s\n", str);
ecec24e6
PM
405}
406
407/* A callback function that is registered against the respective
408 add_setshow_* show_doc prototype. This function will either call
409 the Python function "get_show_string" or extract the Python
410 attribute "show_doc" and return the contents as a string. If
411 neither exist, insert a string indicating the Parameter is not
412 documented. */
413static void
414get_show_value (struct ui_file *file, int from_tty,
415 struct cmd_list_element *c,
416 const char *value)
417{
418 PyObject *obj = (PyObject *) get_cmd_context (c);
9b972014 419 gdb::unique_xmalloc_ptr<char> show_doc_string;
ecec24e6 420
2865bfce 421 gdbpy_enter enter_py (get_current_arch (), current_language);
7780f186 422 gdbpy_ref<> show_doc_func (PyString_FromString ("get_show_string"));
2865bfce
TT
423
424 if (show_doc_func == NULL)
425 {
426 gdbpy_print_stack ();
427 return;
428 }
ecec24e6 429
2865bfce 430 if (PyObject_HasAttr (obj, show_doc_func.get ()))
ecec24e6 431 {
7780f186 432 gdbpy_ref<> val_obj (PyString_FromString (value));
ecec24e6 433
2865bfce
TT
434 if (val_obj == NULL)
435 {
436 gdbpy_print_stack ();
437 return;
438 }
ecec24e6 439
2865bfce
TT
440 show_doc_string = call_doc_function (obj, show_doc_func.get (),
441 val_obj.get ());
ecec24e6 442 if (! show_doc_string)
2865bfce
TT
443 {
444 gdbpy_print_stack ();
445 return;
446 }
ecec24e6 447
9b972014 448 fprintf_filtered (file, "%s\n", show_doc_string.get ());
ecec24e6
PM
449 }
450 else
451 {
452 /* We have to preserve the existing < GDB 7.3 API. If a
453 callback function does not exist, then attempt to read the
454 show_doc attribute. */
455 show_doc_string = get_doc_string (obj, show_doc_cst);
9b972014 456 fprintf_filtered (file, "%s %s\n", show_doc_string.get (), value);
ecec24e6 457 }
ecec24e6 458}
d7b32ed3
PM
459\f
460
461/* A helper function that dispatches to the appropriate add_setshow
462 function. */
463static void
464add_setshow_generic (int parmclass, enum command_class cmdclass,
0d0b0ea2
TT
465 const char *cmd_name, parmpy_object *self,
466 const char *set_doc, const char *show_doc,
467 const char *help_doc,
d7b32ed3
PM
468 struct cmd_list_element **set_list,
469 struct cmd_list_element **show_list)
470{
ecec24e6 471 struct cmd_list_element *param = NULL;
6f937416 472 const char *tmp_name = NULL;
ecec24e6 473
d7b32ed3
PM
474 switch (parmclass)
475 {
476 case var_boolean:
ecec24e6
PM
477
478 add_setshow_boolean_cmd (cmd_name, cmdclass,
491144b5 479 &self->value.boolval, set_doc, show_doc,
ecec24e6
PM
480 help_doc, get_set_value, get_show_value,
481 set_list, show_list);
482
d7b32ed3
PM
483 break;
484
485 case var_auto_boolean:
486 add_setshow_auto_boolean_cmd (cmd_name, cmdclass,
487 &self->value.autoboolval,
488 set_doc, show_doc, help_doc,
ecec24e6
PM
489 get_set_value, get_show_value,
490 set_list, show_list);
d7b32ed3
PM
491 break;
492
493 case var_uinteger:
ecec24e6
PM
494 add_setshow_uinteger_cmd (cmd_name, cmdclass,
495 &self->value.uintval, set_doc, show_doc,
496 help_doc, get_set_value, get_show_value,
497 set_list, show_list);
d7b32ed3
PM
498 break;
499
500 case var_integer:
ecec24e6
PM
501 add_setshow_integer_cmd (cmd_name, cmdclass,
502 &self->value.intval, set_doc, show_doc,
503 help_doc, get_set_value, get_show_value,
504 set_list, show_list); break;
d7b32ed3
PM
505
506 case var_string:
ecec24e6
PM
507 add_setshow_string_cmd (cmd_name, cmdclass,
508 &self->value.stringval, set_doc, show_doc,
509 help_doc, get_set_value, get_show_value,
510 set_list, show_list); break;
d7b32ed3
PM
511
512 case var_string_noescape:
513 add_setshow_string_noescape_cmd (cmd_name, cmdclass,
514 &self->value.stringval,
515 set_doc, show_doc, help_doc,
ecec24e6
PM
516 get_set_value, get_show_value,
517 set_list, show_list);
518
d7b32ed3
PM
519 break;
520
521 case var_optional_filename:
522 add_setshow_optional_filename_cmd (cmd_name, cmdclass,
ecec24e6
PM
523 &self->value.stringval, set_doc,
524 show_doc, help_doc, get_set_value,
525 get_show_value, set_list,
526 show_list);
d7b32ed3
PM
527 break;
528
529 case var_filename:
ecec24e6
PM
530 add_setshow_filename_cmd (cmd_name, cmdclass,
531 &self->value.stringval, set_doc, show_doc,
532 help_doc, get_set_value, get_show_value,
533 set_list, show_list); break;
d7b32ed3
PM
534
535 case var_zinteger:
ecec24e6
PM
536 add_setshow_zinteger_cmd (cmd_name, cmdclass,
537 &self->value.intval, set_doc, show_doc,
538 help_doc, get_set_value, get_show_value,
539 set_list, show_list);
d7b32ed3
PM
540 break;
541
0489430a
TT
542 case var_zuinteger:
543 add_setshow_zuinteger_cmd (cmd_name, cmdclass,
544 &self->value.uintval, set_doc, show_doc,
545 help_doc, get_set_value, get_show_value,
546 set_list, show_list);
547 break;
548
549 case var_zuinteger_unlimited:
550 add_setshow_zuinteger_unlimited_cmd (cmd_name, cmdclass,
551 &self->value.intval, set_doc,
552 show_doc, help_doc, get_set_value,
553 get_show_value,
554 set_list, show_list);
555 break;
556
d7b32ed3
PM
557 case var_enum:
558 add_setshow_enum_cmd (cmd_name, cmdclass, self->enumeration,
ecec24e6
PM
559 &self->value.cstringval, set_doc, show_doc,
560 help_doc, get_set_value, get_show_value,
561 set_list, show_list);
d7b32ed3
PM
562 /* Initialize the value, just in case. */
563 self->value.cstringval = self->enumeration[0];
564 break;
565 }
ecec24e6
PM
566
567 /* Lookup created parameter, and register Python object against the
568 parameter context. Perform this task against both lists. */
569 tmp_name = cmd_name;
cf00cd6f 570 param = lookup_cmd (&tmp_name, *show_list, "", NULL, 0, 1);
ecec24e6
PM
571 if (param)
572 set_cmd_context (param, self);
573
574 tmp_name = cmd_name;
cf00cd6f 575 param = lookup_cmd (&tmp_name, *set_list, "", NULL, 0, 1);
ecec24e6
PM
576 if (param)
577 set_cmd_context (param, self);
d7b32ed3
PM
578}
579
8dc78533
JK
580/* A helper which computes enum values. Returns 1 on success. Returns 0 on
581 error, with a python exception set. */
d7b32ed3
PM
582static int
583compute_enum_values (parmpy_object *self, PyObject *enum_values)
584{
585 Py_ssize_t size, i;
586
587 if (! enum_values)
588 {
589 PyErr_SetString (PyExc_RuntimeError,
590 _("An enumeration is required for PARAM_ENUM."));
591 return 0;
592 }
593
594 if (! PySequence_Check (enum_values))
595 {
256458bc 596 PyErr_SetString (PyExc_RuntimeError,
d7b32ed3
PM
597 _("The enumeration is not a sequence."));
598 return 0;
599 }
600
601 size = PySequence_Size (enum_values);
602 if (size < 0)
603 return 0;
604 if (size == 0)
605 {
256458bc 606 PyErr_SetString (PyExc_RuntimeError,
d7b32ed3
PM
607 _("The enumeration is empty."));
608 return 0;
609 }
610
1c034b67
TT
611 gdb_argv holder (XCNEWVEC (char *, size + 1));
612 char **enumeration = holder.get ();
d7b32ed3
PM
613
614 for (i = 0; i < size; ++i)
615 {
7780f186 616 gdbpy_ref<> item (PySequence_GetItem (enum_values, i));
d59b6f6c 617
97d83487 618 if (item == NULL)
1c034b67 619 return 0;
97d83487 620 if (! gdbpy_is_string (item.get ()))
d7b32ed3 621 {
256458bc 622 PyErr_SetString (PyExc_RuntimeError,
d7b32ed3
PM
623 _("The enumeration item not a string."));
624 return 0;
625 }
1c034b67
TT
626 enumeration[i] = python_string_to_host_string (item.get ()).release ();
627 if (enumeration[i] == NULL)
628 return 0;
d7b32ed3
PM
629 }
630
1c034b67 631 self->enumeration = const_cast<const char**> (holder.release ());
d7b32ed3
PM
632 return 1;
633}
634
d7b32ed3
PM
635/* Object initializer; sets up gdb-side structures for command.
636
637 Use: __init__(NAME, CMDCLASS, PARMCLASS, [ENUM])
638
639 NAME is the name of the parameter. It may consist of multiple
640 words, in which case the final word is the name of the new command,
641 and earlier words must be prefix commands.
642
643 CMDCLASS is the kind of command. It should be one of the COMMAND_*
644 constants defined in the gdb module.
645
646 PARMCLASS is the type of the parameter. It should be one of the
647 PARAM_* constants defined in the gdb module.
648
649 If PARMCLASS is PARAM_ENUM, then the final argument should be a
650 collection of strings. These strings are the valid values for this
651 parameter.
652
653 The documentation for the parameter is taken from the doc string
654 for the python class.
8dc78533
JK
655
656 Returns -1 on error, with a python exception set. */
657
d7b32ed3
PM
658static int
659parmpy_init (PyObject *self, PyObject *args, PyObject *kwds)
660{
661 parmpy_object *obj = (parmpy_object *) self;
ddd49eee 662 const char *name;
0d0b0ea2 663 gdb::unique_xmalloc_ptr<char> set_doc, show_doc, doc;
d7b32ed3
PM
664 char *cmd_name;
665 int parmclass, cmdtype;
666 PyObject *enum_values = NULL;
d7b32ed3 667 struct cmd_list_element **set_list, **show_list;
d7b32ed3
PM
668
669 if (! PyArg_ParseTuple (args, "sii|O", &name, &cmdtype, &parmclass,
670 &enum_values))
671 return -1;
672
673 if (cmdtype != no_class && cmdtype != class_run
674 && cmdtype != class_vars && cmdtype != class_stack
675 && cmdtype != class_files && cmdtype != class_support
676 && cmdtype != class_info && cmdtype != class_breakpoint
677 && cmdtype != class_trace && cmdtype != class_obscure
678 && cmdtype != class_maintenance)
679 {
680 PyErr_Format (PyExc_RuntimeError, _("Invalid command class argument."));
681 return -1;
682 }
683
3c0ee1a4
PM
684 if (parmclass != var_boolean /* ARI: var_boolean */
685 && parmclass != var_auto_boolean
d7b32ed3
PM
686 && parmclass != var_uinteger && parmclass != var_integer
687 && parmclass != var_string && parmclass != var_string_noescape
688 && parmclass != var_optional_filename && parmclass != var_filename
0489430a
TT
689 && parmclass != var_zinteger && parmclass != var_zuinteger
690 && parmclass != var_zuinteger_unlimited && parmclass != var_enum)
d7b32ed3 691 {
9a2b4c1b
MS
692 PyErr_SetString (PyExc_RuntimeError,
693 _("Invalid parameter class argument."));
d7b32ed3
PM
694 return -1;
695 }
696
697 if (enum_values && parmclass != var_enum)
698 {
699 PyErr_SetString (PyExc_RuntimeError,
700 _("Only PARAM_ENUM accepts a fourth argument."));
701 return -1;
702 }
703 if (parmclass == var_enum)
704 {
705 if (! compute_enum_values (obj, enum_values))
706 return -1;
707 }
708 else
709 obj->enumeration = NULL;
710 obj->type = (enum var_types) parmclass;
711 memset (&obj->value, 0, sizeof (obj->value));
712
63d97a20 713 cmd_name = gdbpy_parse_command_name (name, &set_list,
d7b32ed3
PM
714 &setlist);
715
716 if (! cmd_name)
63d97a20 717 return -1;
d7b32ed3 718 xfree (cmd_name);
63d97a20 719 cmd_name = gdbpy_parse_command_name (name, &show_list,
d7b32ed3
PM
720 &showlist);
721 if (! cmd_name)
722 return -1;
723
0d0b0ea2
TT
724 set_doc = get_doc_string (self, set_doc_cst);
725 show_doc = get_doc_string (self, show_doc_cst);
726 doc = get_doc_string (self, gdbpy_doc_cst);
d7b32ed3
PM
727
728 Py_INCREF (self);
729
a70b8144 730 try
d7b32ed3
PM
731 {
732 add_setshow_generic (parmclass, (enum command_class) cmdtype,
733 cmd_name, obj,
0d0b0ea2
TT
734 set_doc.get (), show_doc.get (),
735 doc.get (), set_list, show_list);
d7b32ed3 736 }
230d2906 737 catch (const gdb_exception &except)
d7b32ed3
PM
738 {
739 xfree (cmd_name);
d7b32ed3 740 Py_DECREF (self);
ec9c2750 741 gdbpy_convert_exception (except);
d7b32ed3
PM
742 return -1;
743 }
492d29ea 744
d7b32ed3
PM
745 return 0;
746}
747
748\f
749
750/* Initialize the 'parameters' module. */
999633ed 751int
d7b32ed3
PM
752gdbpy_initialize_parameters (void)
753{
754 int i;
755
6a1b1664 756 parmpy_object_type.tp_new = PyType_GenericNew;
d7b32ed3 757 if (PyType_Ready (&parmpy_object_type) < 0)
999633ed 758 return -1;
d7b32ed3
PM
759
760 set_doc_cst = PyString_FromString ("set_doc");
761 if (! set_doc_cst)
999633ed 762 return -1;
d7b32ed3
PM
763 show_doc_cst = PyString_FromString ("show_doc");
764 if (! show_doc_cst)
999633ed 765 return -1;
d7b32ed3
PM
766
767 for (i = 0; parm_constants[i].name; ++i)
768 {
769 if (PyModule_AddIntConstant (gdb_module,
770 parm_constants[i].name,
771 parm_constants[i].value) < 0)
999633ed 772 return -1;
d7b32ed3
PM
773 }
774
aa36459a
TT
775 return gdb_pymodule_addobject (gdb_module, "Parameter",
776 (PyObject *) &parmpy_object_type);
d7b32ed3
PM
777}
778
779\f
780
e36122e9 781PyTypeObject parmpy_object_type =
d7b32ed3 782{
9a27f2c6 783 PyVarObject_HEAD_INIT (NULL, 0)
d7b32ed3
PM
784 "gdb.Parameter", /*tp_name*/
785 sizeof (parmpy_object), /*tp_basicsize*/
786 0, /*tp_itemsize*/
787 0, /*tp_dealloc*/
788 0, /*tp_print*/
789 0, /*tp_getattr*/
790 0, /*tp_setattr*/
791 0, /*tp_compare*/
792 0, /*tp_repr*/
793 0, /*tp_as_number*/
794 0, /*tp_as_sequence*/
795 0, /*tp_as_mapping*/
796 0, /*tp_hash */
797 0, /*tp_call*/
798 0, /*tp_str*/
799 get_attr, /*tp_getattro*/
800 set_attr, /*tp_setattro*/
801 0, /*tp_as_buffer*/
802 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
803 "GDB parameter object", /* tp_doc */
804 0, /* tp_traverse */
805 0, /* tp_clear */
806 0, /* tp_richcompare */
807 0, /* tp_weaklistoffset */
808 0, /* tp_iter */
809 0, /* tp_iternext */
810 0, /* tp_methods */
811 0, /* tp_members */
812 0, /* tp_getset */
813 0, /* tp_base */
814 0, /* tp_dict */
815 0, /* tp_descr_get */
816 0, /* tp_descr_set */
817 0, /* tp_dictoffset */
818 parmpy_init, /* tp_init */
819 0, /* tp_alloc */
d7b32ed3 820};