111 lines
3.5 KiB
Python
111 lines
3.5 KiB
Python
"""Rougail method
|
|
|
|
Created by:
|
|
EOLE (http://eole.orion.education.fr)
|
|
Copyright (C) 2005-2018
|
|
|
|
Forked by:
|
|
Cadoles (http://www.cadoles.com)
|
|
Copyright (C) 2019-2021
|
|
|
|
Silique (https://www.silique.fr)
|
|
Copyright (C) 2022-2025
|
|
|
|
This program is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU Lesser General Public License as published by the
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
"""
|
|
|
|
from tiramisu import Config
|
|
from warnings import warn
|
|
|
|
from .convert import RougailConvert
|
|
from .config import RougailConfig
|
|
from .utils import normalize_family
|
|
from .object_model import CONVERT_OPTION
|
|
from .user_datas import UserDatas
|
|
from .__version__ import __version__
|
|
|
|
|
|
def tiramisu_display_name(
|
|
kls,
|
|
subconfig,
|
|
with_quote: bool = False,
|
|
) -> str:
|
|
"""Replace the Tiramisu display_name function to display path + description"""
|
|
config_bag = subconfig.config_bag
|
|
context = config_bag.context
|
|
values = context.get_values()
|
|
context_subconfig = context.get_root(config_bag)
|
|
doc = values.get_information(subconfig, "doc", None)
|
|
comment = doc if doc and doc != kls.impl_getname() else ""
|
|
if "{{ identifier }}" in comment and subconfig.identifiers:
|
|
comment = comment.replace("{{ identifier }}", str(subconfig.identifiers[-1]))
|
|
path_in_description = values.get_information(context_subconfig, 'path_in_description', True)
|
|
if path_in_description or not comment:
|
|
comment = f" ({comment})" if comment else ""
|
|
if path_in_description is False:
|
|
path = kls.impl_getname()
|
|
else:
|
|
path = kls.impl_getpath()
|
|
if "{{ identifier }}" in path and subconfig.identifiers:
|
|
path = path.replace(
|
|
"{{ identifier }}", normalize_family(str(subconfig.identifiers[-1]))
|
|
)
|
|
else:
|
|
path = comment
|
|
comment = ""
|
|
if with_quote:
|
|
return f'"{path}"{comment}'
|
|
return f"{path}{comment}"
|
|
|
|
|
|
class Rougail(UserDatas):
|
|
"""Main Rougail object"""
|
|
|
|
def __init__(
|
|
self,
|
|
rougailconfig=None,
|
|
) -> None:
|
|
if rougailconfig is None:
|
|
rougailconfig = RougailConfig
|
|
self.rougailconfig = rougailconfig
|
|
self.converted = RougailConvert(self.rougailconfig)
|
|
self.config = None
|
|
|
|
def run(self):
|
|
"""Get Tiramisu Config"""
|
|
if not self.config:
|
|
tiram_obj = self.converted.save()
|
|
optiondescription = {}
|
|
custom_types = {
|
|
custom.__name__: custom
|
|
for custom in self.rougailconfig["custom_types"].values()
|
|
}
|
|
exec(tiram_obj, custom_types, optiondescription) # pylint: disable=W0122
|
|
self.config = Config(
|
|
optiondescription["option_0"],
|
|
display_name=tiramisu_display_name,
|
|
)
|
|
self.config.property.read_write()
|
|
return self.config
|
|
|
|
def get_config(self):
|
|
warn(
|
|
"get_config is deprecated, use run instead",
|
|
DeprecationWarning,
|
|
stacklevel=2,
|
|
)
|
|
return self.run()
|
|
|
|
|
|
__all__ = ("Rougail", "RougailConfig")
|