diff --git a/routing/index_router.cpp b/routing/index_router.cpp index 5dd5667b26..13cbab4575 100644 --- a/routing/index_router.cpp +++ b/routing/index_router.cpp @@ -486,6 +486,32 @@ RouterResultCode IndexRouter::DoCalculateRoute(Checkpoints const & checkpoints, return RouterResultCode::NoError; } +vector ProcessJoints(vector const & jointsPath, + IndexGraphStarterJoints & jointStarter) +{ + CHECK(!jointsPath.empty(), ()); + + vector path; + for (auto const & joint : jointsPath) + { + vector jointPath = jointStarter.ReconstructJoint(joint); + if (jointPath.empty()) + continue; + + if (path.empty()) + { + path = move(jointPath); + continue; + } + + path.insert(path.end(), + path.back() == jointPath.front() ? jointPath.begin() + 1 : jointPath.begin(), + jointPath.end()); + } + + return path; +} + RouterResultCode IndexRouter::CalculateSubroute(Checkpoints const & checkpoints, size_t subrouteIdx, RouterDelegate const & delegate, @@ -573,7 +599,7 @@ RouterResultCode IndexRouter::CalculateSubroute(Checkpoints const & checkpoints, if (result != RouterResultCode::NoError) return result; - ProcessJointsBidirectional(routingResult.m_path, jointStarter, subroute); + subroute = ProcessJoints(routingResult.m_path, jointStarter); } else { @@ -600,39 +626,6 @@ RouterResultCode IndexRouter::CalculateSubroute(Checkpoints const & checkpoints, return RouterResultCode::NoError; } -vector ProcessJoints(vector const & jointsPath, - IndexGraphStarterJoints & jointStarter) -{ - CHECK(!jointsPath.empty(), ()); - - vector path; - for (auto const & joint : jointsPath) - { - vector jointPath = jointStarter.ReconstructJoint(joint); - if (jointPath.empty()) - continue; - - if (path.empty()) - { - path = move(jointPath); - continue; - } - - path.insert(path.end(), - path.back() == jointPath.front() ? jointPath.begin() + 1 : jointPath.begin(), - jointPath.end()); - } - - return path; -} - -void IndexRouter::ProcessJointsBidirectional(vector const & jointsPath, - IndexGraphStarterJoints & jointsStarter, - vector & output) -{ - output = ProcessJoints(jointsPath, jointsStarter); -} - RouterResultCode IndexRouter::AdjustRoute(Checkpoints const & checkpoints, m2::PointD const & startDirection, RouterDelegate const & delegate, Route & route) @@ -921,7 +914,7 @@ RouterResultCode IndexRouter::ProcessLeapsJoints(vector const & input, return result; vector subroute; - ProcessJointsBidirectional(routingResult.m_path, jointStarter, subroute); + subroute = ProcessJoints(routingResult.m_path, jointStarter); CHECK(!subroute.empty(), ()); output.insert(output.end(), dropFirstSegment ? subroute.cbegin() + 1 : subroute.cbegin(), subroute.cend()); diff --git a/routing/index_router.hpp b/routing/index_router.hpp index 231c9ea56a..22d07d75e9 100644 --- a/routing/index_router.hpp +++ b/routing/index_router.hpp @@ -115,10 +115,6 @@ private: RouterDelegate const & delegate, IndexGraphStarter & starter, Route & route) const; - void ProcessJointsBidirectional(std::vector const & jointsPath, - IndexGraphStarterJoints & jointsStarter, - std::vector & output); - bool AreMwmsNear(std::set const & mwmIds) const; bool DoesTransitSectionExist(NumMwmId numMwmId) const;