aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/configs
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2016-11-02 19:51:17 +0800
committerAaron LI <aaronly.me@outlook.com>2016-11-02 19:51:17 +0800
commit3cbceb83f5368af19b6c15b6890543459d011f75 (patch)
treeecbb478579af2c779dbf58181d97587423c58e45 /fg21sim/configs
parent44be74b4e57d70f6ddfb599b97688f9dc2359e29 (diff)
downloadfg21sim-3cbceb83f5368af19b6c15b6890543459d011f75.tar.bz2
configs/manager.py: Keep a copy of default configs; Add "dump()"
* Keep a copy of the default configurations from the specifications * Add "dump()" method to dump the configurations (as well as the default configurations) as plain Python dictionary * Add new parameter "from_default" to methods "get()" and "getn()" to allow get the config value from the default configurations
Diffstat (limited to 'fg21sim/configs')
-rw-r--r--fg21sim/configs/manager.py47
1 files changed, 42 insertions, 5 deletions
diff --git a/fg21sim/configs/manager.py b/fg21sim/configs/manager.py
index a023a38..d406dc7 100644
--- a/fg21sim/configs/manager.py
+++ b/fg21sim/configs/manager.py
@@ -85,7 +85,10 @@ class ConfigManager:
list_values=False, _inspec=True)
configs_default = ConfigObj(interpolation=False,
configspec=self._configspec)
- self._config = self._validate(configs_default)
+ # Keep a copy of the default configurations
+ self._config_default = self._validate(configs_default)
+ # NOTE: `_config_default.copy()` only returns a *shallow* copy.
+ self._config = ConfigObj(self._config_default, interpolation=False)
if userconfig:
self.read_userconfig(userconfig)
@@ -164,11 +167,15 @@ class ConfigManager:
raise ConfigError(error_msg)
return config
- def get(self, key, fallback=None):
+ def get(self, key, fallback=None, from_default=False):
"""Get config value by key."""
- return self._config.get(key, fallback)
+ if from_default:
+ config = self._config_default
+ else:
+ config = self._config
+ return config.get(key, fallback)
- def getn(self, key, sep="/"):
+ def getn(self, key, sep="/", from_default=False):
"""Get the config value from the nested dictionary configs using
a list of keys or a "sep"-separated keys strings.
@@ -183,6 +190,10 @@ class ConfigManager:
If the above "keys" is a string, then this parameter specify
the character used to separate the multi-level keys.
This parameter should be a string of length 1 (i.e., a character).
+ from_default : bool, optional
+ If True, get the config option value from the *default*
+ configurations, other than the configurations merged with user
+ configurations (default).
References
----------
@@ -193,7 +204,13 @@ class ConfigManager:
raise ValueError("Invalid parameter 'sep': %s" % sep)
if isinstance(key, str):
key = key.split(sep)
- return reduce(dict.get, key, self._config)
+ #
+ if from_default:
+ config = self._config_default
+ else:
+ config = self._config
+ #
+ return reduce(dict.get, key, config)
def get_path(self, key):
"""Return the absolute path of the file/directory specified by the
@@ -298,3 +315,23 @@ class ConfigManager:
"handlers": handlers,
}
return logconf
+
+ def dump(self, from_default=False):
+ """Dump the configurations as plain Python dictionary.
+
+ Parameters
+ ----------
+ from_default : bool, optional
+ If True, dump the default configurations (as specified by the
+ bundled specifications); otherwise, dump the configurations with
+ user-supplied options merged (default).
+
+ NOTE
+ ----
+ The original option orders are missing.
+ """
+ if from_default:
+ config = self._config_default
+ else:
+ config = self._config
+ return config.dict()