Files
comaps/generator/processor_coastline.cpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

33 lines
1006 B
C++

#include "generator/processor_coastline.hpp"
#include "generator/feature_builder.hpp"
#include "defines.hpp"
namespace generator
{
ProcessorCoastline::ProcessorCoastline(std::shared_ptr<FeatureProcessorQueue> const & queue) : m_queue(queue)
{
m_processingChain = std::make_shared<RepresentationCoastlineLayer>();
m_processingChain->Add(std::make_shared<PrepareCoastlineFeatureLayer>());
auto affiliation = std::make_shared<feature::SingleAffiliation>(WORLD_COASTS_FILE_NAME);
m_affiliationsLayer = std::make_shared<AffiliationsFeatureLayer>(kAffiliationsBufferSize, affiliation, m_queue);
m_processingChain->Add(m_affiliationsLayer);
}
std::shared_ptr<FeatureProcessorInterface> ProcessorCoastline::Clone() const
{
return std::make_shared<ProcessorCoastline>(m_queue);
}
void ProcessorCoastline::Process(feature::FeatureBuilder & feature)
{
m_processingChain->Handle(feature);
}
void ProcessorCoastline::Finish()
{
m_affiliationsLayer->AddBufferToQueue();
}
} // namespace generator