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

mwm_foreach_test.cpp « mwm_tests « map - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7ea80ada2f2c7b92f3a0aff98cf2e75871fa216 (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
#include "testing/testing.hpp"

#include "map/feature_vec_model.hpp"

#include "indexer/data_header.hpp"
#include "indexer/scales.hpp"
#include "indexer/feature_visibility.hpp"
#include "indexer/feature_processor.hpp"
#include "indexer/classificator.hpp"

#include "platform/local_country_file_utils.hpp"

#include "geometry/rect_intersect.hpp"
#include "geometry/robust_orientation.hpp"

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

#include "std/string.hpp"
#include "std/algorithm.hpp"


namespace
{

typedef vector<uint32_t> feature_cont_t;

bool IsDrawable(FeatureType const & f, int scale)
{
  // Feature that doesn't have any geometry for m_scale returns empty DebugString().
  return (!f.IsEmptyGeometry(scale) && feature::IsDrawableForIndex(f, scale));
}

class AccumulatorBase
{
  feature_cont_t & m_cont;

protected:
  int m_scale;

  bool is_drawable(FeatureType const & f) const
  {
    // Looks strange, but it checks consistency.
    TEST_EQUAL(f.DebugString(m_scale), f.DebugString(m_scale), ());

    return IsDrawable(f, m_scale);
  }

  void add(FeatureType const & f) const
  {
    TEST(f.GetID().IsValid(), ());
    m_cont.push_back(f.GetID().m_index);
  }

  void add(FeatureType const &, uint32_t index) const
  {
    m_cont.push_back(index);
  }

public:
  AccumulatorBase(int scale, feature_cont_t & cont)
    : m_cont(cont), m_scale(scale)
  {
  }

  void operator() (FeatureType const & f) const
  {
    TEST(is_drawable(f), (m_scale, f));
    add(f);
  }
};

class IntersectCheck
{
  m2::RectD m_rect;

  m2::PointD m_prev;
  bool m_isPrev, m_intersect;

public:
  IntersectCheck(m2::RectD const & r)
    : m_rect(r), m_isPrev(false), m_intersect(false)
  {
  }

  void TestPoint(m2::PointD const & p)
  {
    m_intersect = m_rect.IsPointInside(p);
  }

  void operator() (m2::PointD const & pt)
  {
    if (m_intersect) return;

    if (m_isPrev)
    {
      m2::PointD d1 = m_prev;
      m2::PointD d2 = pt;
      m_intersect = m2::Intersect(m_rect, d1, d2);
    }
    else
      m_isPrev = true;

    m_prev = pt;
  }

  void operator() (m2::PointD const & p1, m2::PointD const & p2, m2::PointD const & p3)
  {
    if (m_intersect) return;

    m2::PointD arrP[] = { p1, p2, p3 };

    // make right-oriented triangle
    if (m2::robust::OrientedS(arrP[0], arrP[1], arrP[2]) < 0.0)
      swap(arrP[1], arrP[2]);

    bool isInside = true;
    m2::PointD const pt = m_rect.LeftTop();

    for (size_t i = 0; i < 3; ++i)
    {
      // intersect edge with rect
      m_intersect = m2::Intersect(m_rect, arrP[i], arrP[(i + 1) % 3]);
      if (m_intersect)
        break;

      if (isInside)
      {
        // or check if rect inside triangle (any point of rect)
        double const s = m2::robust::OrientedS(arrP[i], arrP[(i + 1) % 3], pt);
        isInside = (s >= 0.0);
      }
    }

    m_intersect = m_intersect || isInside;
  }

  bool IsIntersect() const { return m_intersect; }
};

class AccumulatorEtalon : public AccumulatorBase
{
  typedef AccumulatorBase base_type;

  m2::RectD m_rect;

  bool is_intersect(FeatureType const & f) const
  {
    IntersectCheck check(m_rect);

    using namespace feature;
    switch (f.GetFeatureType())
    {
    case GEOM_POINT: check.TestPoint(f.GetCenter()); break;
    case GEOM_LINE: f.ForEachPointRef(check, m_scale); break;
    case GEOM_AREA: f.ForEachTriangleRef(check, m_scale); break;
    default:
      CHECK ( false, () );
    }

    return check.IsIntersect();
  }

public:
  AccumulatorEtalon(m2::RectD const & r, int scale, feature_cont_t & cont)
    : base_type(scale, cont), m_rect(r)
  {
  }

  void operator() (FeatureType const & f, uint32_t index) const
  {
    if (is_drawable(f) && is_intersect(f))
      add(f, index);
  }
};

// Use this comparator for "sort" and "compare_sequence".
struct FeatureIDCmp
{
  int compare(uint32_t r1, uint32_t r2) const
  {
    if (r1 < r2)
      return -1;
    if (r2 < r1)
      return 1;
    return 0;
  }
  bool operator() (uint32_t r1, uint32_t r2) const
  {
    return (compare(r1, r2) == -1);
  }
};

/// Check that "test" contains all elements from "etalon".
template <class TCont, class TCompare>
bool compare_sequence(TCont const & etalon, TCont const & test, TCompare comp, size_t & errInd)
{
  auto i1 = etalon.begin();
  auto i2 = test.begin();
  while (i1 != etalon.end() && i2 != test.end())
  {
    switch (comp.compare(*i1, *i2))
    {
    case 0:   // equal
      ++i1;
      ++i2;
      break;
    case -1:  // present in etalon, but missing in test - error
      {
        errInd = distance(etalon.begin(), i1);
        return false;
      }
    case 1:   // present in test, but missing in etalon - actually it may be ok
      ++i2;
      break;
    }
  }

  if (i1 != etalon.end())
  {
    errInd = distance(etalon.begin(), i1);
    return false;
  }

  return true;
}

class FindOffset
{
  int m_level;
  uint32_t m_index;

public:
  FindOffset(int level, uint32_t index)
    : m_level(level), m_index(index)
  {}

  void operator() (FeatureType const & ft, uint32_t index)
  {
    if (index == m_index)
    {
      TEST(IsDrawable(ft, m_level), ());

      LOG(LINFO, ("Feature index:", index));
      LOG(LINFO, ("Feature:", ft));
    }
  }
};

void RunTest(string const & countryFileName)
{
  model::FeaturesFetcher src1;
  src1.InitClassificator();

  platform::LocalCountryFile localFile(platform::LocalCountryFile::MakeForTesting(countryFileName));
  // Clean indexes to prevent mwm and indexes versions mismatch error.
  platform::CountryIndexes::DeleteFromDisk(localFile);
  UNUSED_VALUE(src1.RegisterMap(localFile));

  vector<m2::RectD> rects;
  rects.push_back(src1.GetWorldRect());

  ModelReaderPtr reader = platform::GetCountryReader(localFile, MapOptions::Map);

  while (!rects.empty())
  {
    m2::RectD const r = rects.back();
    rects.pop_back();

    int const scale = scales::GetScaleLevel(r);

    feature_cont_t v1, v2;
    {
      AccumulatorBase acc(scale, v1);
      src1.ForEachFeature(r, acc, scale);
      sort(v1.begin(), v1.end(), FeatureIDCmp());
    }
    {
      AccumulatorEtalon acc(r, scale, v2);
      feature::ForEachFromDat(reader, acc);
      sort(v2.begin(), v2.end(), FeatureIDCmp());
    }

    size_t const emptyInd = size_t(-1);
    size_t errInd = emptyInd;
    if (!compare_sequence(v2, v1, FeatureIDCmp(), errInd))
    {
      if (errInd != emptyInd)
      {
        FindOffset doFind(scale, v2[errInd]);
        feature::ForEachFromDat(reader, doFind);
      }

      TEST(false, ("Failed for rect:", r, "; Scale level:", scale, "; Etalon size:", v2.size(), "; Index size:", v1.size()));
    }

    if (!v2.empty() && (scale < scales::GetUpperScale()))
    {
      m2::RectD r1, r2;
      r.DivideByGreaterSize(r1, r2);
      rects.push_back(r1);
      rects.push_back(r2);
    }
  }
}

}

UNIT_TEST(ForEach_QueryResults)
{
  RunTest("minsk-pass");
  //RunTestForChoice("london-center");
}