Skip to content
Snippets Groups Projects

:hammer: rewrote expanding to allow blacklisting

Merged Vincent Hatakeyama requested to merge topic/default/blacklisting into branch/default
Files
2
+ 64
56
"""Functions to read configuration.
"""Functions to read configuration.
"""
"""
 
from collections import defaultdict
import configparser
import configparser
import logging
import logging
import os
import os
@@ -7,6 +8,8 @@
@@ -7,6 +8,8 @@
from glob import glob
from glob import glob
from typing import List, Optional
from typing import List, Optional
 
SECTION = "odoo_scripts"
 
_logger = logging.getLogger(__name__)
_logger = logging.getLogger(__name__)
@@ -27,6 +30,8 @@
@@ -27,6 +30,8 @@
At the moment, only read from `setup.cfg`.
At the moment, only read from `setup.cfg`.
"""
"""
def __init__(self, base_path: str = None):
def __init__(
 
self, path: str = None, blacklist: str = None, read: str = None
 
):
self._expanded_configuration = dict()
self._expanded_configuration = dict()
setup_path = "setup.cfg"
setup_path = "setup.cfg"
@@ -31,10 +36,9 @@
@@ -31,10 +36,9 @@
self._expanded_configuration = dict()
self._expanded_configuration = dict()
setup_path = "setup.cfg"
setup_path = "setup.cfg"
if base_path:
if path:
setup_path = os.path.join(base_path, setup_path)
setup_path = os.path.join(path, setup_path)
section = "odoo_scripts"
config_parser = configparser.ConfigParser()
config_parser = configparser.ConfigParser()
if not os.path.exists(setup_path):
if not os.path.exists(setup_path):
_logger.warning("Missing %s", setup_path)
_logger.warning("Missing %s", setup_path)
else:
else:
config_parser.read(setup_path)
config_parser.read(setup_path)
@@ -36,8 +40,33 @@
@@ -36,8 +40,33 @@
config_parser = configparser.ConfigParser()
config_parser = configparser.ConfigParser()
if not os.path.exists(setup_path):
if not os.path.exists(setup_path):
_logger.warning("Missing %s", setup_path)
_logger.warning("Missing %s", setup_path)
else:
else:
config_parser.read(setup_path)
config_parser.read(setup_path)
 
section = (
 
config_parser[SECTION] if SECTION in config_parser else dict()
 
)
 
 
# read expanded configurations information
 
expanded_info = defaultdict(dict)
 
for key in section:
 
if key.startswith("expand."):
 
remaining_key = key.split(".")[1:]
 
expanded_info[remaining_key[0]][
 
remaining_key[1]
 
] = section.get(key)
 
 
for name, value in expanded_info.items():
 
if "path" not in value:
 
_logger.error("Expansion without path for %s", name)
 
raise Exception("Expansion without path for %s" % name)
 
else:
 
if not blacklist or value["path"] not in glob(blacklist):
 
# read expanded configurations
 
self._expanded_configuration[name] = Configuration(**value)
 
else:
 
