osrm-backend/include/extractor/guidance/turn_analysis.hpp

76 lines
2.4 KiB
C++
Raw Normal View History

#ifndef OSRM_EXTRACTOR_TURN_ANALYSIS
#define OSRM_EXTRACTOR_TURN_ANALYSIS
2016-03-23 08:04:23 -04:00
#include "extractor/compressed_edge_container.hpp"
#include "extractor/guidance/intersection.hpp"
#include "extractor/guidance/intersection_generator.hpp"
2016-04-11 06:51:06 -04:00
#include "extractor/guidance/motorway_handler.hpp"
#include "extractor/guidance/roundabout_handler.hpp"
2016-03-01 16:30:31 -05:00
#include "extractor/guidance/toolkit.hpp"
2016-03-23 08:04:23 -04:00
#include "extractor/guidance/turn_classification.hpp"
#include "extractor/guidance/turn_handler.hpp"
#include "extractor/query_node.hpp"
#include "extractor/restriction_map.hpp"
2016-04-22 05:31:46 -04:00
#include "extractor/suffix_table.hpp"
#include "util/name_table.hpp"
#include "util/node_based_graph.hpp"
#include <cstdint>
#include <memory>
2016-03-23 08:04:23 -04:00
#include <string>
#include <unordered_set>
2016-03-23 08:04:23 -04:00
#include <utility>
#include <vector>
namespace osrm
{
namespace extractor
{
2016-03-01 16:30:31 -05:00
namespace guidance
{
2016-03-08 06:40:45 -05:00
class TurnAnalysis
{
2016-03-08 06:40:45 -05:00
public:
TurnAnalysis(const util::NodeBasedDynamicGraph &node_based_graph,
const std::vector<QueryNode> &node_info_list,
const RestrictionMap &restriction_map,
const std::unordered_set<NodeID> &barrier_nodes,
const CompressedEdgeContainer &compressed_edge_container,
2016-04-22 05:31:46 -04:00
const util::NameTable &name_table,
const SuffixTable &street_name_suffix_table);
2016-03-08 06:40:45 -05:00
// the entry into the turn analysis
Intersection getIntersection(const NodeID from_node, const EdgeID via_eid) const;
2016-05-13 13:18:00 -04:00
Intersection
assignTurnTypes(const NodeID from_node, const EdgeID via_eid, Intersection intersection) const;
std::vector<TurnOperation>
transformIntersectionIntoTurns(const Intersection &intersection) const;
2016-06-15 08:38:24 -04:00
const IntersectionGenerator &getGenerator() const;
2016-03-08 06:40:45 -05:00
private:
const util::NodeBasedDynamicGraph &node_based_graph;
const IntersectionGenerator intersection_generator;
const RoundaboutHandler roundabout_handler;
const MotorwayHandler motorway_handler;
const TurnHandler turn_handler;
2016-03-08 06:40:45 -05:00
// Utility function, setting basic turn types. Prepares for normal turn handling.
Intersection
setTurnTypes(const NodeID from, const EdgeID via_edge, Intersection intersection) const;
Intersection handleSliproads(const NodeID intersection_node_id,
Intersection intersection) const;
2016-03-08 06:40:45 -05:00
}; // class TurnAnalysis
2016-02-26 11:33:18 -05:00
2016-03-01 16:30:31 -05:00
} // namespace guidance
} // namespace extractor
} // namespace osrm
#endif // OSRM_EXTRACTOR_TURN_ANALYSIS