From 66d1b17517f0c9142c65ff0a65be5e8b9c78c140 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Mon, 12 Aug 2024 19:34:59 +0100 Subject: [PATCH 1/2] [generator] Don't store sidewalk names 177kb saving in greater london Signed-off-by: Harry Bond --- generator/generator_tests/osm_type_test.cpp | 16 ++++++++++++++++ generator/osm2type.cpp | 7 +++++++ 2 files changed, 23 insertions(+) diff --git a/generator/generator_tests/osm_type_test.cpp b/generator/generator_tests/osm_type_test.cpp index 55dfcee87c..344b07af39 100644 --- a/generator/generator_tests/osm_type_test.cpp +++ b/generator/generator_tests/osm_type_test.cpp @@ -1458,6 +1458,22 @@ UNIT_CLASS_TEST(TestWithClassificator, OsmType_OldName) } } +UNIT_CLASS_TEST(TestWithClassificator, OsmType_NoName) +{ + { + Tags const tags = { + {"highway", "footway"}, + {"footway", "sidewalk"}, + {"name", "Testing Street"}, + {"name:de", "Teststraße"}, + }; + + auto const params = GetFeatureBuilderParams(tags); + + TEST(params.name.IsEmpty(), ("Sidewalk names are queried at runtime, they shouldn't be in map data")); + } +} + UNIT_CLASS_TEST(TestWithClassificator, OsmType_AltName) { { diff --git a/generator/osm2type.cpp b/generator/osm2type.cpp index 84fb9992ec..0b1aa13b82 100644 --- a/generator/osm2type.cpp +++ b/generator/osm2type.cpp @@ -1483,6 +1483,13 @@ void GetNameAndType(OsmElement * p, FeatureBuilderParams & params, // Stage4: Match tags to classificator feature types via mapcss-mapping.csv. MatchTypes(p, params, filterType); + // Sidewalk names are queried at runtime, they shouldn't be in map data + if (params.IsTypeExist(classif().GetTypeByPath({"highway","footway","sidewalk"}))) + { + params.ClearName(); + } + //TODO: road names seem to be re-added in MatchTypes?? + // Stage5: Postprocess feature types. PostprocessElement(p, params); -- 2.45.3 From 4aa2bfc3080241a8f06c2d236fb1a255d9facceb Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Thu, 15 Aug 2024 12:31:15 +0100 Subject: [PATCH 2/2] [Core] Use nearby road name for sidewalk name Signed-off-by: Harry Bond --- indexer/ftypes_matcher.cpp | 5 +++++ indexer/ftypes_matcher.hpp | 7 +++++++ indexer/map_object.cpp | 1 + indexer/map_object.hpp | 5 ++++- map/framework.cpp | 10 +++++++++- map/framework.hpp | 1 + map/place_page_info.cpp | 33 +++++++++++++++++++++------------ map/place_page_info.hpp | 4 +++- 8 files changed, 51 insertions(+), 15 deletions(-) diff --git a/indexer/ftypes_matcher.cpp b/indexer/ftypes_matcher.cpp index ecc3904d97..16929e66fa 100644 --- a/indexer/ftypes_matcher.cpp +++ b/indexer/ftypes_matcher.cpp @@ -712,6 +712,11 @@ IsPublicTransportStopChecker::IsPublicTransportStopChecker() m_types.push_back(c.GetTypeByPath({"railway", "tram_stop"})); } +IsSidewalkChecker::IsSidewalkChecker() : BaseChecker(3 /* level */) +{ + m_types.push_back(classif().GetTypeByPath({"highway", "footway", "sidewalk"})); +} + IsMotorwayJunctionChecker::IsMotorwayJunctionChecker() { m_types.push_back(classif().GetTypeByPath({"highway", "motorway_junction"})); diff --git a/indexer/ftypes_matcher.hpp b/indexer/ftypes_matcher.hpp index 0255bb5695..a67ca2596d 100644 --- a/indexer/ftypes_matcher.hpp +++ b/indexer/ftypes_matcher.hpp @@ -449,6 +449,13 @@ public: DECLARE_CHECKER_INSTANCE(IsPublicTransportStopChecker); }; +class IsSidewalkChecker : public BaseChecker +{ + IsSidewalkChecker(); +public: + DECLARE_CHECKER_INSTANCE(IsSidewalkChecker); +}; + class IsMotorwayJunctionChecker : public BaseChecker { IsMotorwayJunctionChecker(); diff --git a/indexer/map_object.cpp b/indexer/map_object.cpp index 04107651ab..6d15132c78 100644 --- a/indexer/map_object.cpp +++ b/indexer/map_object.cpp @@ -207,5 +207,6 @@ int MapObject::GetStars() const bool MapObject::IsPointType() const { return m_geomType == feature::GeomType::Point; } bool MapObject::IsBuilding() const { return ftypes::IsBuildingChecker::Instance()(m_types); } bool MapObject::IsPublicTransportStop() const { return ftypes::IsPublicTransportStopChecker::Instance()(m_types); } +bool MapObject::IsSidewalk() const { return ftypes::IsSidewalkChecker::Instance()(m_types); } } // namespace osm diff --git a/indexer/map_object.hpp b/indexer/map_object.hpp index 220e0e519c..27305664d8 100644 --- a/indexer/map_object.hpp +++ b/indexer/map_object.hpp @@ -94,12 +94,15 @@ public: feature::GeomType GetGeomType() const { return m_geomType; }; int8_t GetLayer() const { return m_layer; }; - /// @returns true if object is of building type. + /// @returns true if object is a building type. bool IsBuilding() const; /// @returns true if object is a public transport stop type. bool IsPublicTransportStop() const; + /// @returns true if object is a sidewalk/pavement type. + bool IsSidewalk() const; + void AssignMetadata(feature::Metadata & dest) const { dest = m_metadata; } /// @returns all localized POI types separated by kFieldsSeparator to display in UI. diff --git a/map/framework.cpp b/map/framework.cpp index 7725336e68..8de3a72d36 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -610,6 +610,14 @@ search::ReverseGeocoder::Address Framework::GetAddressAtPoint(m2::PointD const & return addr; } +search::ReverseGeocoder::Street Framework::GetNearestStreet(m2::PointD const & pt) const +{ + auto const & dataSource = m_featuresFetcher.GetDataSource(); + search::ReverseGeocoder const coder(dataSource); + MwmSet::MwmId const mwmId = dataSource.GetMwmIdByCountryFile(platform::CountryFile(m_infoGetter->GetRegionCountryId(pt))); + return coder.GetNearbyStreets(mwmId, pt)[0]; +} + void Framework::FillFeatureInfo(FeatureID const & fid, place_page::Info & info) const { if (!fid.IsValid()) @@ -675,7 +683,7 @@ void Framework::FillInfoFromFeatureType(FeatureType & ft, place_page::Info & inf if (ftypes::IsAddressObjectChecker::Instance()(ft)) info.SetAddress(GetAddressAtPoint(feature::GetCenter(ft)).FormatAddress()); - info.SetFromFeatureType(ft); + info.SetFromFeatureType(ft, this); FillDescription(ft, info); diff --git a/map/framework.hpp b/map/framework.hpp index e345b7d721..1d22e518e2 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -621,6 +621,7 @@ private: public: search::ReverseGeocoder::Address GetAddressAtPoint(m2::PointD const & pt) const; + search::ReverseGeocoder::Street GetNearestStreet(m2::PointD const & pt) const; /// Get "best for the user" feature at given point even if it's invisible on the screen. /// Ignores coastlines and prefers buildings over other area features. diff --git a/map/place_page_info.cpp b/map/place_page_info.cpp index 9242e62994..f092be733c 100644 --- a/map/place_page_info.cpp +++ b/map/place_page_info.cpp @@ -1,5 +1,5 @@ #include "map/place_page_info.hpp" - +#include "map/framework.hpp" #include "map/bookmark_helpers.hpp" #include "indexer/feature_utils.hpp" @@ -32,7 +32,7 @@ bool Info::ShouldShowAddPlace() const return !(IsFeature() && isPointOrBuilding); } -void Info::SetFromFeatureType(FeatureType & ft) +void Info::SetFromFeatureType(FeatureType & ft, Framework const * framework) { MapObject::SetFromFeatureType(ft); m_hasMetadata = true; @@ -71,18 +71,15 @@ void Info::SetFromFeatureType(FeatureType & ft) m_uiTitle = m_primaryFeatureName; m_uiSecondaryTitle = out.secondary; } - else + else if (IsBuilding()) { - if (IsBuilding()) - { - emptyTitle = m_address.empty(); - if (!emptyTitle) - m_uiTitle = m_address; - m_uiAddress.clear(); // already in main title - } - else - emptyTitle = true; + emptyTitle = m_address.empty(); + if (!emptyTitle) + m_uiTitle = m_address; + m_uiAddress.clear(); // already in main title } + else + emptyTitle = true; // Assign Feature's type if main title is empty. if (emptyTitle) @@ -93,7 +90,19 @@ void Info::SetFromFeatureType(FeatureType & ft) { auto const lRef = GetMetadata(feature::Metadata::FMD_LOCAL_REF); if (!lRef.empty()) + { + // TODO: replace with std::format and add string in strings.txt m_uiTitle.append(" (").append(lRef).append(")"); + emptyTitle = false; + } + } + + // Fetch name from nearest road + if (IsSidewalk()) + { + search::ReverseGeocoder::Street nearestStreet = framework -> GetNearestStreet(m_buildInfo.m_mercator); + m_uiTitle = nearestStreet.m_name; + emptyTitle = false; } m_uiSubtitle = FormatSubtitle(IsFeature() /* withTypes */, !emptyTitle /* withMainType */); diff --git a/map/place_page_info.hpp b/map/place_page_info.hpp index 4ed026198d..665a08727e 100644 --- a/map/place_page_info.hpp +++ b/map/place_page_info.hpp @@ -18,6 +18,8 @@ #include #include +class Framework; + namespace place_page { enum class OpeningMode @@ -199,7 +201,7 @@ public: storage::CountriesVec const & GetTopmostCountryIds() const { return m_topmostCountryIds; } /// MapObject - void SetFromFeatureType(FeatureType & ft); + void SetFromFeatureType(FeatureType & ft, Framework const * framework); void SetWikiDescription(std::string && description) { m_description = std::move(description); } -- 2.45.3