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

search_index_builder.cpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50afaf92e8dde279b26ce40a58e9dd2d6c308a88 (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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
#include "indexer/search_index_builder.hpp"
#include "indexer/feature_utils.hpp"
#include "indexer/features_vector.hpp"
#include "indexer/search_delimiters.hpp"
#include "indexer/search_trie.hpp"
#include "indexer/search_string_utils.hpp"
#include "indexer/string_file.hpp"
#include "indexer/string_file_values.hpp"
#include "indexer/classificator.hpp"
#include "indexer/feature_visibility.hpp"
#include "indexer/categories_holder.hpp"
#include "indexer/feature_algo.hpp"

#include "../search/search_common.hpp"    // for MAX_TOKENS constant

#include "defines.hpp"

#include "platform/platform.hpp"

#include "coding/trie_builder.hpp"
#include "coding/writer.hpp"
#include "coding/reader_writer_ops.hpp"

#include "base/assert.hpp"
#include "base/timer.hpp"
#include "base/scope_guard.hpp"
#include "base/string_utils.hpp"
#include "base/logging.hpp"
#include "base/stl_add.hpp"

#include "std/algorithm.hpp"
#include "std/fstream.hpp"
#include "std/initializer_list.hpp"
#include "std/limits.hpp"
#include "std/unordered_map.hpp"
#include "std/vector.hpp"

#define SYNONYMS_FILE "synonyms.txt"


namespace
{

class SynonymsHolder
{
  unordered_multimap<string, string> m_map;

public:
  SynonymsHolder(string const & fPath)
  {
    ifstream stream(fPath.c_str());

    string line;
    vector<string> tokens;

    while (stream.good())
    {
      std::getline(stream, line);
      if (line.empty())
        continue;

      tokens.clear();
      strings::Tokenize(line, ":,", MakeBackInsertFunctor(tokens));

      if (tokens.size() > 1)
      {
        strings::Trim(tokens[0]);
        for (size_t i = 1; i < tokens.size(); ++i)
        {
          strings::Trim(tokens[i]);
          // synonym should not has any spaces
          ASSERT ( tokens[i].find_first_of(" \t") == string::npos, () );
          m_map.insert(make_pair(tokens[0], tokens[i]));
        }
      }
    }
  }

  template <class ToDo> void ForEach(string const & key, ToDo toDo) const
  {
    typedef unordered_multimap<string, string>::const_iterator IterT;

    pair<IterT, IterT> range = m_map.equal_range(key);
    while (range.first != range.second)
    {
      toDo(range.first->second);
      ++range.first;
    }
  }
};

template<typename StringsFileT>
struct FeatureNameInserter
{
  SynonymsHolder * m_synonyms;
  StringsFileT & m_names;
  typename StringsFileT::ValueT m_val;

  FeatureNameInserter(SynonymsHolder * synonyms, StringsFileT & names)
    : m_synonyms(synonyms), m_names(names)
  {
  }

  void AddToken(signed char lang, strings::UniString const & s) const
  {
    m_names.AddString(typename StringsFileT::StringT(s, lang, m_val));
  }

private:
  typedef buffer_vector<strings::UniString, 32> TokensArrayT;

  class PushSynonyms
  {
    TokensArrayT & m_tokens;
  public:
    PushSynonyms(TokensArrayT & tokens) : m_tokens(tokens) {}
    void operator() (string const & utf8str) const
    {
      m_tokens.push_back(search::NormalizeAndSimplifyString(utf8str));
    }
  };

public:
  bool operator()(signed char lang, string const & name) const
  {
    strings::UniString const uniName = search::NormalizeAndSimplifyString(name);

    // split input string on tokens
    buffer_vector<strings::UniString, 32> tokens;
    SplitUniString(uniName, MakeBackInsertFunctor(tokens), search::Delimiters());

    // add synonyms for input native string
    if (m_synonyms)
      m_synonyms->ForEach(name, PushSynonyms(tokens));

    int const maxTokensCount = search::MAX_TOKENS - 1;
    if (tokens.size() > maxTokensCount)
    {
      LOG(LWARNING, ("Name has too many tokens:", name));
      tokens.resize(maxTokensCount);
    }

    for (size_t i = 0; i < tokens.size(); ++i)
      AddToken(lang, tokens[i]);

    return true;
  }
};

template <typename ValueT>
struct ValueBuilder;

template <>
struct ValueBuilder<SerializedFeatureInfoValue>
{
  typedef search::trie::ValueReader SaverT;
  SaverT m_valueSaver;

  ValueBuilder(serial::CodingParams const & cp) : m_valueSaver(cp) {}

  void MakeValue(FeatureType const & f, feature::TypesHolder const & types, uint32_t ind,
                 SerializedFeatureInfoValue & value) const
  {
    SaverT::ValueType v;
    v.m_featureId = ind;

    // get BEST geometry rect of feature
    v.m_pt = feature::GetCenter(f);
    v.m_rank = feature::GetSearchRank(types, v.m_pt, f.GetPopulation());

    // write to buffer
    PushBackByteSink<SerializedFeatureInfoValue::ValueT> sink(value.m_value);
    m_valueSaver.Save(sink, v);
  }
};

template <>
struct ValueBuilder<FeatureIndexValue>
{
  void MakeValue(FeatureType const & /* f */, feature::TypesHolder const & /* types */,
                 uint32_t ind, FeatureIndexValue & value) const
  {
    value.m_value = ind;
  }
};

template <typename StringsFileT>
class FeatureInserter
{
  SynonymsHolder * m_synonyms;
  StringsFileT & m_names;

  CategoriesHolder const & m_categories;

  typedef typename StringsFileT::ValueT ValueT;
  typedef search::trie::ValueReader SaverT;

  pair<int, int> m_scales;

  ValueBuilder<ValueT> const & m_valueBuilder;

  /// There are 3 different ways of search index skipping:
  /// - skip features in any case (m_skipFeatures)
  /// - skip features with empty names (m_enFeature)
  /// - skip specified types for features with empty names (m_enTypes)
  class SkipIndexing
  {
    typedef buffer_vector<uint32_t, 16> ContT;

    // Array index (0, 1) means type level for checking (1, 2).
    ContT m_skipEn[2], m_skipF[2];
    ContT m_dontSkipEn;
    uint32_t m_country, m_state;

    static bool HasType(ContT const & v, uint32_t t)
    {
      return (find(v.begin(), v.end(), t) != v.end());
    }

  public:
    SkipIndexing()
    {
      Classificator const & c = classif();

      // Fill types that always! should be skipped.
      for (auto const & e : (StringIL[]) { { "entrance" } })
        m_skipF[0].push_back(c.GetTypeByPath(e));

      for (auto const & e : (StringIL[]) { { "building", "address" } })
        m_skipF[1].push_back(c.GetTypeByPath(e));

      // Fill types that never! will be skipped.
      for (auto const & e : (StringIL[]) { { "highway", "bus_stop" }, { "highway", "speed_camera" } })
        m_dontSkipEn.push_back(c.GetTypeByPath(e));

      // Fill types that will be skipped if feature's name is empty!
      for (auto const & e : (StringIL[]) { { "building" }, { "highway" }, { "natural" }, { "waterway" }, { "landuse" } })
        m_skipEn[0].push_back(c.GetTypeByPath(e));

      for (auto const & e : (StringIL[]) {
        { "place", "country" },
        { "place", "state" },
        { "place", "county" },
        { "place", "region" },
        { "place", "city" },
        { "place", "town" },
        { "railway", "rail" }})
      {
        m_skipEn[1].push_back(c.GetTypeByPath(e));
      }

      m_country = c.GetTypeByPath({ "place", "country" });
      m_state = c.GetTypeByPath({ "place", "state" });
    }

    void SkipTypes(feature::TypesHolder & types) const
    {
      types.RemoveIf([this](uint32_t type)
      {
        ftype::TruncValue(type, 2);

        if (HasType(m_skipF[1], type))
          return true;

        ftype::TruncValue(type, 1);

        if (HasType(m_skipF[0], type))
          return true;

        return false;
      });
    }

    void SkipEmptyNameTypes(feature::TypesHolder & types) const
    {
      types.RemoveIf([this](uint32_t type)
      {
        ftype::TruncValue(type, 2);

        if (HasType(m_dontSkipEn, type))
          return false;

        if (HasType(m_skipEn[1], type))
          return true;

        ftype::TruncValue(type, 1);

        if (HasType(m_skipEn[0], type))
          return true;

        return false;
      });
    }

    bool IsCountryOrState(feature::TypesHolder const & types) const
    {
      for (uint32_t t : types)
      {
        ftype::TruncValue(t, 2);
        if (t == m_country || t == m_state)
          return true;
      }
      return false;
    }
  };

public:
  FeatureInserter(SynonymsHolder * synonyms, StringsFileT & names,
                  CategoriesHolder const & catHolder, pair<int, int> const & scales,
                  ValueBuilder<ValueT> const & valueBuilder)
    : m_synonyms(synonyms), m_names(names),
      m_categories(catHolder), m_scales(scales), m_valueBuilder(valueBuilder)
  {
  }

  void operator() (FeatureType const & f, uint32_t ind) const
  {
    feature::TypesHolder types(f);

    static SkipIndexing skipIndex;

    skipIndex.SkipTypes(types);
    if (types.Empty())
      return;

    // Init inserter with serialized value.
    // Insert synonyms only for countries and states (maybe will add cities in future).
    FeatureNameInserter<StringsFileT> inserter(skipIndex.IsCountryOrState(types) ? m_synonyms : 0,
                                               m_names);
    m_valueBuilder.MakeValue(f, types, ind, inserter.m_val);

    // Skip types for features without names.
    if (!f.ForEachNameRef(inserter))
      skipIndex.SkipEmptyNameTypes(types);
    if (types.Empty())
      return;

    Classificator const & c = classif();

    // add names of categories of the feature
    for (uint32_t t : types)
    {
      // Leave only 2 level of type - for example, do not distinguish:
      // highway-primary-bridge or amenity-parking-fee.
      ftype::TruncValue(t, 2);

      // Push to index only categorized types.
      if (m_categories.IsTypeExist(t))
      {
        // Do index only for visible types in mwm.
        pair<int, int> const r = feature::GetDrawableScaleRange(t);
        CHECK(r.first <= r.second && r.first != -1, (c.GetReadableObjectName(t)));

        if (r.second >= m_scales.first && r.first <= m_scales.second)
        {
          inserter.AddToken(search::CATEGORIES_LANG,
                            search::FeatureTypeToString(c.GetIndexForType(t)));
        }
      }
    }
  }
};

void AddFeatureNameIndexPairs(FilesContainerR const & container,
                              CategoriesHolder & categoriesHolder,
                              StringsFile<FeatureIndexValue> & stringsFile)
{
  feature::DataHeader header;
  header.Load(container.GetReader(HEADER_FILE_TAG));
  FeaturesVector features(container, header);

  ValueBuilder<FeatureIndexValue> valueBuilder;

  unique_ptr<SynonymsHolder> synonyms;
  if (header.GetType() == feature::DataHeader::world)
    synonyms.reset(new SynonymsHolder(GetPlatform().WritablePathForFile(SYNONYMS_FILE)));

  FeatureInserter<StringsFile<FeatureIndexValue>> inserter(
      synonyms.get(), stringsFile, categoriesHolder, header.GetScaleRange(), valueBuilder);

  features.ForEach(inserter);
}

void BuildSearchIndex(FilesContainerR const & cont, CategoriesHolder const & catHolder,
                      Writer & writer, string const & tmpFilePath)
{
  {
    feature::DataHeader header;
    header.Load(cont.GetReader(HEADER_FILE_TAG));
    FeaturesVector featuresV(cont, header);

    serial::CodingParams cp(search::GetCPForTrie(header.GetDefCodingParams()));
    ValueBuilder<SerializedFeatureInfoValue> valueBuilder(cp);

    unique_ptr<SynonymsHolder> synonyms;
    if (header.GetType() == feature::DataHeader::world)
      synonyms.reset(new SynonymsHolder(GetPlatform().WritablePathForFile(SYNONYMS_FILE)));

    StringsFile<SerializedFeatureInfoValue> names(tmpFilePath);

    featuresV.ForEach(FeatureInserter<StringsFile<SerializedFeatureInfoValue>>(
        synonyms.get(), names, catHolder, header.GetScaleRange(), valueBuilder));

    names.EndAdding();
    names.OpenForRead();

    trie::Build<Writer, typename StringsFile<SerializedFeatureInfoValue>::IteratorT,
                trie::builder::EmptyEdgeBuilder, ValueList<SerializedFeatureInfoValue>>(
        writer, names.Begin(), names.End(), trie::builder::EmptyEdgeBuilder());

    // at this point all readers of StringsFile should be dead
  }

  FileWriter::DeleteFileX(tmpFilePath);
}
}  // namespace

namespace indexer {
bool BuildSearchIndexFromDatFile(string const & datFile, bool forceRebuild)
{
  LOG(LINFO, ("Start building search index. Bits = ", search::POINT_CODING_BITS));

  try
  {
    Platform & pl = GetPlatform();
    string const tmpFile1 = datFile + ".search_index_1.tmp";
    string const tmpFile2 = datFile + ".search_index_2.tmp";

    {
      FilesContainerR readCont(datFile);

      if (!forceRebuild && readCont.IsExist(SEARCH_INDEX_FILE_TAG))
        return true;

      FileWriter writer(tmpFile2);

      CategoriesHolder catHolder(pl.GetReader(SEARCH_CATEGORIES_FILE_NAME));

      BuildSearchIndex(readCont, catHolder, writer, tmpFile1);

      LOG(LINFO, ("Search index size = ", writer.Size()));
    }

    {
      // Write to container in reversed order.
      FilesContainerW writeCont(datFile, FileWriter::OP_WRITE_EXISTING);
      FileWriter writer = writeCont.GetWriter(SEARCH_INDEX_FILE_TAG);
      rw_ops::Reverse(FileReader(tmpFile2), writer);
    }

    FileWriter::DeleteFileX(tmpFile2);
  }
  catch (Reader::Exception const & e)
  {
    LOG(LERROR, ("Error while reading file: ", e.Msg()));
    return false;
  }
  catch (Writer::Exception const & e)
  {
    LOG(LERROR, ("Error writing index file: ", e.Msg()));
    return false;
  }

  LOG(LINFO, ("End building search index."));
  return true;
}

bool AddCompresedSearchIndexSection(string const & fName, bool forceRebuild)
{
  Platform & platform = GetPlatform();

  FilesContainerR readContainer(platform.GetReader(fName));
  if (readContainer.IsExist(COMPRESSED_SEARCH_INDEX_FILE_TAG) && !forceRebuild)
    return true;

  string const indexFile = platform.WritablePathForFile("compressed-search-index.tmp");
  MY_SCOPE_GUARD(indexFileGuard, bind(&FileWriter::DeleteFileX, indexFile));

  try
  {
    {
      FileWriter indexWriter(indexFile);
      BuildCompressedSearchIndex(readContainer, indexWriter);
    }
    {
      FilesContainerW writeContainer(readContainer.GetFileName(), FileWriter::OP_WRITE_EXISTING);
      FileWriter writer = writeContainer.GetWriter(COMPRESSED_SEARCH_INDEX_FILE_TAG);
      rw_ops::Reverse(FileReader(indexFile), writer);
    }
  }
  catch (Reader::Exception const & e)
  {
    LOG(LERROR, ("Error while reading file: ", e.Msg()));
    return false;
  }
  catch (Writer::Exception const & e)
  {
    LOG(LERROR, ("Error writing index file: ", e.Msg()));
    return false;
  }

  return true;
}

void BuildCompressedSearchIndex(FilesContainerR & container, Writer & indexWriter)
{
  Platform & platform = GetPlatform();

  LOG(LINFO, ("Start building compressed search index for", container.GetFileName()));
  my::Timer timer;

  string stringsFilePath = platform.WritablePathForFile("strings.tmp");
  StringsFile<FeatureIndexValue> stringsFile(stringsFilePath);
  MY_SCOPE_GUARD(stringsFileGuard, bind(&FileWriter::DeleteFileX, stringsFilePath));

  CategoriesHolder categoriesHolder(platform.GetReader(SEARCH_CATEGORIES_FILE_NAME));

  AddFeatureNameIndexPairs(container, categoriesHolder, stringsFile);

  stringsFile.EndAdding();

  LOG(LINFO, ("End sorting strings:", timer.ElapsedSeconds()));

  stringsFile.OpenForRead();
  trie::Build<Writer, typename StringsFile<FeatureIndexValue>::IteratorT,
              trie::builder::EmptyEdgeBuilder, ValueList<FeatureIndexValue>>(
      indexWriter, stringsFile.Begin(), stringsFile.End(), trie::builder::EmptyEdgeBuilder());

  LOG(LINFO, ("End building compressed search index, elapsed seconds:", timer.ElapsedSeconds()));
}

void BuildCompressedSearchIndex(string const & fName, Writer & indexWriter)
{
  FilesContainerR container(GetPlatform().GetReader(fName));
  BuildCompressedSearchIndex(container, indexWriter);
}
}  // namespace indexer