forked from organicmaps/organicmaps-tmp
Factor out #include "classificator.hpp" from "feature_data.hpp".
This commit is contained in:
parent
dba450bed7
commit
f87031f54b
8 changed files with 25 additions and 8 deletions
|
@ -12,6 +12,7 @@
|
|||
#include "../indexer/data_header.hpp"
|
||||
#include "../indexer/mercator.hpp"
|
||||
#include "../indexer/cell_id.hpp"
|
||||
#include "../indexer/classificator.hpp"
|
||||
|
||||
#include "../coding/varint.hpp"
|
||||
#include "../coding/mmap_reader.hpp"
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
|
||||
#include "../../indexer/drawing_rules.hpp"
|
||||
#include "../../indexer/classificator_loader.hpp"
|
||||
#include "../../indexer/classificator.hpp"
|
||||
#include "../../indexer/data_header.hpp"
|
||||
#include "../../indexer/features_vector.hpp"
|
||||
#include "../../indexer/index_builder.hpp"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#include "feature_data.hpp"
|
||||
#include "classificator.hpp"
|
||||
|
||||
#include "../std/algorithm.hpp"
|
||||
|
||||
|
@ -144,6 +145,16 @@ uint8_t FeatureParams::GetHeader() const
|
|||
return header;
|
||||
}
|
||||
|
||||
uint32_t FeatureParams::GetIndexForType(uint32_t t)
|
||||
{
|
||||
return classif().GetIndexForType(t);
|
||||
}
|
||||
|
||||
uint32_t FeatureParams::GetTypeForIndex(uint32_t i)
|
||||
{
|
||||
return classif().GetTypeForIndex(i);
|
||||
}
|
||||
|
||||
string DebugPrint(FeatureParams const & p)
|
||||
{
|
||||
ostringstream out;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#pragma once
|
||||
#include "classificator.hpp"
|
||||
|
||||
#include "../coding/multilang_utf8_string.hpp"
|
||||
#include "../coding/value_opt_string.hpp"
|
||||
|
@ -182,10 +181,8 @@ public:
|
|||
|
||||
WriteToSink(sink, header);
|
||||
|
||||
Classificator & c = classif();
|
||||
|
||||
for (size_t i = 0; i < m_Types.size(); ++i)
|
||||
WriteVarUint(sink, c.GetIndexForType(m_Types[i]));
|
||||
WriteVarUint(sink, GetIndexForType(m_Types[i]));
|
||||
|
||||
BaseT::Write(sink, header, GetGeomType());
|
||||
}
|
||||
|
@ -201,14 +198,16 @@ public:
|
|||
if (type & HEADER_GEOM_AREA) SetGeomType(GEOM_AREA);
|
||||
if (type == HEADER_GEOM_POINT) SetGeomType(GEOM_POINT);
|
||||
|
||||
Classificator & c = classif();
|
||||
|
||||
size_t const count = (header & HEADER_TYPE_MASK) + 1;
|
||||
for (size_t i = 0; i < count; ++i)
|
||||
m_Types.push_back(c.GetTypeForIndex(ReadVarUint<uint32_t>(src)));
|
||||
m_Types.push_back(GetTypeForIndex(ReadVarUint<uint32_t>(src)));
|
||||
|
||||
BaseT::Read(src, header, GetGeomType());
|
||||
}
|
||||
|
||||
private:
|
||||
static uint32_t GetIndexForType(uint32_t t);
|
||||
static uint32_t GetTypeForIndex(uint32_t i);
|
||||
};
|
||||
|
||||
string DebugPrint(FeatureParams const & p);
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#pragma once
|
||||
|
||||
#include "../geometry/point2d.hpp"
|
||||
#include "../base/macros.hpp"
|
||||
|
||||
#include "../std/string.hpp"
|
||||
|
||||
|
||||
namespace feature
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include "feature_loader_101.hpp"
|
||||
|
||||
#include "../classificator.hpp"
|
||||
#include "../feature.hpp"
|
||||
#include "../scales.hpp"
|
||||
#include "../geometry_serialization.hpp"
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
#include "../indexer/categories_holder.hpp"
|
||||
#include "../indexer/feature.hpp"
|
||||
#include "../indexer/scales.hpp"
|
||||
#include "../indexer/classificator.hpp"
|
||||
|
||||
#include "../base/math.hpp"
|
||||
#include "../base/string_utils.hpp"
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include "../storage/country_info.hpp"
|
||||
|
||||
#include "../indexer/classificator.hpp"
|
||||
#include "../indexer/feature.hpp"
|
||||
#include "../indexer/feature_utils.hpp"
|
||||
#include "../indexer/mercator.hpp"
|
||||
|
|
Loading…
Add table
Reference in a new issue