diff --git a/integration_tests/osrm_test_tools.cpp b/integration_tests/osrm_test_tools.cpp index 3578e73230..6e46b896cd 100644 --- a/integration_tests/osrm_test_tools.cpp +++ b/integration_tests/osrm_test_tools.cpp @@ -20,6 +20,17 @@ using namespace routing; namespace integration { + class OsrmRouterWrapper : public OsrmRouter + { + public: + OsrmRouterWrapper(Index const * index, CountryFileFnT const & fn) : OsrmRouter(index, fn) {} + ResultCode CalculateRouteSync(m2::PointD const & startPt, m2::PointD const & startDr, + m2::PointD const & finalPt, Route & route) + { + return CalculateRouteImpl(startPt, startDr, finalPt, route); + } + }; + shared_ptr CreateFeaturesFetcher(vector const & mapNames) { shared_ptr featuresFetcher(new model::FeaturesFetcher); @@ -38,7 +49,7 @@ namespace integration shared_ptr CreateSearchEngine(shared_ptr featuresFetcher) { - ASSERT(featuresFetcher.get(), ()); + ASSERT(featuresFetcher, ()); search::Engine::IndexType const & index = featuresFetcher->GetIndex(); Platform const & pl = GetPlatform(); @@ -59,13 +70,13 @@ namespace integration } } - shared_ptr CreateOsrmRouter(shared_ptr featuresFetcher, + shared_ptr CreateOsrmRouter(shared_ptr featuresFetcher, shared_ptr searchEngine) { - ASSERT(featuresFetcher.get(), ()); - ASSERT(searchEngine.get(), ()); + ASSERT(featuresFetcher, ()); + ASSERT(searchEngine, ()); - shared_ptr osrmRouter(new OsrmRouter(&featuresFetcher->GetIndex(), + shared_ptr osrmRouter(new OsrmRouterWrapper(&featuresFetcher->GetIndex(), [searchEngine] (m2::PointD const & pt) { return searchEngine->GetCountryFile(pt); @@ -76,15 +87,15 @@ namespace integration class OsrmRouterComponents { public: - OsrmRouterComponents(vector const & mapNames) : - m_featuresFetcher(CreateFeaturesFetcher(mapNames)), - m_searchEngine(CreateSearchEngine(m_featuresFetcher)), - m_osrmRouter(CreateOsrmRouter(m_featuresFetcher, m_searchEngine)) {} - OsrmRouter * GetOsrmRouter() const { return m_osrmRouter.get(); } + OsrmRouterComponents(vector const & mapNames) + : m_featuresFetcher(CreateFeaturesFetcher(mapNames)), + m_searchEngine(CreateSearchEngine(m_featuresFetcher)), + m_osrmRouter(CreateOsrmRouter(m_featuresFetcher, m_searchEngine)) {} + OsrmRouterWrapper * GetOsrmRouter() const { return m_osrmRouter.get(); } private: shared_ptr m_featuresFetcher; shared_ptr m_searchEngine; - shared_ptr m_osrmRouter; + shared_ptr m_osrmRouter; }; void GetMapNames(vector & maps) @@ -114,30 +125,30 @@ namespace integration shared_ptr GetAllMaps() { static shared_ptr inst = LoadAllMaps(); - ASSERT(inst.get(), ()); + ASSERT(inst, ()); return inst; } RouteResultT CalculateRoute(shared_ptr routerComponents, m2::PointD const & startPt, m2::PointD const & startDr, m2::PointD const & finalPt) { - ASSERT(routerComponents.get(), ()); - OsrmRouter * osrmRouter = routerComponents->GetOsrmRouter(); + ASSERT(routerComponents, ()); + OsrmRouterWrapper * osrmRouter = routerComponents->GetOsrmRouter(); ASSERT(osrmRouter, ()); shared_ptr route(new Route("mapsme")); - OsrmRouter::ResultCode result = osrmRouter->CalculateRouteImpl(startPt, startDr, finalPt, *route.get()); + OsrmRouter::ResultCode result = osrmRouter->CalculateRouteSync(startPt, startDr, finalPt, *route.get()); return RouteResultT(route, result); } void TestTurnCount(shared_ptr const route, uint32_t referenceTurnCount) { - ASSERT(route.get(), ()); + ASSERT(route, ()); TEST_EQUAL(route->GetTurnsGeometry().size(), referenceTurnCount, ()); } void TestRouteLength(shared_ptr const route, double referenceRouteLength, double routeLenInaccuracy) { - ASSERT(route.get(), ()); + ASSERT(route, ()); double const delta = referenceRouteLength * routeLenInaccuracy; double const routeLength = route->GetDistance(); TEST_LESS_OR_EQUAL(routeLength - delta, referenceRouteLength, ()); @@ -194,7 +205,7 @@ namespace integration TestTurn GetNthTurn(shared_ptr const route, uint32_t referenceTurnNumber) { - ASSERT(route.get(), ()); + ASSERT(route, ()); turns::TurnsGeomT const & turnsGeom = route->GetTurnsGeometry(); if (referenceTurnNumber >= turnsGeom.size()) @@ -212,7 +223,7 @@ namespace integration TestTurn GetTurnByPoint(shared_ptr const route, m2::PointD const & referenceTurnPnt, double inaccuracy) { - ASSERT(route.get(), ()); + ASSERT(route, ()); turns::TurnsGeomT const & turnsGeom = route->GetTurnsGeometry(); Route::TurnsT const & turns = route->GetTurns(); ASSERT_EQUAL(turnsGeom.size() + 1, turns.size(), ()); diff --git a/routing/osrm_router.hpp b/routing/osrm_router.hpp index 1cfa3d291c..21b404d579 100644 --- a/routing/osrm_router.hpp +++ b/routing/osrm_router.hpp @@ -195,8 +195,6 @@ public: void ActivateAdditionalFeatures() {m_additionalFeatures = true;} - ResultCode CalculateRouteImpl(m2::PointD const & startPt, m2::PointD const & startDr, m2::PointD const & finalPt, Route & route); - protected: IRouter::ResultCode FindPhantomNodes(string const & fName, m2::PointD const & point, m2::PointD const & direction, FeatureGraphNodeVecT & res, size_t maxCount, RoutingMappingPtrT const & mapping); @@ -226,6 +224,7 @@ protected: vector & points, Route::TurnsT & turnsDir,Route::TimesT & times, turns::TurnsGeomT & turnsGeom); void CalculateRouteAsync(ReadyCallback const & callback); + ResultCode CalculateRouteImpl(m2::PointD const & startPt, m2::PointD const & startDr, m2::PointD const & finalPt, Route & route); private: typedef pair MwmOutT;