pylint + simplify path
This commit is contained in:
parent
0aba66b8b5
commit
0d87be9d7b
|
@ -1,4 +1,5 @@
|
||||||
#from .loader import load
|
"""Rougail method
|
||||||
|
"""
|
||||||
from .rougail import Rougail
|
from .rougail import Rougail
|
||||||
from .annotator import modes
|
from .annotator import modes
|
||||||
|
|
||||||
|
|
|
@ -100,6 +100,10 @@ class FillAnnotator:
|
||||||
param.text = self.objectspace.paths.get_variable(path)
|
param.text = self.objectspace.paths.get_variable(path)
|
||||||
if suffix:
|
if suffix:
|
||||||
param.suffix = suffix
|
param.suffix = suffix
|
||||||
|
family_path = self.objectspace.paths.get_variable_family_path(path)
|
||||||
|
param.family = self.objectspace.paths.get_family(family_path,
|
||||||
|
param.text.namespace,
|
||||||
|
)
|
||||||
except DictConsistencyError as err:
|
except DictConsistencyError as err:
|
||||||
if err.errno != 42 or not param.optional:
|
if err.errno != 42 or not param.optional:
|
||||||
raise err
|
raise err
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
"""Annotate group
|
"""Annotate group
|
||||||
"""
|
"""
|
||||||
from typing import List
|
|
||||||
|
|
||||||
from ..i18n import _
|
from ..i18n import _
|
||||||
from ..config import Config
|
|
||||||
from ..error import DictConsistencyError
|
from ..error import DictConsistencyError
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,59 +19,45 @@ class GroupAnnotator:
|
||||||
def convert_groups(self): # pylint: disable=C0111
|
def convert_groups(self): # pylint: disable=C0111
|
||||||
"""convert groups
|
"""convert groups
|
||||||
"""
|
"""
|
||||||
|
# store old leaders family name
|
||||||
cache_paths = {}
|
cache_paths = {}
|
||||||
for group in self.objectspace.space.constraints.group:
|
for group in self.objectspace.space.constraints.group:
|
||||||
leader_fullname = group.leader
|
if group.leader in cache_paths:
|
||||||
leader = self.objectspace.paths.get_variable(leader_fullname)
|
leader_fam_path = cache_paths[group.leader]
|
||||||
if leader_fullname in cache_paths:
|
|
||||||
leader_family_path = cache_paths[leader_fullname]
|
|
||||||
else:
|
else:
|
||||||
leader_family_path = self.objectspace.paths.get_variable_family_path(leader_fullname)
|
leader_fam_path = self.objectspace.paths.get_variable_family_path(group.leader)
|
||||||
cache_paths[leader_fullname] = leader_family_path
|
cache_paths[group.leader] = leader_fam_path
|
||||||
if '.' not in leader_fullname:
|
|
||||||
leader_fullname = '.'.join([leader_family_path, leader_fullname])
|
|
||||||
follower_names = list(group.follower.keys())
|
follower_names = list(group.follower.keys())
|
||||||
ori_leader_family = self.objectspace.paths.get_family(leader_family_path,
|
leader = self.objectspace.paths.get_variable(group.leader)
|
||||||
|
ori_leader_family = self.objectspace.paths.get_family(leader_fam_path,
|
||||||
leader.namespace,
|
leader.namespace,
|
||||||
)
|
)
|
||||||
has_a_leader = False
|
has_a_leader = False
|
||||||
for variable in list(ori_leader_family.variable.values()):
|
for variable in list(ori_leader_family.variable.values()):
|
||||||
if has_a_leader:
|
if isinstance(variable, self.objectspace.leadership) and \
|
||||||
# it's a follower
|
variable.variable[0].name == leader.name:
|
||||||
self.manage_follower(leader_family_path,
|
# append follower to an existed leadership
|
||||||
variable,
|
leader_space = variable
|
||||||
leadership_name,
|
has_a_leader = True
|
||||||
follower_names,
|
elif variable.name == leader.name:
|
||||||
|
# it's a leader
|
||||||
|
leader_space = self.manage_leader(variable,
|
||||||
|
group,
|
||||||
|
ori_leader_family,
|
||||||
)
|
)
|
||||||
if leader_is_hidden:
|
has_a_leader = True
|
||||||
variable.frozen = True
|
elif has_a_leader:
|
||||||
variable.force_default_on_freeze = True
|
# it's should be a follower
|
||||||
leader_space.variable.append(variable)
|
self.manage_follower(follower_names.pop(0),
|
||||||
|
leader_fam_path,
|
||||||
|
variable,
|
||||||
|
leader_space,
|
||||||
|
)
|
||||||
|
# this variable is not more in ori_leader_family
|
||||||
ori_leader_family.variable.pop(variable.name)
|
ori_leader_family.variable.pop(variable.name)
|
||||||
if follower_names == []:
|
if follower_names == []:
|
||||||
# no more follower
|
# no more follower
|
||||||
break
|
break
|
||||||
elif variable.name == leader.name:
|
|
||||||
# it's a leader
|
|
||||||
if isinstance(variable, self.objectspace.leadership):
|
|
||||||
# append follower to an existed leadership
|
|
||||||
leader_space = variable
|
|
||||||
# if variable.hidden:
|
|
||||||
# leader_is_hidden = True
|
|
||||||
else:
|
|
||||||
leader_space = self.objectspace.leadership(variable.xmlfiles)
|
|
||||||
if hasattr(group, 'name'):
|
|
||||||
leadership_name = group.name
|
|
||||||
else:
|
|
||||||
leadership_name = leader.name
|
|
||||||
leader_is_hidden = self.manage_leader(leader_space,
|
|
||||||
leader_family_path,
|
|
||||||
leadership_name,
|
|
||||||
leader.name,
|
|
||||||
variable,
|
|
||||||
group,
|
|
||||||
)
|
|
||||||
has_a_leader = True
|
|
||||||
else:
|
else:
|
||||||
xmlfiles = self.objectspace.display_xmlfiles(variable.xmlfiles)
|
xmlfiles = self.objectspace.display_xmlfiles(variable.xmlfiles)
|
||||||
joined = '", "'.join(follower_names)
|
joined = '", "'.join(follower_names)
|
||||||
|
@ -84,28 +67,27 @@ class GroupAnnotator:
|
||||||
del self.objectspace.space.constraints.group
|
del self.objectspace.space.constraints.group
|
||||||
|
|
||||||
def manage_leader(self,
|
def manage_leader(self,
|
||||||
leader_space: 'Leadership',
|
|
||||||
leader_family_name: str,
|
|
||||||
leadership_name: str,
|
|
||||||
leader_name: str,
|
|
||||||
variable: 'Variable',
|
variable: 'Variable',
|
||||||
group: 'Group',
|
group: 'Group',
|
||||||
) -> None:
|
ori_leader_family,
|
||||||
|
) -> 'Leadership':
|
||||||
"""manage leader's variable
|
"""manage leader's variable
|
||||||
"""
|
"""
|
||||||
if variable.multi is not True:
|
if variable.multi is not True:
|
||||||
xmlfiles = self.objectspace.display_xmlfiles(variable.xmlfiles)
|
xmlfiles = self.objectspace.display_xmlfiles(variable.xmlfiles)
|
||||||
msg = _(f'the variable "{variable.name}" in a group must be multi in {xmlfiles}')
|
msg = _(f'the variable "{variable.name}" in a group must be multi in {xmlfiles}')
|
||||||
raise DictConsistencyError(msg, 32)
|
raise DictConsistencyError(msg, 32)
|
||||||
|
if hasattr(group, 'name'):
|
||||||
|
leadership_name = group.name
|
||||||
|
else:
|
||||||
|
leadership_name = variable.name
|
||||||
|
leader_space = self.objectspace.leadership(variable.xmlfiles)
|
||||||
leader_space.variable = []
|
leader_space.variable = []
|
||||||
leader_space.name = leadership_name
|
leader_space.name = leadership_name
|
||||||
leader_space.hidden = variable.hidden
|
leader_space.hidden = variable.hidden
|
||||||
if variable.hidden:
|
if variable.hidden:
|
||||||
leader_is_hidden = True
|
|
||||||
variable.frozen = True
|
variable.frozen = True
|
||||||
variable.force_default_on_freeze = True
|
variable.force_default_on_freeze = True
|
||||||
else:
|
|
||||||
leader_is_hidden = False
|
|
||||||
variable.hidden = None
|
variable.hidden = None
|
||||||
if hasattr(group, 'description'):
|
if hasattr(group, 'description'):
|
||||||
leader_space.doc = group.description
|
leader_space.doc = group.description
|
||||||
|
@ -113,38 +95,42 @@ class GroupAnnotator:
|
||||||
leader_space.doc = variable.description
|
leader_space.doc = variable.description
|
||||||
else:
|
else:
|
||||||
leader_space.doc = leadership_name
|
leader_space.doc = leadership_name
|
||||||
namespace = variable.namespace
|
leadership_path = ori_leader_family.path + '.' + leadership_name
|
||||||
leadership_path = leader_family_name + '.' + leadership_name
|
self.objectspace.paths.add_leadership(variable.namespace,
|
||||||
self.objectspace.paths.add_leadership(namespace,
|
|
||||||
leadership_path,
|
leadership_path,
|
||||||
leader_space,
|
leader_space,
|
||||||
)
|
)
|
||||||
leader_family = self.objectspace.space.variables[namespace].family[leader_family_name.rsplit('.', 1)[-1]]
|
leader_family = self.objectspace.paths.get_family(ori_leader_family.path,
|
||||||
leader_family.variable[leader_name] = leader_space
|
ori_leader_family.namespace,
|
||||||
leader_space.variable.append(variable)
|
|
||||||
self.objectspace.paths.set_leader(namespace,
|
|
||||||
leader_family_name,
|
|
||||||
leadership_name,
|
|
||||||
leader_name,
|
|
||||||
)
|
)
|
||||||
return leader_is_hidden
|
leader_family.variable[variable.name] = leader_space
|
||||||
|
leader_space.variable.append(variable)
|
||||||
|
self.objectspace.paths.set_leader(variable.namespace,
|
||||||
|
ori_leader_family.path,
|
||||||
|
leadership_name,
|
||||||
|
variable.name,
|
||||||
|
)
|
||||||
|
return leader_space
|
||||||
|
|
||||||
def manage_follower(self,
|
def manage_follower(self,
|
||||||
|
follower_name: str,
|
||||||
leader_family_name: str,
|
leader_family_name: str,
|
||||||
variable: 'Variable',
|
variable: 'Variable',
|
||||||
leadership_name: str,
|
leader_space: 'Leadership',
|
||||||
follower_names: List[str],
|
|
||||||
) -> None:
|
) -> None:
|
||||||
"""manage follower
|
"""manage follower
|
||||||
"""
|
"""
|
||||||
follower_name = follower_names.pop(0)
|
|
||||||
if variable.name != follower_name:
|
if variable.name != follower_name:
|
||||||
xmlfiles = self.objectspace.display_xmlfiles(variable.xmlfiles)
|
xmlfiles = self.objectspace.display_xmlfiles(variable.xmlfiles)
|
||||||
msg = _('when parsing leadership, we espect to find the follower '
|
msg = _('when parsing leadership, we expect to find the follower '
|
||||||
f'"{follower_name}" but we found "{variable.name}" in {xmlfiles}')
|
f'"{follower_name}" but we found "{variable.name}" in {xmlfiles}')
|
||||||
raise DictConsistencyError(msg, 33)
|
raise DictConsistencyError(msg, 33)
|
||||||
self.objectspace.paths.set_leader(variable.namespace,
|
self.objectspace.paths.set_leader(variable.namespace,
|
||||||
leader_family_name,
|
leader_family_name,
|
||||||
leadership_name,
|
leader_space.name,
|
||||||
variable.name,
|
variable.name,
|
||||||
)
|
)
|
||||||
|
if leader_space.hidden:
|
||||||
|
variable.frozen = True
|
||||||
|
variable.force_default_on_freeze = True
|
||||||
|
leader_space.variable.append(variable)
|
||||||
|
|
|
@ -36,7 +36,8 @@ class PropertyAnnotator:
|
||||||
if hasattr(variable, 'mode') and variable.mode:
|
if hasattr(variable, 'mode') and variable.mode:
|
||||||
properties.append(variable.mode)
|
properties.append(variable.mode)
|
||||||
variable.mode = None
|
variable.mode = None
|
||||||
if 'force_store_value' in properties and 'force_default_on_freeze' in properties: # pragma: no cover
|
if 'force_store_value' in properties and \
|
||||||
|
'force_default_on_freeze' in properties: # pragma: no cover
|
||||||
# should not appened
|
# should not appened
|
||||||
xmlfiles = self.objectspace.display_xmlfiles(variable.xmlfiles)
|
xmlfiles = self.objectspace.display_xmlfiles(variable.xmlfiles)
|
||||||
msg = _('cannot have auto_freeze or auto_store with the hidden '
|
msg = _('cannot have auto_freeze or auto_store with the hidden '
|
||||||
|
|
|
@ -10,7 +10,7 @@ from ..error import DictConsistencyError
|
||||||
# that shall not be present in the exported (flatened) XML
|
# that shall not be present in the exported (flatened) XML
|
||||||
ERASED_ATTRIBUTES = ('redefine', 'exists', 'fallback', 'optional', 'remove_check', 'namespace',
|
ERASED_ATTRIBUTES = ('redefine', 'exists', 'fallback', 'optional', 'remove_check', 'namespace',
|
||||||
'remove_condition', 'path', 'instance_mode', 'index', 'is_in_leadership',
|
'remove_condition', 'path', 'instance_mode', 'index', 'is_in_leadership',
|
||||||
'level', 'remove_fill', 'xmlfiles', 'type')
|
'level', 'remove_fill', 'xmlfiles', 'type', 'reflector_name', 'reflector_object',)
|
||||||
|
|
||||||
|
|
||||||
KEY_TYPE = {'variable': 'symlink',
|
KEY_TYPE = {'variable': 'symlink',
|
||||||
|
@ -48,16 +48,18 @@ class ServiceAnnotator:
|
||||||
self.objectspace.space.services.hidden = True
|
self.objectspace.space.services.hidden = True
|
||||||
self.objectspace.space.services.name = 'services'
|
self.objectspace.space.services.name = 'services'
|
||||||
self.objectspace.space.services.doc = 'services'
|
self.objectspace.space.services.doc = 'services'
|
||||||
|
self.objectspace.space.services.path = 'services'
|
||||||
families = {}
|
families = {}
|
||||||
for service_name in self.objectspace.space.services.service.keys():
|
for service_name in self.objectspace.space.services.service.keys():
|
||||||
service = self.objectspace.space.services.service[service_name]
|
service = self.objectspace.space.services.service[service_name]
|
||||||
new_service = self.objectspace.service(service.xmlfiles)
|
new_service = self.objectspace.service(service.xmlfiles)
|
||||||
|
new_service.path = f'services.{service_name}'
|
||||||
for elttype, values in vars(service).items():
|
for elttype, values in vars(service).items():
|
||||||
if not isinstance(values, (dict, list)) or elttype in ERASED_ATTRIBUTES:
|
if not isinstance(values, (dict, list)) or elttype in ERASED_ATTRIBUTES:
|
||||||
setattr(new_service, elttype, values)
|
setattr(new_service, elttype, values)
|
||||||
continue
|
continue
|
||||||
eltname = elttype + 's'
|
eltname = elttype + 's'
|
||||||
path = '.'.join(['services', service_name, eltname])
|
path = '.'.join(['services', normalize_family(service_name), eltname])
|
||||||
family = self._gen_family(eltname,
|
family = self._gen_family(eltname,
|
||||||
path,
|
path,
|
||||||
service.xmlfiles,
|
service.xmlfiles,
|
||||||
|
@ -145,7 +147,7 @@ class ServiceAnnotator:
|
||||||
c_name = name
|
c_name = name
|
||||||
if idx:
|
if idx:
|
||||||
c_name += f'_{idx}'
|
c_name += f'_{idx}'
|
||||||
subpath = '{}.{}'.format(path, c_name)
|
subpath = '{}.{}'.format(path, normalize_family(c_name))
|
||||||
try:
|
try:
|
||||||
self.objectspace.paths.get_family(subpath, 'services')
|
self.objectspace.paths.get_family(subpath, 'services')
|
||||||
except DictConsistencyError as err:
|
except DictConsistencyError as err:
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
"""Annotate variable
|
"""Annotate variable
|
||||||
"""
|
"""
|
||||||
from ..i18n import _
|
|
||||||
from ..utils import normalize_family
|
from ..utils import normalize_family
|
||||||
from ..error import DictConsistencyError
|
from ..config import Config
|
||||||
|
|
||||||
|
|
||||||
CONVERT_OPTION = {'number': dict(opttype="IntOption", func=int),
|
CONVERT_OPTION = {'number': dict(opttype="IntOption", func=int),
|
||||||
|
@ -120,6 +119,7 @@ class VariableAnnotator:
|
||||||
"""
|
"""
|
||||||
for families in self.objectspace.space.variables.values():
|
for families in self.objectspace.space.variables.values():
|
||||||
families.doc = families.name
|
families.doc = families.name
|
||||||
|
families.path = families.name
|
||||||
for family in families.family.values():
|
for family in families.family.values():
|
||||||
family.doc = family.name
|
family.doc = family.name
|
||||||
family.name = normalize_family(family.name)
|
family.name = normalize_family(family.name)
|
||||||
|
|
|
@ -1,14 +1,18 @@
|
||||||
# -*- coding: utf-8 -*-
|
"""Standard error classes
|
||||||
|
"""
|
||||||
class ConfigError(Exception):
|
class ConfigError(Exception):
|
||||||
pass
|
"""Standard error for templating
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
class FileNotFound(ConfigError):
|
class FileNotFound(ConfigError):
|
||||||
pass
|
"""Template file is not found
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
class TemplateError(ConfigError):
|
class TemplateError(ConfigError):
|
||||||
pass
|
"""Templating generate an error
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
class TemplateDisabled(TemplateError):
|
class TemplateDisabled(TemplateError):
|
||||||
|
@ -29,7 +33,3 @@ class DictConsistencyError(Exception):
|
||||||
def __init__(self, msg, errno):
|
def __init__(self, msg, errno):
|
||||||
super().__init__(msg)
|
super().__init__(msg)
|
||||||
self.errno = errno
|
self.errno = errno
|
||||||
|
|
||||||
|
|
||||||
class LoaderError(Exception):
|
|
||||||
pass
|
|
||||||
|
|
|
@ -306,7 +306,7 @@ class RougailObjSpace:
|
||||||
) -> None:
|
) -> None:
|
||||||
"""if an object exists, return it
|
"""if an object exists, return it
|
||||||
"""
|
"""
|
||||||
if child.tag == 'family':
|
if child.tag in ['variable', 'family']:
|
||||||
name = normalize_family(name)
|
name = normalize_family(name)
|
||||||
if isinstance(space, self.family): # pylint: disable=E1101
|
if isinstance(space, self.family): # pylint: disable=E1101
|
||||||
if namespace != Config['variable_namespace']:
|
if namespace != Config['variable_namespace']:
|
||||||
|
@ -320,6 +320,7 @@ class RougailObjSpace:
|
||||||
f'now it is in "{space.path}" in {xmlfiles}')
|
f'now it is in "{space.path}" in {xmlfiles}')
|
||||||
raise DictConsistencyError(msg, 47)
|
raise DictConsistencyError(msg, 47)
|
||||||
return self.paths.get_variable(name)
|
return self.paths.get_variable(name)
|
||||||
|
# it's not a family
|
||||||
children = getattr(space, child.tag, {})
|
children = getattr(space, child.tag, {})
|
||||||
if name in children:
|
if name in children:
|
||||||
return children[name]
|
return children[name]
|
||||||
|
@ -437,7 +438,7 @@ class RougailObjSpace:
|
||||||
if isinstance(variableobj, self.variable): # pylint: disable=E1101
|
if isinstance(variableobj, self.variable): # pylint: disable=E1101
|
||||||
family_name = normalize_family(document.attrib['name'])
|
family_name = normalize_family(document.attrib['name'])
|
||||||
self.paths.add_variable(namespace,
|
self.paths.add_variable(namespace,
|
||||||
variableobj.name,
|
normalize_family(variableobj.name),
|
||||||
namespace + '.' + family_name,
|
namespace + '.' + family_name,
|
||||||
document.attrib.get('dynamic') is not None,
|
document.attrib.get('dynamic') is not None,
|
||||||
variableobj,
|
variableobj,
|
||||||
|
@ -462,7 +463,7 @@ class RougailObjSpace:
|
||||||
variableobj.namespace = namespace
|
variableobj.namespace = namespace
|
||||||
if isinstance(variableobj, Redefinable):
|
if isinstance(variableobj, Redefinable):
|
||||||
name = variableobj.name
|
name = variableobj.name
|
||||||
if child.tag == 'family':
|
if child.tag in ['family', 'variable']:
|
||||||
name = normalize_family(name)
|
name = normalize_family(name)
|
||||||
getattr(space, child.tag)[name] = variableobj
|
getattr(space, child.tag)[name] = variableobj
|
||||||
elif isinstance(variableobj, UnRedefinable):
|
elif isinstance(variableobj, UnRedefinable):
|
||||||
|
|
|
@ -28,12 +28,15 @@ from .annotator import SpaceAnnotator
|
||||||
|
|
||||||
|
|
||||||
class Rougail:
|
class Rougail:
|
||||||
|
"""Rougail object
|
||||||
|
"""
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
dtdfilename: str,
|
dtdfilename: str,
|
||||||
) -> None:
|
) -> None:
|
||||||
self.xmlreflector = XMLReflector()
|
self.xmlreflector = XMLReflector()
|
||||||
self.xmlreflector.parse_dtd(dtdfilename)
|
self.xmlreflector.parse_dtd(dtdfilename)
|
||||||
self.rougailobjspace = RougailObjSpace(self.xmlreflector)
|
self.rougailobjspace = RougailObjSpace(self.xmlreflector)
|
||||||
|
self.funcs_path = None
|
||||||
|
|
||||||
def create_or_populate_from_xml(self,
|
def create_or_populate_from_xml(self,
|
||||||
namespace: str,
|
namespace: str,
|
||||||
|
@ -53,10 +56,14 @@ class Rougail:
|
||||||
def space_visitor(self,
|
def space_visitor(self,
|
||||||
eosfunc_file: str,
|
eosfunc_file: str,
|
||||||
) -> None:
|
) -> None:
|
||||||
|
"""All XML are loader, now annotate content
|
||||||
|
"""
|
||||||
self.funcs_path = eosfunc_file
|
self.funcs_path = eosfunc_file
|
||||||
SpaceAnnotator(self.rougailobjspace, eosfunc_file)
|
SpaceAnnotator(self.rougailobjspace, eosfunc_file)
|
||||||
|
|
||||||
def save(self) -> str:
|
def save(self) -> str:
|
||||||
|
"""Return tiramisu object declaration as a string
|
||||||
|
"""
|
||||||
tiramisu_objects = TiramisuReflector(self.rougailobjspace.space,
|
tiramisu_objects = TiramisuReflector(self.rougailobjspace.space,
|
||||||
self.funcs_path,
|
self.funcs_path,
|
||||||
)
|
)
|
||||||
|
|
|
@ -34,6 +34,8 @@ log.addHandler(logging.NullHandler())
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def cl_compile(kls, *args, **kwargs):
|
def cl_compile(kls, *args, **kwargs):
|
||||||
|
"""Rewrite compile methode to force some settings
|
||||||
|
"""
|
||||||
kwargs['compilerSettings'] = {'directiveStartToken' : '%',
|
kwargs['compilerSettings'] = {'directiveStartToken' : '%',
|
||||||
'cheetahVarStartToken' : '%%',
|
'cheetahVarStartToken' : '%%',
|
||||||
'EOLSlurpToken' : '%',
|
'EOLSlurpToken' : '%',
|
||||||
|
@ -49,23 +51,16 @@ ChtTemplate.compile = cl_compile
|
||||||
|
|
||||||
|
|
||||||
class CheetahTemplate(ChtTemplate):
|
class CheetahTemplate(ChtTemplate):
|
||||||
"""classe pour personnaliser et faciliter la construction
|
"""Construct a cheetah templating object
|
||||||
du template Cheetah
|
|
||||||
"""
|
"""
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
filename: str,
|
filename: str,
|
||||||
context,
|
context,
|
||||||
eosfunc: Dict,
|
eosfunc: Dict,
|
||||||
destfilename,
|
extra_context: Dict,
|
||||||
variable,
|
|
||||||
):
|
):
|
||||||
"""Initialize Creole CheetahTemplate
|
"""Initialize Creole CheetahTemplate
|
||||||
"""
|
"""
|
||||||
extra_context = {'normalize_family': normalize_family,
|
|
||||||
'rougail_filename': destfilename
|
|
||||||
}
|
|
||||||
if variable:
|
|
||||||
extra_context['rougail_variable'] = variable
|
|
||||||
ChtTemplate.__init__(self,
|
ChtTemplate.__init__(self,
|
||||||
file=filename,
|
file=filename,
|
||||||
searchList=[context, eosfunc, extra_context])
|
searchList=[context, eosfunc, extra_context])
|
||||||
|
@ -75,12 +70,12 @@ class CheetahTemplate(ChtTemplate):
|
||||||
path=None,
|
path=None,
|
||||||
normpath=normpath,
|
normpath=normpath,
|
||||||
abspath=abspath
|
abspath=abspath
|
||||||
):
|
): # pylint: disable=W0621
|
||||||
|
|
||||||
# strange...
|
# strange...
|
||||||
if path is None and isinstance(self, str):
|
if path is None and isinstance(self, str):
|
||||||
path = self
|
path = self
|
||||||
if path:
|
if path: # pylint: disable=R1705
|
||||||
return normpath(abspath(path))
|
return normpath(abspath(path))
|
||||||
# original code return normpath(abspath(path.replace("\\", '/')))
|
# original code return normpath(abspath(path.replace("\\", '/')))
|
||||||
elif hasattr(self, '_filePath') and self._filePath: # pragma: no cover
|
elif hasattr(self, '_filePath') and self._filePath: # pragma: no cover
|
||||||
|
@ -90,6 +85,8 @@ class CheetahTemplate(ChtTemplate):
|
||||||
|
|
||||||
|
|
||||||
class CreoleLeaderIndex:
|
class CreoleLeaderIndex:
|
||||||
|
"""This object is create when access to a specified Index of the variable
|
||||||
|
"""
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
value,
|
value,
|
||||||
follower,
|
follower,
|
||||||
|
@ -136,6 +133,9 @@ class CreoleLeaderIndex:
|
||||||
|
|
||||||
|
|
||||||
class CreoleLeader:
|
class CreoleLeader:
|
||||||
|
"""Implement access to leader and follower variable
|
||||||
|
For examples: %%leader, %%leader[0].follower1
|
||||||
|
"""
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
value,
|
value,
|
||||||
) -> None:
|
) -> None:
|
||||||
|
@ -170,6 +170,8 @@ class CreoleLeader:
|
||||||
name: str,
|
name: str,
|
||||||
path: str,
|
path: str,
|
||||||
):
|
):
|
||||||
|
"""Add a new follower
|
||||||
|
"""
|
||||||
self._follower[name] = []
|
self._follower[name] = []
|
||||||
for index in range(len(self._value)):
|
for index in range(len(self._value)):
|
||||||
try:
|
try:
|
||||||
|
@ -180,6 +182,9 @@ class CreoleLeader:
|
||||||
|
|
||||||
|
|
||||||
class CreoleExtra:
|
class CreoleExtra:
|
||||||
|
"""Object that implement access to extra variable
|
||||||
|
For example %%extra1.family.variable
|
||||||
|
"""
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
suboption: Dict) -> None:
|
suboption: Dict) -> None:
|
||||||
self.suboption = suboption
|
self.suboption = suboption
|
||||||
|
@ -216,53 +221,6 @@ class CreoleTemplateEngine:
|
||||||
self.eosfunc = eos
|
self.eosfunc = eos
|
||||||
self.rougail_variables_dict = {}
|
self.rougail_variables_dict = {}
|
||||||
|
|
||||||
async def load_eole_variables_rougail(self,
|
|
||||||
optiondescription,
|
|
||||||
):
|
|
||||||
for option in await optiondescription.list('all'):
|
|
||||||
if await option.option.isoptiondescription():
|
|
||||||
if await option.option.isleadership():
|
|
||||||
for idx, suboption in enumerate(await option.list('all')):
|
|
||||||
if idx == 0:
|
|
||||||
leader = CreoleLeader(await suboption.value.get())
|
|
||||||
self.rougail_variables_dict[await suboption.option.name()] = leader
|
|
||||||
else:
|
|
||||||
await leader.add_follower(self.config,
|
|
||||||
await suboption.option.name(),
|
|
||||||
await suboption.option.path(),
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
await self.load_eole_variables_rougail(option)
|
|
||||||
else:
|
|
||||||
self.rougail_variables_dict[await option.option.name()] = await option.value.get()
|
|
||||||
|
|
||||||
async def load_eole_variables(self,
|
|
||||||
optiondescription,
|
|
||||||
):
|
|
||||||
families = {}
|
|
||||||
for family in await optiondescription.list('all'):
|
|
||||||
variables = {}
|
|
||||||
for variable in await family.list('all'):
|
|
||||||
if await variable.option.isoptiondescription():
|
|
||||||
if await variable.option.isleadership():
|
|
||||||
for idx, suboption in enumerate(await variable.list('all')):
|
|
||||||
if idx == 0:
|
|
||||||
leader = CreoleLeader(await suboption.value.get())
|
|
||||||
leader_name = await suboption.option.name()
|
|
||||||
else:
|
|
||||||
await leader.add_follower(self.config,
|
|
||||||
await suboption.option.name(),
|
|
||||||
await suboption.option.path(),
|
|
||||||
)
|
|
||||||
variables[leader_name] = leader
|
|
||||||
else:
|
|
||||||
subfamilies = await self.load_eole_variables(variable)
|
|
||||||
variables[await variable.option.name()] = subfamilies
|
|
||||||
else:
|
|
||||||
variables[await variable.option.name()] = await variable.value.get()
|
|
||||||
families[await family.option.name()] = CreoleExtra(variables)
|
|
||||||
return CreoleExtra(families)
|
|
||||||
|
|
||||||
def patch_template(self,
|
def patch_template(self,
|
||||||
filename: str,
|
filename: str,
|
||||||
tmp_dir: str,
|
tmp_dir: str,
|
||||||
|
@ -280,7 +238,9 @@ class CreoleTemplateEngine:
|
||||||
ret = call(patch_cmd + patch_no_debug + ['-i', rel_patch_file])
|
ret = call(patch_cmd + patch_no_debug + ['-i', rel_patch_file])
|
||||||
if ret: # pragma: no cover
|
if ret: # pragma: no cover
|
||||||
patch_cmd_err = ' '.join(patch_cmd + ['-i', rel_patch_file])
|
patch_cmd_err = ' '.join(patch_cmd + ['-i', rel_patch_file])
|
||||||
log.error(_(f"Error applying patch: '{rel_patch_file}'\nTo reproduce and fix this error {patch_cmd_err}"))
|
msg = _(f"Error applying patch: '{rel_patch_file}'\n"
|
||||||
|
f"To reproduce and fix this error {patch_cmd_err}")
|
||||||
|
log.error(_(msg))
|
||||||
copy(join(self.distrib_dir, filename), tmp_dir)
|
copy(join(self.distrib_dir, filename), tmp_dir)
|
||||||
|
|
||||||
def prepare_template(self,
|
def prepare_template(self,
|
||||||
|
@ -305,18 +265,24 @@ class CreoleTemplateEngine:
|
||||||
# full path of the destination file
|
# full path of the destination file
|
||||||
log.info(_(f"Cheetah processing: '{destfilename}'"))
|
log.info(_(f"Cheetah processing: '{destfilename}'"))
|
||||||
try:
|
try:
|
||||||
|
extra_context = {'normalize_family': normalize_family,
|
||||||
|
'rougail_filename': true_destfilename
|
||||||
|
}
|
||||||
|
if variable:
|
||||||
|
extra_context['rougail_variable'] = variable
|
||||||
cheetah_template = CheetahTemplate(source,
|
cheetah_template = CheetahTemplate(source,
|
||||||
self.rougail_variables_dict,
|
self.rougail_variables_dict,
|
||||||
self.eosfunc,
|
self.eosfunc,
|
||||||
true_destfilename,
|
extra_context,
|
||||||
variable,
|
|
||||||
)
|
)
|
||||||
data = str(cheetah_template)
|
data = str(cheetah_template)
|
||||||
except CheetahNotFound as err: # pragma: no cover
|
except CheetahNotFound as err: # pragma: no cover
|
||||||
varname = err.args[0][13:-1]
|
varname = err.args[0][13:-1]
|
||||||
raise TemplateError(_(f"Error: unknown variable used in template {source} to {destfilename} : {varname}"))
|
msg = f"Error: unknown variable used in template {source} to {destfilename}: {varname}"
|
||||||
|
raise TemplateError(_(msg))
|
||||||
except Exception as err: # pragma: no cover
|
except Exception as err: # pragma: no cover
|
||||||
raise TemplateError(_(f"Error while instantiating template {source} to {destfilename}: {err}"))
|
msg = _(f"Error while instantiating template {source} to {destfilename}: {err}")
|
||||||
|
raise TemplateError(msg)
|
||||||
|
|
||||||
with open(destfilename, 'w') as file_h:
|
with open(destfilename, 'w') as file_h:
|
||||||
file_h.write(data)
|
file_h.write(data)
|
||||||
|
@ -366,10 +332,9 @@ class CreoleTemplateEngine:
|
||||||
for option in await self.config.option.list(type='all'):
|
for option in await self.config.option.list(type='all'):
|
||||||
namespace = await option.option.name()
|
namespace = await option.option.name()
|
||||||
if namespace == Config['variable_namespace']:
|
if namespace == Config['variable_namespace']:
|
||||||
await self.load_eole_variables_rougail(option)
|
await self.load_variables_namespace(option)
|
||||||
else:
|
else:
|
||||||
families = await self.load_eole_variables(option)
|
self.rougail_variables_dict[namespace] = await self.load_variables_extra(option)
|
||||||
self.rougail_variables_dict[namespace] = families
|
|
||||||
for template in listdir('.'):
|
for template in listdir('.'):
|
||||||
self.prepare_template(template, tmp_dir, patch_dir)
|
self.prepare_template(template, tmp_dir, patch_dir)
|
||||||
for service_obj in await self.config.option('services').list('all'):
|
for service_obj in await self.config.option('services').list('all'):
|
||||||
|
@ -389,6 +354,57 @@ class CreoleTemplateEngine:
|
||||||
log.debug(_("Instantiation of file '{filename}' disabled"))
|
log.debug(_("Instantiation of file '{filename}' disabled"))
|
||||||
chdir(ori_dir)
|
chdir(ori_dir)
|
||||||
|
|
||||||
|
async def load_variables_namespace (self,
|
||||||
|
optiondescription,
|
||||||
|
):
|
||||||
|
"""load variables from the "variable namespace
|
||||||
|
"""
|
||||||
|
for option in await optiondescription.list('all'):
|
||||||
|
if await option.option.isoptiondescription():
|
||||||
|
if await option.option.isleadership():
|
||||||
|
for idx, suboption in enumerate(await option.list('all')):
|
||||||
|
if idx == 0:
|
||||||
|
leader = CreoleLeader(await suboption.value.get())
|
||||||
|
self.rougail_variables_dict[await suboption.option.name()] = leader
|
||||||
|
else:
|
||||||
|
await leader.add_follower(self.config,
|
||||||
|
await suboption.option.name(),
|
||||||
|
await suboption.option.path(),
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
await self.load_variables_namespace(option)
|
||||||
|
else:
|
||||||
|
self.rougail_variables_dict[await option.option.name()] = await option.value.get()
|
||||||
|
|
||||||
|
async def load_variables_extra(self,
|
||||||
|
optiondescription,
|
||||||
|
) -> CreoleExtra:
|
||||||
|
"""Load all variables and set it in CreoleExtra objects
|
||||||
|
"""
|
||||||
|
families = {}
|
||||||
|
for family in await optiondescription.list('all'):
|
||||||
|
variables = {}
|
||||||
|
for variable in await family.list('all'):
|
||||||
|
if await variable.option.isoptiondescription():
|
||||||
|
if await variable.option.isleadership():
|
||||||
|
for idx, suboption in enumerate(await variable.list('all')):
|
||||||
|
if idx == 0:
|
||||||
|
leader = CreoleLeader(await suboption.value.get())
|
||||||
|
leader_name = await suboption.option.name()
|
||||||
|
else:
|
||||||
|
await leader.add_follower(self.config,
|
||||||
|
await suboption.option.name(),
|
||||||
|
await suboption.option.path(),
|
||||||
|
)
|
||||||
|
variables[leader_name] = leader
|
||||||
|
else:
|
||||||
|
subfamilies = await self.load_variables_extra(variable)
|
||||||
|
variables[await variable.option.name()] = subfamilies
|
||||||
|
else:
|
||||||
|
variables[await variable.option.name()] = await variable.value.get()
|
||||||
|
families[await family.option.name()] = CreoleExtra(variables)
|
||||||
|
return CreoleExtra(families)
|
||||||
|
|
||||||
|
|
||||||
async def generate(config: Config,
|
async def generate(config: Config,
|
||||||
eosfunc_file: str,
|
eosfunc_file: str,
|
||||||
|
@ -396,6 +412,8 @@ async def generate(config: Config,
|
||||||
tmp_dir: str,
|
tmp_dir: str,
|
||||||
dest_dir: str,
|
dest_dir: str,
|
||||||
) -> None:
|
) -> None:
|
||||||
|
"""Generate all files
|
||||||
|
"""
|
||||||
engine = CreoleTemplateEngine(config,
|
engine = CreoleTemplateEngine(config,
|
||||||
eosfunc_file,
|
eosfunc_file,
|
||||||
distrib_dir,
|
distrib_dir,
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
"""Redefine Tiramisu object
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
from tiramisu3 import DynOptionDescription
|
from tiramisu3 import DynOptionDescription
|
||||||
except ModuleNotFoundError:
|
except ModuleNotFoundError:
|
||||||
|
@ -6,6 +8,9 @@ from .utils import normalize_family
|
||||||
|
|
||||||
|
|
||||||
class ConvertDynOptionDescription(DynOptionDescription):
|
class ConvertDynOptionDescription(DynOptionDescription):
|
||||||
|
"""Suffix could be an integer, we should convert it in str
|
||||||
|
Suffix could also contain invalid character, so we should "normalize" it
|
||||||
|
"""
|
||||||
def convert_suffix_to_path(self, suffix):
|
def convert_suffix_to_path(self, suffix):
|
||||||
if not isinstance(suffix, str):
|
if not isinstance(suffix, str):
|
||||||
suffix = str(suffix)
|
suffix = str(suffix)
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
flattened XML specific
|
flattened XML specific
|
||||||
"""
|
"""
|
||||||
from .config import Config
|
from .config import Config
|
||||||
from .i18n import _
|
|
||||||
from .error import LoaderError
|
|
||||||
from .annotator import ERASED_ATTRIBUTES, CONVERT_OPTION
|
from .annotator import ERASED_ATTRIBUTES, CONVERT_OPTION
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,16 +11,20 @@ ATTRIBUTES_ORDER = ('name', 'doc', 'default', 'multi')
|
||||||
|
|
||||||
|
|
||||||
class Root():
|
class Root():
|
||||||
|
"""Root classes
|
||||||
|
"""
|
||||||
path = '.'
|
path = '.'
|
||||||
|
|
||||||
|
|
||||||
class TiramisuReflector:
|
class TiramisuReflector:
|
||||||
|
"""Convert object to tiramisu representation
|
||||||
|
"""
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
xmlroot,
|
space,
|
||||||
funcs_path,
|
funcs_path,
|
||||||
):
|
):
|
||||||
self.storage = ElementStorage()
|
self.index = 0
|
||||||
self.storage.text = ["from importlib.machinery import SourceFileLoader",
|
self.text = ["from importlib.machinery import SourceFileLoader",
|
||||||
f"func = SourceFileLoader('func', '{funcs_path}').load_module()",
|
f"func = SourceFileLoader('func', '{funcs_path}').load_module()",
|
||||||
"for key, value in dict(locals()).items():",
|
"for key, value in dict(locals()).items():",
|
||||||
" if key != ['SourceFileLoader', 'func']:",
|
" if key != ['SourceFileLoader', 'func']:",
|
||||||
|
@ -33,62 +35,52 @@ class TiramisuReflector:
|
||||||
" from tiramisu import *",
|
" from tiramisu import *",
|
||||||
"from rougail.tiramisu import ConvertDynOptionDescription",
|
"from rougail.tiramisu import ConvertDynOptionDescription",
|
||||||
]
|
]
|
||||||
self.make_tiramisu_objects(xmlroot)
|
self.make_tiramisu_objects(space)
|
||||||
# parse object
|
|
||||||
self.storage.get(Root()).get()
|
|
||||||
|
|
||||||
def make_tiramisu_objects(self,
|
def make_tiramisu_objects(self,
|
||||||
xmlroot,
|
space,
|
||||||
):
|
):
|
||||||
family = self.get_root_family()
|
"""make tiramisu objects
|
||||||
for xmlelt in self.reorder_family(xmlroot):
|
"""
|
||||||
self.iter_family(xmlelt,
|
baseelt = BaseElt()
|
||||||
family,
|
self.set_name(baseelt)
|
||||||
None,
|
basefamily = Family(baseelt,
|
||||||
|
self,
|
||||||
)
|
)
|
||||||
|
for elt in self.reorder_family(space):
|
||||||
def get_root_family(self):
|
self.iter_family(basefamily,
|
||||||
family = Family(BaseElt(),
|
elt,
|
||||||
self.storage,
|
|
||||||
False,
|
|
||||||
'.',
|
|
||||||
)
|
)
|
||||||
return family
|
# parse object
|
||||||
|
baseelt.reflector_object.get()
|
||||||
|
|
||||||
def reorder_family(self, xmlroot):
|
@staticmethod
|
||||||
# variable_namespace family has to be loaded before any other family
|
def reorder_family(space):
|
||||||
# because `extra` family could use `variable_namespace` variables.
|
"""variable_namespace family has to be loaded before any other family
|
||||||
if hasattr(xmlroot, 'variables'):
|
because `extra` family could use `variable_namespace` variables.
|
||||||
if Config['variable_namespace'] in xmlroot.variables:
|
"""
|
||||||
yield xmlroot.variables[Config['variable_namespace']]
|
if hasattr(space, 'variables'):
|
||||||
for xmlelt, value in xmlroot.variables.items():
|
if Config['variable_namespace'] in space.variables:
|
||||||
if xmlelt != Config['variable_namespace']:
|
yield space.variables[Config['variable_namespace']]
|
||||||
|
for elt, value in space.variables.items():
|
||||||
|
if elt != Config['variable_namespace']:
|
||||||
yield value
|
yield value
|
||||||
if hasattr(xmlroot, 'services'):
|
if hasattr(space, 'services'):
|
||||||
yield xmlroot.services
|
yield space.services
|
||||||
|
|
||||||
def get_attributes(self, space): # pylint: disable=R0201
|
def get_attributes(self, space): # pylint: disable=R0201
|
||||||
|
"""Get attributes
|
||||||
|
"""
|
||||||
for attr in dir(space):
|
for attr in dir(space):
|
||||||
if not attr.startswith('_') and attr not in ERASED_ATTRIBUTES:
|
if not attr.startswith('_') and attr not in ERASED_ATTRIBUTES:
|
||||||
yield attr
|
yield attr
|
||||||
|
|
||||||
def get_children(self,
|
|
||||||
space,
|
|
||||||
):
|
|
||||||
for tag in self.get_attributes(space):
|
|
||||||
children = getattr(space, tag)
|
|
||||||
if children.__class__.__name__ == 'Family':
|
|
||||||
children = [children]
|
|
||||||
if isinstance(children, dict):
|
|
||||||
children = list(children.values())
|
|
||||||
if isinstance(children, list):
|
|
||||||
yield tag, children
|
|
||||||
|
|
||||||
def iter_family(self,
|
def iter_family(self,
|
||||||
child,
|
|
||||||
family,
|
family,
|
||||||
subpath,
|
child,
|
||||||
):
|
):
|
||||||
|
"""Iter each family
|
||||||
|
"""
|
||||||
tag = child.__class__.__name__
|
tag = child.__class__.__name__
|
||||||
if tag == 'Variable':
|
if tag == 'Variable':
|
||||||
function = self.populate_variable
|
function = self.populate_variable
|
||||||
|
@ -97,112 +89,102 @@ class TiramisuReflector:
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
function = self.populate_family
|
function = self.populate_family
|
||||||
#else:
|
|
||||||
# raise Exception('unknown tag {}'.format(child.tag))
|
|
||||||
function(family,
|
function(family,
|
||||||
child,
|
child,
|
||||||
subpath,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
def populate_family(self,
|
def populate_family(self,
|
||||||
parent_family,
|
parent_family,
|
||||||
elt,
|
elt,
|
||||||
subpath,
|
|
||||||
):
|
):
|
||||||
path = self.build_path(subpath,
|
"""Populate family
|
||||||
elt,
|
"""
|
||||||
)
|
self.set_name(elt)
|
||||||
tag = elt.__class__.__name__
|
|
||||||
family = Family(elt,
|
family = Family(elt,
|
||||||
self.storage,
|
self,
|
||||||
tag == 'Leadership',
|
|
||||||
path,
|
|
||||||
)
|
)
|
||||||
parent_family.add(family)
|
parent_family.add(family)
|
||||||
for tag, children in self.get_children(elt):
|
for children in self.get_children(elt):
|
||||||
for child in children:
|
for child in children:
|
||||||
self.iter_family(child,
|
self.iter_family(family,
|
||||||
family,
|
child,
|
||||||
path,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def get_children(self,
|
||||||
|
space,
|
||||||
|
):
|
||||||
|
"""Get children
|
||||||
|
"""
|
||||||
|
for tag in self.get_attributes(space):
|
||||||
|
children = getattr(space, tag)
|
||||||
|
if children.__class__.__name__ == 'Family':
|
||||||
|
children = [children]
|
||||||
|
if isinstance(children, dict):
|
||||||
|
children = list(children.values())
|
||||||
|
if isinstance(children, list):
|
||||||
|
yield children
|
||||||
|
|
||||||
def populate_variable(self,
|
def populate_variable(self,
|
||||||
family,
|
family,
|
||||||
elt,
|
elt,
|
||||||
subpath,
|
|
||||||
):
|
):
|
||||||
is_follower = False
|
"""Populate variable
|
||||||
is_leader = False
|
"""
|
||||||
if family.is_leader:
|
if family.is_leader:
|
||||||
if elt.name != family.elt.name:
|
is_leader = elt.name == family.elt.variable[0].name
|
||||||
is_follower = True
|
is_follower = not is_leader
|
||||||
else:
|
else:
|
||||||
is_leader = True
|
is_leader = False
|
||||||
|
is_follower = False
|
||||||
|
self.set_name(elt)
|
||||||
family.add(Variable(elt,
|
family.add(Variable(elt,
|
||||||
self.storage,
|
self,
|
||||||
is_follower,
|
is_follower,
|
||||||
is_leader,
|
is_leader,
|
||||||
self.build_path(subpath,
|
|
||||||
elt,
|
|
||||||
)
|
|
||||||
))
|
))
|
||||||
|
|
||||||
def build_path(self,
|
def set_name(self,
|
||||||
subpath,
|
|
||||||
elt,
|
elt,
|
||||||
):
|
):
|
||||||
if subpath is None:
|
elt.reflector_name = f'option_{self.index}'
|
||||||
return elt.name
|
self.index += 1
|
||||||
return subpath + '.' + elt.name
|
|
||||||
|
|
||||||
def get_text(self):
|
def get_text(self):
|
||||||
return '\n'.join(self.storage.get(Root()).get_text())
|
"""Get text
|
||||||
|
"""
|
||||||
|
return '\n'.join(self.text)
|
||||||
|
|
||||||
|
|
||||||
class BaseElt:
|
class BaseElt:
|
||||||
def __init__(self) -> None:
|
"""Base element
|
||||||
self.name = 'baseoption'
|
"""
|
||||||
self.doc = 'baseoption'
|
name = 'baseoption'
|
||||||
|
doc = 'baseoption'
|
||||||
|
path = '.'
|
||||||
class ElementStorage:
|
|
||||||
def __init__(self,
|
|
||||||
):
|
|
||||||
self.paths = {}
|
|
||||||
self.text = []
|
|
||||||
self.index = 0
|
|
||||||
|
|
||||||
def add(self, path, elt):
|
|
||||||
self.paths[path] = (elt, self.index)
|
|
||||||
self.index += 1
|
|
||||||
|
|
||||||
def get(self, obj):
|
|
||||||
path = obj.path
|
|
||||||
return self.paths[path][0]
|
|
||||||
|
|
||||||
def get_name(self, path):
|
|
||||||
return f'option_{self.paths[path][1]}'
|
|
||||||
|
|
||||||
|
|
||||||
class Common:
|
class Common:
|
||||||
|
"""Common function for variable and family
|
||||||
|
"""
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
storage,
|
storage,
|
||||||
is_leader,
|
is_leader,
|
||||||
path,
|
|
||||||
):
|
):
|
||||||
self.option_name = None
|
self.option_name = None
|
||||||
self.path = path
|
|
||||||
self.attrib = {}
|
self.attrib = {}
|
||||||
self.informations = {}
|
self.informations = {}
|
||||||
self.storage = storage
|
self.storage = storage
|
||||||
self.is_leader = is_leader
|
self.is_leader = is_leader
|
||||||
self.storage.add(self.path, self)
|
self.elt.reflector_object = self
|
||||||
|
|
||||||
def populate_properties(self, child):
|
def populate_properties(self, child):
|
||||||
|
"""Populate properties
|
||||||
|
"""
|
||||||
assert child.type == 'calculation'
|
assert child.type == 'calculation'
|
||||||
action = f"ParamValue('{child.name}')"
|
action = f"ParamValue('{child.name}')"
|
||||||
option_name = self.storage.get(child.source).get()
|
option_name = child.source.reflector_object.get()
|
||||||
kwargs = f"'condition': ParamOption({option_name}, todict=True), 'expected': ParamValue('{child.expected}')"
|
kwargs = (f"'condition': ParamOption({option_name}, todict=True), "
|
||||||
|
f"'expected': ParamValue('{child.expected}')")
|
||||||
if child.inverse:
|
if child.inverse:
|
||||||
kwargs += ", 'reverse_condition': ParamValue(True)"
|
kwargs += ", 'reverse_condition': ParamValue(True)"
|
||||||
prop = 'Calculation(calc_value, Params(' + action + ', kwargs={' + kwargs + '}))'
|
prop = 'Calculation(calc_value, Params(' + action + ', kwargs={' + kwargs + '}))'
|
||||||
|
@ -211,6 +193,8 @@ class Common:
|
||||||
self.attrib['properties'] += prop
|
self.attrib['properties'] += prop
|
||||||
|
|
||||||
def get_attrib(self):
|
def get_attrib(self):
|
||||||
|
"""Get attributes
|
||||||
|
"""
|
||||||
ret_list = []
|
ret_list = []
|
||||||
for key, value in self.attrib.items():
|
for key, value in self.attrib.items():
|
||||||
if value is None:
|
if value is None:
|
||||||
|
@ -227,16 +211,16 @@ class Common:
|
||||||
return ', '.join(ret_list)
|
return ', '.join(ret_list)
|
||||||
|
|
||||||
def populate_informations(self):
|
def populate_informations(self):
|
||||||
|
"""Populate Tiramisu's informations
|
||||||
|
"""
|
||||||
for key, value in self.informations.items():
|
for key, value in self.informations.items():
|
||||||
if isinstance(value, str):
|
if isinstance(value, str):
|
||||||
value = '"' + value.replace('"', '\"') + '"'
|
value = '"' + value.replace('"', '\"') + '"'
|
||||||
self.storage.text.append(f'{self.option_name}.impl_set_information("{key}", {value})')
|
self.storage.text.append(f'{self.option_name}.impl_set_information("{key}", {value})')
|
||||||
|
|
||||||
def get_text(self,
|
|
||||||
):
|
|
||||||
return self.storage.text
|
|
||||||
|
|
||||||
def get_attributes(self, space): # pylint: disable=R0201
|
def get_attributes(self, space): # pylint: disable=R0201
|
||||||
|
"""Get attributes
|
||||||
|
"""
|
||||||
attributes = dir(space)
|
attributes = dir(space)
|
||||||
for attr in ATTRIBUTES_ORDER:
|
for attr in ATTRIBUTES_ORDER:
|
||||||
if attr in attributes:
|
if attr in attributes:
|
||||||
|
@ -245,12 +229,14 @@ class Common:
|
||||||
if attr not in ATTRIBUTES_ORDER:
|
if attr not in ATTRIBUTES_ORDER:
|
||||||
if not attr.startswith('_') and attr not in ERASED_ATTRIBUTES:
|
if not attr.startswith('_') and attr not in ERASED_ATTRIBUTES:
|
||||||
value = getattr(space, attr)
|
value = getattr(space, attr)
|
||||||
if not isinstance(value, (list, dict)) and not value.__class__.__name__ == 'Family':
|
if not isinstance(value, (list, dict)) and \
|
||||||
|
not value.__class__.__name__ == 'Family':
|
||||||
yield attr
|
yield attr
|
||||||
|
|
||||||
def get_children(self,
|
@staticmethod
|
||||||
space,
|
def get_children(space):
|
||||||
):
|
"""Get children
|
||||||
|
"""
|
||||||
for attr in dir(space):
|
for attr in dir(space):
|
||||||
if not attr.startswith('_') and attr not in ERASED_ATTRIBUTES:
|
if not attr.startswith('_') and attr not in ERASED_ATTRIBUTES:
|
||||||
if isinstance(getattr(space, attr), list):
|
if isinstance(getattr(space, attr), list):
|
||||||
|
@ -258,16 +244,17 @@ class Common:
|
||||||
|
|
||||||
|
|
||||||
class Variable(Common):
|
class Variable(Common):
|
||||||
|
"""Manage variable
|
||||||
|
"""
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
elt,
|
elt,
|
||||||
storage,
|
storage,
|
||||||
is_follower,
|
is_follower,
|
||||||
is_leader,
|
is_leader,
|
||||||
path,
|
|
||||||
):
|
):
|
||||||
|
self.elt = elt
|
||||||
super().__init__(storage,
|
super().__init__(storage,
|
||||||
is_leader,
|
is_leader,
|
||||||
path,
|
|
||||||
)
|
)
|
||||||
self.is_follower = is_follower
|
self.is_follower = is_follower
|
||||||
convert_option = CONVERT_OPTION[elt.type]
|
convert_option = CONVERT_OPTION[elt.type]
|
||||||
|
@ -276,22 +263,25 @@ class Variable(Common):
|
||||||
if self.object_type != 'SymLinkOption':
|
if self.object_type != 'SymLinkOption':
|
||||||
self.attrib['properties'] = []
|
self.attrib['properties'] = []
|
||||||
self.attrib['validators'] = []
|
self.attrib['validators'] = []
|
||||||
self.elt = elt
|
|
||||||
|
|
||||||
def get(self):
|
def get(self):
|
||||||
|
"""Get tiramisu's object
|
||||||
|
"""
|
||||||
if self.option_name is None:
|
if self.option_name is None:
|
||||||
self.populate_attrib()
|
self.populate_attrib()
|
||||||
if self.object_type == 'SymLinkOption':
|
if self.object_type == 'SymLinkOption':
|
||||||
self.attrib['opt'] = self.storage.get(self.attrib['opt']).get()
|
self.attrib['opt'] = self.attrib['opt'].reflector_object.get()
|
||||||
else:
|
else:
|
||||||
self.parse_children()
|
self.parse_children()
|
||||||
attrib = self.get_attrib()
|
attrib = self.get_attrib()
|
||||||
self.option_name = self.storage.get_name(self.path)
|
self.option_name = self.elt.reflector_name
|
||||||
self.storage.text.append(f'{self.option_name} = {self.object_type}({attrib})')
|
self.storage.text.append(f'{self.option_name} = {self.object_type}({attrib})')
|
||||||
self.populate_informations()
|
self.populate_informations()
|
||||||
return self.option_name
|
return self.option_name
|
||||||
|
|
||||||
def populate_attrib(self):
|
def populate_attrib(self):
|
||||||
|
"""Populate attributes
|
||||||
|
"""
|
||||||
for key in self.get_attributes(self.elt):
|
for key in self.get_attributes(self.elt):
|
||||||
value = getattr(self.elt, key)
|
value = getattr(self.elt, key)
|
||||||
if key in FORCE_INFORMATIONS:
|
if key in FORCE_INFORMATIONS:
|
||||||
|
@ -306,6 +296,8 @@ class Variable(Common):
|
||||||
self.attrib[key] = value
|
self.attrib[key] = value
|
||||||
|
|
||||||
def parse_children(self):
|
def parse_children(self):
|
||||||
|
"""Parse children
|
||||||
|
"""
|
||||||
if 'default' not in self.attrib or self.attrib['multi']:
|
if 'default' not in self.attrib or self.attrib['multi']:
|
||||||
self.attrib['default'] = []
|
self.attrib['default'] = []
|
||||||
if self.attrib['multi'] == 'submulti' and self.is_follower:
|
if self.attrib['multi'] == 'submulti' and self.is_follower:
|
||||||
|
@ -313,7 +305,8 @@ class Variable(Common):
|
||||||
choices = []
|
choices = []
|
||||||
if 'properties' in self.attrib:
|
if 'properties' in self.attrib:
|
||||||
if self.attrib['properties']:
|
if self.attrib['properties']:
|
||||||
self.attrib['properties'] = "'" + "', '".join(sorted(list(self.attrib['properties']))) + "'"
|
self.attrib['properties'] = "'" + \
|
||||||
|
"', '".join(sorted(list(self.attrib['properties']))) + "'"
|
||||||
else:
|
else:
|
||||||
self.attrib['properties'] = ''
|
self.attrib['properties'] = ''
|
||||||
for tag, children in self.get_children(self.elt):
|
for tag, children in self.get_children(self.elt):
|
||||||
|
@ -326,10 +319,11 @@ class Variable(Common):
|
||||||
else:
|
else:
|
||||||
self.populate_value(child)
|
self.populate_value(child)
|
||||||
elif tag == 'check':
|
elif tag == 'check':
|
||||||
self.attrib['validators'].append(self.calculation_value(child, ['ParamSelfOption()']))
|
validator = self.calculation_value(child, ['ParamSelfOption()'])
|
||||||
|
self.attrib['validators'].append(validator)
|
||||||
elif tag == 'choice':
|
elif tag == 'choice':
|
||||||
if child.type == 'calculation':
|
if child.type == 'calculation':
|
||||||
value = self.storage.get(child.name).get()
|
value = child.name.reflector_object.get()
|
||||||
choices = f"Calculation(func.calc_value, Params((ParamOption({value}))))"
|
choices = f"Calculation(func.calc_value, Params((ParamOption({value}))))"
|
||||||
else:
|
else:
|
||||||
choices.append(child.name)
|
choices.append(child.name)
|
||||||
|
@ -347,7 +341,12 @@ class Variable(Common):
|
||||||
else:
|
else:
|
||||||
self.attrib['validators'] = '[' + ', '.join(self.attrib['validators']) + ']'
|
self.attrib['validators'] = '[' + ', '.join(self.attrib['validators']) + ']'
|
||||||
|
|
||||||
def calculation_value(self, child, args):
|
def calculation_value(self,
|
||||||
|
child,
|
||||||
|
args,
|
||||||
|
) -> str:
|
||||||
|
"""Generate calculated value
|
||||||
|
"""
|
||||||
kwargs = []
|
kwargs = []
|
||||||
# has parameters
|
# has parameters
|
||||||
function = child.name
|
function = child.name
|
||||||
|
@ -358,7 +357,8 @@ class Variable(Common):
|
||||||
args.append(str(value))
|
args.append(str(value))
|
||||||
else:
|
else:
|
||||||
kwargs.append(f"'{param.name}': " + value)
|
kwargs.append(f"'{param.name}': " + value)
|
||||||
ret = f"Calculation(func.{function}, Params((" + ', '.join(args) + "), kwargs=" + "{" + ', '.join(kwargs) + "})"
|
ret = f"Calculation(func.{function}, Params((" + ', '.join(args) + \
|
||||||
|
"), kwargs=" + "{" + ', '.join(kwargs) + "})"
|
||||||
if hasattr(child, 'warnings_only'):
|
if hasattr(child, 'warnings_only'):
|
||||||
ret += f', warnings_only={child.warnings_only}'
|
ret += f', warnings_only={child.warnings_only}'
|
||||||
return ret + ')'
|
return ret + ')'
|
||||||
|
@ -367,6 +367,8 @@ class Variable(Common):
|
||||||
function: str,
|
function: str,
|
||||||
param,
|
param,
|
||||||
):
|
):
|
||||||
|
"""Populate variable parameters
|
||||||
|
"""
|
||||||
if param.type == 'string':
|
if param.type == 'string':
|
||||||
return f'ParamValue("{param.text}")'
|
return f'ParamValue("{param.text}")'
|
||||||
if param.type == 'number':
|
if param.type == 'number':
|
||||||
|
@ -378,16 +380,19 @@ class Variable(Common):
|
||||||
}
|
}
|
||||||
if hasattr(param, 'suffix'):
|
if hasattr(param, 'suffix'):
|
||||||
value['suffix'] = param.suffix
|
value['suffix'] = param.suffix
|
||||||
|
value['family'] = param.family
|
||||||
return self.build_param(value)
|
return self.build_param(value)
|
||||||
if param.type == 'information':
|
if param.type == 'information':
|
||||||
return f'ParamInformation("{param.text}", None)'
|
return f'ParamInformation("{param.text}", None)'
|
||||||
if param.type == 'suffix':
|
if param.type == 'suffix':
|
||||||
return 'ParamSuffix()'
|
return 'ParamSuffix()'
|
||||||
raise LoaderError(_('unknown param type {}').format(param.type)) # pragma: no cover
|
return '' # pragma: no cover
|
||||||
|
|
||||||
def populate_value(self,
|
def populate_value(self,
|
||||||
child,
|
child,
|
||||||
):
|
):
|
||||||
|
"""Populate variable's values
|
||||||
|
"""
|
||||||
value = child.name
|
value = child.name
|
||||||
if self.attrib['multi'] == 'submulti':
|
if self.attrib['multi'] == 'submulti':
|
||||||
self.attrib['default_multi'].append(value)
|
self.attrib['default_multi'].append(value)
|
||||||
|
@ -405,61 +410,75 @@ class Variable(Common):
|
||||||
def build_param(self,
|
def build_param(self,
|
||||||
param,
|
param,
|
||||||
):
|
):
|
||||||
option_name = self.storage.get(param['option']).get()
|
"""build variable parameters
|
||||||
|
"""
|
||||||
|
option_name = param['option'].reflector_object.get()
|
||||||
|
ends = f"notraisepropertyerror={param['notraisepropertyerror']}, todict={param['todict']})"
|
||||||
if 'suffix' in param:
|
if 'suffix' in param:
|
||||||
family = '.'.join(param['option'].path.split('.')[:-1])
|
family_name = param['family'].reflector_name
|
||||||
family_option = self.storage.get_name(family)
|
return f"ParamDynOption({option_name}, '{param['suffix']}', {family_name}, {ends}"
|
||||||
return f"ParamDynOption({option_name}, '{param['suffix']}', {family_option}, notraisepropertyerror={param['notraisepropertyerror']}, todict={param['todict']})"
|
return f"ParamOption({option_name}, {ends}"
|
||||||
return f"ParamOption({option_name}, notraisepropertyerror={param['notraisepropertyerror']}, todict={param['todict']})"
|
|
||||||
|
|
||||||
|
|
||||||
class Family(Common):
|
class Family(Common):
|
||||||
|
"""Manage family
|
||||||
|
"""
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
elt,
|
elt,
|
||||||
storage,
|
storage,
|
||||||
is_leader,
|
|
||||||
path,
|
|
||||||
):
|
):
|
||||||
|
self.elt = elt
|
||||||
super().__init__(storage,
|
super().__init__(storage,
|
||||||
is_leader,
|
elt.__class__.__name__ == 'Leadership',
|
||||||
path,
|
|
||||||
)
|
)
|
||||||
self.children = []
|
self.children = []
|
||||||
self.elt = elt
|
|
||||||
|
|
||||||
def add(self, child):
|
def add(self, child):
|
||||||
|
"""Add a child
|
||||||
|
"""
|
||||||
self.children.append(child)
|
self.children.append(child)
|
||||||
|
|
||||||
def get(self):
|
def get(self):
|
||||||
|
"""Get tiramisu's object
|
||||||
|
"""
|
||||||
if not self.option_name:
|
if not self.option_name:
|
||||||
self.populate_attrib()
|
self.populate_attrib()
|
||||||
self.parse_children()
|
self.parse_children()
|
||||||
self.option_name = self.storage.get_name(self.path)
|
self.option_name = self.elt.reflector_name
|
||||||
object_name = self.get_object_name()
|
object_name = self.get_object_name()
|
||||||
attrib = self.get_attrib() + ', children=[' + ', '.join([child.get() for child in self.children]) + ']'
|
attrib = self.get_attrib() + \
|
||||||
|
', children=[' + ', '.join([child.get() for child in self.children]) + ']'
|
||||||
self.storage.text.append(f'{self.option_name} = {object_name}({attrib})')
|
self.storage.text.append(f'{self.option_name} = {object_name}({attrib})')
|
||||||
self.populate_informations()
|
self.populate_informations()
|
||||||
return self.option_name
|
return self.option_name
|
||||||
|
|
||||||
def populate_attrib(self):
|
def populate_attrib(self):
|
||||||
|
"""parse a populate attributes
|
||||||
|
"""
|
||||||
for key in self.get_attributes(self.elt):
|
for key in self.get_attributes(self.elt):
|
||||||
value = getattr(self.elt, key)
|
value = getattr(self.elt, key)
|
||||||
if key in FORCE_INFORMATIONS:
|
if key in FORCE_INFORMATIONS:
|
||||||
self.informations[key] = value
|
self.informations[key] = value
|
||||||
elif key == 'dynamic':
|
elif key == 'dynamic':
|
||||||
dynamic = self.storage.get(value).get()
|
dynamic = value.reflector_object.get()
|
||||||
self.attrib['suffixes'] = f"Calculation(func.calc_value, Params((ParamOption({dynamic}))))"
|
self.attrib['suffixes'] = \
|
||||||
|
f"Calculation(func.calc_value, Params((ParamOption({dynamic}))))"
|
||||||
else:
|
else:
|
||||||
self.attrib[key] = value
|
self.attrib[key] = value
|
||||||
|
|
||||||
def parse_children(self):
|
def parse_children(self):
|
||||||
|
"""parse current children
|
||||||
|
"""
|
||||||
if 'properties' in self.attrib:
|
if 'properties' in self.attrib:
|
||||||
self.attrib['properties'] = "'" + "', '".join(sorted(list(self.attrib['properties']))) + "'"
|
self.attrib['properties'] = "'" + \
|
||||||
|
"', '".join(sorted(list(self.attrib['properties']))) + "'"
|
||||||
if hasattr(self.elt, 'property'):
|
if hasattr(self.elt, 'property'):
|
||||||
for child in self.elt.property:
|
for child in self.elt.property:
|
||||||
self.populate_properties(child)
|
self.populate_properties(child)
|
||||||
|
|
||||||
def get_object_name(self):
|
def get_object_name(self):
|
||||||
|
"""Get family object's name
|
||||||
|
"""
|
||||||
if 'suffixes' in self.attrib:
|
if 'suffixes' in self.attrib:
|
||||||
return 'ConvertDynOptionDescription'
|
return 'ConvertDynOptionDescription'
|
||||||
if not self.is_leader:
|
if not self.is_leader:
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<rougail>
|
||||||
|
<variables>
|
||||||
|
<family name="general">
|
||||||
|
<variable name="mode_conteneur_actif" type="string" description="No change">
|
||||||
|
<value>non</value>
|
||||||
|
</variable>
|
||||||
|
</family>
|
||||||
|
<family name="general1">
|
||||||
|
<variable name="leader" type="string" description="leader" multi="True" hidden="True"/>
|
||||||
|
<variable name="follower1" type="string" description="follower1"/>
|
||||||
|
<variable name="follower2" type="string" description="follower2"/>
|
||||||
|
</family>
|
||||||
|
</variables>
|
||||||
|
|
||||||
|
<constraints>
|
||||||
|
<fill name="calc_val" target="follower1">
|
||||||
|
<param name="valeur">valfill</param>
|
||||||
|
</fill>
|
||||||
|
<fill name="calc_val" target="follower2">
|
||||||
|
<param type="variable">follower1</param>
|
||||||
|
</fill>
|
||||||
|
<group leader="leader">
|
||||||
|
<follower>follower1</follower>
|
||||||
|
<follower>follower2</follower>
|
||||||
|
</group>
|
||||||
|
</constraints>
|
||||||
|
</rougail>
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<rougail>
|
||||||
|
<variables>
|
||||||
|
<family name="general1">
|
||||||
|
<variable name="follower3" type="string" description="follower3"/>
|
||||||
|
</family>
|
||||||
|
</variables>
|
||||||
|
|
||||||
|
<constraints>
|
||||||
|
<group leader="leader">
|
||||||
|
<follower>follower3</follower>
|
||||||
|
</group>
|
||||||
|
</constraints>
|
||||||
|
</rougail>
|
|
@ -0,0 +1 @@
|
||||||
|
{"rougail.general.mode_conteneur_actif": "non", "rougail.general1.leader.leader": []}
|
|
@ -0,0 +1,20 @@
|
||||||
|
from importlib.machinery import SourceFileLoader
|
||||||
|
func = SourceFileLoader('func', 'tests/dictionaries/../eosfunc/test.py').load_module()
|
||||||
|
for key, value in dict(locals()).items():
|
||||||
|
if key != ['SourceFileLoader', 'func']:
|
||||||
|
setattr(func, key, value)
|
||||||
|
try:
|
||||||
|
from tiramisu3 import *
|
||||||
|
except:
|
||||||
|
from tiramisu import *
|
||||||
|
from rougail.tiramisu import ConvertDynOptionDescription
|
||||||
|
option_3 = StrOption(properties=frozenset({'mandatory', 'normal'}), name='mode_conteneur_actif', doc='No change', multi=False, default='non')
|
||||||
|
option_2 = OptionDescription(name='general', doc='general', properties=frozenset({'normal'}), children=[option_3])
|
||||||
|
option_6 = StrOption(properties=frozenset({'force_default_on_freeze', 'frozen'}), name='leader', doc='leader', multi=True)
|
||||||
|
option_7 = StrOption(properties=frozenset({'force_default_on_freeze', 'frozen', 'normal'}), name='follower1', doc='follower1', multi=True, default=Calculation(func.calc_val, Params((), kwargs={'valeur': ParamValue("valfill")})))
|
||||||
|
option_8 = StrOption(properties=frozenset({'force_default_on_freeze', 'frozen', 'normal'}), name='follower2', doc='follower2', multi=True, default=Calculation(func.calc_val, Params((ParamOption(option_7, notraisepropertyerror=False, todict=False)), kwargs={})))
|
||||||
|
option_9 = StrOption(properties=frozenset({'force_default_on_freeze', 'frozen', 'normal'}), name='follower3', doc='follower3', multi=True)
|
||||||
|
option_5 = Leadership(name='leader', doc='leader', properties=frozenset({'hidden', 'normal'}), children=[option_6, option_7, option_8, option_9])
|
||||||
|
option_4 = OptionDescription(name='general1', doc='general1', properties=frozenset({'normal'}), children=[option_5])
|
||||||
|
option_1 = OptionDescription(name='rougail', doc='rougail', children=[option_2, option_4])
|
||||||
|
option_0 = OptionDescription(name='baseoption', doc='baseoption', children=[option_1])
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<rougail>
|
||||||
|
<variables>
|
||||||
|
<family name="general">
|
||||||
|
<variable name="mode_conteneur_actif" type="string" description="No change">
|
||||||
|
<value>non</value>
|
||||||
|
</variable>
|
||||||
|
</family>
|
||||||
|
<family name="general1">
|
||||||
|
<variable name="leader" type="string" description="leader" multi="True"/>
|
||||||
|
<variable name="follower1" type="string" description="follower1"/>
|
||||||
|
<variable name="follower2" type="string" description="follower2"/>
|
||||||
|
</family>
|
||||||
|
</variables>
|
||||||
|
|
||||||
|
<constraints>
|
||||||
|
<fill name="calc_val" target="follower1">
|
||||||
|
<param name="valeur">valfill</param>
|
||||||
|
</fill>
|
||||||
|
<fill name="calc_val" target="follower2">
|
||||||
|
<param type="variable">follower1</param>
|
||||||
|
</fill>
|
||||||
|
<group leader="leader" name="leadership">
|
||||||
|
<follower>follower1</follower>
|
||||||
|
<follower>follower2</follower>
|
||||||
|
</group>
|
||||||
|
</constraints>
|
||||||
|
</rougail>
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<rougail>
|
||||||
|
<variables>
|
||||||
|
<family name="general1">
|
||||||
|
<variable name="follower3" type="string" description="follower3"/>
|
||||||
|
</family>
|
||||||
|
</variables>
|
||||||
|
|
||||||
|
<constraints>
|
||||||
|
<group leader="leader">
|
||||||
|
<follower>follower3</follower>
|
||||||
|
</group>
|
||||||
|
</constraints>
|
||||||
|
</rougail>
|
|
@ -0,0 +1 @@
|
||||||
|
{"rougail.general.mode_conteneur_actif": "non", "rougail.general1.leadership.leader": []}
|
|
@ -0,0 +1,20 @@
|
||||||
|
from importlib.machinery import SourceFileLoader
|
||||||
|
func = SourceFileLoader('func', 'tests/dictionaries/../eosfunc/test.py').load_module()
|
||||||
|
for key, value in dict(locals()).items():
|
||||||
|
if key != ['SourceFileLoader', 'func']:
|
||||||
|
setattr(func, key, value)
|
||||||
|
try:
|
||||||
|
from tiramisu3 import *
|
||||||
|
except:
|
||||||
|
from tiramisu import *
|
||||||
|
from rougail.tiramisu import ConvertDynOptionDescription
|
||||||
|
option_3 = StrOption(properties=frozenset({'mandatory', 'normal'}), name='mode_conteneur_actif', doc='No change', multi=False, default='non')
|
||||||
|
option_2 = OptionDescription(name='general', doc='general', properties=frozenset({'normal'}), children=[option_3])
|
||||||
|
option_6 = StrOption(name='leader', doc='leader', multi=True)
|
||||||
|
option_7 = StrOption(properties=frozenset({'normal'}), name='follower1', doc='follower1', multi=True, default=Calculation(func.calc_val, Params((), kwargs={'valeur': ParamValue("valfill")})))
|
||||||
|
option_8 = StrOption(properties=frozenset({'normal'}), name='follower2', doc='follower2', multi=True, default=Calculation(func.calc_val, Params((ParamOption(option_7, notraisepropertyerror=False, todict=False)), kwargs={})))
|
||||||
|
option_9 = StrOption(properties=frozenset({'normal'}), name='follower3', doc='follower3', multi=True)
|
||||||
|
option_5 = Leadership(name='leadership', doc='leadership', properties=frozenset({'normal'}), children=[option_6, option_7, option_8, option_9])
|
||||||
|
option_4 = OptionDescription(name='general1', doc='general1', properties=frozenset({'normal'}), children=[option_5])
|
||||||
|
option_1 = OptionDescription(name='rougail', doc='rougail', children=[option_2, option_4])
|
||||||
|
option_0 = OptionDescription(name='baseoption', doc='baseoption', children=[option_1])
|
Loading…
Reference in New Issue