diff options
author | John Estabrook <jestabro@vyos.io> | 2020-08-30 08:22:32 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2020-08-30 09:56:46 -0500 |
commit | b40c52682a25664f7018ab8b4e5ba6f467f10d17 (patch) | |
tree | f582fdaf8c0aa5ce769d63ab54518233fa2fb4bc /python/vyos/xml/definition.py | |
parent | bab1534e0fc1e6da538414b8b032342eb2598f03 (diff) | |
download | vyos-1x-b40c52682a25664f7018ab8b4e5ba6f467f10d17.tar.gz vyos-1x-b40c52682a25664f7018ab8b4e5ba6f467f10d17.zip |
config: T2636: get_config_dict() returns a list on multi node by default
Unless no_multi_convert is True, a single valued multi node will be
returned as a list by get_config_dict(). Modification of Thomas Mangin's
version.
Diffstat (limited to 'python/vyos/xml/definition.py')
-rw-r--r-- | python/vyos/xml/definition.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/python/vyos/xml/definition.py b/python/vyos/xml/definition.py index 098e64f7e..6d6fcb5c7 100644 --- a/python/vyos/xml/definition.py +++ b/python/vyos/xml/definition.py @@ -281,6 +281,23 @@ class XML(dict): return _flatten(lpath, len(lpath), d) + def multi_to_list(self, lpath, conf): + r = {} + for k in conf: + # key mangling could also be done here + # it would prevent two parsing of the config tree + # under = k.replace('-','_') + under = k + fpath = lpath + [k] + if isinstance(conf[k],dict): + r[under] = self.multi_to_list(fpath, conf[k]) + continue + value = conf[k] + if self.is_multi(fpath) and not isinstance(value, list): + value = [value] + r[under] = value + return r + # from functools import lru_cache # @lru_cache(maxsize=100) # XXX: need to use cachetool instead - for later |