forked from mapsme/omim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathosm_source.hpp
40 lines (29 loc) · 929 Bytes
/
osm_source.hpp
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
#pragma once
#include "generator/generate_info.hpp"
#include "generator/osm_element.hpp"
#include "std/function.hpp"
#include "std/iostream.hpp"
#include "std/unique_ptr.hpp"
class SourceReader
{
struct Deleter
{
bool m_needDelete;
Deleter(bool needDelete = true) : m_needDelete(needDelete) {}
void operator()(istream * s) const
{
if (m_needDelete)
delete s;
}
};
unique_ptr<istream, Deleter> m_file;
public:
SourceReader();
explicit SourceReader(string const & filename);
explicit SourceReader(istringstream & stream);
uint64_t Read(char * buffer, uint64_t bufferSize);
};
bool GenerateFeatures(feature::GenerateInfo & info);
bool GenerateIntermediateData(feature::GenerateInfo & info);
void BuildFeaturesFromO5M(SourceReader & stream, function<void(OsmElement *)> processor);
void BuildFeaturesFromXML(SourceReader & stream, function<void(OsmElement *)> processor);