gdb/python/py-param.c - gdb

Global variables defined

Data types defined

Functions defined

Source code

  1. /* GDB parameters implemented in Python

  2.    Copyright (C) 2008-2015 Free Software Foundation, Inc.

  3.    This file is part of GDB.

  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 3 of the License, or
  7.    (at your option) any later version.

  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.

  12.    You should have received a copy of the GNU General Public License
  13.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */


  14. #include "defs.h"
  15. #include "value.h"
  16. #include "python-internal.h"
  17. #include "charset.h"
  18. #include "gdbcmd.h"
  19. #include "cli/cli-decode.h"
  20. #include "completer.h"
  21. #include "language.h"
  22. #include "arch-utils.h"

  23. /* Parameter constants and their values.  */
  24. struct parm_constant
  25. {
  26.   char *name;
  27.   int value;
  28. };

  29. struct parm_constant parm_constants[] =
  30. {
  31.   { "PARAM_BOOLEAN", var_boolean }, /* ARI: var_boolean */
  32.   { "PARAM_AUTO_BOOLEAN", var_auto_boolean },
  33.   { "PARAM_UINTEGER", var_uinteger },
  34.   { "PARAM_INTEGER", var_integer },
  35.   { "PARAM_STRING", var_string },
  36.   { "PARAM_STRING_NOESCAPE", var_string_noescape },
  37.   { "PARAM_OPTIONAL_FILENAME", var_optional_filename },
  38.   { "PARAM_FILENAME", var_filename },
  39.   { "PARAM_ZINTEGER", var_zinteger },
  40.   { "PARAM_ENUM", var_enum },
  41.   { NULL, 0 }
  42. };

  43. /* A union that can hold anything described by enum var_types.  */
  44. union parmpy_variable
  45. {
  46.   /* Hold an integer value, for boolean and integer types.  */
  47.   int intval;

  48.   /* Hold an auto_boolean.  */
  49.   enum auto_boolean autoboolval;

  50.   /* Hold an unsigned integer value, for uinteger.  */
  51.   unsigned int uintval;

  52.   /* Hold a string, for the various string types.  */
  53.   char *stringval;

  54.   /* Hold a string, for enums.  */
  55.   const char *cstringval;
  56. };

  57. /* A GDB parameter.  */
  58. struct parmpy_object
  59. {
  60.   PyObject_HEAD

  61.   /* The type of the parameter.  */
  62.   enum var_types type;

  63.   /* The value of the parameter.  */
  64.   union parmpy_variable value;

  65.   /* For an enum command, the possible values.  The vector is
  66.      allocated with xmalloc, as is each element.  It is
  67.      NULL-terminated.  */
  68.   const char **enumeration;
  69. };

  70. typedef struct parmpy_object parmpy_object;

  71. static PyTypeObject parmpy_object_type
  72.     CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("parmpy_object");

  73. /* Some handy string constants.  */
  74. static PyObject *set_doc_cst;
  75. static PyObject *show_doc_cst;



  76. /* Get an attribute.  */
  77. static PyObject *
  78. get_attr (PyObject *obj, PyObject *attr_name)
  79. {
  80.   if (PyString_Check (attr_name)
  81. #ifdef IS_PY3K
  82.       && ! PyUnicode_CompareWithASCIIString (attr_name, "value"))
  83. #else
  84.       && ! strcmp (PyString_AsString (attr_name), "value"))
  85. #endif
  86.     {
  87.       parmpy_object *self = (parmpy_object *) obj;

  88.       return gdbpy_parameter_value (self->type, &self->value);
  89.     }

  90.   return PyObject_GenericGetAttr (obj, attr_name);
  91. }

  92. /* Set a parameter value from a Python value.  Return 0 on success.  Returns
  93.    -1 on error, with a python exception set.  */
  94. static int
  95. set_parameter_value (parmpy_object *self, PyObject *value)
  96. {
  97.   int cmp;

  98.   switch (self->type)
  99.     {
  100.     case var_string:
  101.     case var_string_noescape:
  102.     case var_optional_filename:
  103.     case var_filename:
  104.       if (! gdbpy_is_string (value)
  105.           && (self->type == var_filename
  106.               || value != Py_None))
  107.         {
  108.           PyErr_SetString (PyExc_RuntimeError,
  109.                            _("String required for filename."));

  110.           return -1;
  111.         }
  112.       if (value == Py_None)
  113.         {
  114.           xfree (self->value.stringval);
  115.           if (self->type == var_optional_filename)
  116.             self->value.stringval = xstrdup ("");
  117.           else
  118.             self->value.stringval = NULL;
  119.         }
  120.       else
  121.         {
  122.           char *string;

  123.           string = python_string_to_host_string (value);
  124.           if (string == NULL)
  125.             return -1;

  126.           xfree (self->value.stringval);
  127.           self->value.stringval = string;
  128.         }
  129.       break;

  130.     case var_enum:
  131.       {
  132.         int i;
  133.         char *str;

  134.         if (! gdbpy_is_string (value))
  135.           {
  136.             PyErr_SetString (PyExc_RuntimeError,
  137.                              _("ENUM arguments must be a string."));
  138.             return -1;
  139.           }

  140.         str = python_string_to_host_string (value);
  141.         if (str == NULL)
  142.           return -1;
  143.         for (i = 0; self->enumeration[i]; ++i)
  144.           if (! strcmp (self->enumeration[i], str))
  145.             break;
  146.         xfree (str);
  147.         if (! self->enumeration[i])
  148.           {
  149.             PyErr_SetString (PyExc_RuntimeError,
  150.                              _("The value must be member of an enumeration."));
  151.             return -1;
  152.           }
  153.         self->value.cstringval = self->enumeration[i];
  154.         break;
  155.       }

  156.     case var_boolean:
  157.       if (! PyBool_Check (value))
  158.         {
  159.           PyErr_SetString (PyExc_RuntimeError,
  160.                            _("A boolean argument is required."));
  161.           return -1;
  162.         }
  163.       cmp = PyObject_IsTrue (value);
  164.       if (cmp < 0)
  165.           return -1;
  166.       self->value.intval = cmp;
  167.       break;

  168.     case var_auto_boolean:
  169.       if (! PyBool_Check (value) && value != Py_None)
  170.         {
  171.           PyErr_SetString (PyExc_RuntimeError,
  172.                            _("A boolean or None is required"));
  173.           return -1;
  174.         }

  175.       if (value == Py_None)
  176.         self->value.autoboolval = AUTO_BOOLEAN_AUTO;
  177.       else
  178.         {
  179.           cmp = PyObject_IsTrue (value);
  180.           if (cmp < 0 )
  181.             return -1;
  182.           if (cmp == 1)
  183.             self->value.autoboolval = AUTO_BOOLEAN_TRUE;
  184.           else
  185.             self->value.autoboolval = AUTO_BOOLEAN_FALSE;
  186.         }
  187.       break;

  188.     case var_integer:
  189.     case var_zinteger:
  190.     case var_uinteger:
  191.       {
  192.         long l;
  193.         int ok;

  194.         if (! PyInt_Check (value))
  195.           {
  196.             PyErr_SetString (PyExc_RuntimeError,
  197.                              _("The value must be integer."));
  198.             return -1;
  199.           }

  200.         if (! gdb_py_int_as_long (value, &l))
  201.           return -1;

  202.         if (self->type == var_uinteger)
  203.           {
  204.             ok = (l >= 0 && l <= UINT_MAX);
  205.             if (l == 0)
  206.               l = UINT_MAX;
  207.           }
  208.         else if (self->type == var_integer)
  209.           {
  210.             ok = (l >= INT_MIN && l <= INT_MAX);
  211.             if (l == 0)
  212.               l = INT_MAX;
  213.           }
  214.         else
  215.           ok = (l >= INT_MIN && l <= INT_MAX);

  216.         if (! ok)
  217.           {
  218.             PyErr_SetString (PyExc_RuntimeError,
  219.                              _("Range exceeded."));
  220.             return -1;
  221.           }

  222.         self->value.intval = (int) l;
  223.         break;
  224.       }

  225.     default:
  226.       PyErr_SetString (PyExc_RuntimeError,
  227.                        _("Unhandled type in parameter value."));
  228.       return -1;
  229.     }

  230.   return 0;
  231. }

  232. /* Set an attribute.  Returns -1 on error, with a python exception set.  */
  233. static int
  234. set_attr (PyObject *obj, PyObject *attr_name, PyObject *val)
  235. {
  236.   if (PyString_Check (attr_name)
  237. #ifdef IS_PY3K
  238.       && ! PyUnicode_CompareWithASCIIString (attr_name, "value"))
  239. #else
  240.       && ! strcmp (PyString_AsString (attr_name), "value"))
  241. #endif
  242.     {
  243.       if (!val)
  244.         {
  245.           PyErr_SetString (PyExc_RuntimeError,
  246.                            _("Cannot delete a parameter's value."));
  247.           return -1;
  248.         }
  249.       return set_parameter_value ((parmpy_object *) obj, val);
  250.     }

  251.   return PyObject_GenericSetAttr (obj, attr_name, val);
  252. }

  253. /* A helper function which returns a documentation string for an
  254.    object. */

  255. static char *
  256. get_doc_string (PyObject *object, PyObject *attr)
  257. {
  258.   char *result = NULL;

  259.   if (PyObject_HasAttr (object, attr))
  260.     {
  261.       PyObject *ds_obj = PyObject_GetAttr (object, attr);

  262.       if (ds_obj && gdbpy_is_string (ds_obj))
  263.         {
  264.           result = python_string_to_host_string (ds_obj);
  265.           if (result == NULL)
  266.             gdbpy_print_stack ();
  267.         }
  268.       Py_XDECREF (ds_obj);
  269.     }
  270.   if (! result)
  271.     result = xstrdup (_("This command is not documented."));
  272.   return result;
  273. }

  274. /* Helper function which will execute a METHOD in OBJ passing the
  275.    argument ARG.  ARG can be NULL.  METHOD should return a Python
  276.    string.  If this function returns NULL, there has been an error and
  277.    the appropriate exception set.  */
  278. static char *
  279. call_doc_function (PyObject *obj, PyObject *method, PyObject *arg)
  280. {
  281.   char *data = NULL;
  282.   PyObject *result = PyObject_CallMethodObjArgs (obj, method, arg, NULL);

  283.   if (! result)
  284.     return NULL;

  285.   if (gdbpy_is_string (result))
  286.     {
  287.       data = python_string_to_host_string (result);
  288.       Py_DECREF (result);
  289.       if (! data)
  290.         return NULL;
  291.     }
  292.   else
  293.     {
  294.       PyErr_SetString (PyExc_RuntimeError,
  295.                        _("Parameter must return a string value."));
  296.       Py_DECREF (result);
  297.       return NULL;
  298.     }

  299.   return data;
  300. }

  301. /* A callback function that is registered against the respective
  302.    add_setshow_* set_doc prototype.  This function will either call
  303.    the Python function "get_set_string" or extract the Python
  304.    attribute "set_doc" and return the contents as a string.  If
  305.    neither exist, insert a string indicating the Parameter is not
  306.    documented.  */
  307. static void
  308. get_set_value (char *args, int from_tty,
  309.                struct cmd_list_element *c)
  310. {
  311.   PyObject *obj = (PyObject *) get_cmd_context (c);
  312.   char *set_doc_string;
  313.   struct cleanup *cleanup = ensure_python_env (get_current_arch (),
  314.                                                current_language);
  315.   PyObject *set_doc_func = PyString_FromString ("get_set_string");

  316.   if (! set_doc_func)
  317.     goto error;

  318.   if (PyObject_HasAttr (obj, set_doc_func))
  319.     {
  320.       set_doc_string = call_doc_function (obj, set_doc_func, NULL);
  321.       if (! set_doc_string)
  322.         goto error;
  323.     }
  324.   else
  325.     {
  326.       /* We have to preserve the existing < GDB 7.3 API.  If a
  327.          callback function does not exist, then attempt to read the
  328.          set_doc attribute.  */
  329.       set_doc_string  = get_doc_string (obj, set_doc_cst);
  330.     }

  331.   make_cleanup (xfree, set_doc_string);
  332.   fprintf_filtered (gdb_stdout, "%s\n", set_doc_string);

  333.   Py_XDECREF (set_doc_func);
  334.   do_cleanups (cleanup);
  335.   return;

  336. error:
  337.   Py_XDECREF (set_doc_func);
  338.   gdbpy_print_stack ();
  339.   do_cleanups (cleanup);
  340.   return;
  341. }

  342. /* A callback function that is registered against the respective
  343.    add_setshow_* show_doc prototype.  This function will either call
  344.    the Python function "get_show_string" or extract the Python
  345.    attribute "show_doc" and return the contents as a string.  If
  346.    neither exist, insert a string indicating the Parameter is not
  347.    documented.  */
  348. static void
  349. get_show_value (struct ui_file *file, int from_tty,
  350.                 struct cmd_list_element *c,
  351.                 const char *value)
  352. {
  353.   PyObject *obj = (PyObject *) get_cmd_context (c);
  354.   char *show_doc_string = NULL;
  355.   struct cleanup *cleanup = ensure_python_env (get_current_arch (),
  356.                                                current_language);
  357.   PyObject *show_doc_func = PyString_FromString ("get_show_string");

  358.   if (! show_doc_func)
  359.     goto error;

  360.   if (PyObject_HasAttr (obj, show_doc_func))
  361.     {
  362.       PyObject *val_obj = PyString_FromString (value);

  363.       if (! val_obj)
  364.         goto error;

  365.       show_doc_string = call_doc_function (obj, show_doc_func, val_obj);
  366.       Py_DECREF (val_obj);
  367.       if (! show_doc_string)
  368.         goto error;

  369.       make_cleanup (xfree, show_doc_string);

  370.       fprintf_filtered (file, "%s\n", show_doc_string);
  371.     }
  372.   else
  373.     {
  374.       /* We have to preserve the existing < GDB 7.3 API.  If a
  375.          callback function does not exist, then attempt to read the
  376.          show_doc attribute.  */
  377.       show_doc_string  = get_doc_string (obj, show_doc_cst);
  378.       make_cleanup (xfree, show_doc_string);
  379.       fprintf_filtered (file, "%s %s\n", show_doc_string, value);
  380.     }

  381.   Py_XDECREF (show_doc_func);
  382.   do_cleanups (cleanup);
  383.   return;

  384. error:
  385.   Py_XDECREF (show_doc_func);
  386.   gdbpy_print_stack ();
  387.   do_cleanups (cleanup);
  388.   return;
  389. }


  390. /* A helper function that dispatches to the appropriate add_setshow
  391.    function.  */
  392. static void
  393. add_setshow_generic (int parmclass, enum command_class cmdclass,
  394.                      char *cmd_name, parmpy_object *self,
  395.                      char *set_doc, char *show_doc, char *help_doc,
  396.                      struct cmd_list_element **set_list,
  397.                      struct cmd_list_element **show_list)
  398. {
  399.   struct cmd_list_element *param = NULL;
  400.   const char *tmp_name = NULL;

  401.   switch (parmclass)
  402.     {
  403.     case var_boolean:

  404.       add_setshow_boolean_cmd (cmd_name, cmdclass,
  405.                                &self->value.intval, set_doc, show_doc,
  406.                                help_doc, get_set_value, get_show_value,
  407.                                set_list, show_list);

  408.       break;

  409.     case var_auto_boolean:
  410.       add_setshow_auto_boolean_cmd (cmd_name, cmdclass,
  411.                                     &self->value.autoboolval,
  412.                                     set_doc, show_doc, help_doc,
  413.                                     get_set_value, get_show_value,
  414.                                     set_list, show_list);
  415.       break;

  416.     case var_uinteger:
  417.       add_setshow_uinteger_cmd (cmd_name, cmdclass,
  418.                                 &self->value.uintval, set_doc, show_doc,
  419.                                 help_doc, get_set_value, get_show_value,
  420.                                 set_list, show_list);
  421.       break;

  422.     case var_integer:
  423.       add_setshow_integer_cmd (cmd_name, cmdclass,
  424.                                &self->value.intval, set_doc, show_doc,
  425.                                help_doc, get_set_value, get_show_value,
  426.                                set_list, show_list); break;

  427.     case var_string:
  428.       add_setshow_string_cmd (cmd_name, cmdclass,
  429.                               &self->value.stringval, set_doc, show_doc,
  430.                               help_doc, get_set_value, get_show_value,
  431.                               set_list, show_list); break;

  432.     case var_string_noescape:
  433.       add_setshow_string_noescape_cmd (cmd_name, cmdclass,
  434.                                        &self->value.stringval,
  435.                                        set_doc, show_doc, help_doc,
  436.                                        get_set_value, get_show_value,
  437.                                        set_list, show_list);

  438.       break;

  439.     case var_optional_filename:
  440.       add_setshow_optional_filename_cmd (cmd_name, cmdclass,
  441.                                          &self->value.stringval, set_doc,
  442.                                          show_doc, help_doc, get_set_value,
  443.                                          get_show_value, set_list,
  444.                                          show_list);
  445.       break;

  446.     case var_filename:
  447.       add_setshow_filename_cmd (cmd_name, cmdclass,
  448.                                 &self->value.stringval, set_doc, show_doc,
  449.                                 help_doc, get_set_value, get_show_value,
  450.                                 set_list, show_list); break;

  451.     case var_zinteger:
  452.       add_setshow_zinteger_cmd (cmd_name, cmdclass,
  453.                                 &self->value.intval, set_doc, show_doc,
  454.                                 help_doc, get_set_value, get_show_value,
  455.                                 set_list, show_list);
  456.       break;

  457.     case var_enum:
  458.       add_setshow_enum_cmd (cmd_name, cmdclass, self->enumeration,
  459.                             &self->value.cstringval, set_doc, show_doc,
  460.                             help_doc, get_set_value, get_show_value,
  461.                             set_list, show_list);
  462.       /* Initialize the value, just in case.  */
  463.       self->value.cstringval = self->enumeration[0];
  464.       break;
  465.     }

  466.   /* Lookup created parameter, and register Python object against the
  467.      parameter context.  Perform this task against both lists.  */
  468.   tmp_name = cmd_name;
  469.   param = lookup_cmd (&tmp_name, *show_list, "", 0, 1);
  470.   if (param)
  471.     set_cmd_context (param, self);

  472.   tmp_name = cmd_name;
  473.   param = lookup_cmd (&tmp_name, *set_list, "", 0, 1);
  474.   if (param)
  475.     set_cmd_context (param, self);
  476. }

  477. /* A helper which computes enum values.  Returns 1 on success.  Returns 0 on
  478.    error, with a python exception set.  */
  479. static int
  480. compute_enum_values (parmpy_object *self, PyObject *enum_values)
  481. {
  482.   Py_ssize_t size, i;
  483.   struct cleanup *back_to;

  484.   if (! enum_values)
  485.     {
  486.       PyErr_SetString (PyExc_RuntimeError,
  487.                        _("An enumeration is required for PARAM_ENUM."));
  488.       return 0;
  489.     }

  490.   if (! PySequence_Check (enum_values))
  491.     {
  492.       PyErr_SetString (PyExc_RuntimeError,
  493.                        _("The enumeration is not a sequence."));
  494.       return 0;
  495.     }

  496.   size = PySequence_Size (enum_values);
  497.   if (size < 0)
  498.     return 0;
  499.   if (size == 0)
  500.     {
  501.       PyErr_SetString (PyExc_RuntimeError,
  502.                        _("The enumeration is empty."));
  503.       return 0;
  504.     }

  505.   self->enumeration = xmalloc ((size + 1) * sizeof (char *));
  506.   back_to = make_cleanup (free_current_contents, &self->enumeration);
  507.   memset (self->enumeration, 0, (size + 1) * sizeof (char *));

  508.   for (i = 0; i < size; ++i)
  509.     {
  510.       PyObject *item = PySequence_GetItem (enum_values, i);

  511.       if (! item)
  512.         {
  513.           do_cleanups (back_to);
  514.           return 0;
  515.         }
  516.       if (! gdbpy_is_string (item))
  517.         {
  518.           Py_DECREF (item);
  519.           do_cleanups (back_to);
  520.           PyErr_SetString (PyExc_RuntimeError,
  521.                            _("The enumeration item not a string."));
  522.           return 0;
  523.         }
  524.       self->enumeration[i] = python_string_to_host_string (item);
  525.       Py_DECREF (item);
  526.       if (self->enumeration[i] == NULL)
  527.         {
  528.           do_cleanups (back_to);
  529.           return 0;
  530.         }
  531.       make_cleanup (xfree, (char *) self->enumeration[i]);
  532.     }

  533.   discard_cleanups (back_to);
  534.   return 1;
  535. }

  536. /* Object initializer; sets up gdb-side structures for command.

  537.    Use: __init__(NAME, CMDCLASS, PARMCLASS, [ENUM])

  538.    NAME is the name of the parameter.  It may consist of multiple
  539.    words, in which case the final word is the name of the new command,
  540.    and earlier words must be prefix commands.

  541.    CMDCLASS is the kind of command.  It should be one of the COMMAND_*
  542.    constants defined in the gdb module.

  543.    PARMCLASS is the type of the parameter.  It should be one of the
  544.    PARAM_* constants defined in the gdb module.

  545.    If PARMCLASS is PARAM_ENUM, then the final argument should be a
  546.    collection of strings.  These strings are the valid values for this
  547.    parameter.

  548.    The documentation for the parameter is taken from the doc string
  549.    for the python class.

  550.    Returns -1 on error, with a python exception set.  */

  551. static int
  552. parmpy_init (PyObject *self, PyObject *args, PyObject *kwds)
  553. {
  554.   parmpy_object *obj = (parmpy_object *) self;
  555.   const char *name;
  556.   char *set_doc, *show_doc, *doc;
  557.   char *cmd_name;
  558.   int parmclass, cmdtype;
  559.   PyObject *enum_values = NULL;
  560.   struct cmd_list_element **set_list, **show_list;
  561.   volatile struct gdb_exception except;

  562.   if (! PyArg_ParseTuple (args, "sii|O", &name, &cmdtype, &parmclass,
  563.                           &enum_values))
  564.     return -1;

  565.   if (cmdtype != no_class && cmdtype != class_run
  566.       && cmdtype != class_vars && cmdtype != class_stack
  567.       && cmdtype != class_files && cmdtype != class_support
  568.       && cmdtype != class_info && cmdtype != class_breakpoint
  569.       && cmdtype != class_trace && cmdtype != class_obscure
  570.       && cmdtype != class_maintenance)
  571.     {
  572.       PyErr_Format (PyExc_RuntimeError, _("Invalid command class argument."));
  573.       return -1;
  574.     }

  575.   if (parmclass != var_boolean /* ARI: var_boolean */
  576.       && parmclass != var_auto_boolean
  577.       && parmclass != var_uinteger && parmclass != var_integer
  578.       && parmclass != var_string && parmclass != var_string_noescape
  579.       && parmclass != var_optional_filename && parmclass != var_filename
  580.       && parmclass != var_zinteger && parmclass != var_enum)
  581.     {
  582.       PyErr_SetString (PyExc_RuntimeError,
  583.                        _("Invalid parameter class argument."));
  584.       return -1;
  585.     }

  586.   if (enum_values && parmclass != var_enum)
  587.     {
  588.       PyErr_SetString (PyExc_RuntimeError,
  589.                        _("Only PARAM_ENUM accepts a fourth argument."));
  590.       return -1;
  591.     }
  592.   if (parmclass == var_enum)
  593.     {
  594.       if (! compute_enum_values (obj, enum_values))
  595.         return -1;
  596.     }
  597.   else
  598.     obj->enumeration = NULL;
  599.   obj->type = (enum var_types) parmclass;
  600.   memset (&obj->value, 0, sizeof (obj->value));

  601.   cmd_name = gdbpy_parse_command_name (name, &set_list,
  602.                                        &setlist);

  603.   if (! cmd_name)
  604.     return -1;
  605.   xfree (cmd_name);
  606.   cmd_name = gdbpy_parse_command_name (name, &show_list,
  607.                                        &showlist);
  608.   if (! cmd_name)
  609.     return -1;

  610.   set_doc = get_doc_string (self, set_doc_cst);
  611.   show_doc = get_doc_string (self, show_doc_cst);
  612.   doc = get_doc_string (self, gdbpy_doc_cst);

  613.   Py_INCREF (self);

  614.   TRY_CATCH (except, RETURN_MASK_ALL)
  615.     {
  616.       add_setshow_generic (parmclass, (enum command_class) cmdtype,
  617.                            cmd_name, obj,
  618.                            set_doc, show_doc,
  619.                            doc, set_list, show_list);
  620.     }
  621.   if (except.reason < 0)
  622.     {
  623.       xfree (cmd_name);
  624.       xfree (set_doc);
  625.       xfree (show_doc);
  626.       xfree (doc);
  627.       Py_DECREF (self);
  628.       PyErr_Format (except.reason == RETURN_QUIT
  629.                     ? PyExc_KeyboardInterrupt : PyExc_RuntimeError,
  630.                     "%s", except.message);
  631.       return -1;
  632.     }
  633.   return 0;
  634. }



  635. /* Initialize the 'parameters' module.  */
  636. int
  637. gdbpy_initialize_parameters (void)
  638. {
  639.   int i;

  640.   parmpy_object_type.tp_new = PyType_GenericNew;
  641.   if (PyType_Ready (&parmpy_object_type) < 0)
  642.     return -1;

  643.   set_doc_cst = PyString_FromString ("set_doc");
  644.   if (! set_doc_cst)
  645.     return -1;
  646.   show_doc_cst = PyString_FromString ("show_doc");
  647.   if (! show_doc_cst)
  648.     return -1;

  649.   for (i = 0; parm_constants[i].name; ++i)
  650.     {
  651.       if (PyModule_AddIntConstant (gdb_module,
  652.                                    parm_constants[i].name,
  653.                                    parm_constants[i].value) < 0)
  654.         return -1;
  655.     }

  656.   return gdb_pymodule_addobject (gdb_module, "Parameter",
  657.                                  (PyObject *) &parmpy_object_type);
  658. }



  659. static PyTypeObject parmpy_object_type =
  660. {
  661.   PyVarObject_HEAD_INIT (NULL, 0)
  662.   "gdb.Parameter",                  /*tp_name*/
  663.   sizeof (parmpy_object),          /*tp_basicsize*/
  664.   0,                                  /*tp_itemsize*/
  665.   0,                                  /*tp_dealloc*/
  666.   0,                                  /*tp_print*/
  667.   0,                                  /*tp_getattr*/
  668.   0,                                  /*tp_setattr*/
  669.   0,                                  /*tp_compare*/
  670.   0,                                  /*tp_repr*/
  671.   0,                                  /*tp_as_number*/
  672.   0,                                  /*tp_as_sequence*/
  673.   0,                                  /*tp_as_mapping*/
  674.   0,                                  /*tp_hash */
  675.   0,                                  /*tp_call*/
  676.   0,                                  /*tp_str*/
  677.   get_attr,                          /*tp_getattro*/
  678.   set_attr,                          /*tp_setattro*/
  679.   0,                                  /*tp_as_buffer*/
  680.   Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
  681.   "GDB parameter object",          /* tp_doc */
  682.   0,                                  /* tp_traverse */
  683.   0,                                  /* tp_clear */
  684.   0,                                  /* tp_richcompare */
  685.   0,                                  /* tp_weaklistoffset */
  686.   0,                                  /* tp_iter */
  687.   0,                                  /* tp_iternext */
  688.   0,                                  /* tp_methods */
  689.   0,                                  /* tp_members */
  690.   0,                                  /* tp_getset */
  691.   0,                                  /* tp_base */
  692.   0,                                  /* tp_dict */
  693.   0,                                  /* tp_descr_get */
  694.   0,                                  /* tp_descr_set */
  695.   0,                                  /* tp_dictoffset */
  696.   parmpy_init,                          /* tp_init */
  697.   0,                                  /* tp_alloc */
  698. };