Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)

To expand with full Organic Maps and Maps.ME commits history run:
  git remote add om-historic [om-historic.git repo url]
  git fetch --tags om-historic
  git replace squashed-history historic-commits
This commit is contained in:
Konstantin Pastbin
2025-04-13 16:37:30 +07:00
commit e3e4a1985a
12931 changed files with 13195100 additions and 0 deletions

75
generator/translator.cpp Normal file
View File

@@ -0,0 +1,75 @@
#include "generator/translator.hpp"
#include "generator/collector_collection.hpp"
#include "generator/filter_collection.hpp"
#include "generator/osm_element.hpp"
namespace generator
{
Translator::Translator(std::shared_ptr<FeatureProcessorInterface> const & processor,
std::shared_ptr<cache::IntermediateData> const & cache,
std::shared_ptr<FeatureMakerBase> const & maker,
std::shared_ptr<FilterInterface> const & filter,
std::shared_ptr<CollectorInterface> const & collector)
: m_filter(filter)
, m_collector(collector)
, m_tagsEnricher(cache->GetCache())
, m_featureMaker(maker)
, m_processor(processor)
, m_cache(cache)
{
m_featureMaker->SetCache(cache->GetCache());
}
Translator::Translator(std::shared_ptr<FeatureProcessorInterface> const & processor,
std::shared_ptr<cache::IntermediateData> const & cache,
std::shared_ptr<FeatureMakerBase> const & maker)
: Translator(processor, cache, maker, std::make_shared<FilterCollection>(),
std::make_shared<CollectorCollection>())
{
}
void Translator::SetCollector(std::shared_ptr<CollectorInterface> const & collector)
{
m_collector = collector;
}
void Translator::SetFilter(std::shared_ptr<FilterInterface> const & filter) { m_filter = filter; }
void Translator::Emit(OsmElement const & src)
{
// Make a copy because it will be modified below.
OsmElement element(src);
Preprocess(element); // Might use replaced_tags.txt via a TagReplacer.
if (!m_filter->IsAccepted(element))
return;
m_tagsEnricher(element);
m_collector->Collect(element);
m_featureMaker->Add(element); // A feature is created from OSM tags.
feature::FeatureBuilder feature;
while (m_featureMaker->GetNextFeature(feature))
{
if (!m_filter->IsAccepted(feature))
continue;
// Pass non-modified source element.
m_collector->CollectFeature(feature, src);
m_processor->Process(feature);
}
}
void Translator::Finish()
{
m_collector->Finish();
m_processor->Finish();
}
bool Translator::Save()
{
m_collector->Finalize(true /* isStable */);
return true;
}
} // namespace generator