forked from mapsme/omim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclassificator_loader.cpp
70 lines (52 loc) · 1.49 KB
/
classificator_loader.cpp
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
#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(Reader * classificator,
Reader * types)
{
Classificator & c = classif();
c.Clear();
{
//LOG(LINFO, ("Reading classificator"));
ReaderStreamBuf buffer(classificator);
istream s(&buffer);
c.ReadClassificator(s);
}
{
//LOG(LINFO, ("Reading types mapping"));
ReaderStreamBuf buffer(types);
istream s(&buffer);
c.ReadTypesMapping(s);
}
}
}
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"));
}
}