PGROUTING  3.2
dagShortestPath_driver.cpp
Go to the documentation of this file.
1 /*PGR-GNU*****************************************************************
2 File: dagShortestPath_driver.cpp
3 
4 Generated with Template by:
5 Copyright (c) 2015 pgRouting developers
7 
8 Function's developer:
9 Copyright (c) 2018 Sourabh Garg
11 
12 ------
13 
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 2 of the License, or
17 (at your option) any later version.
18 
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
23 
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 
28  ********************************************************************PGR-GNU*/
29 
31 
32 #include <sstream>
33 #include <deque>
34 #include <vector>
35 #include <algorithm>
36 
38 
39 #include "cpp_common/pgr_alloc.hpp"
40 #include "cpp_common/pgr_assert.h"
41 
42 
43 
44 
45 template < class G >
46 std::deque< Path >
48  G &graph,
49  std::vector <pgr_combination_t> &combinations,
50  std::vector < int64_t > sources,
51  std::vector < int64_t > targets,
52  bool only_cost = false) {
53  std::sort(sources.begin(), sources.end());
54  sources.erase(
55  std::unique(sources.begin(), sources.end()),
56  sources.end());
57 
58  std::sort(targets.begin(), targets.end());
59  targets.erase(
60  std::unique(targets.begin(), targets.end()),
61  targets.end());
62 
63 
64  Pgr_dag< G > fn_dag;
65  auto paths = combinations.empty() ?
66  fn_dag.dag(graph, sources, targets, only_cost)
67  : fn_dag.dag(graph, combinations, only_cost);
68 
69  return paths;
70 }
71 
72 
73 void
75  pgr_edge_t *data_edges,
76  size_t total_edges,
77  pgr_combination_t *combinations,
78  size_t total_combinations,
79  int64_t *start_vidsArr,
80  size_t size_start_vidsArr,
81  int64_t *end_vidsArr,
82  size_t size_end_vidsArr,
83  bool directed,
84  bool only_cost,
85 
86  General_path_element_t **return_tuples,
87  size_t *return_count,
88  char ** log_msg,
89  char ** notice_msg,
90  char ** err_msg) {
91  std::ostringstream log;
92  std::ostringstream err;
93  std::ostringstream notice;
94  try {
95  pgassert(!(*log_msg));
96  pgassert(!(*notice_msg));
97  pgassert(!(*err_msg));
98  pgassert(!(*return_tuples));
99  pgassert(*return_count == 0);
100  pgassert(total_edges != 0);
101  pgassert(data_edges);
102  pgassert((start_vidsArr && end_vidsArr) || combinations);
103  pgassert((size_start_vidsArr && size_end_vidsArr) || total_combinations);
104 
105  graphType gType = directed? DIRECTED: UNDIRECTED;
106 
107  log << "Inserting vertices into a c++ vector structure";
108  std::vector<int64_t>
109  start_vertices(start_vidsArr, start_vidsArr + size_start_vidsArr);
110  std::vector< int64_t >
111  end_vertices(end_vidsArr, end_vidsArr + size_end_vidsArr);
112  std::vector< pgr_combination_t >
113  combinations_vector(combinations, combinations + total_combinations);
114 
115  std::deque< Path >paths;
116 
117  if (directed) {
118  log << "Working with directed Graph\n";
119  pgrouting::DirectedGraph digraph(gType);
120  digraph.insert_edges(data_edges, total_edges);
121  paths = pgr_dagShortestPath(digraph,
122  combinations_vector,
123  start_vertices,
124  end_vertices,
125  only_cost);
126  } else {
127  log << "Working with Undirected Graph\n";
128  pgrouting::UndirectedGraph undigraph(gType);
129  undigraph.insert_edges(data_edges, total_edges);
130  paths = pgr_dagShortestPath(
131  undigraph,
132  combinations_vector,
133  start_vertices,
134  end_vertices,
135  only_cost);
136  }
137 
138  size_t count(0);
139  count = count_tuples(paths);
140 
141  if (count == 0) {
142  (*return_tuples) = NULL;
143  (*return_count) = 0;
144  notice <<
145  "No paths found between start_vid and end_vid vertices";
146  return;
147  }
148 
149  (*return_tuples) = pgr_alloc(count, (*return_tuples));
150  log << "\nConverting a set of paths into the tuples";
151  (*return_count) = (collapse_paths(return_tuples, paths));
152 
153  *log_msg = log.str().empty()?
154  *log_msg :
155  pgr_msg(log.str().c_str());
156  *notice_msg = notice.str().empty()?
157  *notice_msg :
158  pgr_msg(notice.str().c_str());
159  } catch (AssertFailedException &except) {
160  (*return_tuples) = pgr_free(*return_tuples);
161  (*return_count) = 0;
162  err << except.what();
163  *err_msg = pgr_msg(err.str().c_str());
164  *log_msg = pgr_msg(log.str().c_str());
165  } catch (std::exception &except) {
166  (*return_tuples) = pgr_free(*return_tuples);
167  (*return_count) = 0;
168  err << except.what();
169  *err_msg = pgr_msg(err.str().c_str());
170  *log_msg = pgr_msg(log.str().c_str());
171  } catch(...) {
172  (*return_tuples) = pgr_free(*return_tuples);
173  (*return_count) = 0;
174  err << "Caught unknown exception!";
175  *err_msg = pgr_msg(err.str().c_str());
176  *log_msg = pgr_msg(log.str().c_str());
177  }
178 }
Pgr_dag::dag
Path dag(G &graph, int64_t start_vertex, int64_t end_vertex, bool only_cost=false)
Dijkstra 1 to 1.
Definition: pgr_dagShortestPath.hpp:56
pgr_alloc
T * pgr_alloc(std::size_t size, T *ptr)
allocates memory
Definition: pgr_alloc.hpp:66
count_tuples
size_t count_tuples(const std::deque< Path > &paths)
Definition: basePath_SSEC.cpp:387
pgr_edge_t
Definition: pgr_edge_t.h:37
pgr_msg
char * pgr_msg(const std::string &msg)
Definition: pgr_alloc.cpp:30
AssertFailedException::what
virtual const char * what() const
Definition: pgr_assert.cpp:67
pgr_dagShortestPath.hpp
collapse_paths
size_t collapse_paths(General_path_element_t **ret_path, const std::deque< Path > &paths)
Definition: basePath_SSEC.cpp:310
pgassert
#define pgassert(expr)
Uses the standard assert syntax.
Definition: pgr_assert.h:94
UNDIRECTED
@ UNDIRECTED
Definition: graph_enum.h:30
pgrouting::graph::Pgr_base_graph::insert_edges
void insert_edges(const T *edges, size_t count)
Inserts count edges of type T into the graph.
Definition: pgr_base_graph.hpp:357
pgr_alloc.hpp
pgr_combination_t
Definition: pgr_combination_t.h:43
graphType
graphType
Definition: graph_enum.h:30
pgr_assert.h
An assert functionality that uses C++ throw().
DIRECTED
@ DIRECTED
Definition: graph_enum.h:30
General_path_element_t
Definition: general_path_element_t.h:37
pgr_dagShortestPath
std::deque< Path > pgr_dagShortestPath(G &graph, std::vector< pgr_combination_t > &combinations, std::vector< int64_t > sources, std::vector< int64_t > targets, bool only_cost=false)
Definition: dagShortestPath_driver.cpp:47
dagShortestPath_driver.h
pgrouting::alphashape::G
graph::Pgr_base_graph< BG, XY_vertex, Basic_edge > G
Definition: pgr_alphaShape.h:56
pgr_free
T * pgr_free(T *ptr)
Definition: pgr_alloc.hpp:77
pgrouting::graph::Pgr_base_graph
Definition: pgr_base_graph.hpp:168
do_pgr_dagShortestPath
void do_pgr_dagShortestPath(pgr_edge_t *data_edges, size_t total_edges, pgr_combination_t *combinations, size_t total_combinations, int64_t *start_vidsArr, size_t size_start_vidsArr, int64_t *end_vidsArr, size_t size_end_vidsArr, bool directed, bool only_cost, General_path_element_t **return_tuples, size_t *return_count, char **log_msg, char **notice_msg, char **err_msg)
Definition: dagShortestPath_driver.cpp:74
AssertFailedException
Extends std::exception and is the exception that we throw if an assert fails.
Definition: pgr_assert.h:139
Pgr_dag
Definition: pgr_dagShortestPath.hpp:49