diff --git a/generator/feature_builder.cpp b/generator/feature_builder.cpp index 7df0547986..e6dbc18d38 100644 --- a/generator/feature_builder.cpp +++ b/generator/feature_builder.cpp @@ -167,9 +167,8 @@ bool FeatureBuilder1::RemoveInvalidTypes() if (!m_params.FinishAddingTypes()) return false; - return feature::RemoveNoDrawableTypes(m_params.m_types, - m_params.GetGeomType(), - m_params.IsEmptyNames()); + return feature::RemoveUselessTypes(m_params.m_types, m_params.GetGeomType(), + m_params.IsEmptyNames()); } bool FeatureBuilder1::FormatFullAddress(string & res) const diff --git a/generator/generator_tests/feature_builder_test.cpp b/generator/generator_tests/feature_builder_test.cpp index 89c3f0f76d..9d0f5efab8 100644 --- a/generator/generator_tests/feature_builder_test.cpp +++ b/generator/generator_tests/feature_builder_test.cpp @@ -138,7 +138,7 @@ UNIT_CLASS_TEST(TestWithClassificator, FBbuilder_GetMostGeneralOsmId) TEST_EQUAL(fb.GetMostGenericOsmId(), base::MakeOsmRelation(1), ()); } -UNIT_CLASS_TEST(TestWithClassificator, FVisibility_RemoveNoDrawableTypes) +UNIT_CLASS_TEST(TestWithClassificator, FVisibility_RemoveUselessTypes) { Classificator const & c = classif(); @@ -147,7 +147,7 @@ UNIT_CLASS_TEST(TestWithClassificator, FVisibility_RemoveNoDrawableTypes) types.push_back(c.GetTypeByPath({ "building" })); types.push_back(c.GetTypeByPath({ "amenity", "theatre" })); - TEST(feature::RemoveNoDrawableTypes(types, feature::GEOM_AREA), ()); + TEST(feature::RemoveUselessTypes(types, feature::GEOM_AREA), ()); TEST_EQUAL(types.size(), 2, ()); } @@ -156,7 +156,7 @@ UNIT_CLASS_TEST(TestWithClassificator, FVisibility_RemoveNoDrawableTypes) types.push_back(c.GetTypeByPath({ "highway", "primary" })); types.push_back(c.GetTypeByPath({ "building" })); - TEST(feature::RemoveNoDrawableTypes(types, feature::GEOM_AREA, true), ()); + TEST(feature::RemoveUselessTypes(types, feature::GEOM_AREA, true /* emptyName */), ()); TEST_EQUAL(types.size(), 1, ()); TEST_EQUAL(types[0], c.GetTypeByPath({ "building" }), ()); } diff --git a/generator/osm2type.cpp b/generator/osm2type.cpp index a53e856274..202202c21d 100644 --- a/generator/osm2type.cpp +++ b/generator/osm2type.cpp @@ -311,7 +311,7 @@ private: buffer_vector(Type::Count)> m_types; }; -void MatchTypes(OsmElement * p, FeatureParams & params, function filterDrawableType) +void MatchTypes(OsmElement * p, FeatureParams & params, function filterType) { set skipRows; vector path; @@ -378,7 +378,7 @@ void MatchTypes(OsmElement * p, FeatureParams & params, function for (auto const & e : path) ftype::PushValue(t, e.GetIndex()); - if (filterDrawableType(t)) + if (filterType(t)) params.AddType(t); } while (true); } @@ -822,8 +822,7 @@ void PostprocessElement(OsmElement * p, FeatureParams & params) } } // namespace -void GetNameAndType(OsmElement * p, FeatureParams & params, - function filterDrawableType) +void GetNameAndType(OsmElement * p, FeatureParams & params, function filterType) { // Stage1: Preprocess tags. PreprocessElement(p); @@ -902,7 +901,7 @@ void GetNameAndType(OsmElement * p, FeatureParams & params, }); // Stage4: Match tags in classificator to find feature types. - MatchTypes(p, params, filterDrawableType); + MatchTypes(p, params, filterType); // Stage5: Postprocess feature types. PostprocessElement(p, params); diff --git a/generator/osm2type.hpp b/generator/osm2type.hpp index 3ad74865da..d13ed98834 100644 --- a/generator/osm2type.hpp +++ b/generator/osm2type.hpp @@ -12,5 +12,5 @@ namespace ftype { /// Get the types, name and layer for feature with the tree of tags. void GetNameAndType(OsmElement * p, FeatureParams & params, - std::function filterDrawableType = feature::IsDrawableAny); + std::function filterType = feature::TypeIsUseful); } diff --git a/generator/translator_planet.cpp b/generator/translator_planet.cpp index fabf7b70c5..0da628f1a0 100644 --- a/generator/translator_planet.cpp +++ b/generator/translator_planet.cpp @@ -182,13 +182,14 @@ bool TranslatorPlanet::ParseType(OsmElement * p, FeatureParams & params) m_routingTagsProcessor.m_cameraNodeWriter.Process(*p, params, m_cache); m_routingTagsProcessor.m_roadAccessWriter.Process(*p); + return true; } void TranslatorPlanet::EmitPoint(m2::PointD const & pt, FeatureParams params, base::GeoObjectId id) const { - if (!feature::RemoveNoDrawableTypes(params.m_types, feature::GEOM_POINT)) + if (!feature::RemoveUselessTypes(params.m_types, feature::GEOM_POINT)) return; FeatureBuilder1 ft; @@ -199,7 +200,7 @@ void TranslatorPlanet::EmitPoint(m2::PointD const & pt, FeatureParams params, void TranslatorPlanet::EmitLine(FeatureBuilder1 & ft, FeatureParams params, bool isCoastLine) const { - if (!isCoastLine && !feature::RemoveNoDrawableTypes(params.m_types, feature::GEOM_LINE)) + if (!isCoastLine && !feature::RemoveUselessTypes(params.m_types, feature::GEOM_LINE)) return; ft.SetLinear(params.m_reverseGeometry); @@ -230,12 +231,12 @@ void TranslatorPlanet::EmitArea(FeatureBuilder1 & ft, FeatureParams params, m_emitter->EmitCityBoundary(fb, params); } - // Key point here is that IsDrawableLike and RemoveNoDrawableTypes - // work a bit different for GEOM_AREA. + // Key point here is that IsDrawableLike and RemoveUselessTypes + // work a bit differently for GEOM_AREA. if (IsDrawableLike(params.m_types, GEOM_AREA)) { // Make the area feature if it has unique area styles. - VERIFY(RemoveNoDrawableTypes(params.m_types, GEOM_AREA), (params)); + VERIFY(RemoveUselessTypes(params.m_types, GEOM_AREA), (params)); fn(ft); EmitFeatureBase(ft, params); } diff --git a/indexer/feature_visibility.cpp b/indexer/feature_visibility.cpp index dfe453e1f4..52ebe28403 100644 --- a/indexer/feature_visibility.cpp +++ b/indexer/feature_visibility.cpp @@ -217,7 +217,7 @@ namespace bool HasRoutingExceptionType(uint32_t t) { - static const uint32_t s = classif().GetTypeByPath({ "route", "shuttle_train" }); + static uint32_t const s = classif().GetTypeByPath({"route", "shuttle_train"}); return s == t; } @@ -228,18 +228,11 @@ namespace if (!classif().IsTypeValid(type)) return false; - static const uint32_t roundabout = classif().GetTypeByPath({ "junction", "roundabout" }); - static const uint32_t hwtag = classif().GetTypeByPath({ "hwtag" }); - static const uint32_t psurface = classif().GetTypeByPath({ "psurface" }); - static const uint32_t wheelchair = classif().GetTypeByPath({ "wheelchair" }); - static const uint32_t sponsored = classif().GetTypeByPath({ "sponsored" }); - static const uint32_t cuisine = classif().GetTypeByPath({ "cuisine" }); + static uint32_t const roundabout = classif().GetTypeByPath({"junction", "roundabout"}); + static uint32_t const internet = classif().GetTypeByPath({"internet_access"}); + static uint32_t const sponsored = classif().GetTypeByPath({"sponsored"}); // Reserved for custom event processing, i.e. fc2018. - //static const uint32_t event = classif().GetTypeByPath({ "event" }); - static const uint32_t internet = classif().GetTypeByPath({ "internet_access" }); - - // Caching type length to exclude generic [wheelchair]. - uint8_t const typeLength = ftype::GetLevel(type); + // static uint32_t const event = classif().GetTypeByPath({"event" }); if (g == GEOM_LINE || g == GEOM_UNDEFINED) { @@ -248,20 +241,9 @@ namespace if (HasRoutingExceptionType(type)) return true; - - ftype::TruncValue(type, 1); - if (hwtag == type || psurface == type) - return true; } - // We're okay with the type being already truncated above. ftype::TruncValue(type, 1); - if (wheelchair == type && typeLength == 2) - return true; - - if (cuisine == type) - return true; - if (g != GEOM_LINE) { if (sponsored == type || internet == type) @@ -274,11 +256,45 @@ namespace return false; } -} -bool IsDrawableAny(uint32_t type) + /// Add here all exception classificator types: needed for algorithms, + /// but don't have drawing rules. + bool IsUsefulNondrawableType(uint32_t type, EGeomType g = GEOM_UNDEFINED) + { + if (!classif().IsTypeValid(type)) + return false; + + if (TypeAlwaysExists(type, g)) + return true; + + static uint32_t const hwtag = classif().GetTypeByPath({"hwtag"}); + static uint32_t const psurface = classif().GetTypeByPath({"psurface"}); + static uint32_t const wheelchair = classif().GetTypeByPath({"wheelchair"}); + static uint32_t const cuisine = classif().GetTypeByPath({"cuisine"}); + + // Caching type length to exclude generic [wheelchair]. + uint8_t const typeLength = ftype::GetLevel(type); + + ftype::TruncValue(type, 1); + if (g == GEOM_LINE || g == GEOM_UNDEFINED) + { + if (hwtag == type || psurface == type) + return true; + } + + if (wheelchair == type && typeLength == 2) + return true; + + if (cuisine == type) + return true; + + return false; + } +} // namespace + +bool TypeIsUseful(uint32_t type) { - return (TypeAlwaysExists(type) || classif().GetObject(type)->IsDrawableAny()); + return IsUsefulNondrawableType(type) || classif().GetObject(type)->IsDrawableAny(); } bool IsDrawableLike(vector const & types, EGeomType geomType) @@ -335,13 +351,13 @@ bool IsDrawableForIndexClassifOnly(TypesHolder const & types, int level) return false; } -bool RemoveNoDrawableTypes(vector & types, EGeomType geomType, bool emptyName) +bool RemoveUselessTypes(vector & types, EGeomType geomType, bool emptyName) { Classificator const & c = classif(); types.erase(remove_if(types.begin(), types.end(), [&] (uint32_t t) { - if (TypeAlwaysExists(t, geomType)) + if (IsUsefulNondrawableType(t, geomType)) return false; IsDrawableLikeChecker doCheck(geomType, emptyName); diff --git a/indexer/feature_visibility.hpp b/indexer/feature_visibility.hpp index d806e492e7..3ca3e5e3aa 100644 --- a/indexer/feature_visibility.hpp +++ b/indexer/feature_visibility.hpp @@ -17,7 +17,7 @@ namespace feature { class TypesHolder; - bool IsDrawableAny(uint32_t type); + bool TypeIsUseful(uint32_t type); bool IsDrawableForIndex(FeatureType & ft, int level); bool IsDrawableForIndex(TypesHolder const & types, m2::RectD limitRect, int level); @@ -32,7 +32,8 @@ namespace feature /// For FEATURE_TYPE_AREA need to have at least one area-filling type. bool IsDrawableLike(std::vector const & types, EGeomType geomType); /// For FEATURE_TYPE_AREA removes line-drawing only types. - bool RemoveNoDrawableTypes(std::vector & types, EGeomType geomType, bool emptyName = false); + bool RemoveUselessTypes(std::vector & types, EGeomType geomType, + bool emptyName = false); //@} int GetMinDrawableScale(FeatureType & ft);