From b234afe5d51397eab4d05d1c76f21fd1ac028f68 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Sat, 26 Feb 2022 14:27:45 +0300 Subject: [PATCH] [routing] Optional return value for GetHighwayType. Signed-off-by: Viktor Govako --- routing/features_road_graph.cpp | 2 +- routing/features_road_graph.hpp | 2 +- routing_common/vehicle_model.cpp | 5 ++--- routing_common/vehicle_model.hpp | 4 ++-- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/routing/features_road_graph.cpp b/routing/features_road_graph.cpp index dbe363343e..a81433d50b 100644 --- a/routing/features_road_graph.cpp +++ b/routing/features_road_graph.cpp @@ -58,7 +58,7 @@ SpeedKMpH FeaturesRoadGraph::CrossCountryVehicleModel::GetSpeed( return GetVehicleModel(f.GetID())->GetSpeed(f, speedParams); } -HighwayType FeaturesRoadGraph::CrossCountryVehicleModel::GetHighwayType(FeatureType & f) const +std::optional FeaturesRoadGraph::CrossCountryVehicleModel::GetHighwayType(FeatureType & f) const { return GetVehicleModel(f.GetID())->GetHighwayType(f); } diff --git a/routing/features_road_graph.hpp b/routing/features_road_graph.hpp index 8124376e7e..7229404533 100644 --- a/routing/features_road_graph.hpp +++ b/routing/features_road_graph.hpp @@ -35,7 +35,7 @@ private: // VehicleModelInterface overrides: SpeedKMpH GetSpeed(FeatureType & f, SpeedParams const & speedParams) const override; - HighwayType GetHighwayType(FeatureType & f) const override; + std::optional GetHighwayType(FeatureType & f) const override; double GetMaxWeightSpeed() const override { return m_maxSpeed; } SpeedKMpH const & GetOffroadSpeed() const override; bool IsOneWay(FeatureType & f) const override; diff --git a/routing_common/vehicle_model.cpp b/routing_common/vehicle_model.cpp index baec71b6cd..10347a573a 100644 --- a/routing_common/vehicle_model.cpp +++ b/routing_common/vehicle_model.cpp @@ -111,7 +111,7 @@ SpeedKMpH VehicleModel::GetSpeed(FeatureType & f, SpeedParams const & speedParam return GetTypeSpeed(types, speedParams); } -HighwayType VehicleModel::GetHighwayType(FeatureType & f) const +std::optional VehicleModel::GetHighwayType(FeatureType & f) const { feature::TypesHolder const types(f); for (uint32_t t : types) @@ -126,8 +126,7 @@ HighwayType VehicleModel::GetHighwayType(FeatureType & f) const return static_cast(classif().GetIndexForType(t)); } - UNREACHABLE(); - return HighwayType::HighwayResidential; + return {}; } double VehicleModel::GetMaxWeightSpeed() const diff --git a/routing_common/vehicle_model.hpp b/routing_common/vehicle_model.hpp index 6180fc5fae..ad75a48b88 100644 --- a/routing_common/vehicle_model.hpp +++ b/routing_common/vehicle_model.hpp @@ -207,7 +207,7 @@ public: /// @param inCity is true if |f| lies in a city of town. virtual SpeedKMpH GetSpeed(FeatureType & f, SpeedParams const & speedParams) const = 0; - virtual HighwayType GetHighwayType(FeatureType & f) const = 0; + virtual std::optional GetHighwayType(FeatureType & f) const = 0; /// @return Maximum model weight speed. /// All speeds which the model returns must be less than or equal to this speed. @@ -275,7 +275,7 @@ public: /// @name VehicleModelInterface overrides. /// @{ SpeedKMpH GetSpeed(FeatureType & f, SpeedParams const & speedParams) const override; - HighwayType GetHighwayType(FeatureType & f) const override; + std::optional GetHighwayType(FeatureType & f) const override; double GetMaxWeightSpeed() const override; bool IsOneWay(FeatureType & f) const override; bool IsRoad(FeatureType & f) const override;