diff --git a/routing/cross_mwm_graph.cpp b/routing/cross_mwm_graph.cpp index 6d550b24c3..56507269bd 100644 --- a/routing/cross_mwm_graph.cpp +++ b/routing/cross_mwm_graph.cpp @@ -5,6 +5,7 @@ #include "geometry/mercator.hpp" +#include "base/assert.hpp" #include "base/math.hpp" #include "base/stl_helpers.hpp" @@ -146,9 +147,9 @@ void CrossMwmGraph::GetTwins(Segment const & s, bool isOutgoing, vector bool allNeighborsHaveCrossMwmSection = false; GetAllLoadedNeighbors(s.GetMwmId(), neighbors, allNeighborsHaveCrossMwmSection); MwmStatus const currentMwmStatus = GetMwmStatus(s.GetMwmId()); - CHECK(currentMwmStatus != MwmStatus::NotLoaded, - ("Current mwm is not loaded. Mwm:", m_numMwmIds->GetFile(s.GetMwmId()), "currentMwmStatus:", - currentMwmStatus)); + CHECK_NOT_EQUAL(currentMwmStatus, MwmStatus::NotLoaded, + ("Current mwm is not loaded. Mwm:", m_numMwmIds->GetFile(s.GetMwmId()), + "currentMwmStatus:", currentMwmStatus)); if (allNeighborsHaveCrossMwmSection && currentMwmStatus == MwmStatus::CrossMwmSectionExists) { DeserializeTransitions(neighbors); @@ -261,4 +262,16 @@ void CrossMwmGraph::GetTwinCandidates(FeatureType const & ft, bool isOutgoing, twinCandidates.push_back(segBackward); } } + +string DebugPrint(CrossMwmGraph::MwmStatus status) +{ + switch (status) + { + case CrossMwmGraph::MwmStatus::NotLoaded: return "CrossMwmGraph::NotLoaded"; + case CrossMwmGraph::MwmStatus::CrossMwmSectionExists: + return "CrossMwmGraph::CrossMwmSectionExists"; + case CrossMwmGraph::MwmStatus::NoCrossMwmSection: return "CrossMwmGraph::NoCrossMwmSection"; + } + return string("Unknown CrossMwmGraph::MwmStatus."); +} } // namespace routing diff --git a/routing/cross_mwm_graph.hpp b/routing/cross_mwm_graph.hpp index 1469427c61..065740499f 100644 --- a/routing/cross_mwm_graph.hpp +++ b/routing/cross_mwm_graph.hpp @@ -15,6 +15,7 @@ #include #include +#include #include namespace routing @@ -23,6 +24,13 @@ namespace routing class CrossMwmGraph final { public: + enum class MwmStatus + { + NotLoaded, + CrossMwmSectionExists, + NoCrossMwmSection, + }; + CrossMwmGraph(std::shared_ptr numMwmIds, shared_ptr> numMwmTree, std::shared_ptr vehicleModelFactory, CourntryRectFn const & countryRectFn, Index & index, @@ -82,13 +90,6 @@ public: void Clear(); private: - enum class MwmStatus - { - NotLoaded, - CrossMwmSectionExists, - NoCrossMwmSection, - }; - struct ClosestSegment { ClosestSegment(); @@ -144,4 +145,6 @@ private: CrossMwmIndexGraph m_crossMwmIndexGraph; CrossMwmOsrmGraph m_crossMwmOsrmGraph; }; + +string DebugPrint(CrossMwmGraph::MwmStatus status); } // routing