tiramisu/tiramisu/setting.py

874 lines
35 KiB
Python
Raw Normal View History

2012-11-19 10:45:03 +01:00
# -*- coding: utf-8 -*-
"sets the options of the configuration objects Config object itself"
2019-02-12 06:55:47 +01:00
# Copyright (C) 2012-2019 Team tiramisu (see AUTHORS for all contributors)
2012-11-19 10:45:03 +01:00
#
2013-09-22 22:33:09 +02:00
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
2012-11-19 10:45:03 +01:00
#
2013-09-22 22:33:09 +02:00
# 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 Lesser General Public License for more
# details.
2012-11-19 10:45:03 +01:00
#
2013-09-22 22:33:09 +02:00
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2012-11-19 10:45:03 +01:00
# ____________________________________________________________
from .error import (RequirementError, PropertiesOptionError,
2016-09-14 20:17:25 +02:00
ConstError, ConfigError, display_list)
from .i18n import _
2013-09-07 21:47:17 +02:00
"""If cache and expire is enable, time before cache is expired.
This delay start first time value/setting is set in cache, even if
user access several time to value/setting
"""
2019-02-24 10:36:42 +01:00
EXPIRATION_TIME = 5
2013-09-07 21:47:17 +02:00
"""List of default properties (you can add new one if needed).
For common properties and personalise properties, if a propery is set for
an Option and for the Config together, Setting raise a PropertiesOptionError
* Common properties:
hidden
option with this property can only get value in read only mode. This
option is not available in read write mode.
disabled
option with this property cannot be set/get
frozen
cannot set value for option with this properties if 'frozen' is set in
config
mandatory
should set value for option with this properties if 'mandatory' is set in
config
* Special property:
permissive
option with 'permissive' cannot raise PropertiesOptionError for properties
set in permissive
config with 'permissive', whole option in this config cannot raise
PropertiesOptionError for properties set in permissive
* Special Config properties:
cache
if set, enable cache settings and values
expire
2019-02-24 10:36:42 +01:00
if set, settings and values in cache expire after ``expiration_time``
2013-09-07 21:47:17 +02:00
everything_frozen
whole option in config are frozen (even if option have not frozen
property)
empty
2019-02-23 19:06:23 +01:00
raise mandatory PropertiesOptionError if multi or leader have empty value
2013-09-07 21:47:17 +02:00
validator
launch validator set by user in option (this property has no effect
for internal validator)
2015-04-18 23:11:57 +02:00
warnings
display warnings during validation
demoting_error_warning
all value errors are convert to warning (ValueErrorWarning)
2013-09-07 21:47:17 +02:00
"""
DEFAULT_PROPERTIES = frozenset(['cache', 'validator', 'warnings'])
SPECIAL_PROPERTIES = {'frozen', 'mandatory', 'empty', 'force_store_value'}
2013-09-07 21:47:17 +02:00
"""Config can be in two defaut mode:
read_only
you can get all variables not disabled but you cannot set any variables
if a value has a callback without any value, callback is launch and value
of this variable can change
you cannot access to mandatory variable without values
read_write
you can get all variables not disabled and not hidden
you can set all variables not frozen
"""
RO_APPEND = frozenset(['frozen', 'disabled', 'validator', 'everything_frozen',
'mandatory', 'empty', 'force_store_value'])
RO_REMOVE = frozenset(['permissive', 'hidden'])
RW_APPEND = frozenset(['frozen', 'disabled', 'validator', 'hidden',
'force_store_value'])
RW_REMOVE = frozenset(['permissive', 'everything_frozen', 'mandatory',
'empty'])
2017-12-23 20:21:07 +01:00
FORBIDDEN_SET_PROPERTIES = frozenset(['force_store_value'])
2019-02-21 19:33:39 +01:00
FORBIDDEN_SET_PERMISSIVES = frozenset(['force_default_on_freeze',
'force_metaconfig_on_freeze',
2019-02-21 19:33:39 +01:00
'force_store_value'])
2014-07-06 15:31:57 +02:00
2017-07-22 16:26:06 +02:00
static_set = frozenset()
2014-04-03 22:15:41 +02:00
2018-08-01 08:37:58 +02:00
class OptionBag:
__slots__ = ('option', # current option
'path',
'index',
'config_bag',
'ori_option', # original option (for example useful for symlinkoption)
'properties', # properties of current option
2019-06-12 08:45:56 +02:00
'properties_setted',
'apply_requires', # apply requires or not for this option
2018-08-01 08:37:58 +02:00
'fromconsistency' # history for consistency
)
def __init__(self):
self.option = None
self.fromconsistency = []
def set_option(self,
option,
path,
index,
config_bag):
if path is None:
2018-09-06 23:16:17 +02:00
path = option.impl_getpath()
2018-08-01 08:37:58 +02:00
self.path = path
self.index = index
self.option = option
self.config_bag = config_bag
def __getattr__(self, key):
if key == 'properties':
2018-08-02 22:35:40 +02:00
settings = self.config_bag.context.cfgimpl_get_settings()
self.properties = settings.getproperties(self,
apply_requires=self.apply_requires)
2018-08-01 08:37:58 +02:00
return self.properties
elif key == 'ori_option':
return self.option
elif key == 'apply_requires':
return True
2019-06-12 08:45:56 +02:00
elif key == 'properties_setted':
return False
2018-09-15 22:44:49 +02:00
raise KeyError('unknown key {} for OptionBag'.format(key)) # pragma: no cover
2018-08-01 08:37:58 +02:00
2019-06-12 08:45:56 +02:00
def __setattr__(self, key, val):
super().__setattr__(key, val)
if key == 'properties':
self.properties_setted = True
2018-09-04 08:36:02 +02:00
def __delattr__(self, key):
2018-10-31 16:08:22 +01:00
if key in ['properties', 'permissives']:
try:
super().__delattr__(key)
except AttributeError:
pass
2018-09-04 08:36:02 +02:00
return
2018-09-15 22:44:49 +02:00
raise KeyError('unknown key {} for ConfigBag'.format(key)) # pragma: no cover
2018-09-04 08:36:02 +02:00
2018-08-18 10:03:08 +02:00
def copy(self):
option_bag = OptionBag()
for key in self.__slots__:
if key == 'properties' and self.config_bag is undefined:
continue
2018-08-18 10:03:08 +02:00
setattr(option_bag, key, getattr(self, key))
return option_bag
2018-08-01 08:37:58 +02:00
class ConfigBag:
2018-08-18 07:51:04 +02:00
__slots__ = ('context', # link to the current context
'properties', # properties for current context
2018-12-24 09:30:58 +01:00
'true_properties', # properties for current context
2019-07-04 20:43:47 +02:00
'is_unrestraint',
2018-08-18 08:06:29 +02:00
'permissives', # permissives for current context
2019-02-24 10:36:42 +01:00
'expiration_time' # EXPIRATION_TIME
)
2019-02-24 10:36:42 +01:00
2018-08-02 22:35:40 +02:00
def __init__(self, context, **kwargs):
self.context = context
2017-12-19 23:11:45 +01:00
for key, value in kwargs.items():
2018-08-01 08:37:58 +02:00
setattr(self, key, value)
2017-12-19 23:11:45 +01:00
def __getattr__(self, key):
2018-08-18 07:51:04 +02:00
if key == 'properties':
2019-02-24 10:36:42 +01:00
settings = self.context.cfgimpl_get_settings()
self.properties = settings.get_context_properties()
2018-08-18 07:51:04 +02:00
return self.properties
2018-08-18 08:06:29 +02:00
if key == 'permissives':
2019-02-24 10:36:42 +01:00
settings = self.context.cfgimpl_get_settings()
self.permissives = settings.get_context_permissives()
2018-08-18 08:06:29 +02:00
return self.permissives
2018-12-24 09:30:58 +01:00
if key == 'true_properties':
return self.properties
2019-02-24 10:36:42 +01:00
if key == 'expiration_time':
self.expiration_time = EXPIRATION_TIME
return self.expiration_time
2019-07-04 20:43:47 +02:00
if key == 'is_unrestraint':
return False
2018-09-15 22:44:49 +02:00
raise KeyError('unknown key {} for ConfigBag'.format(key)) # pragma: no cover
2018-08-17 23:11:25 +02:00
def remove_warnings(self):
self.properties = frozenset(self.properties - {'warnings'})
2018-08-17 23:11:25 +02:00
def remove_validation(self):
2018-08-18 10:03:08 +02:00
self.properties = frozenset(self.properties - {'validator'})
2018-12-24 09:30:58 +01:00
def unrestraint(self):
2019-07-04 20:43:47 +02:00
self.is_unrestraint = True
2018-12-24 09:30:58 +01:00
self.true_properties = self.properties
self.properties = frozenset(['cache'])
2018-08-18 08:06:29 +02:00
def set_permissive(self):
self.properties = frozenset(self.properties | {'permissive'})
def __delattr__(self, key):
if key in ['properties', 'permissives']:
try:
super().__delattr__(key)
except AttributeError:
pass
return
2018-09-15 22:44:49 +02:00
raise KeyError('unknown key {} for ConfigBag'.format(key)) # pragma: no cover
2018-12-24 09:30:58 +01:00
# def __setattr__(self, key, value):
# super().__setattr__(key, value)
2018-08-01 08:37:58 +02:00
def copy(self):
2017-12-19 23:11:45 +01:00
kwargs = {}
for key in self.__slots__:
2018-12-24 09:30:58 +01:00
if key in ['properties', 'permissives', 'true_properties'] and \
not hasattr(self.context, '_impl_settings'):
2018-12-24 09:30:58 +01:00
# not for GroupConfig
continue
2018-08-17 23:11:25 +02:00
kwargs[key] = getattr(self, key)
2017-12-19 23:11:45 +01:00
return ConfigBag(**kwargs)
2013-09-07 21:47:17 +02:00
# ____________________________________________________________
2013-09-22 20:57:52 +02:00
class _NameSpace(object):
2012-12-06 18:14:57 +01:00
"""convenient class that emulates a module
2013-09-07 21:47:17 +02:00
and builds constants (that is, unique names)
when attribute is added, we cannot delete it
"""
2012-12-06 18:14:57 +01:00
2017-11-20 17:01:36 +01:00
def __setattr__(self,
name,
value):
if name in self.__dict__:
raise ConstError(_("can't rebind {0}").format(name))
2012-12-06 18:14:57 +01:00
self.__dict__[name] = value
2017-11-20 17:01:36 +01:00
def __delattr__(self,
name):
raise ConstError(_("can't unbind {0}").format(name))
2013-04-03 12:20:26 +02:00
class GroupModule(_NameSpace):
2012-12-10 09:53:13 +01:00
"emulates a module to manage unique group (OptionDescription) names"
2012-12-10 14:38:25 +01:00
class GroupType(str):
2012-12-06 18:14:57 +01:00
"""allowed normal group (OptionDescription) names
2019-02-23 19:06:23 +01:00
*normal* means : groups that are not leader
2012-12-06 18:14:57 +01:00
"""
pass
2013-04-03 12:20:26 +02:00
2012-12-10 14:38:25 +01:00
class DefaultGroupType(GroupType):
2012-12-10 14:10:05 +01:00
"""groups that are default (typically 'default')"""
pass
2019-02-23 19:06:23 +01:00
class LeadershipGroupType(GroupType):
2012-12-06 18:14:57 +01:00
"""allowed normal group (OptionDescription) names
2019-02-23 19:06:23 +01:00
*leadership* means : groups that have the 'leadership' attribute set
2012-12-06 18:14:57 +01:00
"""
pass
2013-04-03 12:20:26 +02:00
class OwnerModule(_NameSpace):
2012-12-10 14:10:05 +01:00
"""emulates a module to manage unique owner names.
owners are living in `Config._cfgimpl_value_owners`
"""
class Owner(str):
"""allowed owner names
"""
pass
2013-04-03 12:20:26 +02:00
2012-12-10 14:10:05 +01:00
class DefaultOwner(Owner):
"""groups that are default (typically 'default')"""
pass
2013-09-07 21:47:17 +02:00
2017-11-20 17:01:36 +01:00
def addowner(self, name):
"""
:param name: the name of the new owner
"""
setattr(owners, name, owners.Owner(name))
2013-09-07 21:47:17 +02:00
# ____________________________________________________________
2017-11-20 17:01:36 +01:00
# populate groups
groups = GroupModule()
"""groups.default
default group set when creating a new optiondescription"""
groups.default = groups.DefaultGroupType('default')
2013-09-07 21:47:17 +02:00
2019-02-23 19:06:23 +01:00
"""groups.leadership
leadership group is a special optiondescription, all suboptions should
be multi option and all values should have same length, to find
leader's option, the optiondescription's name should be same than de
leader's option"""
2019-02-23 19:06:23 +01:00
groups.leadership = groups.LeadershipGroupType('leadership')
2013-09-07 21:47:17 +02:00
2017-11-20 17:01:36 +01:00
""" groups.family
example of group, no special behavior with this group's type"""
groups.family = groups.GroupType('family')
2013-04-03 12:20:26 +02:00
2012-12-10 14:38:25 +01:00
2013-09-07 21:47:17 +02:00
# ____________________________________________________________
2017-11-20 17:01:36 +01:00
# populate owners with default attributes
2013-09-07 21:47:17 +02:00
owners = OwnerModule()
2017-11-20 17:01:36 +01:00
"""default
is the config owner after init time"""
owners.default = owners.DefaultOwner('default')
"""user
is the generic is the generic owner"""
owners.user = owners.Owner('user')
"""forced
special owner when value is forced"""
owners.forced = owners.Owner('forced')
2017-11-23 16:56:14 +01:00
forbidden_owners = (owners.default, owners.forced)
2013-02-21 17:07:00 +01:00
2013-04-03 12:20:26 +02:00
# ____________________________________________________________
2014-04-25 22:57:08 +02:00
class Undefined(object):
2019-02-23 22:52:06 +01:00
def __str__(self): # pragma: no cover
2018-04-07 20:15:19 +02:00
return 'Undefined'
__repr__ = __str__
undefined = Undefined()
2018-10-30 11:57:04 +01:00
# ____________________________________________________________
2013-08-20 09:47:12 +02:00
class Settings(object):
2014-01-06 15:32:28 +01:00
"``config.Config()``'s configuration options settings"
__slots__ = ('_p_',
'_pp_',
'__weakref__',
'ro_append',
'ro_remove',
'rw_append',
'rw_remove',
'default_properties')
2013-04-03 12:20:26 +02:00
2018-09-07 06:14:52 +02:00
def __init__(self,
properties,
permissives):
2013-08-21 17:21:09 +02:00
"""
2013-08-21 18:34:32 +02:00
initializer
2013-08-21 17:21:09 +02:00
:param context: the root config
2013-08-21 18:34:32 +02:00
:param storage: the storage type
2013-08-21 23:21:28 +02:00
- dictionary -> in memory
2013-08-21 17:21:09 +02:00
- sqlite3 -> persistent
"""
2013-04-03 12:20:26 +02:00
# generic owner
2017-07-13 22:04:06 +02:00
self._p_ = properties
self._pp_ = permissives
self.default_properties = DEFAULT_PROPERTIES
self.ro_append = RO_APPEND
self.ro_remove = RO_REMOVE
self.rw_append = RW_APPEND
self.rw_remove = RW_REMOVE
2013-08-20 09:47:12 +02:00
2018-10-30 11:57:04 +01:00
# ____________________________________________________________
2017-11-20 17:01:36 +01:00
# get properties and permissive methods
2013-03-14 11:31:44 +01:00
def get_context_properties(self):
2019-06-12 08:45:56 +02:00
is_cached, props, validated = self._p_.getcache(None,
None,
None,
{},
{},
'context_props')
2018-06-25 21:40:16 +02:00
if not is_cached:
2018-09-05 22:46:45 +02:00
props = self._p_.getproperties(None,
self.default_properties)
2018-06-25 21:40:16 +02:00
self._p_.setcache(None,
None,
props,
2018-08-18 08:35:30 +02:00
{},
2019-06-12 08:45:56 +02:00
props,
True)
2015-10-29 09:03:13 +01:00
return props
2013-03-14 11:31:44 +01:00
2017-11-20 17:01:36 +01:00
def getproperties(self,
2018-08-01 08:37:58 +02:00
option_bag,
2019-06-21 23:04:04 +02:00
apply_requires=True,
search_properties=None):
2017-10-22 09:48:08 +02:00
"""
2013-04-03 12:20:26 +02:00
"""
2018-08-01 08:37:58 +02:00
opt = option_bag.option
config_bag = option_bag.config_bag
path = option_bag.path
index = option_bag.index
2017-12-04 20:05:36 +01:00
if opt.impl_is_symlinkoption():
opt = opt.impl_getopt()
2018-09-06 23:16:17 +02:00
path = opt.impl_getpath()
2018-06-25 21:40:16 +02:00
if apply_requires:
2018-08-18 07:51:04 +02:00
props = config_bag.properties
2019-06-12 08:45:56 +02:00
is_cached, props, validated = self._p_.getcache(path,
config_bag.expiration_time,
index,
props,
{},
'self_props')
2018-06-25 21:40:16 +02:00
else:
is_cached = False
2017-11-20 17:01:36 +01:00
if not is_cached:
2018-09-05 22:46:45 +02:00
props = self._p_.getproperties(path,
opt.impl_getproperties())
2018-01-26 07:33:47 +01:00
if apply_requires:
2018-08-01 08:37:58 +02:00
props |= self.apply_requires(option_bag,
2019-06-21 23:04:04 +02:00
False,
search_properties=search_properties)
2018-08-18 08:06:29 +02:00
props -= self.getpermissives(opt,
path)
2019-07-04 20:43:47 +02:00
#if apply_requires and config_bag.properties == config_bag.true_properties:
if apply_requires and not config_bag.is_unrestraint:
2017-11-20 17:01:36 +01:00
self._p_.setcache(path,
2018-06-25 21:40:16 +02:00
index,
2017-11-20 17:01:36 +01:00
props,
2018-08-18 08:35:30 +02:00
props,
2019-06-12 08:45:56 +02:00
config_bag.properties,
True)
2017-11-20 17:01:36 +01:00
return props
2018-08-18 08:06:29 +02:00
def get_context_permissives(self):
return self.getpermissives(None, None)
2012-11-19 10:45:03 +01:00
2018-08-18 08:06:29 +02:00
def getpermissives(self,
opt,
path):
2017-12-04 20:05:36 +01:00
if opt and opt.impl_is_symlinkoption():
opt = opt.impl_getopt()
2018-09-06 23:16:17 +02:00
path = opt.impl_getpath()
2018-08-18 08:06:29 +02:00
return self._pp_.getpermissives(path)
2017-11-20 17:01:36 +01:00
def apply_requires(self,
2018-08-01 08:37:58 +02:00
option_bag,
2019-06-21 23:04:04 +02:00
readable,
search_properties=None):
"""carries out the jit (just in time) requirements between options
a requirement is a tuple of this form that comes from the option's
requirements validation::
(option, expected, action, inverse, transitive, same_action)
let's have a look at all the tuple's items:
2013-09-07 22:16:50 +02:00
- **option** is the target option's
2013-09-07 22:16:50 +02:00
- **expected** is the target option's value that is going to trigger
an action
2013-09-07 22:16:50 +02:00
- **action** is the (property) action to be accomplished if the target
option happens to have the expected value
- if **inverse** is `True` and if the target option's value does not
apply, then the property action must be removed from the option's
properties list (wich means that the property is inverted)
- **transitive**: but what happens if the target option cannot be
accessed ? We don't kown the target option's value. Actually if some
property in the target option is not present in the permissive, the
target option's value cannot be accessed. In this case, the
**action** have to be applied to the option. (the **action** property
is then added to the option).
- **same_action**: actually, if **same_action** is `True`, the
transitivity is not accomplished. The transitivity is accomplished
only if the target option **has the same property** that the demanded
action. If the target option's value is not accessible because of
another reason, because of a property of another type, then an
exception :exc:`~error.RequirementError` is raised.
And at last, if no target option matches the expected values, the
action will not add to the option's properties list.
:param opt: the option on wich the requirement occurs
:type opt: `option.Option()`
:param path: the option's path in the config
:type path: str
"""
2018-08-01 08:37:58 +02:00
current_requires = option_bag.option.impl_getrequires()
# filters the callbacks
if readable:
2016-09-14 20:17:25 +02:00
calc_properties = {}
else:
calc_properties = set()
2016-10-23 09:38:35 +02:00
if not current_requires:
return calc_properties
2018-09-07 06:14:52 +02:00
context = option_bag.config_bag.context
all_properties = None
2016-10-23 09:38:35 +02:00
for requires in current_requires:
for require in requires:
exps, action, inverse, transitive, same_action, operator = require
2019-06-21 23:04:04 +02:00
#if search_properties and action not in search_properties:
# continue
2017-05-20 16:28:19 +02:00
breaked = False
for option, expected in exps:
2019-03-13 08:49:18 +01:00
if not isinstance(option, tuple):
if option.issubdyn():
option = option.to_dynoption(option_bag.option.rootpath,
option_bag.option.impl_getsuffix())
reqpath = option.impl_getpath()
if __debug__ and reqpath.startswith(option_bag.path + '.'):
# FIXME too later!
raise RequirementError(_("malformed requirements "
"imbrication detected for option:"
" '{0}' with requirement on: "
"'{1}'").format(option_bag.path, reqpath))
idx = None
is_indexed = False
if option.impl_is_follower():
idx = option_bag.index
if idx is None:
continue
elif option.impl_is_leader() and option_bag.index is None:
continue
2019-03-13 08:49:18 +01:00
elif option.impl_is_multi() and option_bag.index is not None:
is_indexed = True
config_bag = option_bag.config_bag.copy()
soption_bag = OptionBag()
soption_bag.set_option(option,
reqpath,
idx,
config_bag)
if option_bag.option == option:
soption_bag.config_bag.unrestraint()
soption_bag.config_bag.remove_validation()
soption_bag.apply_requires = False
else:
soption_bag.config_bag.properties = soption_bag.config_bag.true_properties
soption_bag.config_bag.set_permissive()
2018-12-24 09:30:58 +01:00
else:
2019-03-13 08:49:18 +01:00
if not option_bag.option.impl_is_optiondescription() and option_bag.option.impl_is_follower():
idx = option_bag.index
if idx is None:
continue
is_indexed = False
2017-11-13 22:45:53 +01:00
try:
2019-03-13 08:49:18 +01:00
if not isinstance(option, tuple):
value = context.getattr(reqpath,
soption_bag)
else:
value = context.cfgimpl_get_values().carry_out_calculation(option_bag,
option[0],
option[1])
except (PropertiesOptionError, ConfigError) as err:
if isinstance(err, ConfigError):
if not isinstance(err.ori_err, PropertiesOptionError):
raise err
err = err.ori_err
properties = err.proptype
2018-12-24 09:30:58 +01:00
# if not transitive, properties must be verify in current requires
# otherwise if same_action, property must be in properties
# otherwise add property in returned properties (if operator is 'and')
2017-11-13 22:45:53 +01:00
if not transitive:
if all_properties is None:
all_properties = []
for requires_ in current_requires:
2017-11-20 17:01:36 +01:00
for require_ in requires_:
all_properties.append(require_[1])
if not set(properties) - set(all_properties):
2017-11-13 22:45:53 +01:00
continue
if same_action and action not in properties:
2017-11-13 22:45:53 +01:00
if len(properties) == 1:
prop_msg = _('property')
else:
prop_msg = _('properties')
err = RequirementError(_('cannot access to option "{0}" because '
2017-11-13 22:45:53 +01:00
'required option "{1}" has {2} {3}'
2018-08-01 08:37:58 +02:00
'').format(option_bag.option.impl_get_display_name(),
2017-11-13 22:45:53 +01:00
option.impl_get_display_name(),
prop_msg,
2018-04-11 08:40:59 +02:00
display_list(list(properties), add_quote=True)))
err.proptype = properties
raise err
# transitive action, add action
2017-05-20 16:28:19 +02:00
if operator != 'and':
if readable:
2018-08-01 08:37:58 +02:00
for msg in self.apply_requires(err._option_bag,
True).values():
calc_properties.setdefault(action, []).extend(msg)
else:
calc_properties.add(action)
breaked = True
break
else:
2018-12-24 09:30:58 +01:00
if is_indexed:
value = value[option_bag.index]
if (not inverse and value in expected or
inverse and value not in expected):
if operator != 'and':
if readable:
2019-03-13 08:49:18 +01:00
display_value = display_list(expected, 'or', add_quote=True)
if isinstance(option, tuple):
if not inverse:
msg = _('the calculated value is {0}').format(display_value)
else:
msg = _('the calculated value is not {0}').format(display_value)
2017-05-20 16:28:19 +02:00
else:
2019-03-13 08:49:18 +01:00
name = option.impl_get_display_name()
if not inverse:
msg = _('the value of "{0}" is {1}').format(name, display_value)
else:
msg = _('the value of "{0}" is not {1}').format(name, display_value)
calc_properties.setdefault(action, []).append(msg)
else:
calc_properties.add(action)
breaked = True
break
elif operator == 'and':
break
2017-05-20 16:28:19 +02:00
else:
if operator == 'and':
calc_properties.add(action)
2018-09-29 21:58:41 +02:00
continue
2017-05-20 16:28:19 +02:00
if breaked:
break
return calc_properties
2013-08-19 11:01:21 +02:00
2017-11-20 17:01:36 +01:00
#____________________________________________________________
# set methods
2017-12-19 23:11:45 +01:00
def set_context_properties(self,
2018-09-07 06:14:52 +02:00
properties,
context):
self._p_.setproperties(None,
properties)
context.cfgimpl_reset_cache(None)
2017-11-20 17:01:36 +01:00
def setproperties(self,
path,
2017-12-19 23:11:45 +01:00
properties,
2018-09-07 06:14:52 +02:00
option_bag,
context):
2017-11-20 17:01:36 +01:00
"""save properties for specified path
(never save properties if same has option properties)
"""
2018-06-25 21:40:16 +02:00
# should have index !!!
opt = option_bag.option
if opt.impl_getrequires() is not None:
2018-08-01 08:37:58 +02:00
not_allowed_props = properties & \
getattr(opt, '_calc_properties', static_set)
2017-12-29 11:38:41 +01:00
if not_allowed_props:
2018-08-01 08:37:58 +02:00
raise ValueError(_('cannot set property {} for option "{}" this property is '
'calculated').format(display_list(list(not_allowed_props),
add_quote=True),
opt.impl_get_display_name()))
if opt.impl_is_symlinkoption():
2018-04-11 18:32:13 +02:00
raise TypeError(_("can't assign property to the symlinkoption \"{}\""
2017-12-04 20:05:36 +01:00
"").format(opt.impl_get_display_name()))
if ('force_default_on_freeze' in properties or 'force_metaconfig_on_freeze' in properties) and \
'frozen' not in properties and \
2019-02-23 19:06:23 +01:00
opt.impl_is_leader():
raise ConfigError(_('a leader ({0}) cannot have '
'"force_default_on_freeze" or "force_metaconfig_on_freeze" property without "frozen"'
'').format(opt.impl_get_display_name()))
2017-11-20 17:01:36 +01:00
self._p_.setproperties(path,
properties)
2019-02-23 19:06:23 +01:00
# values too because of follower values could have a PropertiesOptionError has value
2018-09-07 06:14:52 +02:00
context.cfgimpl_reset_cache(option_bag)
del option_bag.properties
2017-11-20 17:01:36 +01:00
2018-08-18 08:14:47 +02:00
def set_context_permissives(self,
permissives):
self.setpermissives(None,
permissives)
2017-11-20 17:01:36 +01:00
2018-08-18 08:14:47 +02:00
def setpermissives(self,
option_bag,
permissives):
2017-11-20 17:01:36 +01:00
"""
enables us to put the permissives in the storage
:param path: the option's path
:param type: str
:param opt: if an option object is set, the path is extracted.
it is better (faster) to set the path parameter
instead of passing a :class:`tiramisu.option.Option()` object.
"""
if not isinstance(permissives, frozenset):
raise TypeError(_('permissive must be a frozenset'))
2018-08-01 08:37:58 +02:00
if option_bag is not None:
opt = option_bag.option
if opt and opt.impl_is_symlinkoption():
raise TypeError(_("can't assign permissive to the symlinkoption \"{}\""
"").format(opt.impl_get_display_name()))
path = option_bag.path
else:
path = None
2017-12-28 11:47:29 +01:00
forbidden_permissives = FORBIDDEN_SET_PERMISSIVES & permissives
2017-11-20 17:01:36 +01:00
if forbidden_permissives:
raise ConfigError(_('cannot add those permissives: {0}').format(
' '.join(forbidden_permissives)))
2018-08-18 08:14:47 +02:00
self._pp_.setpermissives(path, permissives)
2018-08-01 08:37:58 +02:00
if option_bag is not None:
2018-09-07 06:14:52 +02:00
option_bag.config_bag.context.cfgimpl_reset_cache(option_bag)
2017-11-20 17:01:36 +01:00
#____________________________________________________________
# reset methods
2017-11-23 16:56:14 +01:00
def reset(self,
2018-09-07 06:14:52 +02:00
option_bag,
context):
2018-08-01 08:37:58 +02:00
if option_bag is None:
opt = None
path = None
2018-08-01 08:37:58 +02:00
else:
opt = option_bag.option
assert not opt.impl_is_symlinkoption(), _("can't reset properties to "
"the symlinkoption \"{}\""
"").format(opt.impl_get_display_name())
path = option_bag.path
self._p_.delproperties(path)
context.cfgimpl_reset_cache(option_bag)
def reset_permissives(self,
option_bag,
context):
if option_bag is None:
opt = None
path = None
2017-11-20 17:01:36 +01:00
else:
opt = option_bag.option
assert not opt.impl_is_symlinkoption(), _("can't reset permissives to "
"the symlinkoption \"{}\""
"").format(opt.impl_get_display_name())
path = option_bag.path
self._pp_.delpermissive(path)
2018-09-07 06:14:52 +02:00
context.cfgimpl_reset_cache(option_bag)
2017-11-20 17:01:36 +01:00
#____________________________________________________________
# validate properties
def calc_raises_properties(self,
2019-06-12 08:45:56 +02:00
option_bag,
apply_requires=True):
if apply_requires and option_bag.properties_setted:
option_properties = option_bag.properties
else:
option_properties = self.getproperties(option_bag,
apply_requires=apply_requires)
2019-07-04 20:43:47 +02:00
return self._calc_raises_properties(option_bag.config_bag.properties,
option_bag.config_bag.permissives,
option_properties)
def _calc_raises_properties(self,
context_properties,
context_permissives,
option_properties):
raises_properties = context_properties - SPECIAL_PROPERTIES
# remove global permissive properties
if raises_properties and ('permissive' in raises_properties):
raises_properties -= context_permissives
2019-06-12 08:45:56 +02:00
properties = option_properties & raises_properties
# at this point an option should not remain in properties
return properties
2017-11-20 17:01:36 +01:00
def validate_properties(self,
2018-08-01 08:37:58 +02:00
option_bag):
2017-11-20 17:01:36 +01:00
"""
2017-12-05 21:49:19 +01:00
validation upon the properties related to `opt`
2017-11-20 17:01:36 +01:00
2017-12-05 21:49:19 +01:00
:param opt: an option or an option description object
2017-11-20 17:01:36 +01:00
:param force_permissive: behaves as if the permissive property
was present
"""
2018-08-01 08:37:58 +02:00
config_bag = option_bag.config_bag
2019-06-12 08:45:56 +02:00
if not config_bag.properties or config_bag.properties == frozenset(['cache']): # pragma: no cover
2018-08-18 07:51:04 +02:00
return
2019-06-12 08:45:56 +02:00
properties = self.calc_raises_properties(option_bag)
2017-11-20 17:01:36 +01:00
if properties != frozenset():
2018-08-01 08:37:58 +02:00
raise PropertiesOptionError(option_bag,
2017-11-23 16:56:14 +01:00
properties,
self)
2017-11-23 16:56:14 +01:00
2017-11-28 22:42:30 +01:00
def validate_mandatory(self,
value,
2018-08-01 08:37:58 +02:00
option_bag):
2018-08-18 07:51:04 +02:00
if 'mandatory' in option_bag.config_bag.properties:
2018-09-07 06:14:52 +02:00
values = option_bag.config_bag.context.cfgimpl_get_values()
2018-08-17 23:11:25 +02:00
is_mandatory = False
if not ('permissive' in option_bag.config_bag.properties and
'mandatory' in option_bag.config_bag.permissives) and \
'mandatory' in option_bag.properties and values.isempty(option_bag.option,
value,
index=option_bag.index):
2017-12-28 11:47:29 +01:00
is_mandatory = True
2018-08-17 23:11:25 +02:00
if 'empty' in option_bag.properties and values.isempty(option_bag.option,
2017-12-19 23:11:45 +01:00
value,
force_allow_empty_list=True,
2018-08-01 08:37:58 +02:00
index=option_bag.index):
2017-12-28 11:47:29 +01:00
is_mandatory = True
2018-08-17 23:11:25 +02:00
if is_mandatory:
raise PropertiesOptionError(option_bag,
['mandatory'],
self)
2017-11-20 17:01:36 +01:00
2017-12-13 22:15:34 +01:00
def validate_frozen(self,
2018-08-01 08:37:58 +02:00
option_bag):
2018-08-18 07:51:04 +02:00
if option_bag.config_bag.properties and \
('everything_frozen' in option_bag.config_bag.properties or
2018-08-01 08:37:58 +02:00
'frozen' in option_bag.properties) and \
2018-08-18 08:06:29 +02:00
not (('permissive' in option_bag.config_bag.properties) and
'frozen' in option_bag.config_bag.permissives):
2018-08-01 08:37:58 +02:00
raise PropertiesOptionError(option_bag,
['frozen'],
self)
2017-12-28 11:47:29 +01:00
return False
2017-11-20 17:01:36 +01:00
#____________________________________________________________
# read only/read write
def _read(self,
remove,
2018-09-07 06:14:52 +02:00
append,
context):
2017-11-20 17:01:36 +01:00
props = self._p_.getproperties(None,
self.default_properties)
2017-11-20 17:01:36 +01:00
modified = False
2017-12-28 11:47:29 +01:00
if remove & props:
2017-11-20 17:01:36 +01:00
props = props - remove
modified = True
if append & props != append:
props = props | append
modified = True
if modified:
2018-09-07 06:14:52 +02:00
self.set_context_properties(frozenset(props),
context)
2017-11-20 17:01:36 +01:00
2018-09-07 06:14:52 +02:00
def read_only(self,
context):
2017-11-20 17:01:36 +01:00
"convenience method to freeze, hide and disable"
self._read(self.ro_remove,
self.ro_append,
2018-09-07 06:14:52 +02:00
context)
2017-11-20 17:01:36 +01:00
2018-09-07 06:14:52 +02:00
def read_write(self,
context):
2017-11-20 17:01:36 +01:00
"convenience method to freeze, hide and disable"
self._read(self.rw_remove,
self.rw_append,
2018-09-07 06:14:52 +02:00
context)