diff --git a/indexer/feature_utils.cpp b/indexer/feature_utils.cpp index 29c8f606cb..49a1e97574 100644 --- a/indexer/feature_utils.cpp +++ b/indexer/feature_utils.cpp @@ -19,6 +19,7 @@ #include #include +using namespace feature; using namespace std; namespace @@ -153,6 +154,35 @@ void GetReadableNameImpl(feature::RegionData const & regionData, StringUtf8Multi GetMwmLangName(regionData, src, out); } + +// Filters types with |checker|, returns vector of raw type second components. +// For example for types {"cuisine-sushi", "cuisine-pizza", "cuisine-seafood"} vector +// of second components is {"sushi", "pizza", "seafood"}. +vector GetRawTypeSecond(ftypes::BaseChecker const & checker, TypesHolder const & types) +{ + vector res; + for (auto const t : types) + { + if (!checker(t)) + continue; + auto const path = classif().GetFullObjectNamePath(t); + CHECK_EQUAL(path.size(), 2, (path)); + res.push_back(path[1]); + } + return res; +} + +vector GetLocalizedTypes(ftypes::BaseChecker const & checker, TypesHolder const & types) +{ + vector localized; + for (auto const t : types) + { + if (!checker(t)) + continue; + localized.push_back(platform::GetLocalizedTypeName(classif().GetReadableObjectName(t))); + } + return localized; +} } // namespace namespace feature @@ -378,30 +408,26 @@ vector GetDescriptionLangPriority(RegionData const & regionData, int8_t vector GetCuisines(TypesHolder const & types) { - vector cuisines; auto const & isCuisine = ftypes::IsCuisineChecker::Instance(); - for (auto const t : types) - { - if (!isCuisine(t)) - continue; - auto const cuisine = classif().GetFullObjectNamePath(t); - CHECK_EQUAL(cuisine.size(), 2, (cuisine)); - cuisines.push_back(cuisine[1]); - } - return cuisines; + return GetRawTypeSecond(isCuisine, types); } vector GetLocalizedCuisines(TypesHolder const & types) { - vector localized; auto const & isCuisine = ftypes::IsCuisineChecker::Instance(); - for (auto const t : types) - { - if (!isCuisine(t)) - continue; - localized.push_back(platform::GetLocalizedTypeName(classif().GetReadableObjectName(t))); - } - return localized; + return GetLocalizedTypes(isCuisine, types); +} + +vector GetRecyclingTypes(TypesHolder const & types) +{ + auto const & isRecyclingType = ftypes::IsRecyclingTypeChecker::Instance(); + return GetRawTypeSecond(isRecyclingType, types); +} + +vector GetLocalizedRecyclingTypes(TypesHolder const & types) +{ + auto const & isRecyclingType = ftypes::IsRecyclingTypeChecker::Instance(); + return GetLocalizedTypes(isRecyclingType, types); } vector GetRoadShieldsNames(string const & rawRoadNumber) diff --git a/indexer/feature_utils.hpp b/indexer/feature_utils.hpp index eec689ac20..eb0ac9f991 100644 --- a/indexer/feature_utils.hpp +++ b/indexer/feature_utils.hpp @@ -84,6 +84,12 @@ namespace feature // Returns vector of cuisines names localized by platform. std::vector GetLocalizedCuisines(TypesHolder const & types); + // Returns vector of recycling types readable names from classificator. + std::vector GetRecyclingTypes(TypesHolder const & types); + + // Returns vector of recycling types localized by platform. + std::vector GetLocalizedRecyclingTypes(TypesHolder const & types); + // Returns names of feature road shields. Applicable for road features. std::vector GetRoadShieldsNames(std::string const & rawRoadNumber); } // namespace feature diff --git a/indexer/ftypes_matcher.cpp b/indexer/ftypes_matcher.cpp index 88fe10b634..1015d22979 100644 --- a/indexer/ftypes_matcher.cpp +++ b/indexer/ftypes_matcher.cpp @@ -692,6 +692,12 @@ IsCuisineChecker::IsCuisineChecker() : BaseChecker(1 /* level */) m_types.push_back(c.GetTypeByPath({"cuisine"})); } +IsRecyclingTypeChecker::IsRecyclingTypeChecker() : BaseChecker(1 /* level */) +{ + Classificator const & c = classif(); + m_types.push_back(c.GetTypeByPath({"recycling"})); +} + IsCityChecker::IsCityChecker() { m_types.push_back(classif().GetTypeByPath({"place", "city"})); diff --git a/indexer/ftypes_matcher.hpp b/indexer/ftypes_matcher.hpp index c0bcfe671b..f05d8ce883 100644 --- a/indexer/ftypes_matcher.hpp +++ b/indexer/ftypes_matcher.hpp @@ -386,6 +386,14 @@ public: DECLARE_CHECKER_INSTANCE(IsCuisineChecker); }; +class IsRecyclingTypeChecker : public BaseChecker +{ + IsRecyclingTypeChecker(); + +public: + DECLARE_CHECKER_INSTANCE(IsRecyclingTypeChecker); +}; + class IsCityChecker : public BaseChecker { IsCityChecker(); diff --git a/indexer/map_object.cpp b/indexer/map_object.cpp index 0554acefb1..4530626be8 100644 --- a/indexer/map_object.cpp +++ b/indexer/map_object.cpp @@ -178,6 +178,13 @@ vector MapObject::GetLocalizedCuisines() const return feature::GetLocalizedCuisines(m_types); } +vector MapObject::GetRecyclingTypes() const { return feature::GetRecyclingTypes(m_types); } + +vector MapObject::GetLocalizedRecyclingTypes() const +{ + return feature::GetLocalizedRecyclingTypes(m_types); +} + string MapObject::FormatCuisines() const { return strings::JoinStrings(GetLocalizedCuisines(), kFieldsSeparator); diff --git a/indexer/map_object.hpp b/indexer/map_object.hpp index 6c4ba974b8..5d1d0fd284 100644 --- a/indexer/map_object.hpp +++ b/indexer/map_object.hpp @@ -79,10 +79,14 @@ public: std::string GetEmail() const; std::string GetWebsite() const; Internet GetInternet() const; - /// @returns not localized cuisines keys. + /// @returns non-localized cuisines keys. std::vector GetCuisines() const; /// @returns translated cuisine(s). std::vector GetLocalizedCuisines() const; + /// @returns non-localized recycling type(s). + std::vector GetRecyclingTypes() const; + /// @returns translated recycling type(s). + std::vector GetLocalizedRecyclingTypes() const; /// @returns translated and formatted cuisines. std::string FormatCuisines() const; std::vector GetRoadShields() const; diff --git a/map/place_page_info.cpp b/map/place_page_info.cpp index 4f7ef8ca1f..3633f5cca1 100644 --- a/map/place_page_info.cpp +++ b/map/place_page_info.cpp @@ -113,6 +113,10 @@ std::string Info::FormatSubtitle(bool withType) const for (std::string const & cuisine : GetLocalizedCuisines()) subtitle.push_back(cuisine); + // Recycling types. + for (std::string const & recycling : GetLocalizedRecyclingTypes()) + subtitle.push_back(recycling); + // Airport IATA code. std::string const iata = GetAirportIata(); if (!iata.empty())