multi options
This commit is contained in:
parent
a36ae7df85
commit
ec2a65bd37
|
@ -38,11 +38,12 @@ def carry_out_calculation(name, option, config):
|
||||||
tcparams = {}
|
tcparams = {}
|
||||||
one_is_multi = False
|
one_is_multi = False
|
||||||
len_multi = 0
|
len_multi = 0
|
||||||
for key, value in callback_params.items():
|
|
||||||
|
for key, values in callback_params.items():
|
||||||
|
for value in values:
|
||||||
if type(value) == tuple:
|
if type(value) == tuple:
|
||||||
path, check_disabled = value
|
path, check_disabled = value
|
||||||
try:
|
try:
|
||||||
#opt_value = getattr(config, path)
|
|
||||||
opt_value = config._getattr(path, permissive=True)
|
opt_value = config._getattr(path, permissive=True)
|
||||||
opt = config.unwrap_from_path(path)
|
opt = config.unwrap_from_path(path)
|
||||||
except PropertiesOptionError, err:
|
except PropertiesOptionError, err:
|
||||||
|
@ -59,37 +60,43 @@ def carry_out_calculation(name, option, config):
|
||||||
+ name)
|
+ name)
|
||||||
len_multi = len_value
|
len_multi = len_value
|
||||||
one_is_multi = True
|
one_is_multi = True
|
||||||
tcparams[key] = (opt_value, is_multi)
|
tcparams.setdefault(key, []).append((opt_value, is_multi))
|
||||||
else:
|
else:
|
||||||
tcparams[key] = (value, False)
|
tcparams.setdefault(key, []).append((value, False))
|
||||||
|
|
||||||
if one_is_multi:
|
if one_is_multi:
|
||||||
ret = []
|
ret = []
|
||||||
for incr in range(len_multi):
|
for incr in range(len_multi):
|
||||||
tcp = {}
|
tcp = {}
|
||||||
for key, couple in tcparams.items():
|
params = []
|
||||||
|
for key, couples in tcparams.items():
|
||||||
|
for couple in couples:
|
||||||
value, ismulti = couple
|
value, ismulti = couple
|
||||||
if ismulti and value != None:
|
if ismulti and value != None:
|
||||||
if key == '':
|
if key == '':
|
||||||
params.append(value[incr])
|
params.append(value[incr])
|
||||||
else:
|
else:
|
||||||
|
if len(value) > incr:
|
||||||
tcp[key] = value[incr]
|
tcp[key] = value[incr]
|
||||||
|
else:
|
||||||
|
tcp[key] = ''
|
||||||
else:
|
else:
|
||||||
if key == '':
|
if key == '':
|
||||||
params.append(value)
|
params.append(value)
|
||||||
else:
|
else:
|
||||||
tcp[key] = value
|
tcp[key] = value
|
||||||
ret.append(calculate(name, callback, tcp))
|
ret.append(calculate(name, callback, params, tcp))
|
||||||
return ret
|
return ret
|
||||||
else:
|
else:
|
||||||
tcp = {}
|
tcp = {}
|
||||||
params = []
|
params = []
|
||||||
for key, couple in tcparams.items():
|
for key, couples in tcparams.items():
|
||||||
|
for couple in couples:
|
||||||
if key == '':
|
if key == '':
|
||||||
params.append(couple[0])
|
value = couple[0]
|
||||||
|
params.append(value)
|
||||||
else:
|
else:
|
||||||
tcp[key] = couple[0]
|
tcp[key] = couple[0]
|
||||||
a=calculate(name, callback, params, tcp)
|
|
||||||
return calculate(name, callback, params, tcp)
|
return calculate(name, callback, params, tcp)
|
||||||
|
|
||||||
def calculate(name, callback, params, tcparams):
|
def calculate(name, callback, params, tcparams):
|
||||||
|
|
|
@ -239,7 +239,8 @@ class Config(object):
|
||||||
value = self._cfgimpl_values[name]
|
value = self._cfgimpl_values[name]
|
||||||
if (not opt_or_descr.is_frozen() or \
|
if (not opt_or_descr.is_frozen() or \
|
||||||
not opt_or_descr.is_forced_on_freeze()) and \
|
not opt_or_descr.is_forced_on_freeze()) and \
|
||||||
not opt_or_descr.getowner(self) == 'default':
|
not opt_or_descr.is_default_owner(self, all_default=False):
|
||||||
|
#not opt_or_descr.getowner(self) == 'default':
|
||||||
if opt_or_descr.is_multi():
|
if opt_or_descr.is_multi():
|
||||||
if None not in value:
|
if None not in value:
|
||||||
return value
|
return value
|
||||||
|
@ -251,28 +252,52 @@ class Config(object):
|
||||||
except NoValueReturned, err:
|
except NoValueReturned, err:
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
# this result **shall not** be a list
|
if opt_or_descr.is_multi():
|
||||||
|
owners = copy(self._cfgimpl_value_owners[name])
|
||||||
|
self._cfgimpl_value_owners[name] = []
|
||||||
|
if not isinstance(result, list):
|
||||||
# for example, [1, 2, 3, None] -> [1, 2, 3, result]
|
# for example, [1, 2, 3, None] -> [1, 2, 3, result]
|
||||||
|
_result = Multi([result], value.config, value.child)
|
||||||
|
for cpt in range(len(value)):
|
||||||
|
val = value[cpt]
|
||||||
|
if len(owners) > cpt:
|
||||||
|
if owners[cpt] == 'default':
|
||||||
|
_result.append(result)
|
||||||
|
self._cfgimpl_value_owners[name][cpt] = 'default'
|
||||||
|
else:
|
||||||
|
_result.append(val)
|
||||||
|
else:
|
||||||
|
_result.append(val)
|
||||||
|
self._cfgimpl_value_owners[name][cpt] = 'default'
|
||||||
|
else:
|
||||||
|
# for example, [1, None, 2, None] + [a, b, c, d]
|
||||||
|
# = [1, b, 2, d]
|
||||||
|
_result = Multi([], value.config, value.child)
|
||||||
|
for cpt in range(max(len(value), len(result))):
|
||||||
|
if len(value) > cpt:
|
||||||
|
val = value[cpt]
|
||||||
|
else:
|
||||||
|
val = ''
|
||||||
|
if len(result) > cpt:
|
||||||
|
rval = result[cpt]
|
||||||
|
if len(owners) > cpt:
|
||||||
|
if owners[cpt] == 'default':
|
||||||
|
_result.append(rval)
|
||||||
|
self._cfgimpl_value_owners[name][cpt] = 'default'
|
||||||
|
else:
|
||||||
|
_result.append(val)
|
||||||
|
else:
|
||||||
|
_result.append(rval)
|
||||||
|
self._cfgimpl_value_owners[name][cpt] = 'default'
|
||||||
|
else:
|
||||||
|
# this result **shall not** be a list
|
||||||
if isinstance(result, list):
|
if isinstance(result, list):
|
||||||
raise ConfigError('invalid calculated value returned'
|
raise ConfigError('invalid calculated value returned'
|
||||||
' for option {0} : shall not be a list'.format(name))
|
' for option {0} : shall not be a list'.format(name))
|
||||||
if result != None and not opt_or_descr._validate(result):
|
_result = result
|
||||||
|
if _result != None and not opt_or_descr.validate(_result):
|
||||||
raise ConfigError('invalid calculated value returned'
|
raise ConfigError('invalid calculated value returned'
|
||||||
' for option {0}'.format(name))
|
' for option {0}'.format(name))
|
||||||
if opt_or_descr.is_multi():
|
|
||||||
if value == []:
|
|
||||||
_result = Multi([result], value.config, value.child)
|
|
||||||
else:
|
|
||||||
_result = Multi([], value.config, value.child)
|
|
||||||
#for val in value:
|
|
||||||
owners = opt_or_descr.getowner(self)
|
|
||||||
for cpt in range(len(value)):
|
|
||||||
val = value[cpt]
|
|
||||||
if owners[cpt] == 'default':
|
|
||||||
val = result
|
|
||||||
_result.append(val)
|
|
||||||
else:
|
|
||||||
_result = result
|
|
||||||
self._cfgimpl_values[name] = _result
|
self._cfgimpl_values[name] = _result
|
||||||
|
|
||||||
# mandatory options
|
# mandatory options
|
||||||
|
@ -286,6 +311,7 @@ class Config(object):
|
||||||
# frozen and force default
|
# frozen and force default
|
||||||
if not opt_or_descr.has_callback() and opt_or_descr.is_forced_on_freeze():
|
if not opt_or_descr.has_callback() and opt_or_descr.is_forced_on_freeze():
|
||||||
return opt_or_descr.getdefault()
|
return opt_or_descr.getdefault()
|
||||||
|
|
||||||
return self._cfgimpl_values[name]
|
return self._cfgimpl_values[name]
|
||||||
|
|
||||||
def unwrap_from_name(self, name):
|
def unwrap_from_name(self, name):
|
||||||
|
|
|
@ -59,7 +59,7 @@ class Multi(list):
|
||||||
self.setoption(value)
|
self.setoption(value)
|
||||||
|
|
||||||
def setoption(self, value, key=None):
|
def setoption(self, value, key=None):
|
||||||
owners = self.child.getowner(self.config)
|
#owners = self.child.getowner(self.config)
|
||||||
# None is replaced by default_multi
|
# None is replaced by default_multi
|
||||||
if value == None:
|
if value == None:
|
||||||
defval = self.child.getdefault()
|
defval = self.child.getdefault()
|
||||||
|
@ -220,12 +220,18 @@ class Option(HiddenBaseType, DisabledBaseType):
|
||||||
"config *must* be only the **parent** config (not the toplevel config)"
|
"config *must* be only the **parent** config (not the toplevel config)"
|
||||||
return config._cfgimpl_value_owners[self._name]
|
return config._cfgimpl_value_owners[self._name]
|
||||||
|
|
||||||
def is_default_owner(self, config):
|
def is_default_owner(self, config, all_default=True):
|
||||||
if self.is_multi():
|
if self.is_multi():
|
||||||
for owner in self.getowner(config):
|
owners = self.getowner(config)
|
||||||
if owner != 'default':
|
for owner in owners:
|
||||||
|
if all_default and owner != 'default':
|
||||||
return False
|
return False
|
||||||
|
if not all_default and owner == 'default':
|
||||||
return True
|
return True
|
||||||
|
if all_default or owners == []:
|
||||||
|
return True
|
||||||
|
else:
|
||||||
|
return False
|
||||||
else:
|
else:
|
||||||
if self.getowner(config) == 'default':
|
if self.getowner(config) == 'default':
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in New Issue