tiramisu/tiramisu/value.py

652 lines
27 KiB
Python
Raw Normal View History

2013-02-07 16:20:21 +01:00
# -*- coding: utf-8 -*-
"takes care of the option's values and multi values"
2018-01-26 07:33:47 +01:00
# Copyright (C) 2013-2018 Team tiramisu (see AUTHORS for all contributors)
2013-02-07 16:20:21 +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.
2013-02-07 16:20:21 +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.
2013-02-07 16:20:21 +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/>.
2013-02-07 16:20:21 +01:00
# ____________________________________________________________
import weakref
2017-12-07 21:42:04 +01:00
from .error import ConfigError, PropertiesOptionError
2018-08-01 08:37:58 +02:00
from .setting import owners, expires_time, undefined, forbidden_owners, OptionBag, ConfigBag
from .autolib import carry_out_calculation
from .i18n import _
2013-02-07 16:20:21 +01:00
2013-04-03 12:20:26 +02:00
2013-08-20 09:47:12 +02:00
class Values(object):
2013-05-23 17:51:50 +02:00
"""The `Config`'s root is indeed in charge of the `Option()`'s values,
but the values are physicaly located here, in `Values`, wich is also
responsible of a caching utility.
2013-05-23 14:55:52 +02:00
"""
2017-12-07 21:42:04 +01:00
__slots__ = ('context',
'_p_',
'__weakref__')
2013-04-03 12:20:26 +02:00
2017-12-07 21:42:04 +01:00
def __init__(self,
context,
storage):
2013-02-21 17:07:00 +01:00
"""
Initializes the values's dict.
2013-04-03 12:20:26 +02:00
:param context: the context is the home config's values
2017-12-07 21:42:04 +01:00
:param storage: where values or owners are stored
2013-05-23 14:55:52 +02:00
2013-02-21 17:07:00 +01:00
"""
self.context = weakref.ref(context)
2017-12-07 21:42:04 +01:00
# store the storage
self._p_ = storage
2013-08-20 09:47:12 +02:00
2017-11-20 17:01:36 +01:00
#______________________________________________________________________
# get context
def _getcontext(self):
2017-12-07 21:42:04 +01:00
"""context is a weakref so context could be None, we need to test it
context is None only if all reference to `Config` object is deleted
(for example we delete a `Config` and we manipulate a reference to
old `SubConfig`, `Values`, `Multi` or `Settings`)
"""
context = self.context()
if context is None: # pragma: no cover
raise ConfigError(_('the context does not exist anymore'))
return context
2017-11-20 17:01:36 +01:00
#______________________________________________________________________
# get value
def get_cached_value(self,
2018-08-01 08:37:58 +02:00
option_bag):
2017-12-07 21:42:04 +01:00
"""get value directly in cache if set
otherwise calculated value and set it in cache
:param opt: the `Option` that we want to get value
:param path: the path of the `Option`
:param validate: the value must be valid
:param force_permissive: force permissive when check properties
:param setting_properties: global properties
:param self_properties: properties for this `Option`
:param index: index for a slave `Option`
:param display_warnings: display warnings or not
:returns: value
"""
# try to retrive value in cache
2018-08-01 08:37:58 +02:00
setting_properties = option_bag.config_bag.setting_properties
is_cached, value = self._p_.getcache(option_bag.path,
2018-06-25 21:40:16 +02:00
expires_time,
2018-08-01 08:37:58 +02:00
option_bag.index,
2018-06-25 21:40:16 +02:00
setting_properties,
2018-08-01 08:37:58 +02:00
option_bag.properties,
2018-06-25 21:40:16 +02:00
'value')
2017-12-07 21:42:04 +01:00
2017-12-19 23:11:45 +01:00
if not is_cached:
# no cached value so get value
2018-08-01 08:37:58 +02:00
value = self.getvalue(option_bag)
2017-12-19 23:11:45 +01:00
# validate value
context = self._getcontext()
2018-08-01 08:37:58 +02:00
opt = option_bag.option
opt.impl_validate(value,
2018-08-01 08:37:58 +02:00
option_bag,
context=context,
2018-08-01 08:37:58 +02:00
check_error=True)
if setting_properties and 'warnings' in setting_properties:
2017-12-19 23:11:45 +01:00
opt.impl_validate(value,
2018-08-01 08:37:58 +02:00
option_bag,
2017-12-19 23:11:45 +01:00
context=context,
2018-08-01 08:37:58 +02:00
check_error=False)
2017-12-07 21:42:04 +01:00
# store value in cache
2018-06-25 21:40:16 +02:00
if not is_cached:
2018-08-01 08:37:58 +02:00
self._p_.setcache(option_bag.path,
option_bag.index,
2018-06-25 21:40:16 +02:00
value,
setting_properties,
2018-08-01 08:37:58 +02:00
option_bag.properties)
2018-07-22 11:51:48 +02:00
if isinstance(value, list):
# return a copy, so value cannot be modified
return value.copy()
2017-12-07 21:42:04 +01:00
# and return it
return value
2017-11-20 17:01:36 +01:00
def getvalue(self,
2018-08-01 08:37:58 +02:00
option_bag):
2017-11-20 17:01:36 +01:00
"""actually retrieves the value
2017-12-07 21:42:04 +01:00
:param path: the path of the `Option`
:param index: index for a slave `Option`
:returns: value
2017-11-20 17:01:36 +01:00
"""
2017-12-07 21:42:04 +01:00
# get owner and value from store
# index allowed only for slave
2018-08-01 08:37:58 +02:00
index = option_bag.index
is_slave = option_bag.option.impl_is_master_slaves('slave')
2017-12-07 21:42:04 +01:00
if index is None or not is_slave:
2017-11-20 17:01:36 +01:00
_index = None
else:
_index = index
2018-08-01 08:37:58 +02:00
owner, value = self._p_.getowner(option_bag.path,
2017-11-20 17:01:36 +01:00
owners.default,
index=_index,
with_value=True)
2017-12-07 21:42:04 +01:00
if owner != owners.default:
2018-08-01 08:37:58 +02:00
# if a value is store in storage, check if not frozen + force_default_on_freeze
# if frozen + force_default_on_freeze => force default value
if not ('frozen' in option_bag.properties and \
'force_default_on_freeze' in option_bag.properties):
2017-12-07 21:42:04 +01:00
if index is not None and not is_slave:
if len(value) > index:
return value[index]
#value is smaller than expected
#so return default value
else:
return value
2018-08-01 08:37:58 +02:00
return self.getdefaultvalue(option_bag)
2017-11-20 17:01:36 +01:00
2017-11-12 14:33:05 +01:00
def getdefaultvalue(self,
2018-08-01 08:37:58 +02:00
option_bag):
2017-11-12 14:33:05 +01:00
"""get default value:
- get meta config value or
- get calculated value or
- get default value
:param opt: the `option.Option()` object
:param path: path for `option.Option()` object
:type path: str
:param index: index of a multi/submulti
:type index: int
:returns: default value
"""
2017-11-23 16:56:14 +01:00
context = self._getcontext()
2018-08-01 08:37:58 +02:00
config_bag = option_bag.config_bag
opt = option_bag.option
index = option_bag.index
def _reset_cache(_value):
2018-08-01 08:37:58 +02:00
is_cache, cache_value = self._p_.getcache(option_bag.path,
2018-06-25 21:40:16 +02:00
expires_time,
index,
config_bag.setting_properties,
2018-08-01 08:37:58 +02:00
option_bag.properties,
2018-06-25 21:40:16 +02:00
'value')
if is_cache and cache_value == _value:
# calculation return same value as previous value,
# so do not invalidate cache
return
# calculated value is a new value, so reset cache
2018-08-01 08:37:58 +02:00
context.cfgimpl_reset_cache(option_bag)
2017-11-23 16:56:14 +01:00
2017-12-05 21:49:19 +01:00
if opt.impl_is_master_slaves('slave'):
index_ = index
else:
index_ = None
2018-08-01 08:37:58 +02:00
if option_bag.index != index_:
moption_bag = OptionBag()
moption_bag.set_option(opt,
option_bag.path,
index_,
config_bag)
moption_bag.fromconsistency = option_bag.fromconsistency.copy()
else:
moption_bag = option_bag
if self._is_meta(moption_bag):
2017-11-23 16:56:14 +01:00
meta = context.cfgimpl_get_meta()
# retrieved value from meta config
try:
2018-08-01 08:37:58 +02:00
# FIXME could have different property!
value = meta.getattr(moption_bag.path,
moption_bag)
2017-11-23 16:56:14 +01:00
except PropertiesOptionError:
# if properties error, return an other default value
# unexpected error, should not happened
pass
else:
return value
2017-11-12 14:33:05 +01:00
2017-07-16 23:11:12 +02:00
if opt.impl_has_callback():
2017-11-12 14:33:05 +01:00
# if value has callback, calculate value
2017-07-16 23:11:12 +02:00
callback, callback_params = opt.impl_get_callback()
2017-11-12 14:33:05 +01:00
value = carry_out_calculation(opt,
2017-11-23 16:56:14 +01:00
context=context,
2017-07-16 23:11:12 +02:00
callback=callback,
callback_params=callback_params,
2017-11-12 14:33:05 +01:00
index=index,
2018-08-01 08:37:58 +02:00
option_bag=option_bag)
2017-07-16 23:11:12 +02:00
if isinstance(value, list) and index is not None:
2017-11-12 14:33:05 +01:00
# if value is a list and index is set
if opt.impl_is_submulti() and (value == [] or not isinstance(value[0], list)):
# return value only if it's a submulti and not a list of list
_reset_cache(value)
2017-07-16 23:11:12 +02:00
return value
2017-11-12 14:33:05 +01:00
if len(value) > index:
# return the value for specified index if found
_reset_cache(value[index])
2017-07-16 23:11:12 +02:00
return value[index]
2017-11-12 14:33:05 +01:00
# there is no calculate value for this index,
# so return an other default value
2017-07-16 23:11:12 +02:00
else:
2017-11-12 14:33:05 +01:00
if opt.impl_is_submulti():
if isinstance(value, list):
# value is a list, but no index specified
if (value != [] and not isinstance(value[0], list)):
# if submulti, return a list of value
value = [value]
elif index is not None:
# if submulti, return a list of value
value = [value]
else:
# return a list of list for a submulti
value = [[value]]
elif opt.impl_is_multi() and not isinstance(value, list) and index is None:
2017-11-12 14:33:05 +01:00
# return a list for a multi
value = [value]
_reset_cache(value)
2017-07-16 23:11:12 +02:00
return value
2017-11-12 14:33:05 +01:00
# now try to get default value:
# - if opt is a submulti, return a list a list
# - if opt is a multi, return a list
# - default value
value = opt.impl_getdefault()
if opt.impl_is_multi() and index is not None:
2017-11-12 14:33:05 +01:00
# if index, must return good value for this index
if len(value) > index:
value = value[index]
else:
2017-11-12 14:33:05 +01:00
# no value for this index, retrieve default multi value
# default_multi is already a list for submulti
value = opt.impl_getdefault_multi()
return value
2013-02-07 16:20:21 +01:00
2017-11-20 17:01:36 +01:00
def isempty(self,
opt,
value,
force_allow_empty_list=False,
index=None):
"convenience method to know if an option is empty"
2018-04-11 16:36:15 +02:00
empty = opt._empty
if index in [None, undefined] and opt.impl_is_multi():
if force_allow_empty_list:
allow_empty_list = True
else:
2018-04-11 16:36:15 +02:00
allow_empty_list = opt.impl_allow_empty_list()
if allow_empty_list is undefined:
allow_empty_list = opt.impl_is_master_slaves('slave')
isempty = value is None or (not allow_empty_list and value == []) or \
None in value or empty in value
else:
isempty = value is None or value == empty
return isempty
2017-11-20 17:01:36 +01:00
#______________________________________________________________________
# set value
2017-11-20 17:01:36 +01:00
def setvalue(self,
2017-12-19 23:11:45 +01:00
value,
2018-08-01 08:37:58 +02:00
option_bag,
2017-11-20 17:01:36 +01:00
_commit):
2013-04-18 23:06:14 +02:00
context = self._getcontext()
2017-11-12 14:33:05 +01:00
owner = context.cfgimpl_get_settings().getowner()
2018-08-17 23:11:25 +02:00
if 'validator' in option_bag.config_bag.setting_properties:
2018-08-01 08:37:58 +02:00
if option_bag.index is not None or option_bag.option._has_consistencies(context):
2017-11-12 14:33:05 +01:00
# set value to a fake config when option has dependency
# validation will be complet in this case (consistency, ...)
tested_context = context._gen_fake_values()
2018-08-17 23:11:25 +02:00
option_bag.config_bag.remove_validation()
2018-08-01 08:37:58 +02:00
try:
tested_context.cfgimpl_get_values().setvalue(value,
option_bag,
True)
2018-08-17 23:11:25 +02:00
option_bag.config_bag.restore_validation()
2018-08-01 08:37:58 +02:00
tested_context.getattr(option_bag.path,
option_bag)
except Exception as exc:
2018-08-17 23:11:25 +02:00
option_bag.config_bag.restore_validation()
2018-08-01 08:37:58 +02:00
raise exc
2017-07-16 10:57:43 +02:00
else:
2018-08-01 08:37:58 +02:00
self.setvalue_validation(value,
option_bag)
2017-12-19 23:11:45 +01:00
2018-08-01 08:37:58 +02:00
self._setvalue(option_bag,
2017-11-12 14:33:05 +01:00
value,
owner,
commit=_commit)
2017-12-13 22:15:34 +01:00
def setvalue_validation(self,
2017-12-19 23:11:45 +01:00
value,
2018-08-01 08:37:58 +02:00
option_bag):
2017-11-12 14:33:05 +01:00
context = self._getcontext()
2017-11-23 16:56:14 +01:00
settings = context.cfgimpl_get_settings()
2017-11-12 14:33:05 +01:00
# First validate properties with this value
2018-08-01 08:37:58 +02:00
opt = option_bag.option
settings.validate_frozen(option_bag)
settings.validate_mandatory(value,
option_bag)
2017-11-12 14:33:05 +01:00
# Value must be valid for option
2017-11-20 17:01:36 +01:00
opt.impl_validate(value,
2018-08-01 08:37:58 +02:00
option_bag,
2017-11-20 17:01:36 +01:00
context,
2018-08-01 08:37:58 +02:00
check_error=True)
if option_bag.config_bag.setting_properties and \
'warnings' in option_bag.config_bag.setting_properties:
# No error found so emit warnings
opt.impl_validate(value,
2018-08-01 08:37:58 +02:00
option_bag,
context,
2018-08-01 08:37:58 +02:00
check_error=False)
2017-11-12 14:33:05 +01:00
def _setvalue(self,
2018-08-01 08:37:58 +02:00
option_bag,
2017-11-12 14:33:05 +01:00
value,
owner,
commit=True):
2018-08-01 08:37:58 +02:00
self._getcontext().cfgimpl_reset_cache(option_bag)
2017-11-12 14:33:05 +01:00
if isinstance(value, list):
# copy
2018-08-01 08:37:58 +02:00
value = value.copy()
self._p_.setvalue(option_bag.path,
2017-11-12 14:33:05 +01:00
value,
owner,
2018-08-01 08:37:58 +02:00
option_bag.index,
2017-11-12 14:33:05 +01:00
commit)
2017-11-20 17:01:36 +01:00
def _is_meta(self,
2018-08-01 08:37:58 +02:00
option_bag,
2017-11-23 16:56:14 +01:00
force_owner_is_default=False):
2018-08-01 08:37:58 +02:00
if not force_owner_is_default and self._p_.hasvalue(option_bag.path,
index=option_bag.index):
2017-11-23 16:56:14 +01:00
# has already a value, so not meta
return False
context = self._getcontext()
2017-11-23 16:56:14 +01:00
meta = context.cfgimpl_get_meta()
if meta is None:
2017-10-14 13:33:25 +02:00
return False
2018-08-01 08:37:58 +02:00
opt = option_bag.option
2017-11-23 16:56:14 +01:00
if opt.impl_is_master_slaves('slave'):
2017-12-02 22:53:57 +01:00
master = opt.impl_get_master_slaves().getmaster()
2017-11-23 16:56:14 +01:00
masterp = master.impl_getpath(context)
# slave could be a "meta" only if master hasn't value
if self._p_.hasvalue(masterp,
2018-01-03 21:07:51 +01:00
index=None):
2017-11-23 16:56:14 +01:00
return False
2018-08-01 08:37:58 +02:00
return not meta.cfgimpl_get_values().is_default_owner(option_bag)
2017-11-23 16:56:14 +01:00
2017-11-20 17:01:36 +01:00
#______________________________________________________________________
# owner
2017-12-23 12:29:45 +01:00
def is_default_owner(self,
2018-08-01 08:37:58 +02:00
option_bag,
2017-12-23 12:29:45 +01:00
validate_meta=undefined):
2018-08-01 08:37:58 +02:00
return self.getowner(option_bag,
validate_meta=validate_meta,
only_default=True) == owners.default
2017-12-23 12:29:45 +01:00
2017-11-20 17:01:36 +01:00
def getowner(self,
2018-08-01 08:37:58 +02:00
option_bag,
validate_meta=True,
only_default=False):
2013-08-21 11:09:11 +02:00
"""
retrieves the option's owner
2013-08-21 14:52:48 +02:00
:param opt: the `option.Option` object
:param force_permissive: behaves as if the permissive property
was present
2013-08-21 11:09:11 +02:00
:returns: a `setting.owners.Owner` object
"""
context = self._getcontext()
2018-08-01 08:37:58 +02:00
opt = option_bag.option
2017-12-04 20:05:36 +01:00
if opt.impl_is_symlinkoption():
2018-08-01 08:37:58 +02:00
option_bag.ori_option = opt
2017-12-04 20:05:36 +01:00
opt = opt.impl_getopt()
2018-08-01 08:37:58 +02:00
option_bag.option = opt
option_bag.path = opt.impl_getpath(context)
self_properties = option_bag.properties
2018-03-31 21:06:19 +02:00
settings = context.cfgimpl_get_settings()
2018-08-17 23:11:25 +02:00
settings.validate_properties(option_bag)
2015-10-29 09:03:13 +01:00
if 'frozen' in self_properties and 'force_default_on_freeze' in self_properties:
return owners.default
2017-11-23 16:56:14 +01:00
if only_default:
2018-08-01 08:37:58 +02:00
if self._p_.hasvalue(option_bag.path,
option_bag.index):
2017-11-23 16:56:14 +01:00
owner = undefined
else:
2017-11-23 16:56:14 +01:00
owner = owners.default
else:
2018-08-01 08:37:58 +02:00
owner = self._p_.getowner(option_bag.path,
2017-11-23 16:56:14 +01:00
owners.default,
2018-08-01 08:37:58 +02:00
index=option_bag.index)
2017-11-23 16:56:14 +01:00
if owner is owners.default and validate_meta is not False:
2018-01-03 21:07:51 +01:00
meta = context.cfgimpl_get_meta()
2018-08-01 08:37:58 +02:00
if meta is not None and self._is_meta(option_bag):
owner = meta.cfgimpl_get_values().getowner(option_bag,
only_default=only_default)
2013-05-02 11:34:57 +02:00
return owner
2013-04-03 12:20:26 +02:00
2017-11-20 17:01:36 +01:00
def setowner(self,
owner,
2018-08-01 08:37:58 +02:00
option_bag):
2013-08-21 11:09:11 +02:00
"""
sets a owner to an option
2013-08-21 14:52:48 +02:00
:param opt: the `option.Option` object
2013-08-21 11:09:11 +02:00
:param owner: a valid owner, that is a `setting.owners.Owner` object
"""
2018-08-01 08:37:58 +02:00
opt = option_bag.option
2017-12-04 20:05:36 +01:00
if opt.impl_is_symlinkoption():
2018-04-11 18:32:13 +02:00
raise ConfigError(_("can't set owner for the symlinkoption \"{}\""
2018-03-12 11:58:49 +01:00
"").format(opt.impl_get_display_name()))
2017-11-23 16:56:14 +01:00
if owner in forbidden_owners:
raise ConfigError(_('set owner "{0}" is forbidden').format(str(owner)))
2018-08-01 08:37:58 +02:00
if not self._p_.hasvalue(option_bag.path):
2017-10-22 09:48:08 +02:00
raise ConfigError(_('no value for {0} cannot change owner to {1}'
2018-08-01 08:37:58 +02:00
'').format(option_bag.path, owner))
self._getcontext().cfgimpl_get_settings().validate_frozen(option_bag)
self._p_.setowner(option_bag.path,
owner,
index=option_bag.index)
2017-11-20 17:01:36 +01:00
#______________________________________________________________________
# reset
def reset(self,
2018-08-01 08:37:58 +02:00
option_bag,
2017-12-19 23:11:45 +01:00
_commit=True):
2017-11-20 17:01:36 +01:00
context = self._getcontext()
setting = context.cfgimpl_get_settings()
2018-08-01 08:37:58 +02:00
hasvalue = self._p_.hasvalue(option_bag.path)
2017-11-20 17:01:36 +01:00
2018-08-17 23:11:25 +02:00
if hasvalue and 'validator' in option_bag.config_bag.setting_properties:
option_bag.config_bag.remove_validation()
2017-11-20 17:01:36 +01:00
fake_context = context._gen_fake_values()
fake_value = fake_context.cfgimpl_get_values()
2018-08-01 08:37:58 +02:00
fake_value.reset(option_bag)
2018-08-17 23:11:25 +02:00
option_bag.config_bag.restore_validation()
2018-08-01 08:37:58 +02:00
value = fake_value.getdefaultvalue(option_bag)
fake_value.setvalue_validation(value,
option_bag)
opt = option_bag.option
2017-11-20 17:01:36 +01:00
if opt.impl_is_master_slaves('master'):
2017-12-19 23:11:45 +01:00
opt.impl_get_master_slaves().reset(self,
2018-08-01 08:37:58 +02:00
option_bag,
2017-12-19 23:11:45 +01:00
_commit=_commit)
2017-11-20 17:01:36 +01:00
if hasvalue:
2018-08-01 08:37:58 +02:00
if 'force_store_value' in option_bag.properties:
value = self.getdefaultvalue(option_bag)
self._setvalue(option_bag,
2017-11-20 17:01:36 +01:00
value,
owners.forced,
commit=_commit)
else:
2018-08-01 08:37:58 +02:00
self._p_.resetvalue(option_bag.path,
2017-11-20 17:01:36 +01:00
_commit)
2018-08-01 08:37:58 +02:00
if not opt.impl_is_master_slaves('master'):
# if master, already reset behind
pass
context.cfgimpl_reset_cache(option_bag)
2017-11-20 17:01:36 +01:00
def reset_slave(self,
2018-08-01 08:37:58 +02:00
option_bag):
2017-11-20 17:01:36 +01:00
2018-08-01 08:37:58 +02:00
if self._p_.hasvalue(option_bag.path, index=option_bag.index):
2018-03-24 22:37:48 +01:00
context = self._getcontext()
2018-08-17 23:11:25 +02:00
if 'validator' in option_bag.config_bag.setting_properties:
2018-03-24 22:37:48 +01:00
fake_context = context._gen_fake_values()
fake_value = fake_context.cfgimpl_get_values()
2018-08-17 23:11:25 +02:00
option_bag.config_bag.remove_validation()
2018-08-01 08:37:58 +02:00
try:
fake_value.reset_slave(option_bag)
value = fake_value.getdefaultvalue(option_bag)
fake_value.setvalue_validation(value,
option_bag)
2018-08-17 23:11:25 +02:00
option_bag.config_bag.restore_validation()
2018-08-01 08:37:58 +02:00
except Exception as err:
2018-08-17 23:11:25 +02:00
option_bag.config_bag.restore_validation()
2018-08-01 08:37:58 +02:00
raise err
self._p_.resetvalue_index(option_bag.path, option_bag.index)
context.cfgimpl_reset_cache(option_bag)
2017-11-20 17:01:36 +01:00
def reset_master(self,
index,
2018-08-01 08:37:58 +02:00
option_bag,
subconfig):
2017-11-20 17:01:36 +01:00
2018-08-01 08:37:58 +02:00
current_value = self.get_cached_value(option_bag)
2018-03-24 22:37:48 +01:00
length = len(current_value)
if index >= length:
raise IndexError(_('index "{}" is higher than the length "{}" '
'for option "{}"').format(index,
length,
2018-08-01 08:37:58 +02:00
option_bag.option.impl_get_display_name()))
2017-11-20 17:01:36 +01:00
current_value.pop(index)
2018-08-01 08:37:58 +02:00
self.setvalue(current_value,
option_bag,
2017-11-20 17:01:36 +01:00
_commit=True)
2017-12-02 22:53:57 +01:00
subconfig.cfgimpl_get_description().pop(self,
2017-11-28 22:42:30 +01:00
index,
2018-08-01 08:37:58 +02:00
option_bag)
2017-12-13 22:15:34 +01:00
2017-11-20 17:01:36 +01:00
#______________________________________________________________________
# information
2017-11-20 17:01:36 +01:00
def set_information(self, key, value):
"""updates the information's attribute
:param key: information's key (ex: "help", "doc"
:param value: information's value (ex: "the help string")
"""
self._p_.set_information(key, value)
def get_information(self, key, default=undefined):
"""retrieves one information's item
:param key: the item string (ex: "help")
"""
2015-12-28 22:00:46 +01:00
return self._p_.get_information(key, default)
def del_information(self, key, raises=True):
self._p_.del_information(key, raises)
2017-11-20 17:01:36 +01:00
#______________________________________________________________________
# mandatory warnings
2018-04-06 16:09:10 +02:00
def _mandatory_warnings(self,
context,
config_bag,
description,
currpath,
config,
od_setting_properties):
settings = context.cfgimpl_get_settings()
2018-04-11 16:36:15 +02:00
# for option in config.cfgimpl_get_children(self.config_bag):
2018-04-06 16:09:10 +02:00
for option in description.impl_getchildren(config_bag, context):
name = option.impl_getname()
path = '.'.join(currpath + [name])
if option.impl_is_optiondescription():
2018-08-17 23:11:25 +02:00
ori_setting_properties = config_bag.setting_properties
config_bag.setting_properties = od_setting_properties
2018-04-06 16:09:10 +02:00
try:
2018-08-01 08:37:58 +02:00
option_bag = OptionBag()
option_bag.set_option(option,
path,
None,
config_bag)
subconfig = config.get_subconfig(name,
option_bag)
2018-04-06 16:09:10 +02:00
except PropertiesOptionError as err:
pass
else:
2018-08-17 23:11:25 +02:00
config_bag.setting_properties = ori_setting_properties
2018-04-06 16:09:10 +02:00
for path in self._mandatory_warnings(context,
2018-08-01 08:37:58 +02:00
config_bag,
2018-04-06 16:09:10 +02:00
option,
currpath + [name],
subconfig,
od_setting_properties):
yield path
elif not option.impl_is_symlinkoption():
# don't verifying symlink
try:
if not option.impl_is_master_slaves('slave'):
2018-08-01 08:37:58 +02:00
option_bag = OptionBag()
option_bag.set_option(option,
path,
None,
config_bag)
if 'mandatory' in option_bag.properties or 'empty' in option_bag.properties:
2018-04-11 16:36:15 +02:00
config.getattr(name,
2018-08-01 08:37:58 +02:00
option_bag)
2018-04-06 16:09:10 +02:00
else:
2018-04-11 16:36:15 +02:00
for index in range(config.cfgimpl_get_length()):
2018-08-01 08:37:58 +02:00
option_bag = OptionBag()
option_bag.set_option(option,
path,
index,
config_bag)
if 'mandatory' in option_bag.properties:
2018-04-11 16:36:15 +02:00
config.getattr(name,
2018-08-01 08:37:58 +02:00
option_bag)
2018-04-06 16:09:10 +02:00
except PropertiesOptionError as err:
if err.proptype == ['mandatory']:
yield path
except ConfigError as err:
#assume that uncalculated value is an empty value
yield path
2017-11-20 17:01:36 +01:00
2017-12-05 21:49:19 +01:00
def mandatory_warnings(self,
2017-12-19 23:11:45 +01:00
config_bag):
"""convenience function to trace Options that are mandatory and
where no value has been set
2015-10-29 09:03:13 +01:00
:returns: generator of mandatory Option's path
"""
2015-10-29 09:03:13 +01:00
context = self._getcontext()
2017-12-13 22:15:34 +01:00
# copy
2017-12-19 23:11:45 +01:00
od_setting_properties = config_bag.setting_properties - {'mandatory', 'empty'}
setting_properties = set(config_bag.setting_properties) - {'warnings'}
setting_properties.update(['mandatory', 'empty'])
2018-08-02 22:35:40 +02:00
config_bag = ConfigBag(context=config_bag.context)
2018-08-17 23:11:25 +02:00
config_bag.setting_properties = frozenset(setting_properties)
2017-12-19 23:11:45 +01:00
config_bag.force_permissive = True
2015-10-29 09:03:13 +01:00
2017-06-16 18:25:01 +02:00
descr = context.cfgimpl_get_description()
2018-04-11 16:36:15 +02:00
return self._mandatory_warnings(context,
config_bag,
descr,
[],
context,
od_setting_properties)