Ejemplo n.º 1
0
 def get_place(self, build):
     place = build
     for k in self._directories.keys():
         if place == k:
             if not U.is_absolute_path(k):
                 place = self._abs_base_path + '/' + str(k)
     return place
Ejemplo n.º 2
0
    def get_functor_base_path(self):
        if U.is_absolute_path(self._functor_base_path):
            return self._functor_base_path

        return self._base_path + '/' + self._functor_base_path
Ejemplo n.º 3
0
    def get_cubes_dir(self):
        if U.is_absolute_path(self._cubes_dir):
            return self._cubes_dir

        return self._base_path + '/' + self._cubes_dir
Ejemplo n.º 4
0
    def get_analyzer_dir(self):
        if U.is_absolute_path(self._analyzer_dir):
            return self._analyzer_dir

        return self._base_path + '/' + self._analyzer_dir