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

gen_mwm_info.hpp « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db3941b61e0baed459679f1867951240a400217f (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#pragma once

#include "generator/osm_id.hpp"

#include "coding/file_reader.hpp"
#include "coding/read_write_utils.hpp"

#include "base/assert.hpp"
#include "base/logging.hpp"

#include <algorithm>
#include <utility>
#include <vector>

namespace gen
{
template <class T> class Accumulator
{
protected:
  std::vector<T> m_data;

public:
  typedef T ValueT;

  void Add(T const & t) { m_data.push_back(t); }

  template <class TSink> void Flush(TSink & sink) const
  {
    rw::WriteVectorOfPOD(sink, m_data);
  }

  template <class TSource> void Read(TSource & src)
  {
    rw::ReadVectorOfPOD(src, m_data);
  }
};

class OsmID2FeatureID : public Accumulator<std::pair<osm::Id, uint32_t /* feature id */>>
{
  typedef Accumulator<ValueT> BaseT;

  struct LessID
  {
    bool operator() (ValueT const & r1, ValueT const & r2) const { return r1.first < r2.first; }
    bool operator() (osm::Id const & r1, ValueT const & r2) const { return r1 < r2.first; }
    bool operator() (ValueT const & r1, osm::Id const & r2) const { return r1.first < r2; }
  };

public:
  template <class TSink> void Flush(TSink & sink)
  {
    std::sort(m_data.begin(), m_data.end());
    BaseT::Flush(sink);
  }

  /// Find a feature id for an OSM id. Returns 0 if the feature was not found.
  uint32_t GetFeatureID(osm::Id const & id) const
  {
    auto const it = std::lower_bound(m_data.begin(), m_data.end(), id, LessID());
    if (it != m_data.end() && it->first == id)
      return it->second;
    return 0;
  }

  template <class Fn>
  void ForEach(Fn && fn) const
  {
    for (auto const & v : m_data)
      fn(v);
  }

  bool ReadFromFile(std::string const & filename)
  {
    try
    {
      FileReader reader(filename);
      ReaderSource<FileReader> src(reader);
      Read(src);
    }
    catch (FileReader::Exception const & e)
    {
      LOG(LERROR, ("Exception while reading osm id to feature id mapping file:", filename,
                   ". Msg:", e.Msg()));
      return false;
    }

    return true;
  }
};
}  // namespace gen