2012-07-13 09:37:35 +02:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
"pretty small and local configuration management tool"
|
2012-07-25 09:04:22 +02:00
|
|
|
|
# Copyright (C) 2012 Team tiramisu (see AUTHORS for all contributors)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
#
|
|
|
|
|
# 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
|
2012-07-13 09:37:35 +02:00
|
|
|
|
# the rough pypy's guys: http://codespeak.net/svn/pypy/dist/pypy/config/
|
|
|
|
|
# the whole pypy projet is under MIT licence
|
|
|
|
|
# ____________________________________________________________
|
2012-07-23 14:39:16 +02:00
|
|
|
|
from copy import copy
|
2012-10-05 16:00:07 +02:00
|
|
|
|
from tiramisu.error import (PropertiesOptionError, ConfigError, NotFoundError,
|
|
|
|
|
AmbigousOptionError, ConflictConfigError, NoMatchingOptionFound,
|
2012-10-15 15:06:41 +02:00
|
|
|
|
MandatoryError, MethodCallError, NoValueReturned)
|
2012-10-05 16:00:07 +02:00
|
|
|
|
from tiramisu.option import (OptionDescription, Option, SymLinkOption,
|
2012-12-04 12:06:26 +01:00
|
|
|
|
Multi, apply_requires)
|
2012-12-10 14:10:05 +01:00
|
|
|
|
from tiramisu.setting import settings, groups, owners
|
2012-11-12 12:06:58 +01:00
|
|
|
|
|
2012-07-13 09:37:35 +02:00
|
|
|
|
# ____________________________________________________________
|
|
|
|
|
class Config(object):
|
2012-11-15 10:55:14 +01:00
|
|
|
|
"main configuration management entry"
|
2012-07-13 09:37:35 +02:00
|
|
|
|
_cfgimpl_toplevel = None
|
2012-10-05 16:00:07 +02:00
|
|
|
|
|
2012-11-12 12:06:58 +01:00
|
|
|
|
def __init__(self, descr, parent=None):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
""" Configuration option management master class
|
|
|
|
|
:param descr: describes the configuration schema
|
|
|
|
|
:type descr: an instance of ``option.OptionDescription``
|
|
|
|
|
:param parent: is None if the ``Config`` is root parent Config otherwise
|
|
|
|
|
:type parent: ``Config``
|
|
|
|
|
"""
|
2012-07-13 09:37:35 +02:00
|
|
|
|
self._cfgimpl_descr = descr
|
|
|
|
|
self._cfgimpl_value_owners = {}
|
|
|
|
|
self._cfgimpl_parent = parent
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"`Config()` indeed is in charge of the `Option()`'s values"
|
2012-07-13 09:37:35 +02:00
|
|
|
|
self._cfgimpl_values = {}
|
|
|
|
|
self._cfgimpl_previous_values = {}
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"warnings are a great idea, let's make up a better use of it"
|
2012-07-13 09:37:35 +02:00
|
|
|
|
self._cfgimpl_warnings = []
|
|
|
|
|
self._cfgimpl_toplevel = self._cfgimpl_get_toplevel()
|
2012-10-05 16:00:07 +02:00
|
|
|
|
'`freeze()` allows us to carry out this calculation again if necessary'
|
2012-11-12 12:06:58 +01:00
|
|
|
|
self._cfgimpl_build()
|
2012-07-13 09:37:35 +02:00
|
|
|
|
|
|
|
|
|
def _validate_duplicates(self, children):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""duplicates Option names in the schema
|
|
|
|
|
:type children: list of `Option` or `OptionDescription`
|
|
|
|
|
"""
|
2012-07-13 09:37:35 +02:00
|
|
|
|
duplicates = []
|
|
|
|
|
for dup in children:
|
|
|
|
|
if dup._name not in duplicates:
|
|
|
|
|
duplicates.append(dup._name)
|
|
|
|
|
else:
|
2012-10-05 16:00:07 +02:00
|
|
|
|
raise ConflictConfigError('duplicate option name: '
|
2012-07-13 09:37:35 +02:00
|
|
|
|
'{0}'.format(dup._name))
|
2012-09-20 10:51:35 +02:00
|
|
|
|
|
2012-11-12 12:06:58 +01:00
|
|
|
|
def _cfgimpl_build(self):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""
|
|
|
|
|
- builds the config object from the schema
|
|
|
|
|
- settles various default values for options
|
|
|
|
|
"""
|
2012-07-13 09:37:35 +02:00
|
|
|
|
self._validate_duplicates(self._cfgimpl_descr._children)
|
|
|
|
|
for child in self._cfgimpl_descr._children:
|
|
|
|
|
if isinstance(child, Option):
|
|
|
|
|
if child.is_multi():
|
2012-10-05 16:00:07 +02:00
|
|
|
|
childdef = Multi(copy(child.getdefault()), config=self,
|
2012-12-04 15:18:13 +01:00
|
|
|
|
opt=child)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
self._cfgimpl_values[child._name] = childdef
|
2012-07-23 14:30:06 +02:00
|
|
|
|
self._cfgimpl_previous_values[child._name] = list(childdef)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
else:
|
|
|
|
|
childdef = child.getdefault()
|
|
|
|
|
self._cfgimpl_values[child._name] = childdef
|
2012-10-05 16:00:07 +02:00
|
|
|
|
self._cfgimpl_previous_values[child._name] = childdef
|
2012-12-10 14:10:05 +01:00
|
|
|
|
child.setowner(self, owners.default)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
elif isinstance(child, OptionDescription):
|
|
|
|
|
self._validate_duplicates(child._children)
|
|
|
|
|
self._cfgimpl_values[child._name] = Config(child, parent=self)
|
2012-11-12 12:06:58 +01:00
|
|
|
|
# self.override(overrides)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
|
|
|
|
|
def cfgimpl_update(self):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""dynamically adds `Option()` or `OptionDescription()`
|
|
|
|
|
"""
|
|
|
|
|
# FIXME this is an update for new options in the schema only
|
|
|
|
|
# see the update_child() method of the descr object
|
2012-07-13 09:37:35 +02:00
|
|
|
|
for child in self._cfgimpl_descr._children:
|
|
|
|
|
if isinstance(child, Option):
|
|
|
|
|
if child._name not in self._cfgimpl_values:
|
2012-07-23 14:30:06 +02:00
|
|
|
|
if child.is_multi():
|
|
|
|
|
self._cfgimpl_values[child._name] = Multi(
|
2012-12-05 09:41:53 +01:00
|
|
|
|
copy(child.getdefault()), config=self, opt=child)
|
2012-07-23 14:30:06 +02:00
|
|
|
|
else:
|
|
|
|
|
self._cfgimpl_values[child._name] = copy(child.getdefault())
|
2012-12-10 14:10:05 +01:00
|
|
|
|
child.setowner(self, owners.default)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
elif isinstance(child, OptionDescription):
|
|
|
|
|
if child._name not in self._cfgimpl_values:
|
|
|
|
|
self._cfgimpl_values[child._name] = Config(child, parent=self)
|
|
|
|
|
|
|
|
|
|
# ____________________________________________________________
|
2012-10-05 16:00:07 +02:00
|
|
|
|
# attribute methods
|
2012-07-13 09:37:35 +02:00
|
|
|
|
def __setattr__(self, name, value):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"attribute notation mechanism for the setting of the value of an option"
|
2012-07-13 09:37:35 +02:00
|
|
|
|
if name.startswith('_cfgimpl_'):
|
|
|
|
|
self.__dict__[name] = value
|
|
|
|
|
return
|
2012-09-19 09:31:02 +02:00
|
|
|
|
if '.' in name:
|
|
|
|
|
homeconfig, name = self._cfgimpl_get_home_by_path(name)
|
|
|
|
|
return setattr(homeconfig, name, value)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
if type(getattr(self._cfgimpl_descr, name)) != SymLinkOption:
|
|
|
|
|
self._validate(name, getattr(self._cfgimpl_descr, name))
|
2012-12-10 14:10:05 +01:00
|
|
|
|
self.setoption(name, value, owners.user)
|
2012-10-05 16:00:07 +02:00
|
|
|
|
|
2012-10-16 15:09:52 +02:00
|
|
|
|
def _validate(self, name, opt_or_descr, permissive=False):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"validation for the setattr and the getattr"
|
2012-11-30 10:47:35 +01:00
|
|
|
|
apply_requires(opt_or_descr, self, permissive=permissive)
|
2012-09-14 11:55:32 +02:00
|
|
|
|
if not isinstance(opt_or_descr, Option) and \
|
|
|
|
|
not isinstance(opt_or_descr, OptionDescription):
|
|
|
|
|
raise TypeError('Unexpected object: {0}'.format(repr(opt_or_descr)))
|
2012-09-24 15:58:37 +02:00
|
|
|
|
properties = copy(opt_or_descr.properties)
|
2012-11-07 17:14:50 +01:00
|
|
|
|
for proper in copy(properties):
|
2012-11-19 10:45:03 +01:00
|
|
|
|
if not settings.has_property(proper):
|
2012-09-14 11:55:32 +02:00
|
|
|
|
properties.remove(proper)
|
2012-10-16 15:09:52 +02:00
|
|
|
|
if permissive:
|
2012-11-19 10:45:03 +01:00
|
|
|
|
for perm in settings.permissive:
|
2012-10-16 15:09:52 +02:00
|
|
|
|
if perm in properties:
|
|
|
|
|
properties.remove(perm)
|
2012-09-14 11:55:32 +02:00
|
|
|
|
if properties != []:
|
|
|
|
|
raise PropertiesOptionError("trying to access"
|
|
|
|
|
" to an option named: {0} with properties"
|
2012-10-05 16:00:07 +02:00
|
|
|
|
" {1}".format(name, str(properties)),
|
2012-09-14 11:55:32 +02:00
|
|
|
|
properties)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
|
2012-09-11 15:18:38 +02:00
|
|
|
|
def _is_empty(self, opt):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"convenience method to know if an option is empty"
|
2012-09-11 15:18:38 +02:00
|
|
|
|
if (not opt.is_multi() and self._cfgimpl_values[opt._name] == None) or \
|
|
|
|
|
(opt.is_multi() and (self._cfgimpl_values[opt._name] == [] or \
|
2012-09-11 15:25:35 +02:00
|
|
|
|
None in self._cfgimpl_values[opt._name])):
|
2012-09-11 15:18:38 +02:00
|
|
|
|
return True
|
|
|
|
|
return False
|
|
|
|
|
|
2012-11-06 15:19:36 +01:00
|
|
|
|
def _test_mandatory(self, path, opt):
|
|
|
|
|
# mandatory options
|
2012-11-19 10:45:03 +01:00
|
|
|
|
mandatory = settings.mandatory
|
2012-11-06 15:19:36 +01:00
|
|
|
|
if opt.is_mandatory() and mandatory:
|
|
|
|
|
if self._is_empty(opt) and \
|
|
|
|
|
opt.is_empty_by_default():
|
|
|
|
|
raise MandatoryError("option: {0} is mandatory "
|
|
|
|
|
"and shall have a value".format(path))
|
|
|
|
|
|
2012-07-13 09:37:35 +02:00
|
|
|
|
def __getattr__(self, name):
|
2012-10-16 15:09:52 +02:00
|
|
|
|
return self._getattr(name)
|
|
|
|
|
|
2012-12-04 12:06:26 +01:00
|
|
|
|
def _get_master_len(self, slave_name):
|
|
|
|
|
try:
|
2012-12-05 10:54:32 +01:00
|
|
|
|
master_name = self._cfgimpl_descr.get_master_name()
|
|
|
|
|
if master_name == slave_name:
|
2012-12-04 12:06:26 +01:00
|
|
|
|
return None
|
2012-12-05 10:54:32 +01:00
|
|
|
|
master_value = self._cfgimpl_values[master_name]
|
2012-12-04 12:06:26 +01:00
|
|
|
|
return len(master_value)
|
2012-12-04 16:22:39 +01:00
|
|
|
|
except TypeError, err:
|
2012-12-04 12:06:26 +01:00
|
|
|
|
# in this case we just don't care about the len
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
def _valid_len(self, slave_name, slave_value):
|
|
|
|
|
master_len = self._get_master_len(slave_name)
|
|
|
|
|
if master_len == None:
|
|
|
|
|
return True
|
|
|
|
|
if master_len != len(slave_value):
|
2012-12-05 10:54:32 +01:00
|
|
|
|
master_name = self._cfgimpl_descr.get_master_name()
|
2012-12-04 16:22:39 +01:00
|
|
|
|
raise ValueError("invalid len for the group of"
|
|
|
|
|
" the option {0}".format(slave_name))
|
2012-12-04 12:06:26 +01:00
|
|
|
|
|
2012-12-05 10:54:32 +01:00
|
|
|
|
def fill_multi(self, name, result, use_default_multi=False, default_multi=None):
|
2012-12-04 12:06:26 +01:00
|
|
|
|
"""fills a multi option with default and calculated values
|
|
|
|
|
"""
|
|
|
|
|
value = self._cfgimpl_values[name]
|
|
|
|
|
master_len = self._get_master_len(name)
|
|
|
|
|
if not isinstance(result, list):
|
|
|
|
|
if master_len is None:
|
|
|
|
|
master_len = 1
|
|
|
|
|
# a list is built with the same len as the master
|
|
|
|
|
_result = []
|
|
|
|
|
for i in range(master_len):
|
|
|
|
|
_result.append(result)
|
2012-12-05 10:54:32 +01:00
|
|
|
|
elif use_default_multi != False:
|
|
|
|
|
_result = result
|
2012-12-04 12:06:26 +01:00
|
|
|
|
if master_len != None:
|
|
|
|
|
slave_len = len(result)
|
|
|
|
|
if slave_len > master_len:
|
|
|
|
|
raise ValueError("invalid value's len for"
|
|
|
|
|
"the option: {1}".format(name))
|
|
|
|
|
if slave_len != master_len:
|
|
|
|
|
delta_len = master_len - len(result)
|
|
|
|
|
for i in range(delta_len):
|
|
|
|
|
_result.append(default_multi)
|
|
|
|
|
else:
|
|
|
|
|
_result = result
|
2012-12-04 15:18:13 +01:00
|
|
|
|
return Multi(_result, value.config, opt=value.opt)
|
2012-12-04 12:06:26 +01:00
|
|
|
|
|
2012-10-16 15:09:52 +02:00
|
|
|
|
def _getattr(self, name, permissive=False):
|
2012-11-08 09:03:28 +01:00
|
|
|
|
"""
|
|
|
|
|
attribute notation mechanism for accessing the value of an option
|
|
|
|
|
:param name: attribute name
|
|
|
|
|
:param permissive: permissive doesn't raise some property error
|
2012-11-19 10:45:03 +01:00
|
|
|
|
(see ``settings.permissive``)
|
2012-11-08 09:03:28 +01:00
|
|
|
|
:return: option's value if name is an option name, OptionDescription
|
2012-11-19 10:45:03 +01:00
|
|
|
|
otherwise
|
2012-11-08 09:03:28 +01:00
|
|
|
|
"""
|
2012-10-05 16:00:07 +02:00
|
|
|
|
# attribute access by passing a path,
|
|
|
|
|
# for instance getattr(self, "creole.general.family.adresse_ip_eth0")
|
2012-07-13 09:37:35 +02:00
|
|
|
|
if '.' in name:
|
|
|
|
|
homeconfig, name = self._cfgimpl_get_home_by_path(name)
|
2012-10-16 15:09:52 +02:00
|
|
|
|
return homeconfig._getattr(name, permissive)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
opt_or_descr = getattr(self._cfgimpl_descr, name)
|
2012-10-05 16:00:07 +02:00
|
|
|
|
# symlink options
|
2012-07-13 09:37:35 +02:00
|
|
|
|
if type(opt_or_descr) == SymLinkOption:
|
2012-11-29 10:15:30 +01:00
|
|
|
|
rootconfig = self._cfgimpl_get_toplevel()
|
|
|
|
|
return getattr(rootconfig, opt_or_descr.path)
|
2012-09-14 11:55:32 +02:00
|
|
|
|
if name not in self._cfgimpl_values:
|
|
|
|
|
raise AttributeError("%s object has no attribute %s" %
|
|
|
|
|
(self.__class__, name))
|
2012-10-16 15:09:52 +02:00
|
|
|
|
self._validate(name, opt_or_descr, permissive)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
# special attributes
|
|
|
|
|
if name.startswith('_cfgimpl_'):
|
|
|
|
|
# if it were in __dict__ it would have been found already
|
|
|
|
|
return self.__dict__[name]
|
|
|
|
|
raise AttributeError("%s object has no attribute %s" %
|
|
|
|
|
(self.__class__, name))
|
2012-08-14 10:55:08 +02:00
|
|
|
|
if not isinstance(opt_or_descr, OptionDescription):
|
2012-11-22 10:19:13 +01:00
|
|
|
|
# options with callbacks
|
2012-08-14 10:55:08 +02:00
|
|
|
|
if opt_or_descr.has_callback():
|
2012-07-13 09:37:35 +02:00
|
|
|
|
value = self._cfgimpl_values[name]
|
2012-09-07 15:47:06 +02:00
|
|
|
|
if (not opt_or_descr.is_frozen() or \
|
2012-10-15 15:06:41 +02:00
|
|
|
|
not opt_or_descr.is_forced_on_freeze()) and \
|
2012-11-15 10:55:14 +01:00
|
|
|
|
not opt_or_descr.is_default_owner(self):
|
2012-12-04 12:06:26 +01:00
|
|
|
|
self._valid_len(name, value)
|
2012-11-22 10:19:13 +01:00
|
|
|
|
return value
|
2012-10-15 15:06:41 +02:00
|
|
|
|
try:
|
2012-11-19 10:45:03 +01:00
|
|
|
|
result = opt_or_descr.getcallback_value(
|
|
|
|
|
self._cfgimpl_get_toplevel())
|
2012-10-15 15:06:41 +02:00
|
|
|
|
except NoValueReturned, err:
|
|
|
|
|
pass
|
2012-07-13 09:37:35 +02:00
|
|
|
|
else:
|
2012-10-15 15:06:41 +02:00
|
|
|
|
if opt_or_descr.is_multi():
|
2012-12-04 12:06:26 +01:00
|
|
|
|
_result = self.fill_multi(name, result)
|
2012-10-15 15:06:41 +02:00
|
|
|
|
else:
|
2012-10-17 11:14:17 +02:00
|
|
|
|
# this result **shall not** be a list
|
|
|
|
|
if isinstance(result, list):
|
|
|
|
|
raise ConfigError('invalid calculated value returned'
|
|
|
|
|
' for option {0} : shall not be a list'.format(name))
|
2012-10-15 15:06:41 +02:00
|
|
|
|
_result = result
|
2012-11-19 09:51:40 +01:00
|
|
|
|
if _result != None and not opt_or_descr.validate(_result,
|
2012-11-19 10:45:03 +01:00
|
|
|
|
settings.validator):
|
2012-10-17 11:14:17 +02:00
|
|
|
|
raise ConfigError('invalid calculated value returned'
|
|
|
|
|
' for option {0}'.format(name))
|
2012-10-15 15:06:41 +02:00
|
|
|
|
self._cfgimpl_values[name] = _result
|
2012-12-10 14:10:05 +01:00
|
|
|
|
opt_or_descr.setowner(self, owners.default)
|
2012-12-04 12:06:26 +01:00
|
|
|
|
# frozen and force default
|
2012-10-16 15:09:52 +02:00
|
|
|
|
if not opt_or_descr.has_callback() and opt_or_descr.is_forced_on_freeze():
|
2012-12-04 12:06:26 +01:00
|
|
|
|
value = opt_or_descr.getdefault()
|
|
|
|
|
if opt_or_descr.is_multi():
|
2012-12-05 10:54:32 +01:00
|
|
|
|
value = self.fill_multi(name, value,
|
|
|
|
|
use_default_multi=True,
|
|
|
|
|
default_multi=opt_or_descr.getdefault_multi())
|
2012-12-04 12:06:26 +01:00
|
|
|
|
self._cfgimpl_values[name] = value
|
2012-12-10 14:10:05 +01:00
|
|
|
|
opt_or_descr.setowner(self, owners.default)
|
2012-11-22 10:19:13 +01:00
|
|
|
|
self._test_mandatory(name, opt_or_descr)
|
2012-12-04 12:06:26 +01:00
|
|
|
|
value = self._cfgimpl_values[name]
|
|
|
|
|
self._valid_len(name, value)
|
|
|
|
|
return value
|
2012-07-13 09:37:35 +02:00
|
|
|
|
|
|
|
|
|
def unwrap_from_name(self, name):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""convenience method to extract and Option() object from the Config()
|
|
|
|
|
**and it is slow**: it recursively searches into the namespaces
|
|
|
|
|
|
|
|
|
|
:returns: Option()
|
|
|
|
|
"""
|
2012-07-13 09:37:35 +02:00
|
|
|
|
paths = self.getpaths(allpaths=True)
|
|
|
|
|
opts = dict([(path, self.unwrap_from_path(path)) for path in paths])
|
|
|
|
|
all_paths = [p.split(".") for p in self.getpaths()]
|
|
|
|
|
for pth in all_paths:
|
|
|
|
|
if name in pth:
|
|
|
|
|
return opts[".".join(pth)]
|
|
|
|
|
raise NotFoundError("name: {0} not found".format(name))
|
2012-10-05 16:00:07 +02:00
|
|
|
|
|
2012-07-13 09:37:35 +02:00
|
|
|
|
def unwrap_from_path(self, path):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""convenience method to extract and Option() object from the Config()
|
|
|
|
|
and it is **fast**: finds the option directly in the appropriate
|
|
|
|
|
namespace
|
|
|
|
|
|
|
|
|
|
:returns: Option()
|
|
|
|
|
"""
|
2012-07-13 09:37:35 +02:00
|
|
|
|
if '.' in path:
|
|
|
|
|
homeconfig, path = self._cfgimpl_get_home_by_path(path)
|
|
|
|
|
return getattr(homeconfig._cfgimpl_descr, path)
|
|
|
|
|
return getattr(self._cfgimpl_descr, path)
|
2012-10-05 16:00:07 +02:00
|
|
|
|
|
2012-07-13 09:37:35 +02:00
|
|
|
|
def setoption(self, name, value, who=None):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""effectively modifies the value of an Option()
|
|
|
|
|
(typically called by the __setattr__)
|
2012-12-10 14:10:05 +01:00
|
|
|
|
:param who : an object that lives in `setting.owners`
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""
|
2012-07-13 09:37:35 +02:00
|
|
|
|
child = getattr(self._cfgimpl_descr, name)
|
2012-11-12 12:06:58 +01:00
|
|
|
|
if type(child) != SymLinkOption:
|
|
|
|
|
if who == None:
|
2012-11-19 10:45:03 +01:00
|
|
|
|
who = settings.owner
|
2012-07-13 09:37:35 +02:00
|
|
|
|
if child.is_multi():
|
2012-12-10 14:10:05 +01:00
|
|
|
|
if not isinstance(who, owners.DefaultOwner):
|
2012-12-05 10:54:32 +01:00
|
|
|
|
if type(value) != Multi:
|
|
|
|
|
if type(value) == list:
|
|
|
|
|
value = Multi(value, self, child)
|
|
|
|
|
else:
|
|
|
|
|
raise ConfigError("invalid value for option:"
|
|
|
|
|
" {0} that is set to multi".format(name))
|
|
|
|
|
else:
|
|
|
|
|
value = self.fill_multi(name, child.getdefault(),
|
|
|
|
|
use_default_multi=True,
|
|
|
|
|
default_multi=child.getdefault_multi())
|
|
|
|
|
self._valid_len(name, value)
|
2012-12-10 14:10:05 +01:00
|
|
|
|
if not isinstance(who, owners.Owner):
|
|
|
|
|
raise TypeError("invalid owner [{0}] for option: {1}".format(
|
|
|
|
|
str(who), name))
|
|
|
|
|
print "ssdfsdfsdfsdfsdf", type(child)
|
|
|
|
|
child.setoption(self, value)
|
2012-11-15 10:55:14 +01:00
|
|
|
|
child.setowner(self, who)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
else:
|
|
|
|
|
homeconfig = self._cfgimpl_get_toplevel()
|
2012-12-10 14:10:05 +01:00
|
|
|
|
child.setoption(homeconfig, value)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
|
|
|
|
|
def set(self, **kwargs):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""
|
2012-11-20 17:14:58 +01:00
|
|
|
|
do what I mean"-interface to option setting. Searches all paths
|
2012-10-05 16:00:07 +02:00
|
|
|
|
starting from that config for matches of the optional arguments
|
|
|
|
|
and sets the found option if the match is not ambiguous.
|
|
|
|
|
:param kwargs: dict of name strings to values.
|
|
|
|
|
"""
|
2012-07-13 09:37:35 +02:00
|
|
|
|
all_paths = [p.split(".") for p in self.getpaths(allpaths=True)]
|
|
|
|
|
for key, value in kwargs.iteritems():
|
|
|
|
|
key_p = key.split('.')
|
|
|
|
|
candidates = [p for p in all_paths if p[-len(key_p):] == key_p]
|
|
|
|
|
if len(candidates) == 1:
|
|
|
|
|
name = '.'.join(candidates[0])
|
|
|
|
|
homeconfig, name = self._cfgimpl_get_home_by_path(name)
|
|
|
|
|
try:
|
|
|
|
|
getattr(homeconfig, name)
|
|
|
|
|
except MandatoryError:
|
|
|
|
|
pass
|
|
|
|
|
except Exception, e:
|
|
|
|
|
raise e # HiddenOptionError or DisabledOptionError
|
2012-12-10 14:10:05 +01:00
|
|
|
|
homeconfig.setoption(name, value, owners.user)
|
2012-07-13 09:37:35 +02:00
|
|
|
|
elif len(candidates) > 1:
|
|
|
|
|
raise AmbigousOptionError(
|
|
|
|
|
'more than one option that ends with %s' % (key, ))
|
|
|
|
|
else:
|
|
|
|
|
raise NoMatchingOptionFound(
|
2012-10-05 16:00:07 +02:00
|
|
|
|
'there is no option that matches %s'
|
2012-07-13 09:37:35 +02:00
|
|
|
|
' or the option is hidden or disabled'% (key, ))
|
|
|
|
|
|
|
|
|
|
def get(self, name):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""
|
2012-11-20 17:14:58 +01:00
|
|
|
|
same as a `find_first()` method in a config that has identical names:
|
|
|
|
|
it returns the first item of an option named `name`
|
2012-10-11 16:16:43 +02:00
|
|
|
|
|
2012-10-05 16:00:07 +02:00
|
|
|
|
much like the attribute access way, except that
|
|
|
|
|
the search for the option is performed recursively in the whole
|
|
|
|
|
configuration tree.
|
|
|
|
|
**carefull**: very slow !
|
2012-10-11 16:16:43 +02:00
|
|
|
|
|
|
|
|
|
:returns: option value.
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""
|
2012-07-13 09:37:35 +02:00
|
|
|
|
paths = self.getpaths(allpaths=True)
|
|
|
|
|
pathsvalues = []
|
|
|
|
|
for path in paths:
|
|
|
|
|
pathname = path.split('.')[-1]
|
|
|
|
|
if pathname == name:
|
|
|
|
|
try:
|
2012-10-05 16:00:07 +02:00
|
|
|
|
value = getattr(self, path)
|
|
|
|
|
return value
|
2012-07-13 09:37:35 +02:00
|
|
|
|
except Exception, e:
|
|
|
|
|
raise e
|
2012-10-05 16:00:07 +02:00
|
|
|
|
raise NotFoundError("option {0} not found in config".format(name))
|
2012-07-13 09:37:35 +02:00
|
|
|
|
|
|
|
|
|
def _cfgimpl_get_home_by_path(self, path):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
""":returns: tuple (config, name)"""
|
2012-07-13 09:37:35 +02:00
|
|
|
|
path = path.split('.')
|
|
|
|
|
for step in path[:-1]:
|
|
|
|
|
self = getattr(self, step)
|
|
|
|
|
return self, path[-1]
|
|
|
|
|
|
|
|
|
|
def _cfgimpl_get_toplevel(self):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
":returns: root config"
|
2012-07-13 09:37:35 +02:00
|
|
|
|
while self._cfgimpl_parent is not None:
|
|
|
|
|
self = self._cfgimpl_parent
|
|
|
|
|
return self
|
2012-10-05 16:00:07 +02:00
|
|
|
|
|
2012-07-26 10:54:57 +02:00
|
|
|
|
def _cfgimpl_get_path(self):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"the path in the attribute access meaning."
|
2012-07-26 10:54:57 +02:00
|
|
|
|
subpath = []
|
|
|
|
|
obj = self
|
|
|
|
|
while obj._cfgimpl_parent is not None:
|
|
|
|
|
subpath.insert(0, obj._cfgimpl_descr._name)
|
|
|
|
|
obj = obj._cfgimpl_parent
|
|
|
|
|
return ".".join(subpath)
|
2012-10-05 16:00:07 +02:00
|
|
|
|
# ______________________________________________________________________
|
2012-07-13 09:37:35 +02:00
|
|
|
|
def cfgimpl_previous_value(self, path):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"stores the previous value"
|
2012-07-13 09:37:35 +02:00
|
|
|
|
home, name = self._cfgimpl_get_home_by_path(path)
|
|
|
|
|
return home._cfgimpl_previous_values[name]
|
2012-10-05 16:00:07 +02:00
|
|
|
|
|
2012-07-13 09:37:35 +02:00
|
|
|
|
def get_previous_value(self, name):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"for the time being, only the previous Option's value is accessible"
|
2012-07-13 09:37:35 +02:00
|
|
|
|
return self._cfgimpl_previous_values[name]
|
2012-10-05 16:00:07 +02:00
|
|
|
|
# ______________________________________________________________________
|
2012-07-13 09:37:35 +02:00
|
|
|
|
def add_warning(self, warning):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"Config implements its own warning pile. Could be useful"
|
2012-07-13 09:37:35 +02:00
|
|
|
|
self._cfgimpl_get_toplevel()._cfgimpl_warnings.append(warning)
|
|
|
|
|
|
|
|
|
|
def get_warnings(self):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"Config implements its own warning pile"
|
2012-07-13 09:37:35 +02:00
|
|
|
|
return self._cfgimpl_get_toplevel()._cfgimpl_warnings
|
|
|
|
|
# ____________________________________________________________
|
|
|
|
|
def getkey(self):
|
|
|
|
|
return self._cfgimpl_descr.getkey(self)
|
|
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
|
return hash(self.getkey())
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"Config comparison"
|
2012-12-05 09:41:53 +01:00
|
|
|
|
if not isinstance(other, Config):
|
2012-11-30 15:08:34 +01:00
|
|
|
|
return False
|
2012-07-13 09:37:35 +02:00
|
|
|
|
return self.getkey() == other.getkey()
|
|
|
|
|
|
|
|
|
|
def __ne__(self, other):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"Config comparison"
|
2012-07-13 09:37:35 +02:00
|
|
|
|
return not self == other
|
2012-10-05 16:00:07 +02:00
|
|
|
|
# ______________________________________________________________________
|
2012-07-13 09:37:35 +02:00
|
|
|
|
def __iter__(self):
|
2012-11-20 17:14:58 +01:00
|
|
|
|
"""Pythonesque way of parsing group's ordered options.
|
|
|
|
|
iteration only on Options (not OptionDescriptions)"""
|
2012-07-13 09:37:35 +02:00
|
|
|
|
for child in self._cfgimpl_descr._children:
|
2012-11-29 10:15:30 +01:00
|
|
|
|
if not isinstance(child, OptionDescription):
|
2012-07-13 09:37:35 +02:00
|
|
|
|
try:
|
|
|
|
|
yield child._name, getattr(self, child._name)
|
|
|
|
|
except:
|
2012-09-19 09:31:02 +02:00
|
|
|
|
pass # option with properties
|
2012-07-13 09:37:35 +02:00
|
|
|
|
|
|
|
|
|
def iter_groups(self, group_type=None):
|
2012-11-20 17:14:58 +01:00
|
|
|
|
"""iteration on groups objects only.
|
|
|
|
|
All groups are returned if `group_type` is `None`, otherwise the groups
|
|
|
|
|
can be filtered by categories (families, or whatever).
|
2012-12-10 14:10:05 +01:00
|
|
|
|
:param group_type: if defined, is an instance of `groups.GroupName`
|
|
|
|
|
or `groups.MasterGroupName` that lives in
|
2012-12-06 18:14:57 +01:00
|
|
|
|
`settings.groups`
|
|
|
|
|
|
2012-11-20 17:14:58 +01:00
|
|
|
|
"""
|
2012-12-06 18:14:57 +01:00
|
|
|
|
if group_type is not None:
|
|
|
|
|
if not isinstance(group_type, groups.GroupName):
|
2012-07-13 09:37:35 +02:00
|
|
|
|
raise TypeError("Unknown group_type: {0}".format(group_type))
|
|
|
|
|
for child in self._cfgimpl_descr._children:
|
|
|
|
|
if isinstance(child, OptionDescription):
|
2012-11-06 15:19:36 +01:00
|
|
|
|
try:
|
2012-12-06 18:14:57 +01:00
|
|
|
|
if group_type is not None:
|
|
|
|
|
if child.get_group_type() == group_type:
|
|
|
|
|
yield child._name, getattr(self, child._name)
|
|
|
|
|
else:
|
2012-11-06 15:19:36 +01:00
|
|
|
|
yield child._name, getattr(self, child._name)
|
|
|
|
|
except:
|
2012-12-06 18:14:57 +01:00
|
|
|
|
pass
|
2012-10-05 16:00:07 +02:00
|
|
|
|
# ______________________________________________________________________
|
2012-11-28 10:14:16 +01:00
|
|
|
|
def __str__(self):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"Config's string representation"
|
2012-07-13 09:37:35 +02:00
|
|
|
|
lines = []
|
2012-11-28 10:14:16 +01:00
|
|
|
|
for name, grp in self.iter_groups():
|
|
|
|
|
lines.append("[%s]" % name)
|
|
|
|
|
for name, value in self:
|
|
|
|
|
try:
|
|
|
|
|
lines.append("%s = %s" % (name, value))
|
|
|
|
|
except:
|
|
|
|
|
pass
|
2012-07-13 09:37:35 +02:00
|
|
|
|
return '\n'.join(lines)
|
|
|
|
|
|
2012-11-28 10:14:16 +01:00
|
|
|
|
__repr__ = __str__
|
|
|
|
|
|
|
|
|
|
|
2012-07-26 16:55:01 +02:00
|
|
|
|
def getpaths(self, include_groups=False, allpaths=False, mandatory=False):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""returns a list of all paths in self, recursively, taking care of
|
2012-08-13 12:49:58 +02:00
|
|
|
|
the context of properties (hidden/disabled)
|
2012-10-11 16:16:43 +02:00
|
|
|
|
|
|
|
|
|
:param include_groups: if true, OptionDescription are included
|
|
|
|
|
:param allpaths: all the options (event the properties protected ones)
|
|
|
|
|
:param mandatory: includes the mandatory options
|
|
|
|
|
:returns: list of all paths
|
2012-07-13 09:37:35 +02:00
|
|
|
|
"""
|
|
|
|
|
paths = []
|
|
|
|
|
for path in self._cfgimpl_descr.getpaths(include_groups=include_groups):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
try:
|
2012-07-13 09:37:35 +02:00
|
|
|
|
value = getattr(self, path)
|
2012-10-05 16:00:07 +02:00
|
|
|
|
|
2012-07-26 16:55:01 +02:00
|
|
|
|
except MandatoryError:
|
|
|
|
|
if mandatory or allpaths:
|
|
|
|
|
paths.append(path)
|
2012-09-11 15:18:38 +02:00
|
|
|
|
except PropertiesOptionError:
|
2012-07-26 16:55:01 +02:00
|
|
|
|
if allpaths:
|
2012-10-05 16:00:07 +02:00
|
|
|
|
paths.append(path) # option which have properties added
|
2012-07-13 09:37:35 +02:00
|
|
|
|
else:
|
2012-09-11 15:18:38 +02:00
|
|
|
|
paths.append(path)
|
2012-10-05 16:00:07 +02:00
|
|
|
|
return paths
|
|
|
|
|
|
2012-10-12 11:35:07 +02:00
|
|
|
|
def _find(self, bytype, byname, byvalue, byattrs, first):
|
|
|
|
|
"""
|
|
|
|
|
:param first: return only one option if True, a list otherwise
|
|
|
|
|
"""
|
|
|
|
|
def _filter_by_attrs():
|
|
|
|
|
if byattrs is None:
|
|
|
|
|
return True
|
|
|
|
|
for key, value in byattrs.items():
|
|
|
|
|
if not hasattr(option, key):
|
|
|
|
|
return False
|
|
|
|
|
else:
|
|
|
|
|
if getattr(option, key) != value:
|
|
|
|
|
return False
|
|
|
|
|
else:
|
|
|
|
|
continue
|
|
|
|
|
return True
|
|
|
|
|
def _filter_by_name():
|
|
|
|
|
if byname is None:
|
|
|
|
|
return True
|
|
|
|
|
pathname = path.split('.')[-1]
|
|
|
|
|
if pathname == byname:
|
|
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
def _filter_by_value():
|
|
|
|
|
if byvalue is None:
|
|
|
|
|
return True
|
|
|
|
|
try:
|
|
|
|
|
value = getattr(self, path)
|
|
|
|
|
if value == byvalue:
|
|
|
|
|
return True
|
|
|
|
|
except Exception, e: # a property restricts the acces to value
|
|
|
|
|
pass
|
|
|
|
|
return False
|
|
|
|
|
def _filter_by_type():
|
|
|
|
|
if bytype is None:
|
|
|
|
|
return True
|
|
|
|
|
if isinstance(option, bytype):
|
|
|
|
|
return True
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
find_results = []
|
|
|
|
|
paths = self.getpaths(allpaths=True)
|
|
|
|
|
for path in paths:
|
|
|
|
|
option = self.unwrap_from_path(path)
|
|
|
|
|
if not _filter_by_name():
|
|
|
|
|
continue
|
|
|
|
|
if not _filter_by_value():
|
|
|
|
|
continue
|
|
|
|
|
if not _filter_by_type():
|
|
|
|
|
continue
|
|
|
|
|
if not _filter_by_attrs():
|
|
|
|
|
continue
|
|
|
|
|
if first:
|
|
|
|
|
return option
|
|
|
|
|
else:
|
|
|
|
|
find_results.append(option)
|
|
|
|
|
if first:
|
|
|
|
|
return None
|
|
|
|
|
else:
|
|
|
|
|
return find_results
|
|
|
|
|
|
2012-10-11 16:16:43 +02:00
|
|
|
|
def find(self, bytype=None, byname=None, byvalue=None, byattrs=None):
|
2012-10-12 11:35:07 +02:00
|
|
|
|
"""
|
|
|
|
|
finds a list of options recursively in the config
|
|
|
|
|
|
|
|
|
|
:param bytype: Option class (BoolOption, StrOption, ...)
|
|
|
|
|
:param byname: filter by Option._name
|
|
|
|
|
:param byvalue: filter by the option's value
|
|
|
|
|
:param byattrs: dict of option attributes (default, callback...)
|
|
|
|
|
:returns: list of matching Option objects
|
|
|
|
|
"""
|
|
|
|
|
return self._find(bytype, byname, byvalue, byattrs, first=False)
|
|
|
|
|
|
|
|
|
|
def find_first(self, bytype=None, byname=None, byvalue=None, byattrs=None):
|
2012-10-11 16:16:43 +02:00
|
|
|
|
"""
|
|
|
|
|
finds an option recursively in the config
|
|
|
|
|
|
|
|
|
|
:param bytype: Option class (BoolOption, StrOption, ...)
|
|
|
|
|
:param byname: filter by Option._name
|
|
|
|
|
:param byvalue: filter by the option's value
|
|
|
|
|
:param byattrs: dict of option attributes (default, callback...)
|
|
|
|
|
:returns: list of matching Option objects
|
|
|
|
|
"""
|
2012-10-12 11:35:07 +02:00
|
|
|
|
return self._find(bytype, byname, byvalue, byattrs, first=True)
|
2012-10-11 16:16:43 +02:00
|
|
|
|
|
2012-07-13 09:37:35 +02:00
|
|
|
|
def make_dict(config, flatten=False):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""export the whole config into a `dict`
|
|
|
|
|
:returns: dict of Option's name (or path) and values"""
|
2012-07-13 09:37:35 +02:00
|
|
|
|
paths = config.getpaths()
|
|
|
|
|
pathsvalues = []
|
|
|
|
|
for path in paths:
|
|
|
|
|
if flatten:
|
|
|
|
|
pathname = path.split('.')[-1]
|
|
|
|
|
else:
|
|
|
|
|
pathname = path
|
|
|
|
|
try:
|
2012-10-05 16:00:07 +02:00
|
|
|
|
value = getattr(config, path)
|
|
|
|
|
pathsvalues.append((pathname, value))
|
2012-07-13 09:37:35 +02:00
|
|
|
|
except:
|
2012-08-13 12:49:58 +02:00
|
|
|
|
pass # this just a hidden or disabled option
|
2012-07-13 09:37:35 +02:00
|
|
|
|
options = dict(pathsvalues)
|
|
|
|
|
return options
|
|
|
|
|
|
2012-07-24 15:35:44 +02:00
|
|
|
|
def mandatory_warnings(config):
|
2012-10-05 16:00:07 +02:00
|
|
|
|
"""convenience function to trace Options that are mandatory and
|
|
|
|
|
where no value has been set
|
|
|
|
|
|
|
|
|
|
:returns: generator of mandatory Option's path
|
|
|
|
|
"""
|
2012-11-19 10:45:03 +01:00
|
|
|
|
mandatory = settings.mandatory
|
|
|
|
|
settings.mandatory = True
|
2012-09-11 15:18:38 +02:00
|
|
|
|
for path in config._cfgimpl_descr.getpaths(include_groups=True):
|
2012-07-24 15:35:44 +02:00
|
|
|
|
try:
|
2012-11-07 17:14:50 +01:00
|
|
|
|
value = config._getattr(path, permissive=True)
|
2012-07-24 15:35:44 +02:00
|
|
|
|
except MandatoryError:
|
|
|
|
|
yield path
|
2012-09-11 15:18:38 +02:00
|
|
|
|
except PropertiesOptionError:
|
|
|
|
|
pass
|
2012-11-19 10:45:03 +01:00
|
|
|
|
settings.mandatory = mandatory
|