From 744796975c3d4690e5745ff23afc3ffdd1857bf1 Mon Sep 17 00:00:00 2001 From: Lev Dragunov Date: Mon, 23 Mar 2015 14:58:27 +0300 Subject: [PATCH] clang-format codestyle fixes --- generator/routing_generator.cpp | 3 +- indexer/features_offsets_table.cpp | 2 +- indexer/features_offsets_table.hpp | 15 ++------- routing/osrm2feature_map.cpp | 6 ++-- routing/osrm2feature_map.hpp | 5 +-- routing/osrm_router.cpp | 54 +++++++++++++++++------------- routing/osrm_router.hpp | 5 +-- routing/routing_mapping.cpp | 9 +++-- routing/routing_mapping.h | 4 +-- 9 files changed, 54 insertions(+), 49 deletions(-) diff --git a/generator/routing_generator.cpp b/generator/routing_generator.cpp index 09a7f2ea7e..fd536fec84 100644 --- a/generator/routing_generator.cpp +++ b/generator/routing_generator.cpp @@ -314,7 +314,8 @@ void BuildRoutingIndex(string const & baseDir, string const & countryName, strin auto out = crossContext.GetOutgoingIterators(); MultiroutingTaskPointT sources(distance(in.first, in.second)), targets(distance(out.first, out.second)); size_t index = 0; - // Fill sources and targets with forward search task for ingoing (true) and backward search task (false) for outgoing nodes + // Fill sources and targets with start node task for ingoing (true) and target node task + // (false) for outgoing nodes for (auto i = in.first; i != in.second; ++i, ++index) { OsrmRouter::GenerateRoutingTaskFromNodeId(i->m_nodeId, true, sources[index]); diff --git a/indexer/features_offsets_table.cpp b/indexer/features_offsets_table.cpp index d8ecfbca33..6e76cc069f 100644 --- a/indexer/features_offsets_table.cpp +++ b/indexer/features_offsets_table.cpp @@ -13,7 +13,7 @@ namespace feature { - void FeaturesOffsetsTable::Builder::PushOffset(uint32_t const offset) +void FeaturesOffsetsTable::Builder::PushOffset(uint32_t const offset) { ASSERT(m_offsets.empty() || m_offsets.back() < offset, ()); m_offsets.push_back(offset); diff --git a/indexer/features_offsets_table.hpp b/indexer/features_offsets_table.hpp index dc37590c83..d92a840ef7 100644 --- a/indexer/features_offsets_table.hpp +++ b/indexer/features_offsets_table.hpp @@ -30,10 +30,7 @@ namespace feature void PushOffset(uint32_t offset); /// \return number of already accumulated offsets - inline size_t size() const - { - return m_offsets.size(); - } + inline size_t size() const { return m_offsets.size(); } private: friend class FeaturesOffsetsTable; @@ -90,18 +87,12 @@ namespace feature size_t GetFeatureIndexbyOffset(uint32_t offset) const; /// \return number of features offsets in a table. - inline size_t size() const - { - return static_cast(m_table.num_ones()); - } + inline size_t size() const { return static_cast(m_table.num_ones()); } /// \return byte size of a table, may be slightly different from a /// real byte size in memory or on disk due to alignment, but /// can be used in benchmarks, logging, etc. - inline size_t byte_size() - { - return succinct::mapper::size_of(m_table); - } + inline size_t byte_size() { return succinct::mapper::size_of(m_table); } private: FeaturesOffsetsTable(succinct::elias_fano::elias_fano_builder & builder); diff --git a/routing/osrm2feature_map.cpp b/routing/osrm2feature_map.cpp index e075a5685b..8e76e250b5 100644 --- a/routing/osrm2feature_map.cpp +++ b/routing/osrm2feature_map.cpp @@ -21,7 +21,6 @@ namespace routing { - TOsrmNodeId const INVALID_NODE_ID = numeric_limits::max(); OsrmMappingTypes::FtSeg::FtSeg(uint32_t fid, uint32_t ps, uint32_t pe) @@ -368,7 +367,8 @@ bool OsrmFtSegBackwardIndex::Load(string const & nodesFileName, string const & b return true; } -void OsrmFtSegBackwardIndex::Construct(OsrmFtSegMapping & mapping, const uint32_t maxNodeId, FilesMappingContainer & routingFile) +void OsrmFtSegBackwardIndex::Construct(OsrmFtSegMapping & mapping, const uint32_t maxNodeId, + FilesMappingContainer & routingFile) { Clear(); @@ -403,7 +403,7 @@ void OsrmFtSegBackwardIndex::Construct(OsrmFtSegMapping & mapping, const uint32_ { OsrmMappingTypes::FtSeg seg; mapping.GetSegmentByIndex(indexes.first, seg); - temporaryBackwardIndex[seg.m_fid].push_back(i);; + temporaryBackwardIndex[seg.m_fid].push_back(i); } } diff --git a/routing/osrm2feature_map.hpp b/routing/osrm2feature_map.hpp index cace07e256..1e338cfe7c 100644 --- a/routing/osrm2feature_map.hpp +++ b/routing/osrm2feature_map.hpp @@ -35,7 +35,7 @@ namespace OsrmMappingTypes { uint16_t m_pointStart; uint16_t m_pointEnd; - static const uint32_t INVALID_FID = numeric_limits::max(); + static constexpr uint32_t INVALID_FID = numeric_limits::max(); // No need to initialize something her (for vector). FtSeg() {} @@ -109,7 +109,8 @@ class OsrmFtSegBackwardIndex bool Load(string const & nodesFileName, string const & bitsFileName); public: - void Construct(OsrmFtSegMapping & mapping, uint32_t const maxNodeId, FilesMappingContainer & routingFile); + void Construct(OsrmFtSegMapping & mapping, uint32_t const maxNodeId, + FilesMappingContainer & routingFile); TNodesList const & GetNodeIdByFid(uint32_t const fid) const; diff --git a/routing/osrm_router.cpp b/routing/osrm_router.cpp index ea18d44571..139575c20b 100644 --- a/routing/osrm_router.cpp +++ b/routing/osrm_router.cpp @@ -343,11 +343,6 @@ public: } // namespace -bool IsValidEdgeWeight(EdgeWeight const & w) -{ - return w < INVALID_EDGE_WEIGHT; -} - RoutingMappingPtrT RoutingIndexManager::GetMappingByPoint(m2::PointD const & point, Index const * pIndex) { return GetMappingByName(m_countryFn(point), pIndex); @@ -498,6 +493,8 @@ bool IsRouteExist(RawRouteData const & r) r.source_traversed_in_reverse.empty()); } +bool IsValidEdgeWeight(EdgeWeight const & w) { return w != INVALID_EDGE_WEIGHT; } + } void OsrmRouter::FindWeightsMatrix(MultiroutingTaskPointT const & sources, MultiroutingTaskPointT const & targets, @@ -565,7 +562,8 @@ bool OsrmRouter::FindSingleRoute(FeatureGraphNodeVecT const & source, FeatureGra return false; } -void OsrmRouter::GenerateRoutingTaskFromNodeId(NodeID const nodeId, bool const isStartNode, FeatureGraphNode & taskNode) +void OsrmRouter::GenerateRoutingTaskFromNodeId(NodeID const nodeId, bool const isStartNode, + FeatureGraphNode & taskNode) { taskNode.m_node.forward_node_id = isStartNode ? nodeId : INVALID_NODE_ID; taskNode.m_node.reverse_node_id = isStartNode ? INVALID_NODE_ID : nodeId; @@ -600,6 +598,7 @@ OsrmRouter::ResultCode OsrmRouter::MakeRouteFromCrossesPath(CheckedPathT const & for (RoutePathCross const & cross: path) { RawRoutingResultT routingResult; + // TODO (Dragunov) refactor whole routing to single OSRM node in task instead vector. FeatureGraphNodeVecT startTask(1), targetTask(1); startTask[0] = cross.startNode; @@ -682,14 +681,14 @@ public: size_t index = 0; for (auto i = income_iterators.first; i < income_iterators.second; ++i, ++index) - OsrmRouter::GenerateRoutingTaskFromNodeId(i->m_nodeId, true /*start node*/, m_sources[index]); + OsrmRouter::GenerateRoutingTaskFromNodeId(i->m_nodeId, true /*isStartNode*/, m_sources[index]); vector weights; for (auto const & t : targetTask) { targets[0] = t; OsrmRouter::FindWeightsMatrix(m_sources, targets, mapping->m_dataFacade, weights); - if (find_if(weights.begin(), weights.end(), IsValidEdgeWeight) != weights.end()) + if (find_if(weights.begin(), weights.end(), &IsValidEdgeWeight) != weights.end()) { ASSERT_EQUAL(weights.size(), m_sources.size(), ()); m_target = t; @@ -707,9 +706,9 @@ public: bool MakeLastCrossSegment(size_t const incomeNodeId, OsrmRouter::RoutePathCross & outCrossTask) { auto const ingoing = m_targetContext.GetIngoingIterators(); - auto it = find_if(ingoing.first, ingoing.second, [&incomeNodeId](IngoingCrossNode const & node) - { - return node.m_nodeId == incomeNodeId; + auto const it = find_if(ingoing.first, ingoing.second, [&incomeNodeId](IngoingCrossNode const & node) + { + return node.m_nodeId == incomeNodeId; }); ASSERT(it != ingoing.second, ()); size_t const targetNumber = distance(ingoing.first, it); @@ -791,7 +790,10 @@ OsrmRouter::ResultCode OsrmRouter::CalculateRouteImpl(m2::PointD const & startPt if (startMapping->GetName() == targetMapping->GetName()) { LOG(LINFO, ("Single mwm routing case")); - m_indexManager.ForEachMapping([](pair const & indexPair){indexPair.second->FreeCrossContext();}); + m_indexManager.ForEachMapping([](pair const & indexPair) + { + indexPair.second->FreeCrossContext(); + }); if (!FindSingleRoute(startTask, m_CachedTargetTask, startMapping->m_dataFacade, routingResult)) { return RouteNotFound; @@ -866,14 +868,14 @@ OsrmRouter::ResultCode OsrmRouter::CalculateRouteImpl(m2::PointD const & startPt size_t index = 0; for (auto j = mwmOutsIter.first; j < mwmOutsIter.second; ++j, ++index) - OsrmRouter::GenerateRoutingTaskFromNodeId(j->m_nodeId, false /*end node*/, targets[index]); + OsrmRouter::GenerateRoutingTaskFromNodeId(j->m_nodeId, false /*isStartNode*/, targets[index]); vector weights; for (auto const & t : startTask) { sources[0] = t; LOG(LINFO, ("Start case")); FindWeightsMatrix(sources, targets, startMapping->m_dataFacade, weights); - if (find_if(weights.begin(), weights.end(), IsValidEdgeWeight) != weights.end()) + if (find_if(weights.begin(), weights.end(), &IsValidEdgeWeight) != weights.end()) break; weights.clear(); } @@ -906,15 +908,16 @@ OsrmRouter::ResultCode OsrmRouter::CalculateRouteImpl(m2::PointD const & startPt continue; if (m_requestCancel) return Cancelled; - string const & nextMwm = startMapping->m_crossContext.getOutgoingMwmName((mwmOutsIter.first+j)->m_outgoingIndex); + string const & nextMwm = + startMapping->m_crossContext.getOutgoingMwmName((mwmOutsIter.first + j)->m_outgoingIndex); RoutingMappingPtrT nextMapping; nextMapping = m_indexManager.GetMappingByName(nextMwm, m_pIndex); // If we don't this routing file, we skip this path if (!nextMapping->IsValid()) continue; nextMapping->LoadCrossContext(); - size_t tNodeId = (mwmOutsIter.first+j)->m_nodeId; - size_t nextNodeId = FindNextMwmNode(*(mwmOutsIter.first+j), nextMapping); + size_t tNodeId = (mwmOutsIter.first + j)->m_nodeId; + size_t nextNodeId = FindNextMwmNode(*(mwmOutsIter.first + j), nextMapping); if (nextNodeId == INVALID_NODE_ID) continue; checkedOuts.insert(make_pair(tNodeId, startMapping->GetName())); @@ -924,7 +927,7 @@ OsrmRouter::ResultCode OsrmRouter::CalculateRouteImpl(m2::PointD const & startPt if (nextMwm != targetMapping->GetName()) { FeatureGraphNode tmpNode; - OsrmRouter::GenerateRoutingTaskFromNodeId(nextNodeId, true /*temporary node*/, tmpNode); + OsrmRouter::GenerateRoutingTaskFromNodeId(nextNodeId, true /*isStartNode*/, tmpNode); tmpPath.push_back({nextMapping->GetName(), tmpNode, tmpNode, 0}); crossTasks.push(tmpPath); } @@ -1005,15 +1008,17 @@ OsrmRouter::ResultCode OsrmRouter::CalculateRouteImpl(m2::PointD const & startPt continue; CheckedPathT tmpPath(topTask); FeatureGraphNode startNode, stopNode; - OsrmRouter::GenerateRoutingTaskFromNodeId(iit->m_nodeId, true /*start node*/, startNode); - OsrmRouter::GenerateRoutingTaskFromNodeId(tNodeId, false /*end node*/, stopNode); + OsrmRouter::GenerateRoutingTaskFromNodeId(iit->m_nodeId, true /*isStartNode*/, + startNode); + OsrmRouter::GenerateRoutingTaskFromNodeId(tNodeId, false /*isStartNode*/, stopNode); tmpPath.back() = {currentMapping->GetName(), startNode, stopNode, outWeight}; if (nextMwm != targetMapping->GetName()) { FeatureGraphNode tmpNode; - OsrmRouter::GenerateRoutingTaskFromNodeId(nextNodeId, true /*temporary node*/, tmpNode); + OsrmRouter::GenerateRoutingTaskFromNodeId(nextNodeId, true /*isStartNode*/, + tmpNode); tmpPath.push_back({nextMapping->GetName(), tmpNode, tmpNode, 0}); - crossTasks.emplace(tmpPath); + crossTasks.emplace(move(tmpPath)); } else { @@ -1043,7 +1048,10 @@ OsrmRouter::ResultCode OsrmRouter::CalculateRouteImpl(m2::PointD const & startPt if (finalWeight < INVALID_EDGE_WEIGHT) { // Manually free all cross context allocations before geometry unpacking - m_indexManager.ForEachMapping([](pair const & indexPair){indexPair.second->FreeCrossContext();}); + m_indexManager.ForEachMapping([](pair const & indexPair) + { + indexPair.second->FreeCrossContext(); + }); auto code = MakeRouteFromCrossesPath(finalPath, route); LOG(LINFO, ("Make final route", timer.ElapsedNano())); timer.Reset(); diff --git a/routing/osrm_router.hpp b/routing/osrm_router.hpp index f49c9be884..0ca5162e35 100644 --- a/routing/osrm_router.hpp +++ b/routing/osrm_router.hpp @@ -74,7 +74,7 @@ public: RoutingMappingPtrT GetMappingByPoint(m2::PointD const & point, Index const * pIndex); RoutingMappingPtrT GetMappingByName(string const & fName, Index const * pIndex); - + template void ForEachMapping(TFunctor toDo) { @@ -141,7 +141,8 @@ public: * \param isStartNode true if this node will first in the path * \param taskNode output point task for router */ - static void GenerateRoutingTaskFromNodeId(const NodeID nodeId, bool const isStartNode, FeatureGraphNode & taskNode); + static void GenerateRoutingTaskFromNodeId(const NodeID nodeId, bool const isStartNode, + FeatureGraphNode & taskNode); void ActivateAdditionalFeatures() {m_additionalFeatures = true;} diff --git a/routing/routing_mapping.cpp b/routing/routing_mapping.cpp index 87d9263eb8..a3351ca67e 100644 --- a/routing/routing_mapping.cpp +++ b/routing/routing_mapping.cpp @@ -14,10 +14,13 @@ namespace routing { - RoutingMapping::RoutingMapping(string const & fName, Index const * pIndex) - : m_mapCounter(0), m_facadeCounter(0), m_crossContextLoaded(0), m_baseName(fName), - m_isValid(true), m_error(IRouter::ResultCode::NoError) + : m_mapCounter(0), + m_facadeCounter(0), + m_crossContextLoaded(0), + m_baseName(fName), + m_isValid(true), + m_error(IRouter::ResultCode::NoError) { Platform & pl = GetPlatform(); string const mwmName = m_baseName + DATA_FILE_EXTENSION; diff --git a/routing/routing_mapping.h b/routing/routing_mapping.h index 4ea234cbcc..186a2098bc 100644 --- a/routing/routing_mapping.h +++ b/routing/routing_mapping.h @@ -41,9 +41,9 @@ struct RoutingMapping IRouter::ResultCode GetError() const {return m_error;} - string const & GetName() const {return m_baseName;} + string const & GetName() const { return m_baseName; } - Index::MwmId const & GetMwmId() const {return m_mwmId;} + Index::MwmId const & GetMwmId() const { return m_mwmId; } private: size_t m_mapCounter;