From fe5abb28f317568c1cc02ec94fea192cfc4facc4 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Tue, 25 Jan 2022 16:15:36 +0300 Subject: [PATCH] [generator] Better RoadAccess timing calculation. Signed-off-by: Viktor Govako --- generator/routing_index_generator.cpp | 6 ++-- routing/road_access.cpp | 51 ++++++++++++--------------- routing/road_access.hpp | 4 +-- 3 files changed, 28 insertions(+), 33 deletions(-) diff --git a/generator/routing_index_generator.cpp b/generator/routing_index_generator.cpp index af50b31d39..c93d9b3151 100644 --- a/generator/routing_index_generator.cpp +++ b/generator/routing_index_generator.cpp @@ -542,6 +542,7 @@ void FillWeights(string const & path, string const & mwmFile, string const & cou nullptr /* trafficStash */, nullptr /* dataSource */, nullptr /* numMvmIds */)); + graph.SetCurrentTimeGetter([time = routing::GetCurrentTimestamp()] { return time; }); DeserializeIndexGraph(mwmValue, routing::VehicleType::Car, graph); map> weights; @@ -561,8 +562,8 @@ void FillWeights(string const & path, string const & mwmFile, string const & cou Algorithm astar; IndexGraphWrapper indexGraphWrapper(graph, enter); DijkstraWrapperJoints wrapper(indexGraphWrapper, enter); - routing::AStarAlgorithm::Context context(wrapper); + Algorithm::Context context(wrapper); + unordered_map> visitedVertexes; astar.PropagateWave( wrapper, wrapper.GetStartJoint(), @@ -622,7 +623,6 @@ void FillWeights(string const & path, string const & mwmFile, string const & cou routing::Segment const & firstChild = jointSegment.GetSegment(true /* start */); uint32_t const lastPoint = exit.GetPointId(true /* front */); - static map kEmptyParents; auto optionalEdge = graph.GetJointEdgeByLastPoint(parentSegment, firstChild, true /* isOutgoing */, lastPoint); diff --git a/routing/road_access.cpp b/routing/road_access.cpp index 8d10a54b2a..f08cff6ca1 100644 --- a/routing/road_access.cpp +++ b/routing/road_access.cpp @@ -32,43 +32,43 @@ void PrintKV(ostringstream & oss, KV const & kvs, size_t maxKVToShow) namespace routing { -// RoadAccess -------------------------------------------------------------------------------------- -// @TODO(bykoinako) It's a fast fix for release. The idea behind it is to remember the time of -// creation RoadAccess instance and return it instread of getting time when m_currentTimeGetter() is -// called. But it's not understadbale now why m_currentTimeGetter() is called when -// cross_mwm section is built. -RoadAccess::RoadAccess() : m_currentTimeGetter([time = GetCurrentTimestamp()]() { return time; }) {} +/** RoadAccess -------------------------------------------------------------------------------------- + * @todo (bykoinako) It's a fast fix for release. The idea behind it is to remember the time of + * creation RoadAccess instance and return it instead of getting time when m_currentTimeGetter() is + * called. But it's not understandable now why m_currentTimeGetter() is called when + * cross_mwm section is built. + * + * @todo (vng) Return back lazy time calculation. + * It's called in cross_mwm_section via IndexGraph::CalculateEdgeWeight. + * Fixed by setting custom time getter in BuildRoutingCrossMwmSection -> FillWeights. + */ +RoadAccess::RoadAccess() : m_currentTimeGetter([]() { return GetCurrentTimestamp(); }) {} pair RoadAccess::GetAccess( uint32_t featureId, RouteWeight const & weightToFeature) const { - return GetAccess(featureId, m_currentTimeGetter() + weightToFeature.GetWeight()); + return GetAccess(featureId, weightToFeature.GetWeight()); } pair RoadAccess::GetAccess( RoadPoint const & point, RouteWeight const & weightToPoint) const { - return GetAccess(point, m_currentTimeGetter() + weightToPoint.GetWeight()); + return GetAccess(point, weightToPoint.GetWeight()); } pair RoadAccess::GetAccess(uint32_t featureId, - time_t momentInTime) const + double weight) const { auto const itConditional = m_wayToAccessConditional.find(featureId); - // @TODO This check should be removed when access:conditional is switch on. - CHECK(m_pointToAccessConditional.empty(), - ("access:conditional is switched off now but m_pointToAccessConditional is not empty.", - m_pointToAccessConditional.size())); if (itConditional != m_wayToAccessConditional.cend()) { + auto const time = m_currentTimeGetter(); auto const & conditional = itConditional->second; for (auto const & access : conditional.GetAccesses()) { - auto const op = GetConfidenceForAccessConditional(momentInTime, access.m_openingHours); - if (!op) - continue; - - return {access.m_type, *op}; + auto const op = GetConfidenceForAccessConditional(time + weight, access.m_openingHours); + if (op) + return {access.m_type, *op}; } } @@ -76,23 +76,18 @@ pair RoadAccess::GetAccess(uint32_t fe } pair RoadAccess::GetAccess(RoadPoint const & point, - time_t momentInTime) const + double weight) const { auto const itConditional = m_pointToAccessConditional.find(point); - // @TODO This check should be removed when access:conditional is switch on. - CHECK(m_pointToAccessConditional.empty(), - ("access:conditional is switched off now but m_pointToAccessConditional is not empty.", - m_pointToAccessConditional.size())); if (itConditional != m_pointToAccessConditional.cend()) { + auto const time = m_currentTimeGetter(); auto const & conditional = itConditional->second; for (auto const & access : conditional.GetAccesses()) { - auto const op = GetConfidenceForAccessConditional(momentInTime, access.m_openingHours); - if (!op) - continue; - - return {access.m_type, *op}; + auto const op = GetConfidenceForAccessConditional(time + weight, access.m_openingHours); + if (op) + return {access.m_type, *op}; } } diff --git a/routing/road_access.hpp b/routing/road_access.hpp index cf392c0169..344621cde6 100644 --- a/routing/road_access.hpp +++ b/routing/road_access.hpp @@ -153,8 +153,8 @@ private: static std::optional GetConfidenceForAccessConditional( time_t momentInTime, osmoh::OpeningHours const & openingHours); - std::pair GetAccess(uint32_t featureId, time_t momentInTime) const; - std::pair GetAccess(RoadPoint const & point, time_t momentInTime) const; + std::pair GetAccess(uint32_t featureId, double weight) const; + std::pair GetAccess(RoadPoint const & point, double weight) const; std::function m_currentTimeGetter;