_logger.info(
 
"Ignoring %s due to blacklisting", value["path"]
 
)
def set_from_glob_values(
def set_from_glob_values(
base: Optional[str], glob_values: List[str]
base: Optional[str], glob_values: List[str]
@@ -51,10 +80,9 @@
@@ -51,10 +80,9 @@
result_set.add(file)
result_set.add(file)
return result_set
return result_set
def get_expanded_configuration(path_name: str):
def toread(key: str) -> bool:
if path_name not in self._expanded_configuration:
"""Return true if value of key is to be read from the file"""
self._expanded_configuration[path_name] = Configuration(
if read:
path_name
return key in read.split(",")
)
return True
return self._expanded_configuration[path_name]
@@ -60,2 +88,3 @@
@@ -60,2 +88,3 @@
 
# those keys are path to files (glob compatible)
for key in ("modules", "dependencies", "other_sources"):
for key in ("modules", "dependencies", "other_sources"):
@@ -61,19 +90,15 @@
@@ -61,19 +90,15 @@
for key in ("modules", "dependencies", "other_sources"):
for key in ("modules", "dependencies", "other_sources"):
# get the values from this configuration
set_values = set()
values = config_parser.get(section, key, fallback="").split()
if toread(key):
set_values = set_from_glob_values(base_path, values)
# add any expanded values
# handle expand, getting value from another configuration
for config in self._expanded_configuration.values():
expand_value = config_parser.get(
set_values.update(getattr(config, key))
section, key + ".expand", fallback=None
# get the values from this configuration
)
values = section.get(key, "").split()
if expand_value:
set_values.update(set_from_glob_values(path, values))
for element in expand_value.split():
set_values.update(
getattr(get_expanded_configuration(element), key)
)
setattr(self, key, list(set_values))
setattr(self, key, list(set_values))
def key_format(a_key: str) -> str:
def key_format(a_key: str) -> str:
"""Replace invalid characters in an attribute"""
"""Replace invalid characters in an attribute"""
return a_key.replace("-", "_").replace(".", "_")
return a_key.replace("-", "_").replace(".", "_")
@@ -74,9 +99,10 @@
@@ -74,9 +99,10 @@
setattr(self, key, list(set_values))
setattr(self, key, list(set_values))
def key_format(a_key: str) -> str:
def key_format(a_key: str) -> str:
"""Replace invalid characters in an attribute"""
"""Replace invalid characters in an attribute"""
return a_key.replace("-", "_").replace(".", "_")
return a_key.replace("-", "_").replace(".", "_")
 
# those keys are list of values
for key in ("module_list", "module_list_tests", "pg.extensions"):
for key in ("module_list", "module_list_tests", "pg.extensions"):
value = list()
value = list()
formatted_key = key_format(key)
formatted_key = key_format(key)
@@ -80,18 +106,11 @@
@@ -80,18 +106,11 @@
for key in ("module_list", "module_list_tests", "pg.extensions"):
for key in ("module_list", "module_list_tests", "pg.extensions"):
value = list()
value = list()
formatted_key = key_format(key)
formatted_key = key_format(key)
# add any expanded value
if toread(key):
expand_value = config_parser.get(
# add any expanded values
section, key + ".expand", fallback=None
for config in self._expanded_configuration.values():
)
value.extend(getattr(config, formatted_key))
if expand_value:
# add local values
for element in expand_value.split():
value.extend(section.get(key, "").split())
value.extend(
getattr(
get_expanded_configuration(element), formatted_key
)
)
# add local values
value += config_parser.get(section, key, fallback="").split()
# then set it
# then set it
setattr(self, formatted_key, value)
setattr(self, formatted_key, value)
@@ -96,9 +115,5 @@
@@ -96,9 +115,5 @@
# then set it
# then set it
setattr(self, formatted_key, value)
setattr(self, formatted_key, value)
for key in ("db_user", "db_password", "load-language"):
setattr(
# those keys are single string values, no expand
self,
key_format(key),
config_parser.get(section, key, fallback=None),
)
@@ -104,5 +119,6 @@
@@ -104,5 +119,6 @@
self.registry = config_parser.get(
for key in ("db_user", "db_password", "load-language"):
section, "registry", fallback="registry.xcg.io"
setattr(self, key_format(key), section.get(key, None))
)
 
self.registry = section.get("registry", "registry.xcg.io")
project_path = os.path.realpath(".")
project_path = os.path.realpath(".")
@@ -108,10 +124,6 @@
@@ -108,10 +124,6 @@
project_path = os.path.realpath(".")
project_path = os.path.realpath(".")
self.image = config_parser.get(
self.image = section.get("image", os.path.basename(project_path))
section, "image", fallback=os.path.basename(project_path)
self.odoo_type = section.get("odoo_type", "odoo7")
)
self.odoo_type = config_parser.get(
section, "odoo_type", fallback="odoo7"
)
if self.odoo_type not in (
if self.odoo_type not in (
"odoo7",
"odoo7",
"odoo8",
"odoo8",
@@ -120,12 +132,8 @@
@@ -120,12 +132,8 @@
"odoo13",
"odoo13",
):
):
_logger.warning("Unexpected odoo_type: %s", self.odoo_type)
_logger.warning("Unexpected odoo_type: %s", self.odoo_type)
self.postgresql_version = config_parser.get(
self.postgresql_version = section.get("postgresql_version", "9.6")
section, "postgresql_version", fallback="9.6"
self.start_py3o = section.get("start_py3o", "no") in ("yes", "true")
)
self.start_py3o = config_parser.get(
section, "start_py3o", fallback="no"
) in ("yes", "true")
def main(argv=None):
def main(argv=None):
Loading