-
-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathbinaryBreadthFirstSearch_driver.cpp
More file actions
236 lines (190 loc) · 7.03 KB
/
binaryBreadthFirstSearch_driver.cpp
File metadata and controls
236 lines (190 loc) · 7.03 KB
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
/*PGR-GNU*****************************************************************
File: binaryBreadthFirstSearch_driver.cpp
Generated with Template by:
Copyright (c) 2015-2026 pgRouting developers
Mail: project@pgrouting.org
Function's developer:
Copyright (c) 2019 Gudesa Venkata Sai Akhil
Mail: gvs.akhil1997@gmail.com
------
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*/
#include "drivers/breadthFirstSearch/binaryBreadthFirstSearch_driver.h"
#include <sstream>
#include <deque>
#include <vector>
#include <algorithm>
#include <string>
#include <set>
#include <map>
#include "breadthFirstSearch/binaryBreadthFirstSearch.hpp"
#include "cpp_common/combinations.hpp"
#include "cpp_common/pgdata_getters.hpp"
#include "cpp_common/to_postgres.hpp"
#include "cpp_common/assert.hpp"
namespace {
#if 0
template < class G >
std::deque<pgrouting::Path>
pgr_binaryBreadthFirstSearch(
G &graph,
std::vector <II_t_rt> &combinations,
std::vector < int64_t > sources,
std::vector < int64_t > targets) {
std::sort(sources.begin(), sources.end());
sources.erase(
std::unique(sources.begin(), sources.end()),
sources.end());
std::sort(targets.begin(), targets.end());
targets.erase(
std::unique(targets.begin(), targets.end()),
targets.end());
pgrouting::functions::Pgr_binaryBreadthFirstSearch< G > fn_binaryBreadthFirstSearch;
auto paths = combinations.empty() ?
fn_binaryBreadthFirstSearch.binaryBreadthFirstSearch(graph, sources, targets)
: fn_binaryBreadthFirstSearch.binaryBreadthFirstSearch(graph, combinations);
return paths;
}
const size_t MAX_UNIQUE_EDGE_COSTS = 2;
const char COST_ERR_MSG[] = "Graph Condition Failed: Graph should have at most two distinct non-negative edge costs! "
"If there are exactly two distinct edge costs, one of them must equal zero!";
#endif
template < class G >
bool
costCheck(G &graph) {
typedef typename G::E E;
typedef typename G::E_i E_i;
const size_t max_unique_edge_costs = 2;
auto edges = boost::edges(graph.graph);
E e;
E_i out_i;
E_i out_end;
std::set<double> cost_set;
for (boost::tie(out_i, out_end) = edges;
out_i != out_end; ++out_i) {
e = *out_i;
cost_set.insert(graph[e].cost);
if (cost_set.size() > max_unique_edge_costs) {
return false;
}
}
if (cost_set.size() == 2) {
if (*cost_set.begin() != 0.0) {
return false;
}
}
return true;
}
template <class G> std::deque<pgrouting::Path> binaryBreadthFirstSearch(
G &graph,
std::map<int64_t, std::set<int64_t>> &combinations) {
pgrouting::functions::Pgr_binaryBreadthFirstSearch< G > fn_binaryBreadthFirstSearch;
auto paths = fn_binaryBreadthFirstSearch.binaryBreadthFirstSearch(graph, combinations);
return paths;
}
} // namespace
void
pgr_do_binaryBreadthFirstSearch(
const char *edges_sql,
const char *combinations_sql,
ArrayType *starts,
ArrayType *ends,
bool directed,
Path_rt **return_tuples,
size_t *return_count,
char ** log_msg,
char ** notice_msg,
char ** err_msg) {
using pgrouting::Path;
using pgrouting::to_pg_msg;
using pgrouting::pgr_free;
using pgrouting::utilities::get_combinations;
using pgrouting::pgget::get_edges;
std::ostringstream log;
std::ostringstream err;
std::ostringstream notice;
const char *hint = nullptr;
const std::string c_err_msg = "Graph Condition Failed: Graph should have at most two distinct non-negative edge costs! "
"If there are exactly two distinct edge costs, one of them must equal zero!";
try {
pgassert(!(*log_msg));
pgassert(!(*notice_msg));
pgassert(!(*err_msg));
pgassert(!(*return_tuples));
pgassert(*return_count == 0);
using pgrouting::to_postgres::get_tuples;
hint = combinations_sql;
auto combinations = get_combinations(combinations_sql, starts, ends, true);
hint = nullptr;
if (combinations.empty() && combinations_sql) {
*notice_msg = to_pg_msg("No (source, target) pairs found");
*log_msg = to_pg_msg(combinations_sql);
return;
}
hint = edges_sql;
auto edges = pgrouting::pgget::get_edges(std::string(edges_sql), true, false);
if (edges.empty()) {
*notice_msg = to_pg_msg("No edges found");
*log_msg = hint? to_pg_msg(hint) : to_pg_msg(log);
return;
}
std::deque< Path >paths;
if (directed) {
pgrouting::DirectedGraph digraph;
digraph.insert_edges(edges);
if (!(costCheck(digraph))) {
err << c_err_msg;
*err_msg = to_pg_msg(err);
return;
}
paths = binaryBreadthFirstSearch(digraph, combinations);
} else {
pgrouting::UndirectedGraph undigraph;
undigraph.insert_edges(edges);
if (!(costCheck(undigraph))) {
err << c_err_msg;
*err_msg = to_pg_msg(err);
return;
}
paths = binaryBreadthFirstSearch(undigraph, combinations);
}
(*return_count) = get_tuples(paths, (*return_tuples));
if (*return_count == 0) {
*log_msg = to_pg_msg("No paths found");
return;
}
*log_msg = to_pg_msg(log);
*notice_msg = to_pg_msg(notice);
} catch (AssertFailedException &except) {
(*return_tuples) = pgr_free(*return_tuples);
(*return_count) = 0;
err << except.what();
*err_msg = to_pg_msg(err);
*log_msg = to_pg_msg(log);
} catch (const std::string &ex) {
*err_msg = to_pg_msg(ex);
*log_msg = hint? to_pg_msg(hint) : to_pg_msg(log);
} catch (std::exception &except) {
(*return_tuples) = pgr_free(*return_tuples);
(*return_count) = 0;
err << except.what();
*err_msg = to_pg_msg(err);
*log_msg = to_pg_msg(log);
} catch(...) {
(*return_tuples) = pgr_free(*return_tuples);
(*return_count) = 0;
err << "Caught unknown exception!";
*err_msg = to_pg_msg(err);
*log_msg = to_pg_msg(log);
}
}