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

feature_vec_model.hpp « map - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc6731a73278c7fba121ecef49e3d55a8ac39380 (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
#pragma once

#include "../indexer/feature.hpp"
#include "../indexer/features_vector.hpp"
#include "../indexer/index.hpp"

#include "../geometry/rect2d.hpp"
#include "../geometry/point2d.hpp"

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

#include "../base/start_mem_debug.hpp"


namespace model
{
//#define USE_BUFFER_READER

  class FeaturesFetcher
  {
    m2::RectD m_rect;

#ifdef USE_BUFFER_READER
    typedef BufferReader reader_t;
#else
    typedef FileReader reader_t;
#endif

    typedef Index<reader_t>::Type index_t;

    index_t m_multiIndex;

    // Cached query, which stores several caches for the index.
    mutable index_t::Query m_multiIndexQuery;

  public:

    void InitClassificator();

    void AddMap(string const & fName);
    void RemoveMap(string const & fName);
    void Clean();
    void ClearCaches();

    // process features by param type indices
    template <class ToDo>
    void ForEachFeature(m2::RectD const & rect, ToDo toDo) const
    {
      m_multiIndexQuery.Clear();
      m_multiIndex.ForEachInViewport(toDo, rect, m_multiIndexQuery);
      // Uncomment to traverse all features (SLOW!!):
      // m_multiIndex.ForEachInScale(toDo, GetScaleLevel(rect));
    }

    template <class ToDo>
    void ForEachFeatureWithScale(m2::RectD const & rect, ToDo toDo, int scale) const
    {
      m_multiIndex.ForEachInRect(toDo, rect, scale);
    }

    index_t const & GetIndex() const { return m_multiIndex; }

    void AddWorldRect(m2::RectD const & r) { m_rect.Add(r); }
    m2::RectD GetWorldRect() const;
  };
}

#include "../base/stop_mem_debug.hpp"