Next: Functions In Python, Previous: Commands In Python, Up: Python API
You can implement new gdb parameters using Python. A new
parameter is implemented as an instance of the gdb.Parameter
class.
Parameters are exposed to the user via the set
and
show
commands. See Help.
There are many parameters that already exist and can be set in
gdb. Two examples are: set follow fork
and
set charset
. Setting these parameters influences certain
behavior in gdb. Similarly, you can define parameters that
can be used to influence behavior in custom Python scripts and commands.
The object initializer for
Parameter
registers the new parameter with gdb. This initializer is normally invoked from the subclass' own__init__
method.name is the name of the new parameter. If name consists of multiple words, then the initial words are looked for as prefix parameters. An example of this can be illustrated with the
set print
set of parameters. If name isprint foo
, thenset print foo
.If name consists of multiple words, and no prefix parameter group can be found, an exception is raised.
command-class should be one of the `COMMAND_' constants (see Commands In Python). This argument tells gdb how to categorize the new parameter in the help system.
parameter-class should be one of the `PARAM_' constants defined below. This argument tells gdb the type of the new parameter; this information is used for input validation and completion.
If parameter-class is
PARAM_ENUM
, then enum-sequence must be a sequence of strings. These strings represent the possible values for the parameter.If parameter-class is not
PARAM_ENUM
, then the presence of a fourth argument will cause an exception to be thrown.The help text for the new parameter is taken from the Python documentation string for the parameter's class, if there is one. If there is no documentation string, a default value is used.
If this attribute exists, and is a string, then its value is used as the help text for this parameter's
set
command. The value is examined whenParameter.__init__
is invoked; subsequent changes have no effect.
If this attribute exists, and is a string, then its value is used as the help text for this parameter's
show
command. The value is examined whenParameter.__init__
is invoked; subsequent changes have no effect.
The
value
attribute holds the underlying value of the parameter. It can be read and assigned to just as any other attribute. gdb does validation when assignments are made.
There are two methods that should be implemented in any
Parameter
class. These are:
gdb will call this method when a parameter's value has been changed via the
set
API (for example, set foo off). Thevalue
attribute has already been populated with the new value and may be used in output. This method must return a string.
gdb will call this method when a parameter's
show
API has been invoked (for example, show foo). The argumentsvalue
receives the string representation of the current value. This method must return a string.
When a new parameter is defined, its type must be specified. The
available types are represented by constants defined in the gdb
module:
gdb.PARAM_BOOLEAN
True
and False
are the only valid values.
gdb.PARAM_AUTO_BOOLEAN
None
.
gdb.PARAM_UINTEGER
gdb.PARAM_INTEGER
gdb.PARAM_STRING
gdb.PARAM_STRING_NOESCAPE
gdb.PARAM_OPTIONAL_FILENAME
None
.
gdb.PARAM_FILENAME
PARAM_STRING_NOESCAPE
, but uses file names for completion.
gdb.PARAM_ZINTEGER
PARAM_INTEGER
, except 0
is interpreted as itself.
gdb.PARAM_ENUM