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

classificator_loader.cpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d996235d07fb023100d483ffd8a525795c1ebc2b (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
#include "indexer/classificator_loader.hpp"
#include "indexer/classificator.hpp"
#include "indexer/drawing_rules.hpp"
#include "indexer/map_style_reader.hpp"

#include "platform/platform.hpp"

#include "coding/reader_streambuf.hpp"

#include "base/logging.hpp"

#include "std/iostream.hpp"


namespace
{
void ReadCommon(unique_ptr<Reader> classificator,
                unique_ptr<Reader> types)
{
  Classificator & c = classif();
  c.Clear();

  {
    //LOG(LINFO, ("Reading classificator"));
    ReaderStreamBuf buffer(move(classificator));

    istream s(&buffer);
    c.ReadClassificator(s);
  }

  {
    //LOG(LINFO, ("Reading types mapping"));
    ReaderStreamBuf buffer(move(types));

    istream s(&buffer);
    c.ReadTypesMapping(s);
  }
}
}  // namespace

namespace classificator
{
void Load()
{
  LOG(LDEBUG, ("Reading of classificator started"));

  Platform & p = GetPlatform();

  MapStyle const originMapStyle = GetStyleReader().GetCurrentStyle();

  for (size_t i = 0; i < MapStyleCount; ++i)
  {
    MapStyle const mapStyle = static_cast<MapStyle>(i);
    // Read the merged style only if it was requested.
    if (mapStyle != MapStyleMerged || originMapStyle == MapStyleMerged)
    {
      GetStyleReader().SetCurrentStyle(mapStyle);
      ReadCommon(p.GetReader("classificator.txt"),
                 p.GetReader("types.txt"));

      drule::LoadRules();
    }
  }

  GetStyleReader().SetCurrentStyle(originMapStyle);

  LOG(LDEBUG, ("Reading of classificator finished"));
}
}  // namespace classificator