2012-07-13 09:40:48 +02:00
|
|
|
.. default-role:: literal
|
|
|
|
|
2012-11-20 17:14:58 +01:00
|
|
|
The `tiramisu.option.Option` options
|
|
|
|
======================================
|
2012-07-13 09:40:48 +02:00
|
|
|
|
|
|
|
Description of Options
|
|
|
|
----------------------
|
|
|
|
|
2012-10-05 16:00:07 +02:00
|
|
|
All the constructors take a ``name`` and a ``doc`` argument as first
|
|
|
|
arguments to give the option or option group a name and to document it.
|
|
|
|
Most constructors take a ``default`` argument that specifies the default
|
|
|
|
value of the option. If this argument is not supplied the default value
|
|
|
|
is assumed to be ``None``.
|
|
|
|
|
2012-07-13 09:40:48 +02:00
|
|
|
|
2013-02-19 11:24:17 +01:00
|
|
|
.. _optdescr:
|
|
|
|
|
2012-11-20 17:14:58 +01:00
|
|
|
The `OptionDescription` class
|
|
|
|
-------------------------------
|
2012-07-13 09:40:48 +02:00
|
|
|
|
|
|
|
This class is used to group suboptions.
|
|
|
|
|
2012-11-20 17:14:58 +01:00
|
|
|
.. module:: tiramisu.option
|
|
|
|
|
|
|
|
.. autoclass: OptionDescription
|
|
|
|
|
|
|
|
.. automethod:: __init__
|
|
|
|
|
|
|
|
.. rubric:: Methods
|
|
|
|
|
|
|
|
.. autosummary::
|
|
|
|
|
|
|
|
~Config.__init__
|
|
|
|
~Config.set_group_type
|
|
|
|
|
|
|
|
.. automethod:: set_group_type
|
2012-07-13 09:40:48 +02:00
|
|
|
|
2012-11-20 17:14:58 +01:00
|
|
|
..
|
|
|
|
|
|
|
|
|
|
|
|
``__init__(self, name, doc, children)``
|
|
|
|
``children`` is a list of option descriptions (including
|
|
|
|
``OptionDescription`` instances for nested namespaces).
|
|
|
|
|
|
|
|
``set_group_type(self, group_name)``
|
|
|
|
Three available group_types : `default`, `family`, `group` and
|
|
|
|
`master` (for master~slave group type). Notice that for a
|
|
|
|
master~slave group, the name of the group and the name of the
|
|
|
|
master option are identical.
|
2012-07-13 09:40:48 +02:00
|
|
|
|
2012-10-05 16:00:07 +02:00
|
|
|
`Options description` objects lives in the `_cfgimpl_descr` config attribute.
|
2012-07-13 09:40:48 +02:00
|
|
|
|
|
|
|
If you need to access an option object, you can do it with the OptionDescription
|
|
|
|
object. Not only the value of the option by attribute access, but the option
|
|
|
|
object itself that lives behind the scene. It can always be accessed internally
|
|
|
|
with the `_cfgimpl_descr` attribute of the `config` objects. For example, with a
|
|
|
|
option named `name` in a `gc` group the `name` object can be accessed like
|
|
|
|
this::
|
|
|
|
|
|
|
|
conf._cfgimpl_descr.name
|
2012-10-05 16:00:07 +02:00
|
|
|
|
2012-07-13 09:40:48 +02:00
|
|
|
of sub configs with ::
|
|
|
|
|
|
|
|
conf.gc._cfgimpl_descr.name
|
|
|
|
|
|
|
|
This is a binding. The option objects are in the `_children` config's attribute.
|
|
|
|
|
|
|
|
Why accessing an option object ? It is possible for example freeze the
|
2012-10-05 16:00:07 +02:00
|
|
|
configuration option
|
2012-07-13 09:40:48 +02:00
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
conf.gc._cfgimpl_descr.dummy.freeze()
|
|
|
|
|
|
|
|
or to hide it, or disable it, or... anything.
|
|
|
|
|
2012-11-20 17:14:58 +01:00
|
|
|
The `Option` class
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
It's an abstract base class for option wich are typed (int, string...)
|
|
|
|
|
2012-07-13 09:40:48 +02:00
|
|
|
.. _optioninit:
|
|
|
|
|
2012-11-20 17:14:58 +01:00
|
|
|
.. autoclass:: Option
|
|
|
|
:special-members:
|
|
|
|
:members:
|
|
|
|
|
2012-07-13 09:40:48 +02:00
|
|
|
generic option ``__init__`` method:
|
|
|
|
|
|
|
|
``__init__(name, doc, default=None, requires=None, multi=False, mandatory=False)``
|
|
|
|
|
|
|
|
``BoolOption``
|
|
|
|
++++++++++++++
|
|
|
|
|
2012-10-05 16:00:07 +02:00
|
|
|
Represents a choice between ``True`` and ``False``.
|
2012-07-13 09:40:48 +02:00
|
|
|
|
|
|
|
``IntOption``
|
|
|
|
+++++++++++++
|
|
|
|
|
|
|
|
Represents a choice of an integer.
|
|
|
|
|
|
|
|
``FloatOption``
|
|
|
|
+++++++++++++++
|
|
|
|
|
|
|
|
Represents a choice of a floating point number.
|
|
|
|
|
|
|
|
``StrOption``
|
|
|
|
+++++++++++++
|
|
|
|
|
|
|
|
Represents the choice of a string.
|
|
|
|
|
|
|
|
``SymLinkOption``
|
|
|
|
++++++++++++++++++
|
|
|
|
|
|
|
|
Redirects to another configuration option in the configuration, that is :
|
|
|
|
|
|
|
|
- retrieves the value of the tagert,
|
|
|
|
- can set the value of the target too.
|
|
|
|
|
|
|
|
``__init__(self, name, path)``
|
2012-10-05 16:00:07 +02:00
|
|
|
|
|
|
|
`path` is the path to the target, the option
|
2012-07-13 09:40:48 +02:00
|
|
|
|
|
|
|
``IPOption``
|
|
|
|
+++++++++++++
|
|
|
|
|
|
|
|
Represents the choice of an ip.
|
|
|
|
|
|
|
|
``NetmaskOption``
|
|
|
|
+++++++++++++++++++
|
|
|
|
|
|
|
|
Represents the choice of a netmask.
|
|
|
|
|
|
|
|
``ChoiceOption``
|
|
|
|
++++++++++++++++
|
|
|
|
|
|
|
|
Represents a choice out of several objects. The option can also have the value
|
|
|
|
``None``.
|
|
|
|
|
|
|
|
``__init__(self, name, doc, values, default=None, requires=None)``
|
|
|
|
``values`` is a list of values the option can possibly take.
|