12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import logging
- import os
- import yaml
- from core.Utils import Utils
- logging.basicConfig()
- logger = logging.getLogger("kalliope")
- class YAMLFileNotFound(Exception):
- pass
- class YAMLLoader:
- def __init__(self):
- pass
- @classmethod
- def get_config(cls, yaml_file):
- """
- Load settings file
- :return: cfg : the configuration file
- """
- current_dir = os.path.dirname(os.path.abspath(__file__))
- logger.debug("Current dir: %s " % current_dir)
- root_dir = os.path.join(current_dir, "../../")
- root_dir = os.path.normpath(root_dir)
- logger.debug("Root dir: %s " % root_dir)
- file_path_to_load = os.path.join(root_dir, yaml_file)
- logger.debug("File path to load: %s " % file_path_to_load)
- if os.path.isfile(yaml_file):
- # data = IncludeLoader(open(file_path_to_load, 'r')).get_data()
- # print Utils.print_yaml_nicely(data)
- data = IncludeImport(file_path_to_load).get_data()
- return data
- else:
- raise YAMLFileNotFound("File %s not found" % file_path_to_load)
- class IncludeLoader(yaml.Loader):
- def __init__(self, *args, **kwargs):
- super(IncludeLoader, self).__init__(*args, **kwargs)
- self.add_constructor('#include', self._include)
- if 'root' in kwargs:
- self.root = kwargs['root']
- elif isinstance(self.stream, file):
- self.root = os.path.dirname(self.stream.name)
- else:
- self.root = os.path.curdir
- def _include(self, loader, node):
- oldRoot = self.root
- filename = os.path.join(self.root, loader.construct_scalar(node))
- self.root = os.path.dirname(filename)
- data = yaml.load(open(filename, 'r'))
- self.root = oldRoot
- return data
- class IncludeImport(object):
- def __init__(self, file_path):
- """
- Load yaml file, with includes statement
- :param file_path: path to the yaml file to load
- """
- self.data = yaml.load(open(file_path, 'r'))
- # print "content: %s" % self.data
- if isinstance(self.data, list):
- for el in self.data:
- if "includes" in el:
- for inc in el["includes"]:
- self.update(yaml.load(open(inc)))
- def get_data(self):
- return self.data
- def update(self, data_to_add):
- # print "cur_data: %s" % self.data
- # print "data to add %s" % data_to_add
- # we add each synapse inside the extended brain into the main brain data
- for el in data_to_add:
- self.data.append(el)
- # print "final data: %s" % self.data
|