From 99b8b11f7fec6416ba69002e86e2fb705589a794 Mon Sep 17 00:00:00 2001 From: vng Date: Fri, 17 Feb 2012 00:47:45 +0300 Subject: [PATCH] [search] Process feature types like 2-level types (trim 3 level). --- generator/feature_merger.cpp | 9 +-------- indexer/search_index_builder.cpp | 10 ++++++++-- search/intermediate_result.cpp | 9 +++++++++ search/intermediate_result.hpp | 6 +----- 4 files changed, 19 insertions(+), 15 deletions(-) diff --git a/generator/feature_merger.cpp b/generator/feature_merger.cpp index 359c93a66e..172f33cab5 100644 --- a/generator/feature_merger.cpp +++ b/generator/feature_merger.cpp @@ -283,14 +283,7 @@ void FeatureTypesProcessor::CorrectType(uint32_t & t) const // 1. get normalized type: // highway-motorway-bridge => highway-motorway - uint32_t normal = ftype::GetEmptyValue(); - uint8_t v; - if (!ftype::GetValue(t, 0, v)) return; - ftype::PushValue(normal, v); - if (!ftype::GetValue(t, 1, v)) return; - ftype::PushValue(normal, v); - - t = normal; + ftype::TruncValue(t, 2); // 2. get mapping type: map::const_iterator i = m_mapping.find(t); diff --git a/indexer/search_index_builder.cpp b/indexer/search_index_builder.cpp index 911dd82aa2..7145c576e6 100644 --- a/indexer/search_index_builder.cpp +++ b/indexer/search_index_builder.cpp @@ -256,12 +256,18 @@ public: // add names of categories of the feature for (size_t i = 0; i < types.Size(); ++i) { + uint32_t type = types[i]; + + // Leave only 2 level of type - for example, do not distinguish: + // highway-primary-oneway or amenity-parking-fee. + ftype::TruncValue(type, 2); + // Do index only for visible types in mwm. - pair const r = feature::DrawableScaleRangeForType(types[i]); + pair const r = feature::DrawableScaleRangeForType(type); if (my::between_s(m_scales.first, m_scales.second, r.first) || my::between_s(m_scales.first, m_scales.second, r.second)) { - inserter.AddToken(search::CATEGORIES_LANG, search::FeatureTypeToString(types[i])); + inserter.AddToken(search::CATEGORIES_LANG, search::FeatureTypeToString(type)); } } } diff --git a/search/intermediate_result.cpp b/search/intermediate_result.cpp index 02625aa9e2..ace904d9d2 100644 --- a/search/intermediate_result.cpp +++ b/search/intermediate_result.cpp @@ -304,6 +304,15 @@ string PreResult2::DebugPrint() const return res; } +uint32_t PreResult2::GetBestType() const +{ + /// @todo Need to process all types. + + uint32_t t = m_types.GetBestType(); + ftype::TruncValue(t, 2); + return t; +} + string PreResult2::GetFeatureType(CategoriesHolder const * pCat, int8_t lang) const { ASSERT_EQUAL(m_resultType, RESULT_FEATURE, ()); diff --git a/search/intermediate_result.hpp b/search/intermediate_result.hpp index e4e37a46e5..06dfff42e0 100644 --- a/search/intermediate_result.hpp +++ b/search/intermediate_result.hpp @@ -106,11 +106,7 @@ private: string GetFeatureType(CategoriesHolder const * pCat, int8_t lang) const; feature::TypesHolder m_types; - inline uint32_t GetBestType() const - { - /// @todo Need to process all types. - return m_types.GetBestType(); - } + uint32_t GetBestType() const; string m_str, m_completionString;