1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
|
/*PGR-GNU*****************************************************************
FILE: pgr_trspHandler.h
Copyright (c) 2017 pgRouting developers
Mail: project@pgrouting.org
------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
********************************************************************PGR-GNU*/
#ifndef INCLUDE_TRSP_PGR_TRSPHANDLER_H_
#define INCLUDE_TRSP_PGR_TRSPHANDLER_H_
#include <stdlib.h>
#include <vector>
#include <deque>
#include <map>
#include <queue>
#include <string>
#include <iostream>
#include <utility>
#include <functional>
#include <limits>
#include <set>
#include "cpp_common/basePath_SSEC.hpp"
#include "trsp/edgeInfo.h"
#include "cpp_common/rule.h"
#include "cpp_common/pgr_messages.h"
namespace pgrouting {
namespace trsp {
class Pgr_trspHandler : public pgrouting::Pgr_messages {
/**
* Used in the priority queue
*/
typedef std::pair<double, std::pair<int64_t, bool>> PDP;
/** @brief predecesor edge
*
* because each row represents 2 edges, this enumeration
* is needed for the predecessors
* - C_EDGE: If the predecessor comes from the "cost" edge
* - RC_EDGE: If the predecessor comes from the "reverse_cost" edge
* - ILLEGAL: Its not a predecessor of anything
*
* The "legal" values are indices to vectors
*/
enum Position {ILLEGAL = -1, RC_EDGE = 0, C_EDGE = 1};
class Predecessor {
public:
Predecessor() :
e_idx(2),
v_pos(2) {
for (auto &p : v_pos) p = ILLEGAL;
}
bool isIllegal(size_t i) {return v_pos[i] == ILLEGAL;}
bool isIllegal(Position i) {
pgassert(i != ILLEGAL);
if (i == ILLEGAL) return true;
return v_pos[static_cast<size_t>(i)] == ILLEGAL;}
std::vector<size_t> e_idx;
std::vector<Position> v_pos;
};
class CostHolder {
public:
CostHolder() {
endCost = startCost = (std::numeric_limits<double>::max)();
}
public:
double startCost;
double endCost;
};
public:
Pgr_trspHandler(
Edge_t *edges,
const size_t edge_count,
const bool directed,
const std::vector<Rule> &ruleList);
Pgr_trspHandler(
Edge_t *edges,
const size_t edge_count,
const std::vector<Edge_t> &new_edges,
const bool directed,
const std::vector<Rule> &ruleList);
Pgr_trspHandler(void) = delete;
~Pgr_trspHandler(void) = default;
Path process(
const int64_t start_vertex,
const int64_t end_vertex);
std::deque<Path> process(
const std::map<int64_t,
std::set<int64_t>> &combinations);
std::deque<Path> process(
const std::vector<int64_t> sources,
const std::vector<int64_t> targets);
void clear();
private:
void construct_graph(
Edge_t *edges,
const size_t edge_count,
const bool directed);
void add_point_edges(
const std::vector<Edge_t> &new_edges,
const bool directed);
int initialize_restrictions(
const std::vector<Rule> &ruleList);
void initialize_que();
Path process_trsp(
size_t edge_count);
EdgeInfo dijkstra_exploration();
void explore(
int64_t cur_node,
const EdgeInfo cur_edge,
bool isStart);
double getRestrictionCost(
int64_t cur_node,
const EdgeInfo &new_edge,
bool isStart);
bool addEdge(Edge_t edgeIn, bool);
void connectStartEdge(
size_t firstEdge_idx,
size_t secondEdge_idx);
void connectEndEdge(
size_t firstEdge_idx,
size_t secondEdge_idx);
double construct_path(int64_t ed_id, Position pos);
void renumber_edges(Edge_t*, const size_t);
void renumber_edges(Edge_t*, const size_t, std::vector<Edge_t>&);
void add_to_que(
double cost,
size_t e_idx,
bool isStart);
double get_tot_cost(
double cost,
size_t edge_idx,
bool isStart);
private:
std::vector<EdgeInfo> m_edges;
/**
* Used only to veryfy that there are no reppetitions inserted
* the way it works, repeating edges id is not allowed
* TODO when using points edges id are repeated
*/
std::map<int64_t, int64_t> m_mapEdgeId2Index;
/**
* m_adjacency[vertex] = {edges}
*/
std::map<int64_t, std::vector<size_t>> m_adjacency;
/* id -> idx */
std::map<int64_t, int64_t> m_id_to_idx;
/* idx -> id */
std::map<int64_t, int64_t> m_idx_to_id;
int64_t m_start_vertex;
int64_t m_end_vertex;
/*
* Used in dijkstra_exploration
*/
int64_t current_node;
Path m_path;
std::vector<Predecessor> m_parent;
std::vector<CostHolder> m_dCost;
std::map<int64_t, std::vector<Rule>> m_ruleTable;
/*
* priority queue
*/
std::priority_queue<PDP, std::vector<PDP>, std::greater<PDP> > que;
};
} // namespace trsp
} // namespace pgrouting
#endif // INCLUDE_TRSP_PGR_TRSPHANDLER_H_
|