87 lines
1.9 KiB
C++
87 lines
1.9 KiB
C++
#pragma once
|
|
|
|
#include "base/file_name_utils.hpp"
|
|
#include "base/logging.hpp"
|
|
|
|
#include "defines.hpp"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace feature
|
|
{
|
|
struct GenerateInfo
|
|
{
|
|
enum class NodeStorageType
|
|
{
|
|
Memory,
|
|
Index,
|
|
File
|
|
};
|
|
|
|
enum class OsmSourceType
|
|
{
|
|
XML,
|
|
O5M
|
|
};
|
|
|
|
// Directory for .mwm.tmp files.
|
|
std::string m_tmpDir;
|
|
|
|
// Directory for result .mwm files.
|
|
std::string m_targetDir;
|
|
|
|
// Directory for all files.
|
|
std::string m_dataPath;
|
|
|
|
NodeStorageType m_nodeStorageType;
|
|
OsmSourceType m_osmFileType;
|
|
std::string m_osmFileName;
|
|
|
|
bool m_preloadCache = false;
|
|
bool m_verbose = false;
|
|
|
|
GenerateInfo() = default;
|
|
|
|
void SetOsmFileType(std::string const & type)
|
|
{
|
|
if (type == "xml")
|
|
m_osmFileType = OsmSourceType::XML;
|
|
else if (type == "o5m")
|
|
m_osmFileType = OsmSourceType::O5M;
|
|
else
|
|
LOG(LCRITICAL, ("Unknown source type:", type));
|
|
}
|
|
|
|
void SetNodeStorageType(std::string const & type)
|
|
{
|
|
if (type == "raw")
|
|
m_nodeStorageType = NodeStorageType::File;
|
|
else if (type == "map")
|
|
m_nodeStorageType = NodeStorageType::Index;
|
|
else if (type == "mem")
|
|
m_nodeStorageType = NodeStorageType::Memory;
|
|
else
|
|
LOG(LCRITICAL, ("Incorrect node_storage type:", type));
|
|
}
|
|
|
|
std::string GetTmpFileName(std::string const & fileName,
|
|
std::string const & ext = DATA_FILE_EXTENSION_TMP) const
|
|
{
|
|
return base::JoinPath(m_tmpDir, fileName + ext);
|
|
}
|
|
|
|
std::string GetTargetFileName(std::string const & fileName,
|
|
std::string const & ext = DATA_FILE_EXTENSION) const
|
|
{
|
|
return base::JoinPath(m_targetDir, fileName + ext);
|
|
}
|
|
|
|
std::string GetIntermediateFileName(std::string const & fileName,
|
|
std::string const & ext = "") const
|
|
{
|
|
return base::JoinPath(m_dataPath, fileName + ext);
|
|
}
|
|
};
|
|
} // namespace feature
|