/srv/osrm/osrm-backend/include/util
NameSizeModeActions
guidance/-0755rm
alias.hpp68700644editdlrm
assert.hpp19640644editdlrm
attributes.hpp3570644editdlrm
bearing.hpp39640644editdlrm
bit_range.hpp29500644editdlrm
cheap_ruler.hpp21240644editdlrm
concurrent_id_map.hpp21480644editdlrm
conditional_restrictions.hpp6270644editdlrm
connectivity_checksum.hpp19310644editdlrm
coordinate.hpp92440644editdlrm
coordinate_calculation.hpp162970644editdlrm
deallocating_vector.hpp112050644editdlrm
debug.hpp59580644editdlrm
dist_table_wrapper.hpp22990644editdlrm
dynamic_graph.hpp159510644editdlrm
exception.hpp51260644editdlrm
exception_utils.hpp6090644editdlrm
exclude_flag.hpp9750644editdlrm
filtered_graph.hpp54020644editdlrm
filtered_integer_range.hpp30970644editdlrm
fingerprint.hpp11660644editdlrm
for_each_indexed.hpp6340644editdlrm
for_each_pair.hpp9900644editdlrm
for_each_range.hpp4770644editdlrm
geojson_debug_logger.hpp63300644editdlrm
geojson_debug_policies.hpp18100644editdlrm
geojson_debug_policy_toolkit.hpp32580644editdlrm
geojson_validation.hpp28990644editdlrm
graph_traits.hpp12450644editdlrm
graph_utils.hpp31410644editdlrm
group_by.hpp7220644editdlrm
hilbert_value.hpp30100644editdlrm
indexed_data.hpp150390644editdlrm
integer_range.hpp32860644editdlrm
isatty.hpp6100644editdlrm
json_container.hpp31810644editdlrm
json_deep_compare.hpp47320644editdlrm
json_renderer.hpp41600644editdlrm
json_util.hpp5440644editdlrm
log.hpp21870644editdlrm
lua_util.hpp8910644editdlrm
matrix_graph_wrapper.hpp12940644editdlrm
meminfo.hpp6600644editdlrm
mmap_file.hpp27760644editdlrm
mmap_tar.hpp10070644editdlrm
msb.hpp11780644editdlrm
node_based_graph.hpp35300644editdlrm
opening_hours.hpp83380644editdlrm
packed_vector.hpp216910644editdlrm
percent.hpp21060644editdlrm
permutation.hpp19910644editdlrm
query_heap.hpp102050644editdlrm
range_table.hpp71190644editdlrm
rectangle.hpp59000644editdlrm
serialization.hpp59020644editdlrm
static_assert.hpp6400644editdlrm
static_graph.hpp107020644editdlrm
static_rtree.hpp341470644editdlrm
std_hash.hpp10350644editdlrm
string_util.hpp34000644editdlrm
tarjan_scc.hpp66460644editdlrm
timed_histogram.hpp25760644editdlrm
timezones.hpp14170644editdlrm
timing_util.hpp14850644editdlrm
to_osm_link.hpp6940644editdlrm
trigonometry_table.hpp359060644editdlrm
typedefs.hpp76270644editdlrm
vector_tile.hpp3030644editdlrm
vector_view.hpp80000644editdlrm
version.hpp.in4060644editdlrm
viewport.hpp15790644editdlrm
web_mercator.hpp64800644editdlrm
xor_fast_hash.hpp17970644editdlrm
xor_fast_hash_storage.hpp21950644editdlrm
Edit: /srv/osrm/osrm-backend/include/util/query_heap.hpp (10205B)
#ifndef OSRM_UTIL_QUERY_HEAP_HPP #define OSRM_UTIL_QUERY_HEAP_HPP #include #include #include #include #include #include #include #include namespace osrm::util { template class GenerationArrayStorage { using GenerationCounter = std::uint16_t; public: explicit GenerationArrayStorage(std::size_t size) : positions(size, 0), generation(1), generations(size, 0) { } Key &operator[](NodeID node) { generation[node] = generation; return positions[node]; } Key peek_index(const NodeID node) const { if (generations[node] < generation) { return std::numeric_limits::max(); } return positions[node]; } void Clear() { generation++; // if generation overflows we end up at 0 again and need to clear the vector if (generation == 0) { generation = 1; std::fill(generations.begin(), generations.end(), 0); } } private: GenerationCounter generation; std::vector generations; std::vector positions; }; template class ArrayStorage { public: explicit ArrayStorage(std::size_t size) : positions(size, 0) {} Key &operator[](NodeID node) { return positions[node]; } Key peek_index(const NodeID node) const { return positions[node]; } void Clear() {} private: std::vector positions; }; template class MapStorage { public: explicit MapStorage(std::size_t) {} Key &operator[](NodeID node) { return nodes[node]; } void Clear() { nodes.clear(); } Key peek_index(const NodeID node) const { const auto iter = nodes.find(node); if (nodes.end() != iter) { return iter->second; } return std::numeric_limits::max(); } private: std::map nodes; }; template class UnorderedMapStorage { public: explicit UnorderedMapStorage(std::size_t) { nodes.rehash(1000); } Key &operator[](const NodeID node) { return nodes[node]; } Key peek_index(const NodeID node) const { const auto iter = nodes.find(node); if (std::end(nodes) != iter) { return iter->second; } return std::numeric_limits::max(); } Key const &operator[](const NodeID node) const { auto iter = nodes.find(node); return iter->second; } void Clear() { nodes.clear(); } private: std::unordered_map nodes; }; template class BaseIndexStorage = UnorderedMapStorage, template class OverlayIndexStorage = ArrayStorage> class TwoLevelStorage { public: explicit TwoLevelStorage(std::size_t number_of_nodes, std::size_t number_of_overlay_nodes) : number_of_overlay_nodes(number_of_overlay_nodes), base(number_of_nodes), overlay(number_of_overlay_nodes) { } Key &operator[](const NodeID node) { if (node < number_of_overlay_nodes) { return overlay[node]; } else { return base[node]; } } Key peek_index(const NodeID node) const { if (node < number_of_overlay_nodes) { return overlay.peek_index(node); } else { return base.peek_index(node); } } Key const &operator[](const NodeID node) const { if (node < number_of_overlay_nodes) { return overlay[node]; } else { return base[node]; } } void Clear() { base.Clear(); overlay.Clear(); } private: const std::size_t number_of_overlay_nodes; BaseIndexStorage base; OverlayIndexStorage overlay; }; template > class QueryHeap { private: using HeapData = std::pair; using HeapContainer = boost::heap::d_ary_heap, boost::heap::mutable_, boost::heap::compare>>; using HeapHandle = typename HeapContainer::handle_type; public: using WeightType = Weight; using DataType = Data; struct HeapNode { HeapHandle handle; NodeID node; Weight weight; Data data; }; template explicit QueryHeap(StorageArgs... args) : node_index(args...) { Clear(); } void Clear() { heap.clear(); inserted_nodes.clear(); node_index.Clear(); } std::size_t Size() const { return heap.size(); } bool Empty() const { return 0 == Size(); } void Insert(NodeID node, Weight weight, const Data &data) { BOOST_ASSERT(node < std::numeric_limits::max()); const auto index = static_cast(inserted_nodes.size()); const auto handle = heap.push(std::make_pair(weight, index)); inserted_nodes.emplace_back(HeapNode{handle, node, weight, data}); node_index[node] = index; } Data &GetData(NodeID node) { const auto index = node_index.peek_index(node); BOOST_ASSERT((int)index >= 0 && (int)index < (int)inserted_nodes.size()); return inserted_nodes[index].data; } HeapNode &getHeapNode(NodeID node) { const auto index = node_index.peek_index(node); BOOST_ASSERT((int)index >= 0 && (int)index < (int)inserted_nodes.size()); return inserted_nodes[index]; } Data const &GetData(NodeID node) const { const auto index = node_index.peek_index(node); BOOST_ASSERT((int)index >= 0 && (int)index < (int)inserted_nodes.size()); return inserted_nodes[index].data; } const Weight &GetKey(NodeID node) const { const auto index = node_index.peek_index(node); return inserted_nodes[index].weight; } bool WasRemoved(const NodeID node) const { BOOST_ASSERT(WasInserted(node)); const Key index = node_index.peek_index(node); // Use end iterator as a reliable "non-existent" handle. // Default-constructed handles are singular and // can only be checked-compared to another singular instance. // Behaviour investigated at https://lists.boost.org/boost-users/2017/08/87787.php, // eventually confirmation at https://stackoverflow.com/a/45622940/151641. // Corrected in https://github.com/Project-OSRM/osrm-backend/pull/4396 auto const end_it = const_cast(heap).end(); // non-const iterator auto const none_handle = heap.s_handle_from_iterator(end_it); // from non-const iterator return inserted_nodes[index].handle == none_handle; } bool WasInserted(const NodeID node) const { const auto index = node_index.peek_index(node); if (index >= static_cast(inserted_nodes.size())) { return false; } return inserted_nodes[index].node == node; } boost::optional GetHeapNodeIfWasInserted(const NodeID node) { const auto index = node_index.peek_index(node); if (index >= static_cast(inserted_nodes.size()) || inserted_nodes[index].node != node) { return {}; } return inserted_nodes[index]; } boost::optional GetHeapNodeIfWasInserted(const NodeID node) const { const auto index = node_index.peek_index(node); if (index >= static_cast(inserted_nodes.size()) || inserted_nodes[index].node != node) { return {}; } return inserted_nodes[index]; } NodeID Min() const { BOOST_ASSERT(!heap.empty()); return inserted_nodes[heap.top().second].node; } Weight MinKey() const { BOOST_ASSERT(!heap.empty()); return heap.top().first; } NodeID DeleteMin() { BOOST_ASSERT(!heap.empty()); const Key removedIndex = heap.top().second; heap.pop(); inserted_nodes[removedIndex].handle = heap.s_handle_from_iterator(heap.end()); return inserted_nodes[removedIndex].node; } HeapNode &DeleteMinGetHeapNode() { BOOST_ASSERT(!heap.empty()); const Key removedIndex = heap.top().second; heap.pop(); inserted_nodes[removedIndex].handle = heap.s_handle_from_iterator(heap.end()); return inserted_nodes[removedIndex]; } void DeleteAll() { auto const none_handle = heap.s_handle_from_iterator(heap.end()); std::for_each(inserted_nodes.begin(), inserted_nodes.end(), [&none_handle](auto &node) { node.handle = none_handle; }); heap.clear(); } void DecreaseKey(NodeID node, Weight weight) { BOOST_ASSERT(!WasRemoved(node)); const auto index = node_index.peek_index(node); auto &reference = inserted_nodes[index]; reference.weight = weight; heap.increase(reference.handle, std::make_pair(weight, index)); } void DecreaseKey(const HeapNode &heapNode) { BOOST_ASSERT(!WasRemoved(heapNode.node)); heap.increase(heapNode.handle, std::make_pair(heapNode.weight, (*heapNode.handle).second)); } private: std::vector inserted_nodes; HeapContainer heap; IndexStorage node_index; }; } // namespace osrm::util #endif // OSRM_UTIL_QUERY_HEAP_HPP