tiramisu/tiramisu/option.py

1543 lines
63 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2013-08-23 11:16:26 +02:00
"option types and option description"
2013-02-21 17:07:00 +01:00
# Copyright (C) 2012-2013 Team tiramisu (see AUTHORS for all contributors)
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
2012-10-05 16:00:07 +02:00
# The original `Config` design model is unproudly borrowed from
# the rough pypy's guys: http://codespeak.net/svn/pypy/dist/pypy/config/
# the whole pypy projet is under MIT licence
# ____________________________________________________________
2013-02-25 15:52:10 +01:00
import re
import sys
from copy import copy, deepcopy
2012-11-19 09:51:40 +01:00
from types import FunctionType
from IPy import IP
import warnings
from tiramisu.error import ConfigError, ConflictError, ValueWarning
from tiramisu.setting import groups, multitypes
2013-04-13 23:09:05 +02:00
from tiramisu.i18n import _
from tiramisu.autolib import carry_out_calculation
2012-10-15 15:06:41 +02:00
2013-02-25 15:52:10 +01:00
name_regexp = re.compile(r'^\d+')
forbidden_names = ('iter_all', 'iter_group', 'find', 'find_first',
'make_dict', 'unwrap_from_path', 'read_only',
'read_write', 'getowner', 'set_contexts')
2013-02-25 15:52:10 +01:00
2013-04-03 12:20:26 +02:00
2013-02-25 15:52:10 +01:00
def valid_name(name):
2013-05-23 14:55:52 +02:00
"an option's name is a str and does not start with 'impl' or 'cfgimpl'"
2013-12-09 17:55:52 +01:00
if not isinstance(name, str):
2013-04-14 12:01:32 +02:00
return False
if re.match(name_regexp, name) is None and not name.startswith('_') \
and name not in forbidden_names \
and not name.startswith('impl_') \
2013-05-02 11:34:57 +02:00
and not name.startswith('cfgimpl_'):
2013-02-25 16:06:10 +01:00
return True
else:
return False
#____________________________________________________________
#
2013-02-25 16:06:10 +01:00
2013-04-03 12:20:26 +02:00
class BaseOption(object):
2013-09-02 15:06:55 +02:00
"""This abstract base class stands for attribute access
in options that have to be set only once, it is of course done in the
__setattr__ method
"""
2013-09-02 20:46:51 +02:00
__slots__ = ('_name', '_requires', '_properties', '_readonly',
'_calc_properties', '_impl_informations',
'_state_readonly', '_state_requires', '_stated')
def __init__(self, name, doc, requires, properties):
if not valid_name(name):
raise ValueError(_("invalid name: {0} for option").format(name))
self._name = name
self._impl_informations = {}
self.impl_set_information('doc', doc)
self._calc_properties, self._requires = validate_requires_arg(
requires, self._name)
if properties is None:
properties = tuple()
if not isinstance(properties, tuple):
raise TypeError(_('invalid properties type {0} for {1},'
' must be a tuple').format(
type(properties),
self._name))
if self._calc_properties is not None and properties is not tuple():
set_forbidden_properties = set(properties) & self._calc_properties
if set_forbidden_properties != frozenset():
raise ValueError('conflict: properties already set in '
'requirement {0}'.format(
list(set_forbidden_properties)))
self._properties = properties # 'hidden', 'disabled'...
def __setattr__(self, name, value):
2013-09-02 15:06:55 +02:00
"""set once and only once some attributes in the option,
like `_name`. `_name` cannot be changed one the option and
pushed in the :class:`tiramisu.option.OptionDescription`.
if the attribute `_readonly` is set to `True`, the option is
"frozen" (which has noting to do with the high level "freeze"
propertie or "read_only" property)
"""
if not name.startswith('_state') and not name.startswith('_cache'):
2013-09-02 15:01:49 +02:00
is_readonly = False
# never change _name
if name == '_name':
try:
self._name
#so _name is already set
is_readonly = True
except:
pass
elif name != '_readonly':
try:
if self._readonly is True:
is_readonly = True
except AttributeError:
self._readonly = False
2013-09-02 15:01:49 +02:00
if is_readonly:
raise AttributeError(_("'{0}' ({1}) object attribute '{2}' is"
" read-only").format(
self.__class__.__name__,
self._name,
name))
object.__setattr__(self, name, value)
# information
def impl_set_information(self, key, value):
"""updates the information's attribute
(which is a dictionary)
:param key: information's key (ex: "help", "doc"
:param value: information's value (ex: "the help string")
"""
self._impl_informations[key] = value
def impl_get_information(self, key, default=None):
"""retrieves one information's item
:param key: the item string (ex: "help")
"""
if key in self._impl_informations:
return self._impl_informations[key]
elif default is not None:
return default
else:
raise ValueError(_("information's item not found: {0}").format(
key))
def _impl_convert_requires(self, descr, load=False):
2013-09-04 09:05:12 +02:00
"""export of the requires during the serialization process
:type descr: :class:`tiramisu.option.OptionDescription`
:param load: `True` if we are at the init of the option description
:type load: bool
"""
if not load and self._requires is None:
2013-09-02 15:01:49 +02:00
self._state_requires = None
elif load and self._state_requires is None:
self._requires = None
del(self._state_requires)
2013-09-02 15:01:49 +02:00
else:
if load:
_requires = self._state_requires
else:
_requires = self._requires
2013-09-02 15:01:49 +02:00
new_value = []
for requires in _requires:
2013-09-02 15:01:49 +02:00
new_requires = []
for require in requires:
if load:
new_require = [descr.impl_get_opt_by_path(require[0])]
2013-09-02 15:01:49 +02:00
else:
new_require = [descr.impl_get_path_by_opt(require[0])]
2013-09-02 15:01:49 +02:00
new_require.extend(require[1:])
new_requires.append(tuple(new_require))
new_value.append(tuple(new_requires))
if load:
del(self._state_requires)
self._requires = new_value
2013-09-02 15:01:49 +02:00
else:
self._state_requires = new_value
# serialize
2013-09-02 15:01:49 +02:00
def _impl_getstate(self, descr):
2013-09-03 11:01:07 +02:00
"""the under the hood stuff that need to be done
before the serialization.
:param descr: the parent :class:`tiramisu.option.OptionDescription`
"""
2013-09-02 21:29:41 +02:00
self._stated = True
2013-09-22 20:57:52 +02:00
for func in dir(self):
if func.startswith('_impl_convert_'):
getattr(self, func)(descr)
self._state_readonly = self._readonly
2013-09-02 15:01:49 +02:00
def __getstate__(self, stated=True):
2013-09-03 11:01:07 +02:00
"""special method to enable the serialization with pickle
Usualy, a `__getstate__` method does'nt need any parameter,
but somme under the hood stuff need to be done before this action
:parameter stated: if stated is `True`, the serialization protocol
can be performed, not ready yet otherwise
:parameter type: bool
"""
2013-09-02 21:29:41 +02:00
try:
self._stated
except AttributeError:
2013-09-04 09:05:12 +02:00
raise SystemError(_('cannot serialize Option, '
'only in OptionDescription'))
2013-09-02 15:01:49 +02:00
slots = set()
2013-09-01 22:20:11 +02:00
for subclass in self.__class__.__mro__:
if subclass is not object:
slots.update(subclass.__slots__)
slots -= frozenset(['_cache_paths', '_cache_consistencies',
'__weakref__'])
2013-09-02 15:01:49 +02:00
states = {}
for slot in slots:
2013-09-04 09:05:12 +02:00
# remove variable if save variable converted
# in _state_xxxx variable
2013-09-02 15:01:49 +02:00
if '_state' + slot not in slots:
if slot.startswith('_state'):
# should exists
states[slot] = getattr(self, slot)
# remove _state_xxx variable
self.__delattr__(slot)
else:
try:
states[slot] = getattr(self, slot)
except AttributeError:
pass
if not stated:
del(states['_stated'])
2013-09-02 15:01:49 +02:00
return states
2013-09-01 22:20:11 +02:00
# unserialize
def _impl_setstate(self, descr):
2013-09-04 09:05:12 +02:00
"""the under the hood stuff that need to be done
before the serialization.
:type descr: :class:`tiramisu.option.OptionDescription`
"""
2013-09-22 20:57:52 +02:00
for func in dir(self):
if func.startswith('_impl_convert_'):
getattr(self, func)(descr, load=True)
try:
self._readonly = self._state_readonly
del(self._state_readonly)
del(self._stated)
except AttributeError:
pass
def __setstate__(self, state):
2013-09-04 09:05:12 +02:00
"""special method that enables us to serialize (pickle)
Usualy, a `__setstate__` method does'nt need any parameter,
but somme under the hood stuff need to be done before this action
:parameter state: a dict is passed to the loads, it is the attributes
of the options object
:type state: dict
"""
for key, value in state.items():
setattr(self, key, value)
2013-09-01 22:20:11 +02:00
class Option(BaseOption):
2012-10-05 16:00:07 +02:00
"""
2012-11-20 17:14:58 +01:00
Abstract base class for configuration option's.
2013-09-14 14:44:33 +02:00
Reminder: an Option object is **not** a container for the value.
2012-10-05 16:00:07 +02:00
"""
2013-09-04 09:05:12 +02:00
__slots__ = ('_multi', '_validator', '_default_multi', '_default',
2013-09-20 23:47:40 +02:00
'_state_callback', '_callback', '_multitype',
'_consistencies', '_warnings_only', '_master_slaves',
'_state_consistencies', '__weakref__')
2013-04-17 22:06:10 +02:00
_empty = ''
2013-04-03 12:20:26 +02:00
2012-10-05 16:00:07 +02:00
def __init__(self, name, doc, default=None, default_multi=None,
2013-04-03 12:20:26 +02:00
requires=None, multi=False, callback=None,
callback_params=None, validator=None, validator_params=None,
2013-09-27 09:52:18 +02:00
properties=None, warnings_only=False):
2012-11-12 12:06:58 +01:00
"""
2012-11-20 17:14:58 +01:00
:param name: the option's name
:param doc: the option's description
:param default: specifies the default value of the option,
for a multi : ['bla', 'bla', 'bla']
2012-11-12 12:06:58 +01:00
:param default_multi: 'bla' (used in case of a reset to default only at
2012-11-20 17:14:58 +01:00
a given index)
:param requires: is a list of names of options located anywhere
in the configuration.
:param multi: if true, the option's value is a list
:param callback: the name of a function. If set, the function's output
is responsible of the option's value
:param callback_params: the callback's parameter
2013-09-14 14:44:33 +02:00
:param validator: the name of a function which stands for a custom
2012-11-20 17:14:58 +01:00
validation of the value
:param validator_params: the validator's parameters
2013-09-14 14:44:33 +02:00
:param properties: tuple of default properties
2013-09-27 09:52:18 +02:00
:param warnings_only: _validator and _consistencies don't raise if True
2013-09-24 23:19:20 +02:00
Values()._warning contain message
2012-11-12 12:06:58 +01:00
"""
super(Option, self).__init__(name, doc, requires, properties)
self._multi = multi
2012-11-19 09:51:40 +01:00
if validator is not None:
validate_callback(validator, validator_params, 'validator')
self._validator = (validator, validator_params)
2013-04-03 12:20:26 +02:00
else:
self._validator = None
if not self._multi and default_multi is not None:
2013-04-14 12:01:32 +02:00
raise ValueError(_("a default_multi is set whereas multi is False"
" in option: {0}").format(name))
if default_multi is not None:
try:
self._validate(default_multi)
except ValueError as err:
raise ValueError(_("invalid default_multi value {0} "
2013-08-20 12:08:02 +02:00
"for option {1}: {2}").format(
2013-08-28 09:16:12 +02:00
str(default_multi), name, err))
2013-08-20 12:08:02 +02:00
if callback is not None and (default is not None or
default_multi is not None):
2013-07-17 22:30:35 +02:00
raise ValueError(_("default value not allowed if option: {0} "
2013-04-14 12:01:32 +02:00
"is calculated").format(name))
2013-04-03 12:20:26 +02:00
if callback is None and callback_params is not None:
2013-04-14 12:01:32 +02:00
raise ValueError(_("params defined for a callback function but "
2013-08-20 12:08:02 +02:00
"no callback defined"
" yet for option {0}").format(name))
2013-04-03 12:20:26 +02:00
if callback is not None:
validate_callback(callback, callback_params, 'callback')
self._callback = (callback, callback_params)
2013-04-03 12:20:26 +02:00
else:
self._callback = None
if self._multi:
2013-04-03 12:20:26 +02:00
if default is None:
default = []
self._multitype = multitypes.default
self._default_multi = default_multi
2013-09-27 09:52:18 +02:00
self._warnings_only = warnings_only
self.impl_validate(default)
self._default = default
self._consistencies = None
2012-10-05 16:00:07 +02:00
def _launch_consistency(self, func, option, value, context, index,
all_cons_opts, warnings_only):
"""Launch consistency now
:param func: function name, this name should start with _cons_
:type func: `str`
:param option: option that value is changing
:type option: `tiramisu.option.Option`
:param value: new value of this option
:param context: Config's context, if None, check default value instead
:type context: `tiramisu.config.Config`
:param index: only for multi option, consistency should be launch for
specified index
:type index: `int`
:param all_cons_opts: all options concerne by this consistency
:type all_cons_opts: `list` of `tiramisu.option.Option`
:param warnings_only: specific raise error for warning
:type warnings_only: `boolean`
"""
if context is not None:
descr = context.cfgimpl_get_description()
all_cons_vals = []
for opt in all_cons_opts:
#get value
if option == opt:
opt_value = value
else:
#if context, calculate value, otherwise get default value
if context is not None:
opt_value = context._getattr(
descr.impl_get_path_by_opt(opt), validate=False,
force_permissive=True)
else:
opt_value = opt.impl_getdefault()
#append value
if not self.impl_is_multi() or option == opt:
all_cons_vals.append(opt_value)
else:
#value is not already set, could be higher index
try:
all_cons_vals.append(opt_value[index])
except IndexError:
#so return if no value
return
getattr(self, func)(all_cons_opts, all_cons_vals, warnings_only)
2013-09-24 23:19:20 +02:00
def impl_validate(self, value, context=None, validate=True,
force_index=None):
2012-11-19 09:51:40 +01:00
"""
:param value: the option's value
2013-09-24 23:19:20 +02:00
:param context: Config's context
:type context: :class:`tiramisu.config.Config`
2012-11-19 09:51:40 +01:00
:param validate: if true enables ``self._validator`` validation
2013-09-24 23:19:20 +02:00
:type validate: boolean
:param force_no_multi: if multi, value has to be a list
not if force_no_multi is True
:type force_no_multi: boolean
2012-11-19 09:51:40 +01:00
"""
2013-05-10 22:32:42 +02:00
if not validate:
return
def val_validator(val):
if self._validator is not None:
if self._validator[1] is not None:
validator_params = deepcopy(self._validator[1])
if '' in validator_params:
lst = list(validator_params[''])
lst.insert(0, val)
validator_params[''] = tuple(lst)
else:
validator_params[''] = (val,)
else:
validator_params = {'': (val,)}
2013-09-24 23:19:20 +02:00
# Raise ValueError if not valid
carry_out_calculation(self, config=context,
2013-09-24 23:19:20 +02:00
callback=self._validator[0],
callback_params=validator_params)
def do_validation(_value, _index=None):
if _value is None:
return
2013-09-27 09:52:18 +02:00
# option validation
try:
self._validate(_value)
except ValueError as err:
raise ValueError(_('invalid value for option {0}: {1}'
'').format(self._name, err))
error = None
warning = None
try:
2013-09-24 23:19:20 +02:00
# valid with self._validator
val_validator(_value)
# if context launch consistency validation
2013-09-24 23:19:20 +02:00
if context is not None:
descr._valid_consistency(self, _value, context, _index,
self._warnings_only)
self._second_level_validation(_value, self._warnings_only)
except ValueError as error:
2013-09-27 09:52:18 +02:00
if self._warnings_only:
warning = error
error = None
except ValueWarning as warning:
pass
if warning:
msg = _("warning on the value of the option {0}: {1}").format(
self._name, warning)
warnings.warn_explicit(ValueWarning(msg, self),
ValueWarning,
self.__class__.__name__, 0)
elif error:
raise ValueError(_("invalid value for option {0}: {1}").format(
self._name, error))
2013-05-10 22:32:42 +02:00
2012-11-19 09:51:40 +01:00
# generic calculation
if context is not None:
descr = context.cfgimpl_get_description()
2013-09-24 23:19:20 +02:00
if not self._multi or force_index is not None:
do_validation(value, force_index)
2013-05-10 22:32:42 +02:00
else:
if not isinstance(value, list):
2013-12-05 09:59:07 +01:00
raise ValueError(_("invalid value {0} for option {1} which must be a list").format(value, self._name))
2013-09-24 23:19:20 +02:00
for index, val in enumerate(value):
2013-09-27 09:52:18 +02:00
do_validation(val, index)
2013-12-09 18:48:44 +01:00
def impl_getdefault(self):
2012-10-05 16:00:07 +02:00
"accessing the default value"
2013-12-09 18:48:44 +01:00
return self._default
def impl_getdefault_multi(self):
2012-11-15 14:59:36 +01:00
"accessing the default value for a multi"
return self._default_multi
def impl_get_multitype(self):
return self._multitype
def impl_get_master_slaves(self):
return self._master_slaves
2012-11-15 14:59:36 +01:00
def impl_is_empty_by_default(self):
2012-10-05 16:00:07 +02:00
"no default value has been set yet"
if ((not self.impl_is_multi() and self._default is None) or
2013-08-20 12:08:02 +02:00
(self.impl_is_multi() and (self._default == []
2013-08-28 09:16:12 +02:00
or None in self._default))):
2012-09-11 15:18:38 +02:00
return True
return False
def impl_getdoc(self):
2012-10-05 16:00:07 +02:00
"accesses the Option's doc"
return self.impl_get_information('doc')
2012-10-05 16:00:07 +02:00
def impl_has_callback(self):
2012-10-05 16:00:07 +02:00
"to know if a callback has been defined or not"
if self._callback is None:
2012-07-27 11:46:27 +02:00
return False
else:
return True
def impl_getkey(self, value):
return value
2013-04-03 12:20:26 +02:00
def impl_is_multi(self):
return self._multi
def impl_add_consistency(self, func, *other_opts, **params):
"""Add consistency means that value will be validate with other_opts
option's values.
:param func: function's name
:type func: `str`
:param other_opts: options used to validate value
:type other_opts: `list` of `tiramisu.option.Option`
:param params: extra params (only warnings_only are allowed)
"""
2013-04-16 09:34:00 +02:00
if self._consistencies is None:
self._consistencies = []
warnings_only = params.get('warnings_only', False)
for opt in other_opts:
if not isinstance(opt, Option):
raise ConfigError(_('consistency must be set with an option'))
if self is opt:
raise ConfigError(_('cannot add consistency with itself'))
if self.impl_is_multi() != opt.impl_is_multi():
raise ConfigError(_('every options in consistency must be '
'multi or none'))
2013-07-02 15:05:50 +02:00
func = '_cons_{0}'.format(func)
all_cons_opts = tuple([self] + list(other_opts))
value = self.impl_getdefault()
if value is not None:
if self.impl_is_multi():
for idx, val in enumerate(value):
self._launch_consistency(func, self, val, None,
idx, all_cons_opts, warnings_only)
else:
self._launch_consistency(func, self, value, None,
None, all_cons_opts, warnings_only)
self._consistencies.append((func, all_cons_opts, params))
2013-05-10 22:32:42 +02:00
self.impl_validate(self.impl_getdefault())
2013-04-16 09:34:00 +02:00
def _cons_not_equal(self, opts, vals, warnings_only):
for idx_inf, val_inf in enumerate(vals):
for idx_sup, val_sup in enumerate(vals[idx_inf + 1:]):
if val_inf == val_sup is not None:
if warnings_only:
msg = _("same value for {0} and {1}, should be different")
else:
msg = _("same value for {0} and {1}, must be different")
raise ValueError(msg.format(opts[idx_inf]._name,
opts[idx_inf + idx_sup + 1]._name))
2013-04-14 10:14:06 +02:00
2013-09-20 23:47:40 +02:00
def _impl_convert_callbacks(self, descr, load=False):
if not load and self._callback is None:
self._state_callback = None
elif load and self._state_callback is None:
self._callback = None
del(self._state_callback)
else:
if load:
callback, callback_params = self._state_callback
else:
callback, callback_params = self._callback
if callback_params is not None:
cllbck_prms = {}
for key, values in callback_params.items():
vls = []
for value in values:
if isinstance(value, tuple):
if load:
value = (descr.impl_get_opt_by_path(value[0]),
value[1])
else:
value = (descr.impl_get_path_by_opt(value[0]),
value[1])
vls.append(value)
cllbck_prms[key] = tuple(vls)
else:
cllbck_prms = None
if load:
del(self._state_callback)
self._callback = (callback, cllbck_prms)
else:
self._state_callback = (callback, cllbck_prms)
# serialize/unserialize
def _impl_convert_consistencies(self, descr, load=False):
"""during serialization process, many things have to be done.
one of them is the localisation of the options.
The paths are set once for all.
:type descr: :class:`tiramisu.option.OptionDescription`
:param load: `True` if we are at the init of the option description
:type load: bool
"""
if not load and self._consistencies is None:
self._state_consistencies = None
elif load and self._state_consistencies is None:
self._consistencies = None
del(self._state_consistencies)
else:
if load:
consistencies = self._state_consistencies
else:
consistencies = self._consistencies
2014-02-06 22:17:20 +01:00
new_value = []
for consistency in consistencies:
values = []
for obj in consistency[1]:
if load:
values.append(descr.impl_get_opt_by_path(obj))
else:
values.append(descr.impl_get_path_by_opt(obj))
new_value.append((consistency[0], tuple(values), consistency[2]))
if load:
del(self._state_consistencies)
self._consistencies = new_value
else:
self._state_consistencies = new_value
def _second_level_validation(self, value, warnings_only):
pass
2012-10-05 16:00:07 +02:00
class ChoiceOption(Option):
2013-05-23 14:55:52 +02:00
"""represents a choice out of several objects.
The option can also have the value ``None``
"""
__slots__ = ('_values', '_open_values')
_opt_type = 'string'
2012-10-05 16:00:07 +02:00
2012-11-16 10:04:25 +01:00
def __init__(self, name, doc, values, default=None, default_multi=None,
2013-04-03 12:20:26 +02:00
requires=None, multi=False, callback=None,
2012-11-19 09:51:40 +01:00
callback_params=None, open_values=False, validator=None,
2013-09-27 09:52:18 +02:00
validator_params=None, properties=None, warnings_only=False):
"""
:param values: is a list of values the option can possibly take
"""
2013-04-03 12:20:26 +02:00
if not isinstance(values, tuple):
2013-04-14 12:01:32 +02:00
raise TypeError(_('values must be a tuple for {0}').format(name))
self._values = values
2013-04-03 12:20:26 +02:00
if open_values not in (True, False):
2013-04-14 12:01:32 +02:00
raise TypeError(_('open_values must be a boolean for '
'{0}').format(name))
self._open_values = open_values
super(ChoiceOption, self).__init__(name, doc, default=default,
2013-04-03 12:20:26 +02:00
default_multi=default_multi,
callback=callback,
callback_params=callback_params,
requires=requires,
multi=multi,
validator=validator,
validator_params=validator_params,
2013-09-24 23:19:20 +02:00
properties=properties,
2013-09-27 09:52:18 +02:00
warnings_only=warnings_only)
def impl_get_values(self):
return self._values
def impl_is_openvalues(self):
return self._open_values
def _validate(self, value):
2014-02-04 21:14:30 +01:00
if not self.impl_is_openvalues() and not value in self.impl_get_values():
2013-08-20 12:08:02 +02:00
raise ValueError(_('value {0} is not permitted, '
'only {1} is allowed'
'').format(value, self._values))
2013-04-03 12:20:26 +02:00
class BoolOption(Option):
2013-05-23 14:55:52 +02:00
"represents a choice between ``True`` and ``False``"
__slots__ = tuple()
_opt_type = 'bool'
2012-10-05 16:00:07 +02:00
def _validate(self, value):
if not isinstance(value, bool):
raise ValueError(_('invalid boolean'))
2013-04-03 12:20:26 +02:00
class IntOption(Option):
2013-05-23 14:55:52 +02:00
"represents a choice of an integer"
__slots__ = tuple()
_opt_type = 'int'
2012-10-05 16:00:07 +02:00
def _validate(self, value):
if not isinstance(value, int):
raise ValueError(_('invalid integer'))
2013-04-03 12:20:26 +02:00
class FloatOption(Option):
2013-05-23 14:55:52 +02:00
"represents a choice of a floating point number"
__slots__ = tuple()
_opt_type = 'float'
def _validate(self, value):
if not isinstance(value, float):
raise ValueError(_('invalid float'))
2013-04-03 12:20:26 +02:00
class StrOption(Option):
2013-05-23 14:55:52 +02:00
"represents the choice of a string"
__slots__ = tuple()
_opt_type = 'string'
2012-10-05 16:00:07 +02:00
def _validate(self, value):
if not isinstance(value, str):
raise ValueError(_('invalid string'))
2012-10-05 16:00:07 +02:00
2013-04-03 12:20:26 +02:00
if sys.version_info[0] >= 3:
#UnicodeOption is same as StrOption in python 3+
class UnicodeOption(StrOption):
__slots__ = tuple()
pass
else:
class UnicodeOption(Option):
"represents the choice of a unicode string"
__slots__ = tuple()
_opt_type = 'unicode'
_empty = u''
2013-03-20 12:37:27 +01:00
def _validate(self, value):
if not isinstance(value, unicode):
raise ValueError(_('invalid unicode'))
2013-03-20 12:37:27 +01:00
2013-04-03 12:20:26 +02:00
2013-09-01 22:20:11 +02:00
class SymLinkOption(BaseOption):
__slots__ = ('_name', '_opt', '_state_opt')
_opt_type = 'symlink'
#not return _opt consistencies
_consistencies = None
2012-10-05 16:00:07 +02:00
def __init__(self, name, opt):
self._name = name
if not isinstance(opt, Option):
raise ValueError(_('malformed symlinkoption '
2013-08-20 12:08:02 +02:00
'must be an option '
'for symlink {0}').format(name))
self._opt = opt
self._readonly = True
2012-10-05 16:00:07 +02:00
2012-11-30 15:08:34 +01:00
def __getattr__(self, name):
if name in ('_name', '_opt', '_opt_type', '_readonly'):
return object.__getattr__(self, name)
2012-11-30 16:23:40 +01:00
else:
return getattr(self._opt, name)
2012-11-30 15:08:34 +01:00
2013-09-02 15:01:49 +02:00
def _impl_getstate(self, descr):
super(SymLinkOption, self)._impl_getstate(descr)
self._state_opt = descr.impl_get_path_by_opt(self._opt)
2013-09-01 22:20:11 +02:00
def _impl_setstate(self, descr):
self._opt = descr.impl_get_opt_by_path(self._state_opt)
del(self._state_opt)
super(SymLinkOption, self)._impl_setstate(descr)
2013-04-03 12:20:26 +02:00
class IPOption(Option):
2013-05-23 14:55:52 +02:00
"represents the choice of an ip"
2013-09-27 11:28:23 +02:00
__slots__ = ('_private_only', '_allow_reserved')
_opt_type = 'ip'
2012-10-05 16:00:07 +02:00
def __init__(self, name, doc, default=None, default_multi=None,
requires=None, multi=False, callback=None,
callback_params=None, validator=None, validator_params=None,
2013-09-27 11:28:23 +02:00
properties=None, private_only=False, allow_reserved=False,
2013-09-27 09:52:18 +02:00
warnings_only=False):
2013-09-27 11:28:23 +02:00
self._private_only = private_only
2013-09-19 21:51:55 +02:00
self._allow_reserved = allow_reserved
super(IPOption, self).__init__(name, doc, default=default,
default_multi=default_multi,
callback=callback,
callback_params=callback_params,
requires=requires,
multi=multi,
validator=validator,
validator_params=validator_params,
2013-09-24 23:19:20 +02:00
properties=properties,
2013-09-27 09:52:18 +02:00
warnings_only=warnings_only)
def _validate(self, value):
# sometimes an ip term starts with a zero
# but this does not fit in some case, for example bind does not like it
2014-02-04 21:14:30 +01:00
try:
for val in value.split('.'):
if val.startswith("0") and len(val) > 1:
raise ValueError(_('invalid IP'))
except AttributeError:
#if integer for example
raise ValueError(_('invalid IP'))
# 'standard' validation
try:
IP('{0}/32'.format(value))
except ValueError:
raise ValueError(_('invalid IP'))
def _second_level_validation(self, value, warnings_only):
ip = IP('{0}/32'.format(value))
2013-09-19 21:51:55 +02:00
if not self._allow_reserved and ip.iptype() == 'RESERVED':
if warnings_only:
msg = _("IP shouldn't be in reserved class")
else:
msg = _("invalid IP, mustn't be in reserved class")
raise ValueError(msg)
2013-09-27 11:28:23 +02:00
if self._private_only and not ip.iptype() == 'PRIVATE':
if warnings_only:
msg = _("IP should be in private class")
else:
msg = _("invalid IP, must be in private class")
raise ValueError(msg)
def _cons_in_network(self, opts, vals, warnings_only):
if len(vals) != 3:
raise ConfigError(_('invalid len for vals'))
if None in vals:
return
ip, network, netmask = vals
if IP(ip) not in IP('{0}/{1}'.format(network, netmask)):
if warnings_only:
msg = _('IP {0} ({1}) not in network {2} ({3}) with netmask {4}'
' ({5})')
else:
msg = _('invalid IP {0} ({1}) not in network {2} ({3}) with '
'netmask {4} ({5})')
raise ValueError(msg.format(ip, opts[0]._name, network,
opts[1]._name, netmask, opts[2]._name))
2013-07-11 23:05:33 +02:00
class PortOption(Option):
"""represents the choice of a port
The port numbers are divided into three ranges:
the well-known ports,
the registered ports,
and the dynamic or private ports.
You can actived this three range.
Port number 0 is reserved and can't be used.
see: http://en.wikipedia.org/wiki/Port_numbers
"""
__slots__ = ('_allow_range', '_allow_zero', '_min_value', '_max_value')
2013-07-11 23:05:33 +02:00
_opt_type = 'port'
def __init__(self, name, doc, default=None, default_multi=None,
requires=None, multi=False, callback=None,
callback_params=None, validator=None, validator_params=None,
2013-07-11 23:05:33 +02:00
properties=None, allow_range=False, allow_zero=False,
allow_wellknown=True, allow_registred=True,
2013-09-27 09:52:18 +02:00
allow_private=False, warnings_only=False):
2013-07-11 23:05:33 +02:00
self._allow_range = allow_range
self._min_value = None
self._max_value = None
ports_min = [0, 1, 1024, 49152]
ports_max = [0, 1023, 49151, 65535]
is_finally = False
2013-08-20 12:08:02 +02:00
for index, allowed in enumerate([allow_zero,
allow_wellknown,
allow_registred,
allow_private]):
2013-07-11 23:05:33 +02:00
if self._min_value is None:
if allowed:
self._min_value = ports_min[index]
elif not allowed:
is_finally = True
elif allowed and is_finally:
raise ValueError(_('inconsistency in allowed range'))
if allowed:
self._max_value = ports_max[index]
if self._max_value is None:
raise ValueError(_('max value is empty'))
super(PortOption, self).__init__(name, doc, default=default,
default_multi=default_multi,
callback=callback,
callback_params=callback_params,
requires=requires,
multi=multi,
validator=validator,
validator_params=validator_params,
2013-09-24 23:19:20 +02:00
properties=properties,
2013-09-27 09:52:18 +02:00
warnings_only=warnings_only)
2013-07-11 23:05:33 +02:00
def _validate(self, value):
if self._allow_range and ":" in str(value):
value = str(value).split(':')
if len(value) != 2:
2014-03-09 20:14:17 +01:00
raise ValueError(_('invalid port, range must have two values '
2014-02-04 21:14:30 +01:00
'only'))
if not value[0] < value[1]:
2014-02-04 21:14:30 +01:00
raise ValueError(_('invalid port, first port in range must be'
' smaller than the second one'))
else:
value = [value]
2013-07-11 23:05:33 +02:00
for val in value:
2014-02-04 21:14:30 +01:00
try:
int(val)
2014-02-04 21:14:30 +01:00
except ValueError:
raise ValueError(_('invalid port'))
if not self._min_value <= int(val) <= self._max_value:
raise ValueError(_('invalid port, must be an between {0} '
2014-03-06 22:09:44 +01:00
'and {1}').format(self._min_value,
self._max_value))
2013-07-11 23:05:33 +02:00
class NetworkOption(Option):
2013-05-23 14:55:52 +02:00
"represents the choice of a network"
__slots__ = tuple()
_opt_type = 'network'
def _validate(self, value):
try:
IP(value)
except ValueError:
raise ValueError(_('invalid network address'))
def _second_level_validation(self, value, warnings_only):
ip = IP(value)
if ip.iptype() == 'RESERVED':
if warnings_only:
msg = _("network address shouldn't be in reserved class")
else:
msg = _("invalid network address, mustn't be in reserved class")
raise ValueError(msg)
2012-10-05 16:00:07 +02:00
2013-04-03 12:20:26 +02:00
class NetmaskOption(Option):
2013-05-23 14:55:52 +02:00
"represents the choice of a netmask"
__slots__ = tuple()
_opt_type = 'netmask'
2012-10-05 16:00:07 +02:00
def _validate(self, value):
try:
IP('0.0.0.0/{0}'.format(value))
except ValueError:
raise ValueError(_('invalid netmask address'))
def _cons_network_netmask(self, opts, vals, warnings_only):
#opts must be (netmask, network) options
if None in vals:
return
self.__cons_netmask(opts, vals[0], vals[1], False, warnings_only)
def _cons_ip_netmask(self, opts, vals, warnings_only):
#opts must be (netmask, ip) options
if None in vals:
return
self.__cons_netmask(opts, vals[0], vals[1], True, warnings_only)
def __cons_netmask(self, opts, val_netmask, val_ipnetwork, make_net,
warnings_only):
if len(opts) != 2:
raise ConfigError(_('invalid len for opts'))
msg = None
try:
ip = IP('{0}/{1}'.format(val_ipnetwork, val_netmask),
make_net=make_net)
#if cidr == 32, ip same has network
if ip.prefixlen() != 32:
try:
IP('{0}/{1}'.format(val_ipnetwork, val_netmask),
make_net=not make_net)
except ValueError:
2014-02-06 22:17:20 +01:00
pass
else:
if make_net:
msg = _("invalid IP {0} ({1}) with netmask {2},"
2013-07-17 22:30:35 +02:00
" this IP is a network")
except ValueError:
2014-02-06 22:17:20 +01:00
if not make_net:
msg = _('invalid network {0} ({1}) with netmask {2}')
if msg is not None:
raise ValueError(msg.format(val_ipnetwork, opts[1]._name,
val_netmask))
2012-10-05 16:00:07 +02:00
2013-04-03 12:20:26 +02:00
2013-09-26 22:11:25 +02:00
class BroadcastOption(Option):
__slots__ = tuple()
_opt_type = 'broadcast'
2013-09-26 22:11:25 +02:00
def _validate(self, value):
try:
IP('{0}/32'.format(value))
except ValueError:
raise ValueError(_('invalid broadcast address'))
2013-09-26 22:11:25 +02:00
def _cons_broadcast(self, opts, vals, warnings_only):
if len(vals) != 3:
raise ConfigError(_('invalid len for vals'))
if None in vals:
return
broadcast, network, netmask = vals
if IP('{0}/{1}'.format(network, netmask)).broadcast() != IP(broadcast):
raise ValueError(_('invalid broadcast {0} ({1}) with network {2} '
'({3}) and netmask {4} ({5})').format(
broadcast, opts[0]._name, network,
opts[1]._name, netmask, opts[2]._name))
2013-09-26 22:11:25 +02:00
2013-04-16 09:34:00 +02:00
class DomainnameOption(Option):
"""represents the choice of a domain name
netbios: for MS domain
hostname: to identify the device
domainname:
fqdn: with tld, not supported yet
"""
__slots__ = ('_type', '_allow_ip', '_allow_without_dot', '_domain_re')
_opt_type = 'domainname'
2013-04-16 09:34:00 +02:00
def __init__(self, name, doc, default=None, default_multi=None,
requires=None, multi=False, callback=None,
callback_params=None, validator=None, validator_params=None,
2013-09-24 23:19:20 +02:00
properties=None, allow_ip=False, type_='domainname',
warnings_only=False, allow_without_dot=False):
if type_ not in ['netbios', 'hostname', 'domainname']:
raise ValueError(_('unknown type_ {0} for hostname').format(type_))
self._type = type_
if allow_ip not in [True, False]:
raise ValueError(_('allow_ip must be a boolean'))
if allow_without_dot not in [True, False]:
raise ValueError(_('allow_without_dot must be a boolean'))
self._allow_ip = allow_ip
self._allow_without_dot = allow_without_dot
end = ''
extrachar = ''
2013-10-01 10:13:17 +02:00
extrachar_mandatory = ''
if self._type != 'netbios':
allow_number = '\d'
else:
allow_number = ''
if self._type == 'netbios':
length = 14
elif self._type == 'hostname':
length = 62
elif self._type == 'domainname':
length = 62
2013-10-01 10:13:17 +02:00
if allow_without_dot is False:
extrachar_mandatory = '\.'
else:
extrachar = '\.'
end = '+[a-z]*'
self._domain_re = re.compile(r'^(?:[a-z{0}][a-z\d\-{1}]{{,{2}}}{3}){4}$'
''.format(allow_number, extrachar, length,
extrachar_mandatory, end))
super(DomainnameOption, self).__init__(name, doc, default=default,
default_multi=default_multi,
callback=callback,
callback_params=callback_params,
requires=requires,
multi=multi,
validator=validator,
validator_params=validator_params,
2013-09-24 23:19:20 +02:00
properties=properties,
2013-09-27 09:52:18 +02:00
warnings_only=warnings_only)
2013-04-16 09:34:00 +02:00
def _validate(self, value):
if self._allow_ip is True:
try:
IP('{0}/32'.format(value))
return
2013-04-16 09:34:00 +02:00
except ValueError:
pass
if self._type == 'domainname' and not self._allow_without_dot and \
'.' not in value:
raise ValueError(_("invalid domainname, must have dot"))
2014-02-06 22:17:20 +01:00
if len(value) > 255:
raise ValueError(_("invalid domainname's length (max 255)"))
if len(value) < 2:
raise ValueError(_("invalid domainname's length (min 2)"))
if not self._domain_re.search(value):
raise ValueError(_('invalid domainname'))
class EmailOption(DomainnameOption):
__slots__ = tuple()
2013-09-30 21:21:47 +02:00
_opt_type = 'email'
username_re = re.compile(r"^[\w!#$%&'*+\-/=?^`{|}~.]+$")
def _validate(self, value):
splitted = value.split('@', 1)
try:
username, domain = splitted
except ValueError:
raise ValueError(_('invalid email address, must contains one @'
))
if not self.username_re.search(username):
raise ValueError(_('invalid username in email address'))
super(EmailOption, self)._validate(domain)
class URLOption(DomainnameOption):
__slots__ = tuple()
2013-09-30 21:21:47 +02:00
_opt_type = 'url'
proto_re = re.compile(r'(http|https)://')
path_re = re.compile(r"^[a-z0-9\-\._~:/\?#\[\]@!%\$&\'\(\)\*\+,;=]+$")
def _validate(self, value):
match = self.proto_re.search(value)
if not match:
raise ValueError(_('invalid url, must start with http:// or '
'https://'))
value = value[len(match.group(0)):]
# get domain/files
splitted = value.split('/', 1)
try:
domain, files = splitted
except ValueError:
domain = value
files = None
# if port in domain
splitted = domain.split(':', 1)
try:
domain, port = splitted
except ValueError:
domain = splitted[0]
port = 0
if not 0 <= int(port) <= 65535:
raise ValueError(_('invalid url, port must be an between 0 and '
'65536'))
# validate domainname
super(URLOption, self)._validate(domain)
# validate file
if files is not None and files != '' and not self.path_re.search(files):
raise ValueError(_('invalid url, must ends with filename'))
2013-04-16 09:34:00 +02:00
2014-03-06 22:09:12 +01:00
class UsernameOption(Option):
__slots__ = tuple()
_opt_type = 'username'
#regexp build with 'man 8 adduser' informations
username_re = re.compile(r"^[a-z_][a-z0-9_-]{0,30}[$a-z0-9_-]{0,1}$")
def _validate(self, value):
match = self.username_re.search(value)
if not match:
raise ValueError(_('invalid username'))
class FilenameOption(Option):
2013-09-30 21:21:47 +02:00
__slots__ = tuple()
_opt_type = 'file'
path_re = re.compile(r"^[a-zA-Z0-9\-\._~/+]+$")
def _validate(self, value):
match = self.path_re.search(value)
if not match:
raise ValueError(_('invalid filename'))
2013-09-30 21:21:47 +02:00
2013-09-01 22:20:11 +02:00
class OptionDescription(BaseOption):
"""Config's schema (organisation, group) and container of Options
The `OptionsDescription` objects lives in the `tiramisu.config.Config`.
"""
2013-04-03 12:20:26 +02:00
__slots__ = ('_name', '_requires', '_cache_paths', '_group_type',
2013-09-02 15:01:49 +02:00
'_state_group_type', '_properties', '_children',
'_cache_consistencies', '_calc_properties', '__weakref__',
'_readonly', '_impl_informations', '_state_requires',
'_stated', '_state_readonly')
2013-09-01 22:20:11 +02:00
_opt_type = 'optiondescription'
2013-04-03 12:20:26 +02:00
def __init__(self, name, doc, children, requires=None, properties=None):
2012-10-05 16:00:07 +02:00
"""
2013-07-17 22:30:35 +02:00
:param children: a list of options (including optiondescriptions)
2012-10-05 16:00:07 +02:00
"""
super(OptionDescription, self).__init__(name, doc, requires, properties)
2013-04-03 12:20:26 +02:00
child_names = [child._name for child in children]
#better performance like this
valid_child = copy(child_names)
valid_child.sort()
old = None
for child in valid_child:
if child == old:
raise ConflictError(_('duplicate option name: '
'{0}').format(child))
2013-04-03 12:20:26 +02:00
old = child
self._children = (tuple(child_names), tuple(children))
self._cache_paths = None
self._cache_consistencies = None
2013-04-03 12:20:26 +02:00
# the group_type is useful for filtering OptionDescriptions in a config
self._group_type = groups.default
2012-10-05 16:00:07 +02:00
def impl_getdoc(self):
return self.impl_get_information('doc')
2013-04-03 12:20:26 +02:00
def __getattr__(self, name):
if name in self.__slots__:
return object.__getattribute__(self, name)
2013-04-04 11:24:00 +02:00
try:
2013-04-03 12:20:26 +02:00
return self._children[1][self._children[0].index(name)]
2013-04-04 11:24:00 +02:00
except ValueError:
2013-08-20 12:08:02 +02:00
raise AttributeError(_('unknown Option {0} '
'in OptionDescription {1}'
'').format(name, self._name))
2012-10-05 16:00:07 +02:00
def impl_getkey(self, config):
return tuple([child.impl_getkey(getattr(config, child._name))
for child in self.impl_getchildren()])
def impl_getpaths(self, include_groups=False, _currpath=None):
"""returns a list of all paths in self, recursively
2013-04-04 11:24:00 +02:00
_currpath should not be provided (helps with recursion)
"""
2013-04-04 11:24:00 +02:00
if _currpath is None:
_currpath = []
paths = []
for option in self.impl_getchildren():
attr = option._name
2012-09-24 15:58:37 +02:00
if isinstance(option, OptionDescription):
if include_groups:
2013-04-04 11:24:00 +02:00
paths.append('.'.join(_currpath + [attr]))
paths += option.impl_getpaths(include_groups=include_groups,
_currpath=_currpath + [attr])
else:
2013-04-04 11:24:00 +02:00
paths.append('.'.join(_currpath + [attr]))
return paths
def impl_getchildren(self):
2013-04-04 11:24:00 +02:00
return self._children[1]
2013-08-20 12:08:02 +02:00
def impl_build_cache(self,
cache_path=None,
cache_option=None,
_currpath=None,
_consistencies=None,
force_no_consistencies=False):
2013-04-04 11:24:00 +02:00
if _currpath is None and self._cache_paths is not None:
# cache already set
return
2013-04-04 11:24:00 +02:00
if _currpath is None:
2013-04-03 12:20:26 +02:00
save = True
2013-04-04 11:24:00 +02:00
_currpath = []
if not force_no_consistencies:
_consistencies = {}
2013-04-03 12:20:26 +02:00
else:
save = False
if cache_path is None:
cache_path = []
cache_option = []
for option in self.impl_getchildren():
attr = option._name
if option in cache_option:
raise ConflictError(_('duplicate option: {0}').format(option))
2013-04-03 12:20:26 +02:00
cache_option.append(option)
if not force_no_consistencies:
option._readonly = True
2013-04-04 11:24:00 +02:00
cache_path.append(str('.'.join(_currpath + [attr])))
if not isinstance(option, OptionDescription):
if not force_no_consistencies and \
option._consistencies is not None:
2013-04-14 10:14:06 +02:00
for consistency in option._consistencies:
func, all_cons_opts, params = consistency
for opt in all_cons_opts:
_consistencies.setdefault(opt,
[]).append((func,
all_cons_opts,
params))
else:
2013-04-04 11:24:00 +02:00
_currpath.append(attr)
2013-08-20 12:08:02 +02:00
option.impl_build_cache(cache_path,
cache_option,
_currpath,
_consistencies,
force_no_consistencies)
2013-04-04 11:24:00 +02:00
_currpath.pop()
2013-04-03 12:20:26 +02:00
if save:
self._cache_paths = (tuple(cache_option), tuple(cache_path))
if not force_no_consistencies:
if _consistencies != {}:
self._cache_consistencies = {}
for opt, cons in _consistencies.items():
if opt not in cache_option:
raise ConfigError(_('consistency with option {0} which is not in Config').format(opt._name))
self._cache_consistencies[opt] = tuple(cons)
self._readonly = True
2013-04-03 12:20:26 +02:00
def impl_get_opt_by_path(self, path):
2013-04-03 12:20:26 +02:00
try:
return self._cache_paths[0][self._cache_paths[1].index(path)]
except ValueError:
2013-07-02 15:05:50 +02:00
raise AttributeError(_('no option for path {0}').format(path))
2013-04-03 12:20:26 +02:00
def impl_get_path_by_opt(self, opt):
2013-04-03 12:20:26 +02:00
try:
return self._cache_paths[1][self._cache_paths[0].index(opt)]
except ValueError:
2013-07-02 15:05:50 +02:00
raise AttributeError(_('no option {0} found').format(opt))
2013-04-03 12:20:26 +02:00
# ____________________________________________________________
def impl_set_group_type(self, group_type):
2012-12-06 18:14:57 +01:00
"""sets a given group object to an OptionDescription
2012-12-10 14:38:25 +01:00
:param group_type: an instance of `GroupType` or `MasterGroupType`
2012-12-06 18:14:57 +01:00
that lives in `setting.groups`
"""
2013-04-03 12:20:26 +02:00
if self._group_type != groups.default:
2013-04-14 12:01:32 +02:00
raise TypeError(_('cannot change group_type if already set '
2013-08-20 12:08:02 +02:00
'(old {0}, new {1})').format(self._group_type,
group_type))
2012-12-10 14:38:25 +01:00
if isinstance(group_type, groups.GroupType):
2013-04-03 12:20:26 +02:00
self._group_type = group_type
2012-12-10 14:38:25 +01:00
if isinstance(group_type, groups.MasterGroupType):
2013-04-03 12:20:26 +02:00
#if master (same name has group) is set
#for collect all slaves
slaves = []
master = None
for child in self.impl_getchildren():
if isinstance(child, OptionDescription):
2013-07-02 15:05:50 +02:00
raise ValueError(_("master group {0} shall not have "
2013-04-14 12:01:32 +02:00
"a subgroup").format(self._name))
if isinstance(child, SymLinkOption):
2013-07-02 15:05:50 +02:00
raise ValueError(_("master group {0} shall not have "
"a symlinkoption").format(self._name))
if not child.impl_is_multi():
2013-08-20 12:08:02 +02:00
raise ValueError(_("not allowed option {0} "
"in group {1}"
2013-04-14 12:01:32 +02:00
": this option is not a multi"
"").format(child._name, self._name))
if child._name == self._name:
child._multitype = multitypes.master
2013-04-03 12:20:26 +02:00
master = child
else:
slaves.append(child)
if master is None:
2013-08-20 12:08:02 +02:00
raise ValueError(_('master group with wrong'
' master name for {0}'
).format(self._name))
if master._callback is not None and master._callback[1] is not None:
for key, callbacks in master._callback[1].items():
for callbk in callbacks:
if isinstance(callbk, tuple):
if callbk[0] in slaves:
raise ValueError(_("callback of master's option shall "
"not refered a slave's ones"))
master._master_slaves = tuple(slaves)
for child in self.impl_getchildren():
2013-04-03 12:20:26 +02:00
if child != master:
child._master_slaves = master
child._multitype = multitypes.slave
else:
raise ValueError(_('group_type: {0}'
2013-08-20 12:08:02 +02:00
' not allowed').format(group_type))
2012-10-05 16:00:07 +02:00
def impl_get_group_type(self):
2013-04-03 12:20:26 +02:00
return self._group_type
def _valid_consistency(self, option, value, context, index, warnings_only):
if self._cache_consistencies is None:
return True
#consistencies is something like [('_cons_not_equal', (opt1, opt2))]
consistencies = self._cache_consistencies.get(option)
2013-04-14 10:14:06 +02:00
if consistencies is not None:
for func, all_cons_opts, params in consistencies:
if not warnings_only:
l_warnings_only = params.get('warnings_only', False)
else:
l_warnings_only = warnings_only
#all_cons_opts[0] is the option where func is set
try:
all_cons_opts[0]._launch_consistency(func, option,
value,
context, index,
all_cons_opts,
l_warnings_only)
except ValueError as err:
if l_warnings_only:
raise ValueWarning(err.message, option)
else:
raise err
2013-09-02 15:01:49 +02:00
def _impl_getstate(self, descr=None):
2013-09-02 15:06:55 +02:00
"""enables us to export into a dict
:param descr: parent :class:`tiramisu.option.OptionDescription`
"""
2013-09-01 22:20:11 +02:00
if descr is None:
2013-09-02 15:01:49 +02:00
self.impl_build_cache()
2013-09-01 22:20:11 +02:00
descr = self
2013-09-02 15:01:49 +02:00
super(OptionDescription, self)._impl_getstate(descr)
self._state_group_type = str(self._group_type)
for option in self.impl_getchildren():
option._impl_getstate(descr)
2013-09-02 21:29:41 +02:00
def __getstate__(self):
2013-09-03 11:01:07 +02:00
"""special method to enable the serialization with pickle
"""
stated = True
2013-09-02 21:29:41 +02:00
try:
2013-09-03 11:01:07 +02:00
# the `_state` attribute is a flag that which tells us if
# the serialization can be performed
self._stated
2013-09-02 21:29:41 +02:00
except AttributeError:
# if cannot delete, _impl_getstate never launch
# launch it recursivement
# _stated prevent __getstate__ launch more than one time
# _stated is delete, if re-serialize, re-lauch _impl_getstate
2013-09-02 15:01:49 +02:00
self._impl_getstate()
stated = False
return super(OptionDescription, self).__getstate__(stated)
def _impl_setstate(self, descr=None):
"""enables us to import from a dict
:param descr: parent :class:`tiramisu.option.OptionDescription`
"""
if descr is None:
self._cache_paths = None
self._cache_consistencies = None
self.impl_build_cache(force_no_consistencies=True)
descr = self
self._group_type = getattr(groups, self._state_group_type)
del(self._state_group_type)
super(OptionDescription, self)._impl_setstate(descr)
for option in self.impl_getchildren():
option._impl_setstate(descr)
def __setstate__(self, state):
super(OptionDescription, self).__setstate__(state)
try:
self._stated
except AttributeError:
self._impl_setstate()
2013-09-01 22:20:11 +02:00
2012-09-20 10:51:35 +02:00
def validate_requires_arg(requires, name):
"""check malformed requirements
and tranform dict to internal tuple
:param requires: have a look at the
:meth:`tiramisu.setting.Settings.apply_requires` method to
know more about
the description of the requires dictionary
"""
if requires is None:
return None, None
ret_requires = {}
config_action = {}
# start parsing all requires given by user (has dict)
# transforme it to a tuple
for require in requires:
if not type(require) == dict:
raise ValueError(_("malformed requirements type for option:"
" {0}, must be a dict").format(name))
valid_keys = ('option', 'expected', 'action', 'inverse', 'transitive',
'same_action')
unknown_keys = frozenset(require.keys()) - frozenset(valid_keys)
if unknown_keys != frozenset():
raise ValueError('malformed requirements for option: {0}'
' unknown keys {1}, must only '
'{2}'.format(name,
unknown_keys,
valid_keys))
# prepare all attributes
try:
option = require['option']
expected = require['expected']
action = require['action']
except KeyError:
raise ValueError(_("malformed requirements for option: {0}"
" require must have option, expected and"
" action keys").format(name))
inverse = require.get('inverse', False)
if inverse not in [True, False]:
raise ValueError(_('malformed requirements for option: {0}'
' inverse must be boolean'))
transitive = require.get('transitive', True)
if transitive not in [True, False]:
raise ValueError(_('malformed requirements for option: {0}'
' transitive must be boolean'))
same_action = require.get('same_action', True)
if same_action not in [True, False]:
raise ValueError(_('malformed requirements for option: {0}'
' same_action must be boolean'))
if not isinstance(option, Option):
raise ValueError(_('malformed requirements '
'must be an option in option {0}').format(name))
if option.impl_is_multi():
raise ValueError(_('malformed requirements option {0} '
'must not be a multi').format(name))
if expected is not None:
try:
option._validate(expected)
except ValueError as err:
raise ValueError(_('malformed requirements second argument '
2013-08-20 12:08:02 +02:00
'must be valid for option {0}'
': {1}').format(name, err))
if action in config_action:
if inverse != config_action[action]:
2013-08-20 12:08:02 +02:00
raise ValueError(_("inconsistency in action types"
" for option: {0}"
" action: {1}").format(name, action))
else:
config_action[action] = inverse
if action not in ret_requires:
ret_requires[action] = {}
if option not in ret_requires[action]:
ret_requires[action][option] = (option, [expected], action,
inverse, transitive, same_action)
else:
ret_requires[action][option][1].append(expected)
# transform dict to tuple
ret = []
for opt_requires in ret_requires.values():
ret_action = []
for require in opt_requires.values():
ret_action.append((require[0], tuple(require[1]), require[2],
require[3], require[4], require[5]))
ret.append(tuple(ret_action))
return frozenset(config_action.keys()), tuple(ret)
def validate_callback(callback, callback_params, type_):
if type(callback) != FunctionType:
raise ValueError(_('{0} must be a function').format(type_))
if callback_params is not None:
if not isinstance(callback_params, dict):
raise ValueError(_('{0}_params must be a dict').format(type_))
for key, callbacks in callback_params.items():
if key != '' and len(callbacks) != 1:
raise ValueError(_("{0}_params with key {1} mustn't have "
"length different to 1").format(type_,
key))
if not isinstance(callbacks, tuple):
raise ValueError(_('{0}_params must be tuple for key "{1}"'
).format(type_, key))
for callbk in callbacks:
if isinstance(callbk, tuple):
option, force_permissive = callbk
if type_ == 'validator' and not force_permissive:
raise ValueError(_('validator not support tuple'))
if not isinstance(option, Option) and not \
isinstance(option, SymLinkOption):
raise ValueError(_('{0}_params must have an option '
'not a {0} for first argument'
).format(type_, type(option)))
if force_permissive not in [True, False]:
raise ValueError(_('{0}_params must have a boolean'
2013-09-23 21:00:45 +02:00
' not a {0} for second argument'
2013-09-20 23:47:40 +02:00
).format(type_, type(
force_permissive)))