Compare commits
No commits in common. "3e0e7244ef113fb7f1091c3e2212f70ce152b68a" and "ba23a144ce31c51bf1d671494b13cd4cd2b1bc77" have entirely different histories.
3e0e7244ef
...
ba23a144ce
|
@ -59,16 +59,6 @@ async def test_copy():
|
||||||
assert not await list_sessions()
|
assert not await list_sessions()
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
|
||||||
async def test_copy_information():
|
|
||||||
od = make_description()
|
|
||||||
async with await Config(od) as cfg:
|
|
||||||
await cfg.information.set('key', 'value')
|
|
||||||
async with await cfg.config.copy() as ncfg:
|
|
||||||
assert await ncfg.information.get('key') == 'value'
|
|
||||||
assert not await list_sessions()
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
async def test_copy_force_store_value():
|
async def test_copy_force_store_value():
|
||||||
od = make_description()
|
od = make_description()
|
||||||
|
|
|
@ -10,7 +10,7 @@ from tiramisu.setting import groups, owners
|
||||||
from tiramisu import ChoiceOption, BoolOption, IntOption, FloatOption, \
|
from tiramisu import ChoiceOption, BoolOption, IntOption, FloatOption, \
|
||||||
StrOption, OptionDescription, SymLinkOption, IPOption, NetmaskOption, Leadership, \
|
StrOption, OptionDescription, SymLinkOption, IPOption, NetmaskOption, Leadership, \
|
||||||
undefined, Calculation, Params, ParamOption, ParamValue, ParamIndex, calc_value, \
|
undefined, Calculation, Params, ParamOption, ParamValue, ParamIndex, calc_value, \
|
||||||
valid_ip_netmask, ParamSelfOption, ParamInformation
|
valid_ip_netmask, ParamSelfOption
|
||||||
from tiramisu.error import PropertiesOptionError, ConflictError, LeadershipError, ConfigError
|
from tiramisu.error import PropertiesOptionError, ConflictError, LeadershipError, ConfigError
|
||||||
from tiramisu.i18n import _
|
from tiramisu.i18n import _
|
||||||
from tiramisu.storage import list_sessions
|
from tiramisu.storage import list_sessions
|
||||||
|
@ -43,10 +43,6 @@ def return_value(value=None):
|
||||||
return value
|
return value
|
||||||
|
|
||||||
|
|
||||||
async def return_async_value(value=None):
|
|
||||||
return value
|
|
||||||
|
|
||||||
|
|
||||||
def return_value2(*args, **kwargs):
|
def return_value2(*args, **kwargs):
|
||||||
value = list(args)
|
value = list(args)
|
||||||
value.extend(kwargs.values())
|
value.extend(kwargs.values())
|
||||||
|
@ -337,50 +333,6 @@ async def test_callback_value(config_type):
|
||||||
assert not await list_sessions()
|
assert not await list_sessions()
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
|
||||||
async def test_callback_async_value(config_type):
|
|
||||||
val1 = StrOption('val1', "", 'val')
|
|
||||||
val2 = StrOption('val2', "", Calculation(return_async_value, Params(ParamOption(val1))))
|
|
||||||
val3 = StrOption('val3', "", Calculation(return_async_value, Params(ParamValue('yes'))))
|
|
||||||
val4 = StrOption('val4', "", Calculation(return_async_value, Params(kwargs={'value': ParamOption(val1)})))
|
|
||||||
val5 = StrOption('val5', "", Calculation(return_async_value, Params(ParamValue('yes'))))
|
|
||||||
maconfig = OptionDescription('rootconfig', '', [val1, val2, val3, val4, val5])
|
|
||||||
async with await Config(maconfig) as cfg:
|
|
||||||
await cfg.property.read_write()
|
|
||||||
cfg = await get_config(cfg, config_type)
|
|
||||||
assert await cfg.option('val1').value.get() == 'val'
|
|
||||||
assert await cfg.option('val2').value.get() == 'val'
|
|
||||||
assert await cfg.option('val4').value.get() == 'val'
|
|
||||||
await cfg.option('val1').value.set('new-val')
|
|
||||||
assert await cfg.option('val1').value.get() == 'new-val'
|
|
||||||
assert await cfg.option('val2').value.get() == 'new-val'
|
|
||||||
assert await cfg.option('val4').value.get() == 'new-val'
|
|
||||||
await cfg.option('val1').value.reset()
|
|
||||||
assert await cfg.option('val1').value.get() == 'val'
|
|
||||||
assert await cfg.option('val2').value.get() == 'val'
|
|
||||||
assert await cfg.option('val3').value.get() == 'yes'
|
|
||||||
assert await cfg.option('val4').value.get() == 'val'
|
|
||||||
assert await cfg.option('val5').value.get() == 'yes'
|
|
||||||
assert not await list_sessions()
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
|
||||||
async def test_callback_information(config_type):
|
|
||||||
val1 = StrOption('val1', "", Calculation(return_value, Params(ParamInformation('information', 'no_value'))))
|
|
||||||
val2 = StrOption('val2', "", Calculation(return_value, Params(ParamInformation('information'))))
|
|
||||||
maconfig = OptionDescription('rootconfig', '', [val1, val2])
|
|
||||||
async with await Config(maconfig) as cfg:
|
|
||||||
await cfg.property.read_write()
|
|
||||||
cfg = await get_config(cfg, config_type)
|
|
||||||
assert await cfg.option('val1').value.get() == 'no_value'
|
|
||||||
with pytest.raises(ConfigError):
|
|
||||||
await cfg.option('val2').value.get()
|
|
||||||
await cfg.information.set('information', 'new_value')
|
|
||||||
assert await cfg.option('val1').value.get() == 'new_value'
|
|
||||||
assert await cfg.option('val2').value.get() == 'new_value'
|
|
||||||
assert not await list_sessions()
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
async def test_callback_value_tuple(config_type):
|
async def test_callback_value_tuple(config_type):
|
||||||
val1 = StrOption('val1', "", 'val1')
|
val1 = StrOption('val1', "", 'val1')
|
||||||
|
|
|
@ -18,7 +18,7 @@ from .function import calc_value, calc_value_property_help, valid_ip_netmask, \
|
||||||
valid_network_netmask, valid_in_network, valid_broadcast, \
|
valid_network_netmask, valid_in_network, valid_broadcast, \
|
||||||
valid_not_equal
|
valid_not_equal
|
||||||
from .autolib import Calculation, Params, ParamOption, ParamDynOption, ParamSelfOption, \
|
from .autolib import Calculation, Params, ParamOption, ParamDynOption, ParamSelfOption, \
|
||||||
ParamValue, ParamIndex, ParamSuffix, ParamInformation
|
ParamValue, ParamIndex, ParamSuffix
|
||||||
from .option import *
|
from .option import *
|
||||||
from .error import APIError
|
from .error import APIError
|
||||||
from .api import Config, MetaConfig, GroupConfig, MixConfig
|
from .api import Config, MetaConfig, GroupConfig, MixConfig
|
||||||
|
@ -36,7 +36,6 @@ allfuncs = ['Calculation',
|
||||||
'ParamValue',
|
'ParamValue',
|
||||||
'ParamIndex',
|
'ParamIndex',
|
||||||
'ParamSuffix',
|
'ParamSuffix',
|
||||||
'ParamInformation',
|
|
||||||
'MetaConfig',
|
'MetaConfig',
|
||||||
'MixConfig',
|
'MixConfig',
|
||||||
'GroupConfig',
|
'GroupConfig',
|
||||||
|
|
|
@ -87,8 +87,8 @@ class CommonTiramisu(TiramisuHelp):
|
||||||
|
|
||||||
async def _get_option(self,
|
async def _get_option(self,
|
||||||
connection) -> Any:
|
connection) -> Any:
|
||||||
config_bag = self._option_bag.config_bag
|
|
||||||
if not self._subconfig:
|
if not self._subconfig:
|
||||||
|
config_bag = self._option_bag.config_bag
|
||||||
try:
|
try:
|
||||||
subconfig, name = await config_bag.context.cfgimpl_get_home_by_path(self._option_bag.path,
|
subconfig, name = await config_bag.context.cfgimpl_get_home_by_path(self._option_bag.path,
|
||||||
config_bag,
|
config_bag,
|
||||||
|
@ -101,7 +101,7 @@ class CommonTiramisu(TiramisuHelp):
|
||||||
self._name = name
|
self._name = name
|
||||||
option = self._option_bag.option
|
option = self._option_bag.option
|
||||||
if option is None:
|
if option is None:
|
||||||
option = await self._subconfig.cfgimpl_get_description().get_child(self._name,
|
option = await self._subconfig.cfgimpl_get_description().get_child(name,
|
||||||
config_bag,
|
config_bag,
|
||||||
self._subconfig.cfgimpl_get_path())
|
self._subconfig.cfgimpl_get_path())
|
||||||
self._option_bag.option = option
|
self._option_bag.option = option
|
||||||
|
@ -885,35 +885,24 @@ def connection(func):
|
||||||
class TiramisuContextInformation(TiramisuConfig):
|
class TiramisuContextInformation(TiramisuConfig):
|
||||||
"""Manage config informations"""
|
"""Manage config informations"""
|
||||||
@connection
|
@connection
|
||||||
async def get(self,
|
async def get(self, name, default=undefined):
|
||||||
name,
|
|
||||||
default=undefined,
|
|
||||||
):
|
|
||||||
"""Get an information"""
|
"""Get an information"""
|
||||||
return await self._config_bag.context.impl_get_information(self._config_bag.connection,
|
return await self._config_bag.context.impl_get_information(self._config_bag.connection,
|
||||||
name,
|
name,
|
||||||
default,
|
default)
|
||||||
)
|
|
||||||
|
|
||||||
@connection
|
@connection
|
||||||
async def set(self,
|
async def set(self, name, value):
|
||||||
name,
|
|
||||||
value,
|
|
||||||
):
|
|
||||||
"""Set an information"""
|
"""Set an information"""
|
||||||
await self._config_bag.context.impl_set_information(self._config_bag,
|
await self._config_bag.context.impl_set_information(self._config_bag.connection,
|
||||||
name,
|
name,
|
||||||
value,
|
value)
|
||||||
)
|
|
||||||
|
|
||||||
@connection
|
@connection
|
||||||
async def reset(self,
|
async def reset(self, name):
|
||||||
name,
|
|
||||||
):
|
|
||||||
"""Remove an information"""
|
"""Remove an information"""
|
||||||
await self._config_bag.context.impl_del_information(self._config_bag.connection,
|
await self._config_bag.context.impl_del_information(self._config_bag.connection,
|
||||||
name,
|
name)
|
||||||
)
|
|
||||||
|
|
||||||
@connection
|
@connection
|
||||||
async def list(self):
|
async def list(self):
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
# ____________________________________________________________
|
# ____________________________________________________________
|
||||||
"enables us to carry out a calculation and return an option's value"
|
"enables us to carry out a calculation and return an option's value"
|
||||||
from typing import Any, Optional, Union, Callable, Dict, List
|
from typing import Any, Optional, Union, Callable, Dict, List
|
||||||
from types import CoroutineType
|
|
||||||
from itertools import chain
|
from itertools import chain
|
||||||
|
|
||||||
from .error import PropertiesOptionError, ConfigError, LeadershipError, ValueWarning
|
from .error import PropertiesOptionError, ConfigError, LeadershipError, ValueWarning
|
||||||
|
@ -83,7 +82,8 @@ class ParamOption(Param):
|
||||||
|
|
||||||
|
|
||||||
class ParamDynOption(ParamOption):
|
class ParamDynOption(ParamOption):
|
||||||
__slots__ = ('suffix',)
|
__slots__ = ('suffix',
|
||||||
|
)
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
option: 'Option',
|
option: 'Option',
|
||||||
suffix: str,
|
suffix: str,
|
||||||
|
@ -118,16 +118,6 @@ class ParamValue(Param):
|
||||||
self.value = value
|
self.value = value
|
||||||
|
|
||||||
|
|
||||||
class ParamInformation(Param):
|
|
||||||
__slots__ = ('information_name',)
|
|
||||||
def __init__(self,
|
|
||||||
information_name: str,
|
|
||||||
default_value: Any=undefined,
|
|
||||||
) -> None:
|
|
||||||
self.information_name = information_name
|
|
||||||
self.default_value = default_value
|
|
||||||
|
|
||||||
|
|
||||||
class ParamIndex(Param):
|
class ParamIndex(Param):
|
||||||
__slots__ = tuple()
|
__slots__ = tuple()
|
||||||
|
|
||||||
|
@ -209,7 +199,7 @@ class Break(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
async def manager_callback(callbk: Param,
|
async def manager_callback(callbk: Union[ParamOption, ParamValue],
|
||||||
option,
|
option,
|
||||||
index: Optional[int],
|
index: Optional[int],
|
||||||
orig_value,
|
orig_value,
|
||||||
|
@ -296,23 +286,12 @@ async def manager_callback(callbk: Param,
|
||||||
if isinstance(callbk, ParamValue):
|
if isinstance(callbk, ParamValue):
|
||||||
return callbk.value
|
return callbk.value
|
||||||
|
|
||||||
if isinstance(callbk, ParamInformation):
|
|
||||||
try:
|
|
||||||
return await config_bag.context.impl_get_information(config_bag.connection,
|
|
||||||
callbk.information_name,
|
|
||||||
callbk.default_value,
|
|
||||||
)
|
|
||||||
except ValueError as err:
|
|
||||||
raise ConfigError(_('option "{}" cannot be calculated: {}').format(option.impl_get_display_name(),
|
|
||||||
str(err),
|
|
||||||
))
|
|
||||||
|
|
||||||
if isinstance(callbk, ParamIndex):
|
if isinstance(callbk, ParamIndex):
|
||||||
return index
|
return index
|
||||||
|
|
||||||
if isinstance(callbk, ParamSuffix):
|
if isinstance(callbk, ParamSuffix):
|
||||||
if not option.issubdyn():
|
if not option.issubdyn():
|
||||||
raise ConfigError(_('option "{}" is not in a dynoptiondescription').format(option.impl_get_display_name()))
|
raise ConfigError('option "{}" is not in a dynoptiondescription'.format(option.impl_get_display_name()))
|
||||||
return option.impl_getsuffix()
|
return option.impl_getsuffix()
|
||||||
|
|
||||||
if isinstance(callbk, ParamSelfOption):
|
if isinstance(callbk, ParamSelfOption):
|
||||||
|
@ -434,12 +413,12 @@ async def carry_out_calculation(option,
|
||||||
kwargs[key] = {'propertyerror': str(err)}
|
kwargs[key] = {'propertyerror': str(err)}
|
||||||
except Break:
|
except Break:
|
||||||
continue
|
continue
|
||||||
ret = await calculate(option,
|
ret = calculate(option,
|
||||||
callback,
|
callback,
|
||||||
allow_value_error,
|
allow_value_error,
|
||||||
force_value_warning,
|
force_value_warning,
|
||||||
args,
|
args,
|
||||||
kwargs)
|
kwargs)
|
||||||
if isinstance(ret, list) and not option.impl_is_dynoptiondescription() and \
|
if isinstance(ret, list) and not option.impl_is_dynoptiondescription() and \
|
||||||
option.impl_is_follower() and not option.impl_is_submulti():
|
option.impl_is_follower() and not option.impl_is_submulti():
|
||||||
if args or kwargs:
|
if args or kwargs:
|
||||||
|
@ -460,13 +439,13 @@ async def carry_out_calculation(option,
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
|
|
||||||
async def calculate(option,
|
def calculate(option,
|
||||||
callback: Callable,
|
callback: Callable,
|
||||||
allow_value_error: bool,
|
allow_value_error: bool,
|
||||||
force_value_warning: bool,
|
force_value_warning: bool,
|
||||||
args,
|
args,
|
||||||
kwargs,
|
kwargs,
|
||||||
):
|
):
|
||||||
"""wrapper that launches the 'callback'
|
"""wrapper that launches the 'callback'
|
||||||
|
|
||||||
:param callback: callback function
|
:param callback: callback function
|
||||||
|
@ -475,10 +454,7 @@ async def calculate(option,
|
||||||
|
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
ret = callback(*args, **kwargs)
|
return callback(*args, **kwargs)
|
||||||
if isinstance(ret, CoroutineType):
|
|
||||||
ret = await ret
|
|
||||||
return ret
|
|
||||||
except (ValueError, ValueWarning) as err:
|
except (ValueError, ValueWarning) as err:
|
||||||
if allow_value_error:
|
if allow_value_error:
|
||||||
if force_value_warning:
|
if force_value_warning:
|
||||||
|
|
|
@ -64,11 +64,11 @@ class SubConfig:
|
||||||
(not isinstance(descr, (BaseOption, SynDynOptionDescription)) or
|
(not isinstance(descr, (BaseOption, SynDynOptionDescription)) or
|
||||||
not descr.impl_is_optiondescription()):
|
not descr.impl_is_optiondescription()):
|
||||||
try:
|
try:
|
||||||
msg = descr.impl_get_display_name()
|
msg = descr.impl_get_displayname()
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
msg = descr
|
msg = descr
|
||||||
raise TypeError(_('cannot create a sub config for "{0}" this is a "{1}", not an "OptionDescription"'
|
raise TypeError(_('"{0}" must be an optiondescription, not an {1}'
|
||||||
).format(msg, descr.__class__.__name__))
|
).format(msg, type(descr)))
|
||||||
self._impl_descr = descr
|
self._impl_descr = descr
|
||||||
self._impl_context = context
|
self._impl_context = context
|
||||||
self._impl_path = subpath
|
self._impl_path = subpath
|
||||||
|
@ -562,24 +562,17 @@ class _CommonConfig(SubConfig):
|
||||||
|
|
||||||
# information
|
# information
|
||||||
async def impl_set_information(self,
|
async def impl_set_information(self,
|
||||||
config_bag,
|
connection,
|
||||||
key,
|
key,
|
||||||
value,
|
value):
|
||||||
):
|
|
||||||
"""updates the information's attribute
|
"""updates the information's attribute
|
||||||
|
|
||||||
:param key: information's key (ex: "help", "doc"
|
:param key: information's key (ex: "help", "doc"
|
||||||
:param value: information's value (ex: "the help string")
|
:param value: information's value (ex: "the help string")
|
||||||
"""
|
"""
|
||||||
await self._impl_values.set_information(config_bag.connection,
|
await self._impl_values.set_information(connection,
|
||||||
key,
|
key,
|
||||||
value)
|
value)
|
||||||
for option in config_bag.context.cfgimpl_get_description()._cache_dependencies_information.get(key, []):
|
|
||||||
option_bag = OptionBag()
|
|
||||||
option_bag.set_option(option,
|
|
||||||
None,
|
|
||||||
config_bag)
|
|
||||||
await config_bag.context.cfgimpl_reset_cache(option_bag)
|
|
||||||
|
|
||||||
async def impl_get_information(self,
|
async def impl_get_information(self,
|
||||||
connection,
|
connection,
|
||||||
|
@ -654,9 +647,6 @@ class _CommonConfig(SubConfig):
|
||||||
duplicated_settings = duplicated_config.cfgimpl_get_settings()
|
duplicated_settings = duplicated_config.cfgimpl_get_settings()
|
||||||
await duplicated_values._p_.importation(connection,
|
await duplicated_values._p_.importation(connection,
|
||||||
await self.cfgimpl_get_values()._p_.exportation(connection))
|
await self.cfgimpl_get_values()._p_.exportation(connection))
|
||||||
await duplicated_values._p_.importation_informations(connection,
|
|
||||||
await self.cfgimpl_get_values()._p_.exportation_informations(connection),
|
|
||||||
)
|
|
||||||
properties = await self.cfgimpl_get_settings()._p_.exportation(connection)
|
properties = await self.cfgimpl_get_settings()._p_.exportation(connection)
|
||||||
await duplicated_settings._p_.importation(connection,
|
await duplicated_settings._p_.importation(connection,
|
||||||
properties)
|
properties)
|
||||||
|
|
|
@ -76,18 +76,17 @@ class ChoiceOption(Option):
|
||||||
if isinstance(self._choice_values, Calculation):
|
if isinstance(self._choice_values, Calculation):
|
||||||
return
|
return
|
||||||
values = self._choice_values
|
values = self._choice_values
|
||||||
self.validate_values(value, values)
|
if values is not undefined and value not in values:
|
||||||
|
if len(values) == 1:
|
||||||
async def validate_with_option(self,
|
raise ValueError(_('only "{0}" is allowed'
|
||||||
value: Any,
|
'').format(values[0]))
|
||||||
option_bag: OptionBag) -> None:
|
raise ValueError(_('only {0} are allowed'
|
||||||
values = await self.impl_get_values(option_bag)
|
'').format(display_list(values, add_quote=True)))
|
||||||
self.validate_values(value, values)
|
|
||||||
|
async def validate_with_option(self,
|
||||||
def validate_values(self,
|
value: Any,
|
||||||
value,
|
option_bag: OptionBag) -> None:
|
||||||
values,
|
values = await self.impl_get_values(option_bag)
|
||||||
) -> None:
|
|
||||||
if values is not undefined and value not in values:
|
if values is not undefined and value not in values:
|
||||||
if len(values) == 1:
|
if len(values) == 1:
|
||||||
raise ValueError(_('only "{0}" is allowed'
|
raise ValueError(_('only "{0}" is allowed'
|
||||||
|
|
|
@ -27,7 +27,7 @@ from itertools import chain
|
||||||
from .baseoption import BaseOption, submulti, STATIC_TUPLE
|
from .baseoption import BaseOption, submulti, STATIC_TUPLE
|
||||||
from ..i18n import _
|
from ..i18n import _
|
||||||
from ..setting import undefined, OptionBag, Undefined
|
from ..setting import undefined, OptionBag, Undefined
|
||||||
from ..autolib import Calculation, Params, ParamOption, ParamInformation
|
from ..autolib import Calculation, Params, ParamValue, ParamOption
|
||||||
from ..error import (ConfigError, ValueWarning, ValueErrorWarning, PropertiesOptionError,
|
from ..error import (ConfigError, ValueWarning, ValueErrorWarning, PropertiesOptionError,
|
||||||
ValueOptionError, display_list)
|
ValueOptionError, display_list)
|
||||||
from .syndynoption import SynDynOption
|
from .syndynoption import SynDynOption
|
||||||
|
@ -50,7 +50,6 @@ class Option(BaseOption):
|
||||||
#
|
#
|
||||||
'_validators',
|
'_validators',
|
||||||
#
|
#
|
||||||
'_dependencies_information',
|
|
||||||
'_leadership',
|
'_leadership',
|
||||||
'_choice_values',
|
'_choice_values',
|
||||||
'_choice_values_params',
|
'_choice_values_params',
|
||||||
|
@ -67,7 +66,6 @@ class Option(BaseOption):
|
||||||
warnings_only: bool=False,
|
warnings_only: bool=False,
|
||||||
extra: Optional[Dict]=None):
|
extra: Optional[Dict]=None):
|
||||||
_setattr = object.__setattr__
|
_setattr = object.__setattr__
|
||||||
_dependencies_information = []
|
|
||||||
if not multi and default_multi is not None:
|
if not multi and default_multi is not None:
|
||||||
raise ValueError(_("default_multi is set whereas multi is False"
|
raise ValueError(_("default_multi is set whereas multi is False"
|
||||||
" in option: {0}").format(name))
|
" in option: {0}").format(name))
|
||||||
|
@ -107,8 +105,6 @@ class Option(BaseOption):
|
||||||
if isinstance(param, ParamOption):
|
if isinstance(param, ParamOption):
|
||||||
param.option._add_dependency(self)
|
param.option._add_dependency(self)
|
||||||
self._has_dependency = True
|
self._has_dependency = True
|
||||||
elif isinstance(param, ParamInformation):
|
|
||||||
_dependencies_information.append(param.information_name)
|
|
||||||
|
|
||||||
self._validators = tuple(validators)
|
self._validators = tuple(validators)
|
||||||
if extra is not None and extra != {}:
|
if extra is not None and extra != {}:
|
||||||
|
@ -159,37 +155,29 @@ class Option(BaseOption):
|
||||||
self.sync_impl_validate(default,
|
self.sync_impl_validate(default,
|
||||||
option_bag,
|
option_bag,
|
||||||
check_error=False)
|
check_error=False)
|
||||||
self.value_dependencies(default, _dependencies_information)
|
self.value_dependencies(default)
|
||||||
if (is_multi and default != []) or \
|
if (is_multi and default != []) or \
|
||||||
(not is_multi and default is not None):
|
(not is_multi and default is not None):
|
||||||
if is_multi and isinstance(default, list):
|
if is_multi and isinstance(default, list):
|
||||||
default = tuple(default)
|
default = tuple(default)
|
||||||
_setattr(self, '_default', default)
|
_setattr(self, '_default', default)
|
||||||
if _dependencies_information:
|
|
||||||
self._dependencies_information = _dependencies_information
|
|
||||||
|
|
||||||
def value_dependencies(self,
|
def value_dependencies(self,
|
||||||
value: Any,
|
value: Any) -> Any:
|
||||||
_dependencies_information: List[str],
|
|
||||||
) -> Any:
|
|
||||||
if isinstance(value, list):
|
if isinstance(value, list):
|
||||||
for val in value:
|
for val in value:
|
||||||
if isinstance(value, list):
|
if isinstance(value, list):
|
||||||
self.value_dependencies(val, _dependencies_information)
|
self.value_dependencies(val)
|
||||||
elif isinstance(value, Calculation):
|
elif isinstance(value, Calculation):
|
||||||
self.value_dependency(val, _dependencies_information)
|
self.value_dependency(val)
|
||||||
elif isinstance(value, Calculation):
|
elif isinstance(value, Calculation):
|
||||||
self.value_dependency(value, _dependencies_information)
|
self.value_dependency(value)
|
||||||
|
|
||||||
def value_dependency(self,
|
def value_dependency(self,
|
||||||
value: Any,
|
value: Any) -> Any:
|
||||||
_dependencies_information: List[str],
|
|
||||||
) -> Any:
|
|
||||||
for param in chain(value.params.args, value.params.kwargs.values()):
|
for param in chain(value.params.args, value.params.kwargs.values()):
|
||||||
if isinstance(param, ParamOption):
|
if isinstance(param, ParamOption):
|
||||||
param.option._add_dependency(self)
|
param.option._add_dependency(self)
|
||||||
elif isinstance(param, ParamInformation):
|
|
||||||
_dependencies_information.append(param.information_name)
|
|
||||||
|
|
||||||
#__________________________________________________________________________
|
#__________________________________________________________________________
|
||||||
# option's information
|
# option's information
|
||||||
|
@ -203,9 +191,6 @@ class Option(BaseOption):
|
||||||
def impl_is_dynsymlinkoption(self) -> bool:
|
def impl_is_dynsymlinkoption(self) -> bool:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def get_dependencies_information(self) -> List[str]:
|
|
||||||
return getattr(self, '_dependencies_information', [])
|
|
||||||
|
|
||||||
def get_type(self) -> str:
|
def get_type(self) -> str:
|
||||||
# _display_name for compatibility with older version than 3.0rc3
|
# _display_name for compatibility with older version than 3.0rc3
|
||||||
return getattr(self, '_type', self._display_name)
|
return getattr(self, '_type', self._display_name)
|
||||||
|
|
|
@ -30,9 +30,7 @@ from ..error import ConfigError, ConflictError
|
||||||
|
|
||||||
|
|
||||||
class CacheOptionDescription(BaseOption):
|
class CacheOptionDescription(BaseOption):
|
||||||
__slots__ = ('_cache_force_store_values',
|
__slots__ = ('_cache_force_store_values',)
|
||||||
'_cache_dependencies_information',
|
|
||||||
)
|
|
||||||
|
|
||||||
def impl_already_build_caches(self) -> bool:
|
def impl_already_build_caches(self) -> bool:
|
||||||
return self.impl_is_readonly()
|
return self.impl_is_readonly()
|
||||||
|
@ -44,9 +42,7 @@ class CacheOptionDescription(BaseOption):
|
||||||
currpath: List[str]=None,
|
currpath: List[str]=None,
|
||||||
cache_option=None,
|
cache_option=None,
|
||||||
force_store_values=None,
|
force_store_values=None,
|
||||||
dependencies_information=None,
|
display_name=None) -> None:
|
||||||
display_name=None,
|
|
||||||
) -> None:
|
|
||||||
"""validate options and set option has readonly option
|
"""validate options and set option has readonly option
|
||||||
"""
|
"""
|
||||||
# _consistencies is None only when we start to build cache
|
# _consistencies is None only when we start to build cache
|
||||||
|
@ -56,7 +52,6 @@ class CacheOptionDescription(BaseOption):
|
||||||
if __debug__:
|
if __debug__:
|
||||||
cache_option = []
|
cache_option = []
|
||||||
force_store_values = []
|
force_store_values = []
|
||||||
dependencies_information = {}
|
|
||||||
currpath = []
|
currpath = []
|
||||||
else:
|
else:
|
||||||
init = False
|
init = False
|
||||||
|
@ -78,11 +73,8 @@ class CacheOptionDescription(BaseOption):
|
||||||
sub_currpath,
|
sub_currpath,
|
||||||
cache_option,
|
cache_option,
|
||||||
force_store_values,
|
force_store_values,
|
||||||
dependencies_information,
|
|
||||||
display_name)
|
display_name)
|
||||||
else:
|
else:
|
||||||
for information in option.get_dependencies_information():
|
|
||||||
dependencies_information.setdefault(information, []).append(option)
|
|
||||||
is_multi = option.impl_is_multi()
|
is_multi = option.impl_is_multi()
|
||||||
if not option.impl_is_symlinkoption():
|
if not option.impl_is_symlinkoption():
|
||||||
properties = option.impl_getproperties()
|
properties = option.impl_getproperties()
|
||||||
|
@ -110,7 +102,6 @@ class CacheOptionDescription(BaseOption):
|
||||||
option._set_readonly()
|
option._set_readonly()
|
||||||
if init:
|
if init:
|
||||||
self._cache_force_store_values = force_store_values
|
self._cache_force_store_values = force_store_values
|
||||||
self._cache_dependencies_information = dependencies_information
|
|
||||||
self._path = self._name
|
self._path = self._name
|
||||||
self._set_readonly()
|
self._set_readonly()
|
||||||
|
|
||||||
|
|
|
@ -25,11 +25,14 @@ from copy import deepcopy
|
||||||
|
|
||||||
class Values:
|
class Values:
|
||||||
__slots__ = ('_values',
|
__slots__ = ('_values',
|
||||||
|
'_informations',
|
||||||
'_storage',
|
'_storage',
|
||||||
'__weakref__')
|
'__weakref__')
|
||||||
def __init__(self, storage):
|
def __init__(self, storage):
|
||||||
"""init plugin means create values storage
|
"""init plugin means create values storage
|
||||||
"""
|
"""
|
||||||
|
#self._values = ([], [], [], [])
|
||||||
|
#self._informations = {}
|
||||||
self._storage = storage
|
self._storage = storage
|
||||||
|
|
||||||
def _setvalue_info(self, nb, idx, value, index, follower_idx=None):
|
def _setvalue_info(self, nb, idx, value, index, follower_idx=None):
|
||||||
|
@ -293,18 +296,6 @@ class Values:
|
||||||
connection):
|
connection):
|
||||||
self._storage.set_informations({})
|
self._storage.set_informations({})
|
||||||
|
|
||||||
async def exportation_informations(self,
|
|
||||||
connection,
|
|
||||||
):
|
|
||||||
return deepcopy(self._storage.get_informations())
|
|
||||||
|
|
||||||
async def importation_informations(self,
|
|
||||||
connection,
|
|
||||||
informations,
|
|
||||||
):
|
|
||||||
#deepcopy(informations)
|
|
||||||
return self._storage.set_informations(informations)
|
|
||||||
|
|
||||||
async def exportation(self,
|
async def exportation(self,
|
||||||
connection):
|
connection):
|
||||||
return deepcopy(self._storage.get_values())
|
return deepcopy(self._storage.get_values())
|
||||||
|
|
|
@ -231,24 +231,6 @@ class Values:
|
||||||
await connection.execute("DELETE FROM information WHERE session_id = $1",
|
await connection.execute("DELETE FROM information WHERE session_id = $1",
|
||||||
self._storage.database_id)
|
self._storage.database_id)
|
||||||
|
|
||||||
async def exportation_informations(self,
|
|
||||||
connection,
|
|
||||||
):
|
|
||||||
informations = {}
|
|
||||||
for path, key, value in await connection.fetch("SELECT path, key, value FROM information WHERE session_id = $1", self._storage.database_id):
|
|
||||||
path = self._storage.load_path(path)
|
|
||||||
informations.setdefault(path, {})[key] = loads(value)
|
|
||||||
return informations
|
|
||||||
|
|
||||||
async def importation_informations(self,
|
|
||||||
connection,
|
|
||||||
informations,
|
|
||||||
):
|
|
||||||
for path, path_infos in informations.items():
|
|
||||||
for key, value in path_infos.items():
|
|
||||||
await connection.execute("INSERT INTO information(key, value, session_id, path) VALUES "
|
|
||||||
"($1, $2, $3, $4)", key, dumps(value), self._storage.database_id, path)
|
|
||||||
|
|
||||||
async def exportation(self,
|
async def exportation(self,
|
||||||
connection):
|
connection):
|
||||||
# log.debug('exportation')
|
# log.debug('exportation')
|
||||||
|
|
Loading…
Reference in New Issue