From c224d0eb08d4b72e0aadb307365c5b09670dc3ac Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Wed, 6 Mar 2019 09:36:44 +0300 Subject: [PATCH 1/7] Start openlr_stat refactoring. --- openlr/road_info_getter.cpp | 24 +++++++++++++++++++++++- openlr/road_info_getter.hpp | 6 ++++-- 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/openlr/road_info_getter.cpp b/openlr/road_info_getter.cpp index 8ca5c5c884..97c2d35c28 100644 --- a/openlr/road_info_getter.cpp +++ b/openlr/road_info_getter.cpp @@ -8,6 +8,23 @@ #include "std/iterator.hpp" +namespace +{ +openlr::FunctionalRoadClass HighwayClassToFunctionalRoadClass(ftypes::HighwayClass const & hwClass) +{ + switch (hwClass) + { + case ftypes::HighwayClass::Trunk: return openlr::FunctionalRoadClass::FRC0; + case ftypes::HighwayClass::Primary: return openlr::FunctionalRoadClass::FRC1; + case ftypes::HighwayClass::Secondary: return openlr::FunctionalRoadClass::FRC2; + case ftypes::HighwayClass::Tertiary: return openlr::FunctionalRoadClass::FRC3; + case ftypes::HighwayClass::LivingStreet: return openlr::FunctionalRoadClass::FRC4; + case ftypes::HighwayClass::Service: return openlr::FunctionalRoadClass::FRC5; + default: return openlr::FunctionalRoadClass::FRC7; + } +} +} + namespace openlr { RoadInfoGetter::RoadInfoGetter(DataSource const & dataSource) @@ -26,8 +43,13 @@ RoadInfoGetter::RoadInfo RoadInfoGetter::Get(FeatureID const & fid) CHECK(g.GetOriginalFeatureByIndex(fid.m_index, ft), ()); RoadInfo info; - info.m_frc = GetFunctionalRoadClass(feature::TypesHolder(ft)); +// info.m_frc = GetFunctionalRoadClass(feature::TypesHolder(ft)); info.m_fow = GetFormOfWay(feature::TypesHolder(ft)); + info.m_hwClass = ftypes::GetHighwayClass(feature::TypesHolder(ft)); + info.m_link = ftypes::IsLinkChecker::Instance()(ft); + info.m_oneWay = ftypes::IsOneWayChecker::Instance()(ft); + info.m_frc = HighwayClassToFunctionalRoadClass(info.m_hwClass); + it = m_cache.emplace(fid, info).first; return it->second; diff --git a/openlr/road_info_getter.hpp b/openlr/road_info_getter.hpp index 9a83343623..72b897d4d3 100644 --- a/openlr/road_info_getter.hpp +++ b/openlr/road_info_getter.hpp @@ -4,6 +4,7 @@ #include "openlr/road_type_checkers.hpp" #include "indexer/feature_data.hpp" +#include "indexer/ftypes_matcher.hpp" #include "std/map.hpp" @@ -22,10 +23,11 @@ class RoadInfoGetter final public: struct RoadInfo { - RoadInfo() = default; - FunctionalRoadClass m_frc = FunctionalRoadClass::NotAValue; FormOfWay m_fow = FormOfWay::NotAValue; + ftypes::HighwayClass m_hwClass = ftypes::HighwayClass::Undefined; + bool m_link = false; + bool m_oneWay = false; }; RoadInfoGetter(DataSource const & dataSource); From 186b4cea4a2dcfb0a8bb903d1d017afb5e300452 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Wed, 6 Mar 2019 13:25:52 +0300 Subject: [PATCH 2/7] Using standard highway classes and removing custom road checkers. --- openlr/CMakeLists.txt | 2 - openlr/road_info_getter.cpp | 35 ++---------- openlr/road_info_getter.hpp | 17 +----- openlr/road_type_checkers.cpp | 56 ------------------- openlr/road_type_checkers.hpp | 42 -------------- xcode/openlr/openlr.xcodeproj/project.pbxproj | 8 --- 6 files changed, 8 insertions(+), 152 deletions(-) delete mode 100644 openlr/road_type_checkers.cpp delete mode 100644 openlr/road_type_checkers.hpp diff --git a/openlr/CMakeLists.txt b/openlr/CMakeLists.txt index a021439a7c..ea59cba7c6 100644 --- a/openlr/CMakeLists.txt +++ b/openlr/CMakeLists.txt @@ -27,8 +27,6 @@ set( paths_connector.hpp road_info_getter.cpp road_info_getter.hpp - road_type_checkers.cpp - road_type_checkers.hpp router.cpp router.hpp stats.hpp diff --git a/openlr/road_info_getter.cpp b/openlr/road_info_getter.cpp index 97c2d35c28..49d96330d3 100644 --- a/openlr/road_info_getter.cpp +++ b/openlr/road_info_getter.cpp @@ -6,8 +6,6 @@ #include "base/assert.hpp" -#include "std/iterator.hpp" - namespace { openlr::FunctionalRoadClass HighwayClassToFunctionalRoadClass(ftypes::HighwayClass const & hwClass) @@ -23,12 +21,12 @@ openlr::FunctionalRoadClass HighwayClassToFunctionalRoadClass(ftypes::HighwayCla default: return openlr::FunctionalRoadClass::FRC7; } } -} +} // namespace namespace openlr { RoadInfoGetter::RoadInfoGetter(DataSource const & dataSource) - : m_dataSource(dataSource), m_c(classif()) + : m_dataSource(dataSource) { } @@ -43,7 +41,6 @@ RoadInfoGetter::RoadInfo RoadInfoGetter::Get(FeatureID const & fid) CHECK(g.GetOriginalFeatureByIndex(fid.m_index, ft), ()); RoadInfo info; -// info.m_frc = GetFunctionalRoadClass(feature::TypesHolder(ft)); info.m_fow = GetFormOfWay(feature::TypesHolder(ft)); info.m_hwClass = ftypes::GetHighwayClass(feature::TypesHolder(ft)); info.m_link = ftypes::IsLinkChecker::Instance()(ft); @@ -55,35 +52,13 @@ RoadInfoGetter::RoadInfo RoadInfoGetter::Get(FeatureID const & fid) return it->second; } -FunctionalRoadClass RoadInfoGetter::GetFunctionalRoadClass(feature::TypesHolder const & types) const -{ - if (m_trunkChecker(types)) - return FunctionalRoadClass::FRC0; - - if (m_primaryChecker(types)) - return FunctionalRoadClass::FRC1; - - if (m_secondaryChecker(types)) - return FunctionalRoadClass::FRC2; - - if (m_tertiaryChecker(types)) - return FunctionalRoadClass::FRC3; - - if (m_residentialChecker(types)) - return FunctionalRoadClass::FRC4; - - if (m_livingStreetChecker(types)) - return FunctionalRoadClass::FRC5; - - return FunctionalRoadClass::FRC7; -} - FormOfWay RoadInfoGetter::GetFormOfWay(feature::TypesHolder const & types) const { - if (m_trunkChecker(types)) + auto const hwClass = ftypes::GetHighwayClass(feature::TypesHolder(types)); + if (hwClass == ftypes::HighwayClass::Trunk) return FormOfWay::Motorway; - if (m_primaryChecker(types)) + if (hwClass == ftypes::HighwayClass::Primary) return FormOfWay::MultipleCarriageway; return FormOfWay::SingleCarriageway; diff --git a/openlr/road_info_getter.hpp b/openlr/road_info_getter.hpp index 72b897d4d3..2a60a452b9 100644 --- a/openlr/road_info_getter.hpp +++ b/openlr/road_info_getter.hpp @@ -1,12 +1,11 @@ #pragma once #include "openlr/openlr_model.hpp" -#include "openlr/road_type_checkers.hpp" #include "indexer/feature_data.hpp" #include "indexer/ftypes_matcher.hpp" -#include "std/map.hpp" +#include class Classificator; class DataSource; @@ -30,24 +29,14 @@ public: bool m_oneWay = false; }; - RoadInfoGetter(DataSource const & dataSource); + explicit RoadInfoGetter(DataSource const & dataSource); RoadInfo Get(FeatureID const & fid); private: - FunctionalRoadClass GetFunctionalRoadClass(feature::TypesHolder const & types) const; FormOfWay GetFormOfWay(feature::TypesHolder const & types) const; DataSource const & m_dataSource; - Classificator const & m_c; - - TrunkChecker const m_trunkChecker; - PrimaryChecker const m_primaryChecker; - SecondaryChecker const m_secondaryChecker; - TertiaryChecker const m_tertiaryChecker; - ResidentialChecker const m_residentialChecker; - LivingStreetChecker const m_livingStreetChecker; - - map m_cache; + std::map m_cache; }; } // namespace openlr diff --git a/openlr/road_type_checkers.cpp b/openlr/road_type_checkers.cpp deleted file mode 100644 index c9b1e9b704..0000000000 --- a/openlr/road_type_checkers.cpp +++ /dev/null @@ -1,56 +0,0 @@ -#include "openlr/road_type_checkers.hpp" - -#include "indexer/classificator.hpp" - -namespace openlr -{ -// TrunkChecker ------------------------------------------------------------------------------------ -TrunkChecker::TrunkChecker() -{ - auto const & c = classif(); - m_types.push_back(c.GetTypeByPath({"highway", "motorway"})); - m_types.push_back(c.GetTypeByPath({"highway", "motorway_link"})); - m_types.push_back(c.GetTypeByPath({"highway", "trunk"})); - m_types.push_back(c.GetTypeByPath({"highway", "trunk_link"})); -} - -// PrimaryChecker ---------------------------------------------------------------------------------- -PrimaryChecker::PrimaryChecker() -{ - auto const & c = classif(); - m_types.push_back(c.GetTypeByPath({"highway", "primary"})); - m_types.push_back(c.GetTypeByPath({"highway", "primary_link"})); -} - -// SecondaryChecker -------------------------------------------------------------------------------- -SecondaryChecker::SecondaryChecker() -{ - auto const & c = classif(); - m_types.push_back(c.GetTypeByPath({"highway", "secondary"})); - m_types.push_back(c.GetTypeByPath({"highway", "secondary_link"})); -} - -// TertiaryChecker --------------------------------------------------------------------------------- -TertiaryChecker::TertiaryChecker() -{ - auto const & c = classif(); - m_types.push_back(c.GetTypeByPath({"highway", "tertiary"})); - m_types.push_back(c.GetTypeByPath({"highway", "tertiary_link"})); -} - -// ResidentialChecker ------------------------------------------------------------------------------ -ResidentialChecker::ResidentialChecker() -{ - auto const & c = classif(); - m_types.push_back(c.GetTypeByPath({"highway", "road"})); - m_types.push_back(c.GetTypeByPath({"highway", "unclassified"})); - m_types.push_back(c.GetTypeByPath({"highway", "residential"})); -} - -// LivingStreetChecker ----------------------------------------------------------------------------- -LivingStreetChecker::LivingStreetChecker() -{ - auto const & c = classif(); - m_types.push_back(c.GetTypeByPath({"highway", "living_street"})); -} -} // namespace openlr diff --git a/openlr/road_type_checkers.hpp b/openlr/road_type_checkers.hpp deleted file mode 100644 index 689743ca11..0000000000 --- a/openlr/road_type_checkers.hpp +++ /dev/null @@ -1,42 +0,0 @@ -#pragma once - -#include "indexer/ftypes_matcher.hpp" - -namespace openlr -{ -class TrunkChecker final : public ftypes::BaseChecker -{ -public: - TrunkChecker(); -}; - -class PrimaryChecker final : public ftypes::BaseChecker -{ -public: - PrimaryChecker(); -}; - -class SecondaryChecker final : public ftypes::BaseChecker -{ -public: - SecondaryChecker(); -}; - -class TertiaryChecker final : public ftypes::BaseChecker -{ -public: - TertiaryChecker(); -}; - -class ResidentialChecker final : public ftypes::BaseChecker -{ -public: - ResidentialChecker(); -}; - -class LivingStreetChecker final : public ftypes::BaseChecker -{ -public: - LivingStreetChecker(); -}; -} // namespace openlr diff --git a/xcode/openlr/openlr.xcodeproj/project.pbxproj b/xcode/openlr/openlr.xcodeproj/project.pbxproj index b19cfc2ecc..57a9c4dd6f 100644 --- a/xcode/openlr/openlr.xcodeproj/project.pbxproj +++ b/xcode/openlr/openlr.xcodeproj/project.pbxproj @@ -11,8 +11,6 @@ 671E79111E6A502200B2859B /* openlr_model.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 671E79021E6A502200B2859B /* openlr_model.hpp */; }; 671E79181E6A502200B2859B /* road_info_getter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 671E79091E6A502200B2859B /* road_info_getter.cpp */; }; 671E79191E6A502200B2859B /* road_info_getter.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 671E790A1E6A502200B2859B /* road_info_getter.hpp */; }; - 671E791A1E6A502200B2859B /* road_type_checkers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 671E790B1E6A502200B2859B /* road_type_checkers.cpp */; }; - 671E791B1E6A502200B2859B /* road_type_checkers.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 671E790C1E6A502200B2859B /* road_type_checkers.hpp */; }; 671E791C1E6A502200B2859B /* router.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 671E790D1E6A502200B2859B /* router.cpp */; }; 671E791D1E6A502200B2859B /* router.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 671E790E1E6A502200B2859B /* router.hpp */; }; 671E791E1E6A502200B2859B /* way_point.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 671E790F1E6A502200B2859B /* way_point.hpp */; }; @@ -30,8 +28,6 @@ 671E79021E6A502200B2859B /* openlr_model.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = openlr_model.hpp; sourceTree = ""; }; 671E79091E6A502200B2859B /* road_info_getter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = road_info_getter.cpp; sourceTree = ""; }; 671E790A1E6A502200B2859B /* road_info_getter.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = road_info_getter.hpp; sourceTree = ""; }; - 671E790B1E6A502200B2859B /* road_type_checkers.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = road_type_checkers.cpp; sourceTree = ""; }; - 671E790C1E6A502200B2859B /* road_type_checkers.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = road_type_checkers.hpp; sourceTree = ""; }; 671E790D1E6A502200B2859B /* router.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = router.cpp; sourceTree = ""; }; 671E790E1E6A502200B2859B /* router.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = router.hpp; sourceTree = ""; }; 671E790F1E6A502200B2859B /* way_point.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = way_point.hpp; sourceTree = ""; }; @@ -87,8 +83,6 @@ 671E79021E6A502200B2859B /* openlr_model.hpp */, 671E79091E6A502200B2859B /* road_info_getter.cpp */, 671E790A1E6A502200B2859B /* road_info_getter.hpp */, - 671E790B1E6A502200B2859B /* road_type_checkers.cpp */, - 671E790C1E6A502200B2859B /* road_type_checkers.hpp */, 671E790D1E6A502200B2859B /* router.cpp */, 671E790E1E6A502200B2859B /* router.hpp */, 671E790F1E6A502200B2859B /* way_point.hpp */, @@ -105,7 +99,6 @@ buildActionMask = 2147483647; files = ( 671E791D1E6A502200B2859B /* router.hpp in Headers */, - 671E791B1E6A502200B2859B /* road_type_checkers.hpp in Headers */, E92EE0821F98E8EC00B57D20 /* openlr_model_xml.hpp in Headers */, 671E79111E6A502200B2859B /* openlr_model.hpp in Headers */, 671E79191E6A502200B2859B /* road_info_getter.hpp in Headers */, @@ -178,7 +171,6 @@ 671E79181E6A502200B2859B /* road_info_getter.cpp in Sources */, 671E791C1E6A502200B2859B /* router.cpp in Sources */, E92EE0871F98E8EC00B57D20 /* openlr_decoder.cpp in Sources */, - 671E791A1E6A502200B2859B /* road_type_checkers.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; From 4744a3dba498bc11d91c577464dbc9cdd957c2e0 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Sun, 10 Mar 2019 08:26:28 +0300 Subject: [PATCH 3/7] Gathering matching openlr to osm edge to single place of code. --- openlr/candidate_paths_getter.cpp | 13 +++++------ openlr/candidate_paths_getter.hpp | 5 +++-- openlr/candidate_points_getter.cpp | 2 +- openlr/helpers.cpp | 35 ++++++++++++++++++++++++++---- openlr/helpers.hpp | 8 +++++-- openlr/openlr_decoder.cpp | 2 +- openlr/paths_connector.cpp | 19 ++++++++++------ openlr/paths_connector.hpp | 10 +++++---- openlr/road_info_getter.cpp | 31 -------------------------- openlr/road_info_getter.hpp | 3 --- openlr/router.cpp | 4 ++-- openlr/way_point.hpp | 8 +++---- 12 files changed, 71 insertions(+), 69 deletions(-) diff --git a/openlr/candidate_paths_getter.cpp b/openlr/candidate_paths_getter.cpp index 1c52021fd1..17fd2b1c5f 100644 --- a/openlr/candidate_paths_getter.cpp +++ b/openlr/candidate_paths_getter.cpp @@ -24,9 +24,6 @@ namespace openlr { namespace { -// TODO(mgsergio): Maybe add a penalty if this value deviates, not just throw it away. -int const kFRCThreshold = 3; - int const kNumBuckets = 256; double const kAnglesInBucket = 360.0 / kNumBuckets; @@ -182,8 +179,9 @@ void CandidatePathsGetter::GetStartLines(vector const & points, bool } void CandidatePathsGetter::GetAllSuitablePaths(Graph::EdgeVector const & startLines, - bool const isLastPoint, double const bearDistM, - FunctionalRoadClass const frc, + bool isLastPoint, double bearDistM, + FunctionalRoadClass frc, + FormOfWay fow, vector & allPaths) { queue q; @@ -228,7 +226,7 @@ void CandidatePathsGetter::GetAllSuitablePaths(Graph::EdgeVector const & startLi ASSERT(currentEdge.HasRealPart(), ()); - if (!PassesRestriction(e, frc, kFRCThreshold, m_infoGetter)) + if (!PassesRestriction(e, frc, fow, 1 /* kFRCThreshold */, m_infoGetter)) continue; // TODO(mgsergio): Should we check form of way as well? @@ -343,7 +341,8 @@ void CandidatePathsGetter::GetLineCandidates(openlr::LocationReferencePoint cons auto const startPoint = MercatorBounds::FromLatLon(p.m_latLon); vector allPaths; - GetAllSuitablePaths(startLines, isLastPoint, bearDistM, p.m_functionalRoadClass, allPaths); + GetAllSuitablePaths(startLines, isLastPoint, bearDistM, p.m_functionalRoadClass, p.m_formOfWay, + allPaths); GetBestCandidatePaths(allPaths, isLastPoint, p.m_bearing, bearDistM, startPoint, candidates); LOG(LDEBUG, (candidates.size(), "candidate paths found for point (LatLon)", p.m_latLon)); } diff --git a/openlr/candidate_paths_getter.hpp b/openlr/candidate_paths_getter.hpp index a0042595f0..be13887435 100644 --- a/openlr/candidate_paths_getter.hpp +++ b/openlr/candidate_paths_getter.hpp @@ -106,8 +106,9 @@ private: void GetStartLines(std::vector const & points, bool const isLastPoint, Graph::EdgeVector & edges); - void GetAllSuitablePaths(Graph::EdgeVector const & startLines, bool const isLastPoint, - double const bearDistM, FunctionalRoadClass const frc, + void GetAllSuitablePaths(Graph::EdgeVector const & startLines, bool isLastPoint, + double bearDistM, FunctionalRoadClass frc, + FormOfWay fow, std::vector & allPaths); void GetBestCandidatePaths(std::vector const & allPaths, bool const isLastPoint, diff --git a/openlr/candidate_points_getter.cpp b/openlr/candidate_points_getter.cpp index 7985c3c7f8..c9fe6c615a 100644 --- a/openlr/candidate_points_getter.cpp +++ b/openlr/candidate_points_getter.cpp @@ -34,7 +34,7 @@ void CandidatePointsGetter::GetJunctionPointCandidates(m2::PointD const & p, // TODO: Move this to a separate stage. // 1030292476 Does not match. Some problem occur with points. - // Either points duplicatate or something alike. Check this + // Either points duplicate or something alike. Check this // later. The idea to fix this was to move SortUnique to the stage // after enriching with projections. diff --git a/openlr/helpers.cpp b/openlr/helpers.cpp index 0be8b92bb0..d3ffdac1bc 100644 --- a/openlr/helpers.cpp +++ b/openlr/helpers.cpp @@ -10,6 +10,23 @@ #include #include +namespace +{ +openlr::FunctionalRoadClass HighwayClassToFunctionalRoadClass(ftypes::HighwayClass const & hwClass) +{ + switch (hwClass) + { + case ftypes::HighwayClass::Trunk: return openlr::FunctionalRoadClass::FRC0; + case ftypes::HighwayClass::Primary: return openlr::FunctionalRoadClass::FRC1; + case ftypes::HighwayClass::Secondary: return openlr::FunctionalRoadClass::FRC2; + case ftypes::HighwayClass::Tertiary: return openlr::FunctionalRoadClass::FRC3; + case ftypes::HighwayClass::LivingStreet: return openlr::FunctionalRoadClass::FRC4; + case ftypes::HighwayClass::Service: return openlr::FunctionalRoadClass::FRC5; + default: return openlr::FunctionalRoadClass::FRC7; + } +} +} // namespace + namespace openlr { bool PointsAreClose(m2::PointD const & p1, m2::PointD const & p2) @@ -54,13 +71,23 @@ std::string LogAs2GisPath(Graph::EdgeVector const & path) std::string LogAs2GisPath(Graph::Edge const & e) { return LogAs2GisPath(Graph::EdgeVector({e})); } -bool PassesRestriction(Graph::Edge const & e, FunctionalRoadClass const restriction, - int const frcThreshold, RoadInfoGetter & infoGetter) +bool PassesRestriction(Graph::Edge const & e, FunctionalRoadClass restriction, FormOfWay fow, + int frcThreshold, RoadInfoGetter & infoGetter) { - if (e.IsFake()) + if (e.IsFake() || restriction == FunctionalRoadClass::NotAValue) return true; - auto const frc = infoGetter.Get(e.GetFeatureId()).m_frc; + auto const frc = HighwayClassToFunctionalRoadClass(infoGetter.Get(e.GetFeatureId()).m_hwClass); return static_cast(frc) <= static_cast(restriction) + frcThreshold; } + +bool ConformLfrcnp(Graph::Edge const & e, FunctionalRoadClass lfrcnp, + int frcThreshold, RoadInfoGetter & infoGetter) +{ + if (e.IsFake() || lfrcnp == FunctionalRoadClass::NotAValue) + return true; + + auto const frc = HighwayClassToFunctionalRoadClass(infoGetter.Get(e.GetFeatureId()).m_hwClass); + return static_cast(frc) <= static_cast(lfrcnp) + frcThreshold; +} } // namespace openlr diff --git a/openlr/helpers.hpp b/openlr/helpers.hpp index a3e47156ee..b22aa1160d 100644 --- a/openlr/helpers.hpp +++ b/openlr/helpers.hpp @@ -28,6 +28,10 @@ std::common_type_t AbsDifference(T const a, U const b) return a >= b ? a - b : b - a; } -bool PassesRestriction(Graph::Edge const & e, FunctionalRoadClass const restriction, - int const frcThreshold, RoadInfoGetter & infoGetter); +bool PassesRestriction(Graph::Edge const & e, FunctionalRoadClass restriction, FormOfWay fow, + int frcThreshold, RoadInfoGetter & infoGetter); + +/// \returns true if edge |e| conforms Lowest Functional Road Class to Next Point. +bool ConformLfrcnp(Graph::Edge const & e, FunctionalRoadClass lfrcnp, + int frcThreshold, RoadInfoGetter & infoGetter); } // namespace openlr diff --git a/openlr/openlr_decoder.cpp b/openlr/openlr_decoder.cpp index ddba16055f..95d33b6519 100644 --- a/openlr/openlr_decoder.cpp +++ b/openlr/openlr_decoder.cpp @@ -310,7 +310,7 @@ public: return false; vector resultPath; - PathsConnector connector(kPathLengthTolerance, m_graph, stat); + PathsConnector connector(kPathLengthTolerance, m_graph, m_infoGetter, stat); if (!connector.ConnectCandidates(points, lineCandidates, resultPath)) return false; diff --git a/openlr/paths_connector.cpp b/openlr/paths_connector.cpp index 8a02f3ddfd..9f72377b25 100644 --- a/openlr/paths_connector.cpp +++ b/openlr/paths_connector.cpp @@ -66,8 +66,11 @@ bool ValidatePath(Graph::EdgeVector const & path, } // namespace PathsConnector::PathsConnector(double const pathLengthTolerance, Graph & graph, - v2::Stats & stat) - : m_pathLengthTolerance(pathLengthTolerance), m_graph(graph), m_stat(stat) + RoadInfoGetter & infoGetter, v2::Stats & stat) + : m_pathLengthTolerance(pathLengthTolerance) + , m_graph(graph) + , m_infoGetter(infoGetter) + , m_stat(stat) { } @@ -101,7 +104,7 @@ bool PathsConnector::ConnectCandidates(vector const & po resultPathPart.clear(); found = ConnectAdjacentCandidateLines(fromCandidates[fromInd], toCandidates[toInd], - point.m_functionalRoadClass, distanceToNextPoint, + point.m_lfrcnp, distanceToNextPoint, resultPathPart); if (!found) @@ -138,7 +141,7 @@ bool PathsConnector::ConnectCandidates(vector const & po } bool PathsConnector::FindShortestPath(Graph::Edge const & from, Graph::Edge const & to, - FunctionalRoadClass const frc, uint32_t const maxPathLength, + FunctionalRoadClass lfrcnp, uint32_t maxPathLength, Graph::EdgeVector & path) { // TODO(mgsergio): Turn Dijkstra to A*. @@ -194,6 +197,8 @@ bool PathsConnector::FindShortestPath(Graph::Edge const & from, Graph::Edge cons m_graph.GetOutgoingEdges(u.GetEndJunction(), edges); for (auto const & e : edges) { + if (!ConformLfrcnp(e, lfrcnp, 2 /* frcThreshold */, m_infoGetter)) + continue; // TODO(mgsergio): Use frc to filter edges. // Only start and/or end of the route can be fake. @@ -217,8 +222,8 @@ bool PathsConnector::FindShortestPath(Graph::Edge const & from, Graph::Edge cons bool PathsConnector::ConnectAdjacentCandidateLines(Graph::EdgeVector const & from, Graph::EdgeVector const & to, - FunctionalRoadClass const frc, - double const distanceToNextPoint, + FunctionalRoadClass lfrcnp, + double distanceToNextPoint, Graph::EdgeVector & resultPath) { @@ -237,7 +242,7 @@ bool PathsConnector::ConnectAdjacentCandidateLines(Graph::EdgeVector const & fro Graph::EdgeVector shortestPath; auto const found = - FindShortestPath(from.back(), to.front(), frc, distanceToNextPoint, shortestPath); + FindShortestPath(from.back(), to.front(), lfrcnp, distanceToNextPoint, shortestPath); if (!found) return false; diff --git a/openlr/paths_connector.hpp b/openlr/paths_connector.hpp index bd16d15f22..34bb037736 100644 --- a/openlr/paths_connector.hpp +++ b/openlr/paths_connector.hpp @@ -2,6 +2,7 @@ #include "openlr/graph.hpp" #include "openlr/openlr_model.hpp" +#include "openlr/road_info_getter.hpp" #include "openlr/stats.hpp" #include @@ -13,7 +14,8 @@ namespace openlr class PathsConnector { public: - PathsConnector(double const pathLengthTolerance, Graph & graph, v2::Stats & stat); + PathsConnector(double pathLengthTolerance, Graph & graph, RoadInfoGetter & infoGetter, + v2::Stats & stat); bool ConnectCandidates(std::vector const & points, std::vector> const & lineCandidates, @@ -21,16 +23,16 @@ public: private: bool FindShortestPath(Graph::Edge const & from, Graph::Edge const & to, - FunctionalRoadClass const frc, uint32_t const maxPathLength, + FunctionalRoadClass lfrcnp, uint32_t maxPathLength, Graph::EdgeVector & path); bool ConnectAdjacentCandidateLines(Graph::EdgeVector const & from, Graph::EdgeVector const & to, - FunctionalRoadClass const frc, - double const distanceToNextPoint, + FunctionalRoadClass lfrcnp, double distanceToNextPoint, Graph::EdgeVector & resultPath); double m_pathLengthTolerance; Graph & m_graph; + RoadInfoGetter & m_infoGetter; v2::Stats & m_stat; }; } // namespace openlr diff --git a/openlr/road_info_getter.cpp b/openlr/road_info_getter.cpp index 49d96330d3..498478be9f 100644 --- a/openlr/road_info_getter.cpp +++ b/openlr/road_info_getter.cpp @@ -6,23 +6,6 @@ #include "base/assert.hpp" -namespace -{ -openlr::FunctionalRoadClass HighwayClassToFunctionalRoadClass(ftypes::HighwayClass const & hwClass) -{ - switch (hwClass) - { - case ftypes::HighwayClass::Trunk: return openlr::FunctionalRoadClass::FRC0; - case ftypes::HighwayClass::Primary: return openlr::FunctionalRoadClass::FRC1; - case ftypes::HighwayClass::Secondary: return openlr::FunctionalRoadClass::FRC2; - case ftypes::HighwayClass::Tertiary: return openlr::FunctionalRoadClass::FRC3; - case ftypes::HighwayClass::LivingStreet: return openlr::FunctionalRoadClass::FRC4; - case ftypes::HighwayClass::Service: return openlr::FunctionalRoadClass::FRC5; - default: return openlr::FunctionalRoadClass::FRC7; - } -} -} // namespace - namespace openlr { RoadInfoGetter::RoadInfoGetter(DataSource const & dataSource) @@ -41,26 +24,12 @@ RoadInfoGetter::RoadInfo RoadInfoGetter::Get(FeatureID const & fid) CHECK(g.GetOriginalFeatureByIndex(fid.m_index, ft), ()); RoadInfo info; - info.m_fow = GetFormOfWay(feature::TypesHolder(ft)); info.m_hwClass = ftypes::GetHighwayClass(feature::TypesHolder(ft)); info.m_link = ftypes::IsLinkChecker::Instance()(ft); info.m_oneWay = ftypes::IsOneWayChecker::Instance()(ft); - info.m_frc = HighwayClassToFunctionalRoadClass(info.m_hwClass); it = m_cache.emplace(fid, info).first; return it->second; } - -FormOfWay RoadInfoGetter::GetFormOfWay(feature::TypesHolder const & types) const -{ - auto const hwClass = ftypes::GetHighwayClass(feature::TypesHolder(types)); - if (hwClass == ftypes::HighwayClass::Trunk) - return FormOfWay::Motorway; - - if (hwClass == ftypes::HighwayClass::Primary) - return FormOfWay::MultipleCarriageway; - - return FormOfWay::SingleCarriageway; -} } // namespace openlr diff --git a/openlr/road_info_getter.hpp b/openlr/road_info_getter.hpp index 2a60a452b9..b71423ccaf 100644 --- a/openlr/road_info_getter.hpp +++ b/openlr/road_info_getter.hpp @@ -22,8 +22,6 @@ class RoadInfoGetter final public: struct RoadInfo { - FunctionalRoadClass m_frc = FunctionalRoadClass::NotAValue; - FormOfWay m_fow = FormOfWay::NotAValue; ftypes::HighwayClass m_hwClass = ftypes::HighwayClass::Undefined; bool m_link = false; bool m_oneWay = false; @@ -34,7 +32,6 @@ public: RoadInfo Get(FeatureID const & fid); private: - FormOfWay GetFormOfWay(feature::TypesHolder const & types) const; DataSource const & m_dataSource; std::map m_cache; diff --git a/openlr/router.cpp b/openlr/router.cpp index 5ec0c648fe..aa8c46bb5b 100644 --- a/openlr/router.cpp +++ b/openlr/router.cpp @@ -471,7 +471,7 @@ void Router::ForEachEdge(Vertex const & u, bool outgoing, FunctionalRoadClass re GetIngoingEdges(u.m_junction, edges); for (auto const & edge : edges) { - if (!PassesRestriction(edge, restriction, kFRCThreshold, m_roadInfoGetter)) + if (!ConformLfrcnp(edge, restriction, kFRCThreshold, m_roadInfoGetter)) continue; fn(edge); } @@ -531,7 +531,7 @@ void Router::ForEachNonFakeClosestEdge(Vertex const & u, FunctionalRoadClass con auto const & edge = p.first; if (edge.IsFake()) continue; - if (!PassesRestriction(edge, restriction, kFRCThreshold, m_roadInfoGetter)) + if (!ConformLfrcnp(edge, restriction, kFRCThreshold, m_roadInfoGetter)) continue; fn(edge); } diff --git a/openlr/way_point.hpp b/openlr/way_point.hpp index b6f26f90dd..921cddcc77 100644 --- a/openlr/way_point.hpp +++ b/openlr/way_point.hpp @@ -5,15 +5,13 @@ #include "geometry/mercator.hpp" #include "geometry/point2d.hpp" -#include "std/cstdint.hpp" +#include namespace openlr { struct WayPoint final { - WayPoint() = default; - - WayPoint(openlr::LocationReferencePoint const & lrp) + explicit WayPoint(openlr::LocationReferencePoint const & lrp) : m_point(MercatorBounds::FromLatLon(lrp.m_latLon)) , m_distanceToNextPointM(lrp.m_distanceToNextPoint) , m_bearing(lrp.m_bearing) @@ -21,7 +19,7 @@ struct WayPoint final { } - m2::PointD m_point = m2::PointD::Zero(); + m2::PointD m_point; double m_distanceToNextPointM = 0.0; uint8_t m_bearing = 0; openlr::FunctionalRoadClass m_lfrcnp = openlr::FunctionalRoadClass::NotAValue; From 8ccb01a3c1de925233db330de97328cc3af3cba4 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Sun, 10 Mar 2019 08:48:06 +0300 Subject: [PATCH 4/7] Minor fix. --- openlr/candidate_paths_getter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlr/candidate_paths_getter.cpp b/openlr/candidate_paths_getter.cpp index 17fd2b1c5f..ba2cbc8da1 100644 --- a/openlr/candidate_paths_getter.cpp +++ b/openlr/candidate_paths_getter.cpp @@ -226,7 +226,7 @@ void CandidatePathsGetter::GetAllSuitablePaths(Graph::EdgeVector const & startLi ASSERT(currentEdge.HasRealPart(), ()); - if (!PassesRestriction(e, frc, fow, 1 /* kFRCThreshold */, m_infoGetter)) + if (!PassesRestriction(e, frc, fow, 2 /* kFRCThreshold */, m_infoGetter)) continue; // TODO(mgsergio): Should we check form of way as well? From 380b2ef7dd8d1191bc8e569113c078c1a9dc1d14 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Wed, 13 Mar 2019 09:17:24 +0300 Subject: [PATCH 5/7] Review fixes. --- openlr/helpers.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openlr/helpers.hpp b/openlr/helpers.hpp index b22aa1160d..144a8525bd 100644 --- a/openlr/helpers.hpp +++ b/openlr/helpers.hpp @@ -32,6 +32,9 @@ bool PassesRestriction(Graph::Edge const & e, FunctionalRoadClass restriction, F int frcThreshold, RoadInfoGetter & infoGetter); /// \returns true if edge |e| conforms Lowest Functional Road Class to Next Point. +/// \note lfrcnp means Lowest Functional Road Class To Next LR-point. +/// Please see openlr documentation for details: +/// http://www.openlr.org/data/docs/whitepaper/1_0/OpenLR-Whitepaper_v1.0.pdf bool ConformLfrcnp(Graph::Edge const & e, FunctionalRoadClass lfrcnp, int frcThreshold, RoadInfoGetter & infoGetter); } // namespace openlr From fef44de359a8ae57521680c8e91d1346dd63fe91 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Wed, 13 Mar 2019 14:05:26 +0300 Subject: [PATCH 6/7] Review fixes. --- openlr/candidate_paths_getter.cpp | 7 +++---- openlr/candidate_paths_getter.hpp | 5 ++--- openlr/helpers.cpp | 6 +++--- openlr/helpers.hpp | 5 ++--- openlr/paths_connector.cpp | 10 +++++----- openlr/paths_connector.hpp | 6 +++--- openlr/road_info_getter.cpp | 15 ++++++++++----- openlr/road_info_getter.hpp | 2 ++ 8 files changed, 30 insertions(+), 26 deletions(-) diff --git a/openlr/candidate_paths_getter.cpp b/openlr/candidate_paths_getter.cpp index ba2cbc8da1..1b68db3437 100644 --- a/openlr/candidate_paths_getter.cpp +++ b/openlr/candidate_paths_getter.cpp @@ -180,9 +180,8 @@ void CandidatePathsGetter::GetStartLines(vector const & points, bool void CandidatePathsGetter::GetAllSuitablePaths(Graph::EdgeVector const & startLines, bool isLastPoint, double bearDistM, - FunctionalRoadClass frc, - FormOfWay fow, - vector & allPaths) + FunctionalRoadClass functionalRoadClass, + FormOfWay formOfWay, vector & allPaths) { queue q; @@ -226,7 +225,7 @@ void CandidatePathsGetter::GetAllSuitablePaths(Graph::EdgeVector const & startLi ASSERT(currentEdge.HasRealPart(), ()); - if (!PassesRestriction(e, frc, fow, 2 /* kFRCThreshold */, m_infoGetter)) + if (!PassesRestriction(e, functionalRoadClass, formOfWay, 2 /* kFRCThreshold */, m_infoGetter)) continue; // TODO(mgsergio): Should we check form of way as well? diff --git a/openlr/candidate_paths_getter.hpp b/openlr/candidate_paths_getter.hpp index be13887435..c89ea30718 100644 --- a/openlr/candidate_paths_getter.hpp +++ b/openlr/candidate_paths_getter.hpp @@ -107,9 +107,8 @@ private: Graph::EdgeVector & edges); void GetAllSuitablePaths(Graph::EdgeVector const & startLines, bool isLastPoint, - double bearDistM, FunctionalRoadClass frc, - FormOfWay fow, - std::vector & allPaths); + double bearDistM, FunctionalRoadClass functionalRoadClass, + FormOfWay formOfWay, std::vector & allPaths); void GetBestCandidatePaths(std::vector const & allPaths, bool const isLastPoint, uint32_t const requiredBearing, double const bearDistM, diff --git a/openlr/helpers.cpp b/openlr/helpers.cpp index d3ffdac1bc..06df202162 100644 --- a/openlr/helpers.cpp +++ b/openlr/helpers.cpp @@ -81,13 +81,13 @@ bool PassesRestriction(Graph::Edge const & e, FunctionalRoadClass restriction, F return static_cast(frc) <= static_cast(restriction) + frcThreshold; } -bool ConformLfrcnp(Graph::Edge const & e, FunctionalRoadClass lfrcnp, +bool ConformLfrcnp(Graph::Edge const & e, FunctionalRoadClass lowestFrcToNextPoint, int frcThreshold, RoadInfoGetter & infoGetter) { - if (e.IsFake() || lfrcnp == FunctionalRoadClass::NotAValue) + if (e.IsFake() || lowestFrcToNextPoint == FunctionalRoadClass::NotAValue) return true; auto const frc = HighwayClassToFunctionalRoadClass(infoGetter.Get(e.GetFeatureId()).m_hwClass); - return static_cast(frc) <= static_cast(lfrcnp) + frcThreshold; + return static_cast(frc) <= static_cast(lowestFrcToNextPoint) + frcThreshold; } } // namespace openlr diff --git a/openlr/helpers.hpp b/openlr/helpers.hpp index 144a8525bd..6d51538e33 100644 --- a/openlr/helpers.hpp +++ b/openlr/helpers.hpp @@ -32,9 +32,8 @@ bool PassesRestriction(Graph::Edge const & e, FunctionalRoadClass restriction, F int frcThreshold, RoadInfoGetter & infoGetter); /// \returns true if edge |e| conforms Lowest Functional Road Class to Next Point. -/// \note lfrcnp means Lowest Functional Road Class To Next LR-point. -/// Please see openlr documentation for details: +/// \note frc means Functional Road Class. Please see openlr documentation for details: /// http://www.openlr.org/data/docs/whitepaper/1_0/OpenLR-Whitepaper_v1.0.pdf -bool ConformLfrcnp(Graph::Edge const & e, FunctionalRoadClass lfrcnp, +bool ConformLfrcnp(Graph::Edge const & e, FunctionalRoadClass lowestFrcToNextPoint, int frcThreshold, RoadInfoGetter & infoGetter); } // namespace openlr diff --git a/openlr/paths_connector.cpp b/openlr/paths_connector.cpp index 9f72377b25..10bc697eec 100644 --- a/openlr/paths_connector.cpp +++ b/openlr/paths_connector.cpp @@ -65,7 +65,7 @@ bool ValidatePath(Graph::EdgeVector const & path, } } // namespace -PathsConnector::PathsConnector(double const pathLengthTolerance, Graph & graph, +PathsConnector::PathsConnector(double pathLengthTolerance, Graph & graph, RoadInfoGetter & infoGetter, v2::Stats & stat) : m_pathLengthTolerance(pathLengthTolerance) , m_graph(graph) @@ -141,7 +141,7 @@ bool PathsConnector::ConnectCandidates(vector const & po } bool PathsConnector::FindShortestPath(Graph::Edge const & from, Graph::Edge const & to, - FunctionalRoadClass lfrcnp, uint32_t maxPathLength, + FunctionalRoadClass lowestFrcToNextPoint, uint32_t maxPathLength, Graph::EdgeVector & path) { // TODO(mgsergio): Turn Dijkstra to A*. @@ -197,7 +197,7 @@ bool PathsConnector::FindShortestPath(Graph::Edge const & from, Graph::Edge cons m_graph.GetOutgoingEdges(u.GetEndJunction(), edges); for (auto const & e : edges) { - if (!ConformLfrcnp(e, lfrcnp, 2 /* frcThreshold */, m_infoGetter)) + if (!ConformLfrcnp(e, lowestFrcToNextPoint, 2 /* frcThreshold */, m_infoGetter)) continue; // TODO(mgsergio): Use frc to filter edges. @@ -222,7 +222,7 @@ bool PathsConnector::FindShortestPath(Graph::Edge const & from, Graph::Edge cons bool PathsConnector::ConnectAdjacentCandidateLines(Graph::EdgeVector const & from, Graph::EdgeVector const & to, - FunctionalRoadClass lfrcnp, + FunctionalRoadClass lowestFrcToNextPoint, double distanceToNextPoint, Graph::EdgeVector & resultPath) @@ -242,7 +242,7 @@ bool PathsConnector::ConnectAdjacentCandidateLines(Graph::EdgeVector const & fro Graph::EdgeVector shortestPath; auto const found = - FindShortestPath(from.back(), to.front(), lfrcnp, distanceToNextPoint, shortestPath); + FindShortestPath(from.back(), to.front(), lowestFrcToNextPoint, distanceToNextPoint, shortestPath); if (!found) return false; diff --git a/openlr/paths_connector.hpp b/openlr/paths_connector.hpp index 34bb037736..27937d4472 100644 --- a/openlr/paths_connector.hpp +++ b/openlr/paths_connector.hpp @@ -23,12 +23,12 @@ public: private: bool FindShortestPath(Graph::Edge const & from, Graph::Edge const & to, - FunctionalRoadClass lfrcnp, uint32_t maxPathLength, + FunctionalRoadClass lowestFrcToNextPoint, uint32_t maxPathLength, Graph::EdgeVector & path); bool ConnectAdjacentCandidateLines(Graph::EdgeVector const & from, Graph::EdgeVector const & to, - FunctionalRoadClass lfrcnp, double distanceToNextPoint, - Graph::EdgeVector & resultPath); + FunctionalRoadClass lowestFrcToNextPoint, + double distanceToNextPoint, Graph::EdgeVector & resultPath); double m_pathLengthTolerance; Graph & m_graph; diff --git a/openlr/road_info_getter.cpp b/openlr/road_info_getter.cpp index 498478be9f..489f6f329b 100644 --- a/openlr/road_info_getter.cpp +++ b/openlr/road_info_getter.cpp @@ -8,6 +8,15 @@ namespace openlr { +// RoadInfoGetter::RoadInfo ------------------------------------------------------------------------ +RoadInfoGetter::RoadInfo::RoadInfo(FeatureType & ft) + : m_hwClass(ftypes::GetHighwayClass(feature::TypesHolder(ft))) + , m_link(ftypes::IsLinkChecker::Instance()(ft)) + , m_oneWay(ftypes::IsOneWayChecker::Instance()(ft)) +{ +} + +// RoadInfoGetter ---------------------------------------------------------------------------------- RoadInfoGetter::RoadInfoGetter(DataSource const & dataSource) : m_dataSource(dataSource) { @@ -23,11 +32,7 @@ RoadInfoGetter::RoadInfo RoadInfoGetter::Get(FeatureID const & fid) FeatureType ft; CHECK(g.GetOriginalFeatureByIndex(fid.m_index, ft), ()); - RoadInfo info; - info.m_hwClass = ftypes::GetHighwayClass(feature::TypesHolder(ft)); - info.m_link = ftypes::IsLinkChecker::Instance()(ft); - info.m_oneWay = ftypes::IsOneWayChecker::Instance()(ft); - + RoadInfo info(ft); it = m_cache.emplace(fid, info).first; return it->second; diff --git a/openlr/road_info_getter.hpp b/openlr/road_info_getter.hpp index b71423ccaf..54db6646ed 100644 --- a/openlr/road_info_getter.hpp +++ b/openlr/road_info_getter.hpp @@ -22,6 +22,8 @@ class RoadInfoGetter final public: struct RoadInfo { + RoadInfo(FeatureType & ft); + ftypes::HighwayClass m_hwClass = ftypes::HighwayClass::Undefined; bool m_link = false; bool m_oneWay = false; From 08f0017053959987bf4831bcc472bd4e5c27dafb Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Wed, 13 Mar 2019 14:11:08 +0300 Subject: [PATCH 7/7] Review fixes. --- openlr/road_info_getter.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlr/road_info_getter.hpp b/openlr/road_info_getter.hpp index 54db6646ed..94fe377b56 100644 --- a/openlr/road_info_getter.hpp +++ b/openlr/road_info_getter.hpp @@ -22,7 +22,7 @@ class RoadInfoGetter final public: struct RoadInfo { - RoadInfo(FeatureType & ft); + explicit RoadInfo(FeatureType & ft); ftypes::HighwayClass m_hwClass = ftypes::HighwayClass::Undefined; bool m_link = false;