tiramisu/tiramisu/value.py

518 lines
22 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"
2013-02-21 17:07:00 +01:00
# Copyright (C) 2013 Team tiramisu (see AUTHORS for all contributors)
2013-02-07 16:20:21 +01: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
#
# ____________________________________________________________
from time import time
from copy import copy
import sys
import weakref
2013-04-19 20:10:55 +02:00
from tiramisu.error import ConfigError, SlaveError
from tiramisu.setting import owners, multitypes, expires_time
from tiramisu.autolib import carry_out_calculation
2013-04-13 23:09:05 +02:00
from tiramisu.i18n import _
from tiramisu.option import SymLinkOption
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
"""
__slots__ = ('context', '_p_', '__weakref__')
2013-04-03 12:20:26 +02:00
2013-08-20 22:45:11 +02: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
2013-05-23 14:55:52 +02:00
2013-02-21 17:07:00 +01:00
"""
self.context = weakref.ref(context)
2013-08-21 14:52:48 +02:00
# the storage type is dictionary or sqlite3
self._p_ = storage
2013-08-20 09:47:12 +02:00
2013-08-14 23:06:31 +02:00
def _getdefault(self, opt):
2013-08-21 14:52:48 +02:00
"""
actually retrieves the default value
:param opt: the `option.Option()` object
"""
meta = self.context().cfgimpl_get_meta()
2013-05-02 11:34:57 +02:00
if meta is not None:
value = meta.cfgimpl_get_values()[opt]
2013-05-02 11:34:57 +02:00
else:
value = opt.impl_getdefault()
if opt.impl_is_multi():
return copy(value)
else:
return value
2013-05-02 11:34:57 +02:00
def _getvalue(self, opt, path, validate=True):
2013-08-21 14:52:48 +02:00
"""actually retrieves the value
:param opt: the `option.Option()` object
:returns: the option's value (or the default value if not set)
"""
if not self._p_.hasvalue(path):
2013-08-21 17:21:09 +02:00
# if there is no value
2013-08-14 23:06:31 +02:00
value = self._getdefault(opt)
if opt.impl_is_multi():
value = Multi(value, self.context, opt, path, validate)
else:
2013-08-21 17:21:09 +02:00
# if there is a value
value = self._p_.getvalue(path)
2013-08-14 23:06:31 +02:00
if opt.impl_is_multi() and not isinstance(value, Multi):
2013-08-21 11:09:11 +02:00
# load value so don't need to validate if is not a Multi
value = Multi(value, self.context, opt, path, validate=False)
return value
2013-02-07 16:20:21 +01:00
2013-08-14 23:06:31 +02:00
def get_modified_values(self):
2013-08-20 09:47:12 +02:00
return self._p_.get_modified_values()
2013-08-14 23:06:31 +02:00
def __contains__(self, opt):
2013-08-21 14:52:48 +02:00
"""
implements the 'in' keyword syntax in order provide a pythonic way
to kow if an option have a value
:param opt: the `option.Option()` object
"""
path = self._get_opt_path(opt)
return self._contains(path)
def _contains(self, path):
return self._p_.hasvalue(path)
2013-08-14 23:06:31 +02:00
2013-04-18 23:06:14 +02:00
def __delitem__(self, opt):
2013-08-21 14:52:48 +02:00
"""overrides the builtins `del()` instructions"""
2013-08-14 23:06:31 +02:00
self.reset(opt)
2013-04-18 23:06:14 +02:00
def reset(self, opt, path=None):
if path is None:
path = self._get_opt_path(opt)
if self._p_.hasvalue(path):
setting = self.context().cfgimpl_get_settings()
opt.impl_validate(opt.impl_getdefault(), self.context(),
2013-05-10 22:32:42 +02:00
'validator' in setting)
self.context().cfgimpl_reset_cache()
2013-08-20 12:08:02 +02:00
if (opt.impl_is_multi() and
2013-08-20 16:33:32 +02:00
opt.impl_get_multitype() == multitypes.master):
for slave in opt.impl_get_master_slaves():
2013-08-14 23:06:31 +02:00
self.reset(slave)
self._p_.resetvalue(path)
2013-02-26 14:56:15 +01:00
2013-08-14 23:06:31 +02:00
def _isempty(self, opt, value):
"convenience method to know if an option is empty"
empty = opt._empty
if (not opt.impl_is_multi() and (value is None or value == empty)) or \
(opt.impl_is_multi() and (value == [] or
None in value or empty in value)):
return True
return False
2013-02-07 16:20:21 +01:00
def _getcallback_value(self, opt, index=None):
2013-08-21 14:52:48 +02:00
"""
retrieves a value for the options that have a callback
:param opt: the `option.Option()` object
:param index: if an option is multi, only calculates the nth value
:type index: int
:returns: a calculated value
"""
2013-04-16 12:04:20 +02:00
callback, callback_params = opt._callback
if callback_params is None:
callback_params = {}
return carry_out_calculation(opt._name, config=self.context(),
callback=callback,
callback_params=callback_params,
index=index)
2013-04-18 23:06:14 +02:00
def __getitem__(self, opt):
"enables us to use the pythonic dictionary-like access to values"
2013-04-18 23:06:14 +02:00
return self.getitem(opt)
def getitem(self, opt, path=None, validate=True, force_permissive=False,
force_properties=None, validate_properties=True):
2013-08-14 23:06:31 +02:00
ntime = None
if path is None:
path = self._get_opt_path(opt)
if self._p_.hascache('value', path):
2013-08-14 23:06:31 +02:00
ntime = time()
is_cached, value = self._p_.getcache('value', path, ntime)
2013-08-14 23:06:31 +02:00
if is_cached:
2013-08-19 11:01:21 +02:00
if opt.impl_is_multi() and not isinstance(value, Multi):
#load value so don't need to validate if is not a Multi
value = Multi(value, self.context, opt, path, validate=False)
2013-04-18 23:06:14 +02:00
return value
val = self._getitem(opt, path, validate, force_permissive, force_properties,
validate_properties)
if 'expire' in self.context().cfgimpl_get_settings() and validate and \
2013-08-14 23:06:31 +02:00
validate_properties and force_permissive is False and \
force_properties is None:
2013-08-14 23:06:31 +02:00
if ntime is None:
ntime = time()
self._p_.setcache('value', path, val, ntime + expires_time)
2013-08-14 23:06:31 +02:00
2013-04-18 23:06:14 +02:00
return val
def _getitem(self, opt, path, validate, force_permissive, force_properties,
validate_properties):
# options with callbacks
setting = self.context().cfgimpl_get_settings()
is_frozen = 'frozen' in setting[opt]
2013-08-20 12:08:02 +02:00
# if value is callback and is not set
# or frozen with force_default_on_freeze
if opt.impl_has_callback() and (
self._is_default_owner(path) or
2013-08-20 16:33:32 +02:00
(is_frozen and 'force_default_on_freeze' in setting[opt])):
no_value_slave = False
2013-08-20 12:08:02 +02:00
if (opt.impl_is_multi() and
2013-08-20 16:33:32 +02:00
opt.impl_get_multitype() == multitypes.slave):
masterp = self._get_opt_path(opt.impl_get_master_slaves())
mastervalue = getattr(self.context(), masterp)
lenmaster = len(mastervalue)
if lenmaster == 0:
value = []
no_value_slave = True
if not no_value_slave:
value = self._getcallback_value(opt)
2013-08-20 12:08:02 +02:00
if (opt.impl_is_multi() and
2013-08-20 16:33:32 +02:00
opt.impl_get_multitype() == multitypes.slave):
if not isinstance(value, list):
value = [value for i in range(lenmaster)]
if opt.impl_is_multi():
value = Multi(value, self.context, opt, path, validate)
2013-08-21 11:09:11 +02:00
# suppress value if already set
self.reset(opt, path)
# frozen and force default
elif is_frozen and 'force_default_on_freeze' in setting[opt]:
2013-08-14 23:06:31 +02:00
value = self._getdefault(opt)
if opt.impl_is_multi():
value = Multi(value, self.context, opt, path, validate)
else:
value = self._getvalue(opt, path, validate)
if validate:
opt.impl_validate(value, self.context(), 'validator' in setting)
if self._is_default_owner(path) and \
'force_store_value' in setting[opt]:
self.setitem(opt, value, path, is_write=False)
if validate_properties:
setting.validate_properties(opt, False, False, value=value, path=path,
force_permissive=force_permissive,
force_properties=force_properties)
return value
2013-04-18 23:06:14 +02:00
def __setitem__(self, opt, value):
raise ValueError('you should only set value with config')
2013-04-18 23:06:14 +02:00
def setitem(self, opt, value, path, force_permissive=False,
is_write=True):
2013-08-21 11:09:11 +02:00
# is_write is, for example, used with "force_store_value"
# user didn't change value, so not write
# valid opt
opt.impl_validate(value, self.context(),
'validator' in self.context().cfgimpl_get_settings())
if opt.impl_is_multi() and not isinstance(value, Multi):
value = Multi(value, self.context, opt, path)
self._setvalue(opt, path, value, force_permissive=force_permissive,
is_write=is_write)
def _setvalue(self, opt, path, value, force_permissive=False,
2013-08-20 12:08:02 +02:00
force_properties=None,
is_write=True, validate_properties=True):
self.context().cfgimpl_reset_cache()
if validate_properties:
setting = self.context().cfgimpl_get_settings()
setting.validate_properties(opt, False, is_write,
value=value, path=path,
force_permissive=force_permissive,
force_properties=force_properties)
owner = self.context().cfgimpl_get_settings().getowner()
self._p_.setvalue(path, value, owner)
def getowner(self, opt):
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
2013-08-21 11:09:11 +02:00
:returns: a `setting.owners.Owner` object
"""
if isinstance(opt, SymLinkOption):
opt = opt._opt
path = self._get_opt_path(opt)
return self._getowner(path)
def _getowner(self, path):
owner = self._p_.getowner(path, owners.default)
meta = self.context().cfgimpl_get_meta()
2013-05-02 11:34:57 +02:00
if owner is owners.default and meta is not None:
owner = meta.cfgimpl_get_values()._getowner(path)
2013-05-02 11:34:57 +02:00
return owner
2013-04-03 12:20:26 +02:00
def setowner(self, opt, owner):
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
"""
2013-04-03 12:20:26 +02:00
if not isinstance(owner, owners.Owner):
2013-04-13 23:09:05 +02:00
raise TypeError(_("invalid generic owner {0}").format(str(owner)))
path = self._get_opt_path(opt)
self._setowner(path, owner)
def _setowner(self, path, owner):
if self._getowner(path) == owners.default:
2013-08-14 23:06:31 +02:00
raise ConfigError(_('no value for {0} cannot change owner to {1}'
'').format(path, owner))
self._p_.setowner(path, owner)
2013-04-03 12:20:26 +02:00
def is_default_owner(self, opt):
"""
:param config: *must* be only the **parent** config
(not the toplevel config)
:return: boolean
"""
path = self._get_opt_path(opt)
return self._is_default_owner(path)
def _is_default_owner(self, path):
return self._getowner(path) == owners.default
2013-02-21 17:07:00 +01:00
def reset_cache(self, only_expired):
2013-08-21 11:09:11 +02:00
"""
clears the cache if necessary
"""
if only_expired:
2013-08-20 09:47:12 +02:00
self._p_.reset_expired_cache('value', time())
else:
2013-08-20 09:47:12 +02:00
self._p_.reset_all_cache('value')
2013-04-18 23:06:14 +02:00
2013-08-14 23:06:31 +02:00
def _get_opt_path(self, opt):
2013-08-21 11:09:11 +02:00
"""
2013-08-21 14:52:48 +02:00
retrieve the option's path in the config
:param opt: the `option.Option` object
2013-08-21 11:09:11 +02:00
:returns: a string with points like "gc.dummy.my_option"
"""
return self.context().cfgimpl_get_description().impl_get_path_by_opt(opt)
2013-08-14 23:06:31 +02:00
# information
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=None):
"""retrieves one information's item
:param key: the item string (ex: "help")
"""
try:
return self._p_.get_information(key)
except ValueError:
if default is not None:
return default
else:
raise ValueError(_("information's item"
" not found: {0}").format(key))
# ____________________________________________________________
# multi types
2013-04-03 12:20:26 +02:00
class Multi(list):
"""multi options values container
that support item notation for the values of multi options"""
__slots__ = ('opt', 'path', 'context')
2013-04-03 12:20:26 +02:00
def __init__(self, value, context, opt, path, validate=True):
"""
2013-04-18 23:06:14 +02:00
:param value: the Multi wraps a list value
2013-04-03 12:20:26 +02:00
:param context: the home config that has the values
:param opt: the option object that have this Multi value
"""
self.opt = opt
self.path = path
if not isinstance(context, weakref.ReferenceType):
raise ValueError('context must be a Weakref')
2013-04-03 12:20:26 +02:00
self.context = context
2013-04-18 23:06:14 +02:00
if not isinstance(value, list):
value = [value]
if validate and self.opt.impl_get_multitype() == multitypes.slave:
2013-04-18 23:06:14 +02:00
value = self._valid_slave(value)
elif self.opt.impl_get_multitype() == multitypes.master:
2013-04-18 23:06:14 +02:00
self._valid_master(value)
super(Multi, self).__init__(value)
def _valid_slave(self, value):
#if slave, had values until master's one
masterp = self.context().cfgimpl_get_description().impl_get_path_by_opt(
self.opt.impl_get_master_slaves())
mastervalue = getattr(self.context(), masterp)
2013-04-18 23:06:14 +02:00
masterlen = len(mastervalue)
2013-08-20 16:33:32 +02:00
valuelen = len(value)
if valuelen > masterlen or (valuelen < masterlen and
not self.context().cfgimpl_get_values(
)._is_default_owner(self.path)):
2013-04-19 20:10:55 +02:00
raise SlaveError(_("invalid len for the slave: {0}"
2013-04-18 23:06:14 +02:00
" which has {1} as master").format(
self.opt._name, masterp))
2013-08-20 16:33:32 +02:00
elif valuelen < masterlen:
for num in range(0, masterlen - valuelen):
value.append(self.opt.impl_getdefault_multi())
2013-04-18 23:06:14 +02:00
#else: same len so do nothing
return value
def _valid_master(self, value):
masterlen = len(value)
values = self.context().cfgimpl_get_values()
2013-04-18 23:06:14 +02:00
for slave in self.opt._master_slaves:
path = values._get_opt_path(slave)
if not values._is_default_owner(path):
value_slave = values._getvalue(slave, path)
2013-04-18 23:06:14 +02:00
if len(value_slave) > masterlen:
2013-04-19 20:10:55 +02:00
raise SlaveError(_("invalid len for the master: {0}"
2013-04-18 23:06:14 +02:00
" which has {1} as slave with"
" greater len").format(
self.opt._name, slave._name))
elif len(value_slave) < masterlen:
for num in range(0, masterlen - len(value_slave)):
2013-08-20 12:08:02 +02:00
value_slave.append(slave.impl_getdefault_multi(),
force=True)
2013-04-03 12:20:26 +02:00
2013-08-21 23:21:28 +02:00
def __setitem__(self, key, value):
2013-02-22 11:09:17 +01:00
self._validate(value)
#assume not checking mandatory property
2013-08-21 23:21:28 +02:00
super(Multi, self).__setitem__(key, value)
self.context().cfgimpl_get_values()._setvalue(self.opt, self.path, self)
2013-02-22 11:09:17 +01:00
def append(self, value, force=False):
"""the list value can be updated (appened)
only if the option is a master
"""
2013-02-22 11:09:17 +01:00
if not force:
if self.opt.impl_get_multitype() == multitypes.slave:
2013-04-19 20:10:55 +02:00
raise SlaveError(_("cannot append a value on a multi option {0}"
2013-04-17 21:57:06 +02:00
" which is a slave").format(self.opt._name))
elif self.opt.impl_get_multitype() == multitypes.master:
values = self.context().cfgimpl_get_values()
if value is None and self.opt.impl_has_callback():
value = values._getcallback_value(self.opt)
#Force None il return a list
if isinstance(value, list):
value = None
2013-02-22 11:09:17 +01:00
self._validate(value)
super(Multi, self).append(value)
self.context().cfgimpl_get_values()._setvalue(self.opt, self.path, self, validate_properties=not force)
if not force and self.opt.impl_get_multitype() == multitypes.master:
for slave in self.opt.impl_get_master_slaves():
path = values._get_opt_path(slave)
if not values._is_default_owner(path):
if slave.impl_has_callback():
index = self.__len__() - 1
dvalue = values._getcallback_value(slave, index=index)
else:
dvalue = slave.impl_getdefault_multi()
old_value = values.getitem(slave, path,
validate_properties=False)
if len(old_value) < self.__len__():
values.getitem(slave, path,
validate_properties=False).append(
dvalue, force=True)
else:
values.getitem(slave, path,
validate_properties=False)[
index] = dvalue
2013-02-22 11:09:17 +01:00
def sort(self, cmp=None, key=None, reverse=False):
if self.opt.impl_get_multitype() in [multitypes.slave,
multitypes.master]:
raise SlaveError(_("cannot sort multi option {0} if master or slave"
"").format(self.opt._name))
if sys.version_info[0] >= 3:
if cmp is not None:
raise ValueError(_('cmp is not permitted in python v3 or greater'))
super(Multi, self).sort(key=key, reverse=reverse)
else:
super(Multi, self).sort(cmp=cmp, key=key, reverse=reverse)
self.context().cfgimpl_get_values()._setvalue(self.opt, self.path, self)
def reverse(self):
if self.opt.impl_get_multitype() in [multitypes.slave,
multitypes.master]:
raise SlaveError(_("cannot reverse multi option {0} if master or "
"slave").format(self.opt._name))
super(Multi, self).reverse()
self.context().cfgimpl_get_values()._setvalue(self.opt, self.path, self)
def insert(self, index, obj):
if self.opt.impl_get_multitype() in [multitypes.slave,
multitypes.master]:
raise SlaveError(_("cannot insert multi option {0} if master or "
"slave").format(self.opt._name))
super(Multi, self).insert(index, obj)
self.context().cfgimpl_get_values()._setvalue(self.opt, self.path, self)
def extend(self, iterable):
if self.opt.impl_get_multitype() in [multitypes.slave,
multitypes.master]:
raise SlaveError(_("cannot extend multi option {0} if master or "
"slave").format(self.opt._name))
super(Multi, self).extend(iterable)
self.context().cfgimpl_get_values()._setvalue(self.opt, self.path, self)
2013-02-22 11:09:17 +01:00
def _validate(self, value):
if value is not None:
try:
self.opt._validate(value)
except ValueError as err:
raise ValueError(_("invalid value {0} "
2013-08-20 16:33:32 +02:00
"for option {1}: {2}"
"").format(str(value),
self.opt._name, err))
2013-02-22 11:09:17 +01:00
def pop(self, key, force=False):
"""the list value can be updated (poped)
only if the option is a master
:param key: index of the element to pop
:return: the requested element
"""
2013-02-22 11:09:17 +01:00
if not force:
if self.opt.impl_get_multitype() == multitypes.slave:
2013-04-19 20:10:55 +02:00
raise SlaveError(_("cannot pop a value on a multi option {0}"
2013-04-17 21:57:06 +02:00
" which is a slave").format(self.opt._name))
elif self.opt.impl_get_multitype() == multitypes.master:
for slave in self.opt.impl_get_master_slaves():
values = self.context().cfgimpl_get_values()
if not values.is_default_owner(slave):
#get multi without valid properties
2013-08-20 12:08:02 +02:00
values.getitem(slave,
validate_properties=False
).pop(key, force=True)
#set value without valid properties
2013-08-14 23:06:31 +02:00
ret = super(Multi, self).pop(key)
self.context().cfgimpl_get_values()._setvalue(self.opt, self.path, self, validate_properties=not force)
2013-08-14 23:06:31 +02:00
return ret