Welcome to mirror list, hosted at ThFree Co, Russian Federation.

collector_collection.cpp « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e229292b6c902ceb27e7cef5ed54f90a766bd9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include "generator/collector_collection.hpp"

#include "generator/feature_builder.hpp"
#include "generator/intermediate_elements.hpp"
#include "generator/osm_element.hpp"

using namespace feature;

namespace generator
{
std::shared_ptr<CollectorInterface> CollectorCollection::Clone(
    std::shared_ptr<cache::IntermediateDataReaderInterface> const & cache) const
{
  auto p = std::make_shared<CollectorCollection>();
  for (auto const & c : m_collection)
    p->Append(c->Clone(cache));
  return p;
}

void CollectorCollection::Collect(OsmElement const & element)
{
  for (auto & c : m_collection)
    c->Collect(element);
}

void CollectorCollection::CollectRelation(RelationElement const & element)
{
  for (auto & c : m_collection)
    c->CollectRelation(element);
}

void CollectorCollection::CollectFeature(FeatureBuilder const & feature, OsmElement const & element)
{
  for (auto & c : m_collection)
    c->CollectFeature(feature, element);
}

void CollectorCollection::Finish()
{
  for (auto & c : m_collection)
    c->Finish();
}

void CollectorCollection::Save()
{
  for (auto & c : m_collection)
    c->Save();
}

void CollectorCollection::OrderCollectedData()
{
  for (auto & c : m_collection)
    c->OrderCollectedData();
}

void CollectorCollection::Merge(CollectorInterface const & collector)
{
  collector.MergeInto(*this);
}

void CollectorCollection::MergeInto(CollectorCollection & collector) const
{
  auto & otherCollection = collector.m_collection;
  CHECK_EQUAL(m_collection.size(), otherCollection.size(), ());
  for (size_t i = 0; i < m_collection.size(); ++i)
    otherCollection[i]->Merge(*m_collection[i]);
}
}  // namespace generator