aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2016-10-04 15:28:06 +0800
committerAaron LI <aaronly.me@outlook.com>2016-10-04 15:28:06 +0800
commit7370df62f790e5cbf5866bb3dd333698ddd7bb52 (patch)
treebe4c6d81f6fa52af7390029285f90228516decf6
parent27873cfb348d0263dc6015b13d82d10806664c41 (diff)
downloadfg21sim-7370df62f790e5cbf5866bb3dd333698ddd7bb52.tar.bz2
Rewrite configs/validate.py to check whole config without break
-rw-r--r--fg21sim/configs/validate.py75
1 files changed, 52 insertions, 23 deletions
diff --git a/fg21sim/configs/validate.py b/fg21sim/configs/validate.py
index c4736dc..8962780 100644
--- a/fg21sim/configs/validate.py
+++ b/fg21sim/configs/validate.py
@@ -11,57 +11,79 @@ a config item against its context,
Therefore, they are very different to the checker function of `Validator`.
"""
+import os
+
from ..errors import ConfigError
def _check_missing(configs, keys):
- """Check whether the mandatory config is provided by the user."""
+ """Check whether the required config is provided by the user."""
+ results = {}
if isinstance(keys, str):
keys = [keys, ]
for key in keys:
if not configs.getn(key):
- raise ConfigError('Required config "%s" missing value' % key)
- return True
+ results[key] = "Value required but missing"
+ return results
-def check_common(configs):
- """Check the "[common]" section of the configurations."""
- _check_missing(configs, "common/data_dir")
- return True
+def _check_existence(configs, keys):
+ """Check whether the file/directory corresponding to the config exists."""
+ if isinstance(keys, str):
+ keys = [keys, ]
+ results = {}
+ for key in keys:
+ res = _check_missing(configs, key)
+ if res == {}:
+ # Both "key" and "dir_key" are valid
+ path = configs.get_path(key)
+ if not os.path.exists(path):
+ res[key] = 'File/directory not exist: "%s"' % path
+ results.update(res)
+ return results
def check_frequency(configs):
"""Check the "[frequency]" section of the configurations."""
+ results = {}
if configs.getn("frequency/type") == "custom":
- _check_missing(configs, "frequency/frequencies")
+ results.update(_check_missing(configs, "frequency/frequencies"))
elif configs.getn("frequency/type") == "calc":
- _check_missing(configs, ["frequency/start",
- "frequency/stop",
- "frequency/step"])
- return True
+ results.update(
+ _check_missing(configs, ["frequency/start",
+ "frequency/stop",
+ "frequency/step"])
+ )
+ return results
def check_output(configs):
"""Check the "[output]" section of the configurations."""
+ results = {}
if configs.getn("output/combine"):
- _check_missing(configs, "output/output_dir")
- return True
+ results.update(_check_missing(configs, "output/output_dir"))
+ return results
def check_galactic_synchrotron(configs):
"""Check the "[galactic][synchrotron]" section of the configurations."""
- _check_missing(configs, ["galactic/synchrotron/template",
- "galactic/synchrotron/template_freq",
- "galactic/synchrotron/template_unit",
- "galactic/synchrotron/indexmap"])
+ results = {}
+ results.update(
+ _check_missing(configs, ["galactic/synchrotron/template_freq",
+ "galactic/synchrotron/template_unit"])
+ )
+ results.update(
+ _check_existence(configs, ["galactic/synchrotron/template",
+ "galactic/synchrotron/indexmap"])
+ )
if configs.getn("galactic/synchrotron/save"):
- _check_missing(configs, "galactic/synchrotron/output_dir")
- return True
+ results.update(_check_missing(configs,
+ "galactic/synchrotron/output_dir"))
+ return results
# Available checkers to validate the configurations
_CHECKERS = [
- check_common,
check_frequency,
check_output,
check_galactic_synchrotron,
@@ -95,6 +117,13 @@ def validate_configs(configs, checkers=_CHECKERS):
If any configuration failed the check, a `ConfigError` with
details will be raised.
"""
+ results = {}
for checker in checkers:
- checker(configs)
- return True
+ results.update(checker(configs))
+ #
+ if results == {}:
+ return True
+ else:
+ err_msg = "\n".join(['Config "{key}": {msg}'.format(key=key, msg=msg)
+ for key, msg in results.items()])
+ raise ConfigError(err_msg)