diff --git a/indexer/editable_map_object.cpp b/indexer/editable_map_object.cpp index c69209ed33..d85e612113 100644 --- a/indexer/editable_map_object.cpp +++ b/indexer/editable_map_object.cpp @@ -442,7 +442,7 @@ bool EditableMapObject::IsValidMetadata(MetadataID type, std::string const & val case MetadataID::FMD_STARS: { uint32_t stars; - return strings::to_uint(value, stars) && stars > 0 && stars <= kMaxStarsCount; + return strings::to_uint(value, stars) && stars > 0 && stars <= feature::kMaxStarsCount; } case MetadataID::FMD_ELE: { diff --git a/indexer/feature_utils.cpp b/indexer/feature_utils.cpp index edfd9ebace..d0b294be5b 100644 --- a/indexer/feature_utils.cpp +++ b/indexer/feature_utils.cpp @@ -315,6 +315,8 @@ FeatureEstimator const & GetFeatureEstimator() } } // namespace +static constexpr std::string_view kStarSymbol = "★"; + NameParamsIn::NameParamsIn(StringUtf8Multilang const & src_, RegionData const & regionData_, std::string_view deviceLang_, bool allowTranslit_) : NameParamsIn(src_, regionData_, StringUtf8Multilang::GetLangIndex(deviceLang_), allowTranslit_) @@ -472,4 +474,12 @@ bool HasToilets(TypesHolder const & types) return isToiletsType(types); } +string FormatStars(uint8_t starsCount) +{ + std::string stars; + for (int i = 0; i < starsCount && i < kMaxStarsCount; ++i) + stars.append(kStarSymbol); + return stars; +} + } // namespace feature diff --git a/indexer/feature_utils.hpp b/indexer/feature_utils.hpp index a5d77b5609..7c47c25787 100644 --- a/indexer/feature_utils.hpp +++ b/indexer/feature_utils.hpp @@ -8,6 +8,7 @@ class StringUtf8Multilang; namespace feature { + static constexpr uint8_t kMaxStarsCount = 7; static constexpr std::string_view kFieldsSeparator = " • "; // Address house numbers interpolation. @@ -140,4 +141,7 @@ namespace feature /// Returns true if feature has Toilets type. bool HasToilets(TypesHolder const & types); + /// @returns starsCount of ★ symbol. + std::string FormatStars(uint8_t starsCount); + } // namespace feature diff --git a/indexer/map_object.hpp b/indexer/map_object.hpp index b0c40de2fb..7ed6070dd3 100644 --- a/indexer/map_object.hpp +++ b/indexer/map_object.hpp @@ -33,9 +33,7 @@ Internet InternetFromString(std::string_view inet); class MapObject { public: - static constexpr std::string_view kStarSymbol = "★"; static constexpr std::string_view kToiletsSymbol = "🚻"; - static constexpr uint8_t kMaxStarsCount = 7; void SetFromFeatureType(FeatureType & ft); diff --git a/map/place_page_info.cpp b/map/place_page_info.cpp index ab5ae0ad87..4d75e5749d 100644 --- a/map/place_page_info.cpp +++ b/map/place_page_info.cpp @@ -149,7 +149,7 @@ std::string Info::FormatSubtitle(bool withType) const append(roadShields); // Stars. - auto const stars = FormatStars(); + auto const stars = feature::FormatStars(GetStars()); if (!stars.empty()) append(stars); @@ -313,14 +313,6 @@ kml::LocalizableString Info::FormatNewBookmarkName() const return bookmarkName; } -std::string Info::FormatStars() const -{ - std::string stars; - for (int i = 0; i < GetStars(); ++i) - stars.append(MapObject::kStarSymbol); - return stars; -} - std::string Info::GetFormattedCoordinate(CoordinatesFormat coordsFormat) const { auto const & ll = GetLatLon(); diff --git a/map/place_page_info.hpp b/map/place_page_info.hpp index ac6ee2cf13..bac543ccb8 100644 --- a/map/place_page_info.hpp +++ b/map/place_page_info.hpp @@ -219,8 +219,6 @@ public: private: std::string FormatSubtitle(bool withType) const; std::string GetBookmarkName(); - /// @returns empty string or GetStars() count of ★ symbol. - std::string FormatStars() const; place_page::BuildInfo m_buildInfo; diff --git a/search/intermediate_result.cpp b/search/intermediate_result.cpp index 8872258212..11053e92f4 100644 --- a/search/intermediate_result.cpp +++ b/search/intermediate_result.cpp @@ -286,13 +286,11 @@ void FillDetails(FeatureType & ft, Result::Details & details) feature::TypesHolder const typesHolder(ft); + std::string stars; uint8_t starsCount = 0; bool const isHotel = ftypes::IsHotelChecker::Instance()(typesHolder); if (isHotel && strings::to_uint(ft.GetMetadata(feature::Metadata::FMD_STARS), starsCount)) - starsCount = std::min(starsCount, osm::MapObject::kMaxStarsCount); - std::string stars; - for (int i = 0; i < starsCount; ++i) - stars.append(osm::MapObject::kStarSymbol); + stars = feature::FormatStars(starsCount); auto const cuisines = feature::GetLocalizedCuisines(typesHolder); auto const cuisine = strings::JoinStrings(cuisines, feature::kFieldsSeparator);