2023-10-12 08:17:30 +02:00
from tiramisu import *
from tiramisu . setting import ALLOWED_LEADER_PROPERTIES
ALLOWED_LEADER_PROPERTIES . add ( " basic " )
ALLOWED_LEADER_PROPERTIES . add ( " standard " )
ALLOWED_LEADER_PROPERTIES . add ( " advanced " )
2023-09-04 19:18:40 +02:00
from importlib . machinery import SourceFileLoader as _SourceFileLoader
from importlib . util import spec_from_loader as _spec_from_loader , module_from_spec as _module_from_spec
2023-10-12 08:17:30 +02:00
global func
func = { ' calc_value ' : calc_value }
2023-09-04 19:18:40 +02:00
def _load_functions ( path ) :
global _SourceFileLoader , _spec_from_loader , _module_from_spec , func
loader = _SourceFileLoader ( ' func ' , path )
spec = _spec_from_loader ( loader . name , loader )
func_ = _module_from_spec ( spec )
loader . exec_module ( func_ )
for function in dir ( func_ ) :
if function . startswith ( ' _ ' ) :
continue
2023-10-12 08:17:30 +02:00
func [ function ] = getattr ( func_ , function )
2023-09-04 19:18:40 +02:00
_load_functions ( ' tests/dictionaries/../eosfunc/test.py ' )
from jinja2 import StrictUndefined , DictLoader
from jinja2 . sandbox import SandboxedEnvironment
from rougail . annotator . variable import CONVERT_OPTION
2023-10-12 08:17:30 +02:00
from tiramisu . error import ValueWarning
2023-09-04 19:18:40 +02:00
def jinja_to_function ( __internal_jinja , __internal_type , __internal_multi , * * kwargs ) :
2023-10-12 08:17:30 +02:00
global ENV , CONVERT_OPTION
2023-09-04 19:18:40 +02:00
kw = { }
for key , value in kwargs . items ( ) :
if ' . ' in key :
c_kw = kw
path , var = key . rsplit ( ' . ' , 1 )
for subkey in path . split ( ' . ' ) :
c_kw = c_kw . setdefault ( subkey , { } )
c_kw [ var ] = value
else :
kw [ key ] = value
2023-10-12 08:17:30 +02:00
values = ENV . get_template ( __internal_jinja ) . render ( kw , * * func ) . strip ( )
2023-09-04 19:18:40 +02:00
convert = CONVERT_OPTION [ __internal_type ] . get ( ' func ' , str )
if __internal_multi :
2023-10-12 08:17:30 +02:00
return [ convert ( val ) for val in values . split ( ) ]
values = convert ( values )
return values if values != ' ' and values != ' None ' else None
def variable_to_property ( prop , value ) :
return prop if value else None
def jinja_to_property ( prop , * * kwargs ) :
value = func [ ' jinja_to_function ' ] ( * * kwargs )
return func [ ' variable_to_property ' ] ( prop , value is not None )
def jinja_to_property_help ( prop , * * kwargs ) :
value = func [ ' jinja_to_function ' ] ( * * kwargs )
return ( prop , f ' " { prop } " ( { value } ) ' )
def valid_with_jinja ( warnings_only = False , * * kwargs ) :
global ValueWarning
value = func [ ' jinja_to_function ' ] ( * * kwargs )
2023-09-04 19:18:40 +02:00
if value :
2023-10-12 08:17:30 +02:00
if warnings_only :
raise ValueWarning ( value )
else :
raise ValueError ( value )
func [ ' jinja_to_function ' ] = jinja_to_function
func [ ' jinja_to_property ' ] = jinja_to_property
func [ ' jinja_to_property_help ' ] = jinja_to_property_help
func [ ' variable_to_property ' ] = variable_to_property
func [ ' valid_with_jinja ' ] = valid_with_jinja
2023-09-04 19:18:40 +02:00
dict_env = { }
2023-10-12 08:17:30 +02:00
dict_env [ ' validators_rougail.general.mode_conteneur_actif ' ] = " { % i f rougail.general.mode_conteneur_actif == rougail.general.mode_conteneur_actif1 % } \n the value must be different than \" {{ rougail.general.mode_conteneur_actif}} \" \n { % e ndif % } \n "
2023-09-04 19:18:40 +02:00
ENV = SandboxedEnvironment ( loader = DictLoader ( dict_env ) , undefined = StrictUndefined )
2023-10-12 08:17:30 +02:00
ENV . filters = func
2023-09-04 19:18:40 +02:00
ENV . compile_templates ( ' jinja_caches ' , zip = None )
2023-10-12 08:17:30 +02:00
option_4 = StrOption ( name = " mode_conteneur_actif1 " , doc = " No change " , default = " non " , properties = frozenset ( { " mandatory " , " standard " } ) )
option_3 = StrOption ( name = " mode_conteneur_actif " , doc = " No change " , default = " oui " , validators = [ Calculation ( func [ ' valid_with_jinja ' ] , Params ( ( ) , kwargs = { ' __internal_jinja ' : ParamValue ( " validators_rougail.general.mode_conteneur_actif " ) , ' __internal_type ' : ParamValue ( " string " ) , ' __internal_multi ' : ParamValue ( False ) , ' rougail.general.mode_conteneur_actif ' : ParamSelfOption ( whole = False ) , ' rougail.general.mode_conteneur_actif1 ' : ParamOption ( option_4 ) } ) ) ] , properties = frozenset ( { " mandatory " , " standard " } ) )
optiondescription_2 = OptionDescription ( name = " general " , doc = " general " , children = [ option_3 , option_4 ] , properties = frozenset ( { " standard " } ) )
optiondescription_1 = OptionDescription ( name = " rougail " , doc = " rougail " , children = [ optiondescription_2 ] , properties = frozenset ( { " standard " } ) )
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 ] )