[generator] Fixes for production maps generation.

This commit is contained in:
Maksim Andrianov 2020-09-25 03:45:45 +03:00 committed by mpimenov
parent bde7e3b234
commit d79084767f
5 changed files with 19 additions and 9 deletions

View file

@ -250,7 +250,7 @@ std::string ReadAll(std::string const & filename)
return std::string(std::istreambuf_iterator<char>(file), std::istreambuf_iterator<char>());
}
bool InitClassificator(std::string const & resourcePath)
void InitClassificator(std::string const & resourcePath)
{
classificator::LoadTypes(
ReadAll(base::JoinPath(resourcePath, "classificator.txt")),

View file

@ -21,6 +21,7 @@ with chdir(os.path.abspath(os.path.dirname(__file__))):
description="This package contains tools for generating maps with Apache Airflow.",
url="https://github.com/mapsme",
package_dir={"airmaps": ""},
package_data={"": ["var/**/*"]},
packages=[
"airmaps",
"airmaps.dags",

View file

@ -489,12 +489,21 @@ class Env:
@staticmethod
def setup_generator_tool() -> AnyStr:
logger.info("Check generator tool ...")
gen_tool_path = shutil.which(settings.GEN_TOOL)
if gen_tool_path is None:
logger.info(f"Find generator tool in {settings.BUILD_PATH} ...")
gen_tool_path = find_executable(settings.BUILD_PATH, settings.GEN_TOOL)
logger.info(f"Generator found - {gen_tool_path}")
return gen_tool_path
exceptions = []
for gen_tool in settings.POSSIBLE_GEN_TOOL_NAMES:
gen_tool_path = shutil.which(gen_tool)
if gen_tool_path is None:
logger.info(f"Looking for generator tool in {settings.BUILD_PATH} ...")
try:
gen_tool_path = find_executable(settings.BUILD_PATH, gen_tool)
except FileNotFoundError as e:
exceptions.append(e)
continue
logger.info(f"Generator tool found - {gen_tool_path}")
return gen_tool_path
raise Exception(exceptions)
@staticmethod
def setup_osm_tools() -> Dict[AnyStr, AnyStr]:

View file

@ -128,7 +128,7 @@ STATS_TYPES_CONFIG = os.path.join(ETC_DIR, "stats_types_config.txt")
# Other variables:
PLANET = "planet"
GEN_TOOL = "generator_tool"
POSSIBLE_GEN_TOOL_NAMES = ("generator_tool", "omim-generator_tool")
VERSION_FILE_NAME = "version.txt"
# Osm tools:

View file

@ -21,7 +21,7 @@ with chdir(os.path.abspath(os.path.dirname(__file__))):
description="This package contains tools for maps generation.",
url="https://github.com/mapsme",
package_dir={"maps_generator": ""},
package_data={"": ["var/*"]},
package_data={"": ["var/**/*"]},
packages=[
"maps_generator",
"maps_generator.generator",