PGROUTING  3.2
drivedist_driver.h File Reference
#include <stddef.h>
#include "c_types/pgr_edge_t.h"
#include "c_types/general_path_element_t.h"
Include dependency graph for drivedist_driver.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void do_pgr_driving_many_to_dist (pgr_edge_t *edges, size_t total_edges, int64_t *start_vertex, size_t s_len, double distance, bool directed, bool equicost, General_path_element_t **return_tuples, size_t *return_count, char **log_msg, char **notice_msg, char **err_msg)
 

Function Documentation

◆ do_pgr_driving_many_to_dist()

void do_pgr_driving_many_to_dist ( pgr_edge_t edges,
size_t  total_edges,
int64_t *  start_vertex,
size_t  s_len,
double  distance,
bool  directed,
bool  equicost,
General_path_element_t **  return_tuples,
size_t *  return_count,
char **  log_msg,
char **  notice_msg,
char **  err_msg 
)

Definition at line 82 of file drivedist_driver.cpp.

91  {
92  std::ostringstream log;
93  std::ostringstream err;
94  std::ostringstream notice;
95 
96  try {
97  pgassert(total_edges != 0);
98  pgassert(!(*log_msg));
99  pgassert(!(*notice_msg));
100  pgassert(!(*err_msg));
101  pgassert(!(*return_tuples));
102  pgassert(*return_count == 0);
103  pgassert((*return_tuples) == NULL);
104 
105  graphType gType = directedFlag? DIRECTED: UNDIRECTED;
106 
107  std::deque<Path> paths;
108  std::vector<int64_t> start_vertices(start_vertex, start_vertex + s_len);
109 
110  auto vertices(pgrouting::extract_vertices(data_edges, total_edges));
111 
112 #ifdef WITH_TIME
113  clock_t begin;
114  std::time_t start_t;
115  std::chrono::steady_clock::time_point begin_elapsed;
116 #endif
117 
118  if (directedFlag) {
119 #ifdef WITH_TIME
120  start_timing(start_t, begin_elapsed, begin);
121  log << "*********Creating graph at time: " << std::ctime(&start_t)
122  << "\n";
123 #endif
124  pgrouting::DirectedGraph digraph(vertices, gType);
125 #ifdef WITH_TIME
126  end_timing(start_t, begin_elapsed, begin, log);
127 #endif
128 
129 #ifdef WITH_TIME
130  start_timing(start_t, begin_elapsed, begin);
131  log << "********Inserting edges at time: " << std::ctime(&start_t)
132  << "\n";
133 #endif
134  digraph.insert_edges(data_edges, total_edges, true);
135 #ifdef WITH_TIME
136  end_timing(start_t, begin_elapsed, begin, log);
137 #endif
138 
139 #ifdef WITH_TIME
140  start_timing(start_t, begin_elapsed, begin);
141  log << "*******Calling the C++ call to pgr_drivingDistance: "
142  << std::ctime(&start_t) << "\n";
143 #endif
144  paths = pgr_drivingDistance(
145  digraph, start_vertices, distance, equiCostFlag, log);
146 #ifdef WITH_TIME
147  end_timing(start_t, begin_elapsed, begin, log);
148 #endif
149  } else {
150 #ifdef WITH_TIME
151  start_timing(start_t, begin_elapsed, begin);
152  log << "******Creating graph at time: " << std::ctime(&start_t)
153  << "\n";
154 #endif
155  pgrouting::UndirectedGraph undigraph(vertices, gType);
156 #ifdef WITH_TIME
157  end_timing(start_t, begin_elapsed, begin, log);
158 #endif
159 
160 #ifdef WITH_TIME
161  start_timing(start_t, begin_elapsed, begin);
162  log << "*******Inserting edges at time: " << std::ctime(&start_t)
163  << "\n";
164 #endif
165  undigraph.insert_edges(data_edges, total_edges, true);
166 #ifdef WITH_TIME
167  end_timing(start_t, begin_elapsed, begin, log);
168 #endif
169 
170 #ifdef WITH_TIME
171  start_timing(start_t, begin_elapsed, begin);
172  log << "*******Calling the C++ call to pgr_drivingDistance: "
173  << std::ctime(&start_t) << "\n";
174 #endif
175  paths = pgr_drivingDistance(
176  undigraph, start_vertices, distance, equiCostFlag, log);
177 #ifdef WITH_TIME
178  end_timing(start_t, begin_elapsed, begin, log);
179 #endif
180  }
181 
182  size_t count(count_tuples(paths));
183 
184 
185  if (count == 0) {
186  log << "\nNo return values were found";
187  *notice_msg = pgr_msg(log.str().c_str());
188  return;
189  }
190  *return_tuples = pgr_alloc(count, (*return_tuples));
191  auto trueCount(collapse_paths(return_tuples, paths));
192  *return_count = trueCount;
193 
194 
195  *log_msg = log.str().empty()?
196  *log_msg :
197  pgr_msg(log.str().c_str());
198  *notice_msg = notice.str().empty()?
199  *notice_msg :
200  pgr_msg(notice.str().c_str());
201  } catch (AssertFailedException &except) {
202  (*return_tuples) = pgr_free(*return_tuples);
203  (*return_count) = 0;
204  err << except.what();
205  *err_msg = pgr_msg(err.str().c_str());
206  *log_msg = pgr_msg(log.str().c_str());
207  } catch (std::exception &except) {
208  (*return_tuples) = pgr_free(*return_tuples);
209  (*return_count) = 0;
210  err << except.what();
211  *err_msg = pgr_msg(err.str().c_str());
212  *log_msg = pgr_msg(log.str().c_str());
213  } catch( ... ) {
214  (*return_tuples) = pgr_free(*return_tuples);
215  (*return_count) = 0;
216  err << "Caught unknown exception!";
217  *err_msg = pgr_msg(err.str().c_str());
218  *log_msg = pgr_msg(log.str().c_str());
219  }
220 }

References collapse_paths(), count_tuples(), DIRECTED, pgrouting::extract_vertices(), pgrouting::graph::Pgr_base_graph< G, T_V, T_E >::insert_edges(), pgassert, pgr_alloc(), pgrouting::pgr_drivingDistance(), pgr_free(), pgr_msg(), UNDIRECTED, and AssertFailedException::what().

Referenced by process().

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_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
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
graphType
graphType
Definition: graph_enum.h:30
pgrouting::pgr_drivingDistance
std::deque< Path > pgr_drivingDistance(G &graph, std::vector< int64_t > start_vids, double distance, bool equicost, std::ostringstream &log)
Definition: pgr_dijkstra.hpp:68
DIRECTED
@ DIRECTED
Definition: graph_enum.h:30
pgr_free
T * pgr_free(T *ptr)
Definition: pgr_alloc.hpp:77
pgrouting::graph::Pgr_base_graph
Definition: pgr_base_graph.hpp:168
pgrouting::extract_vertices
std::vector< Basic_vertex > extract_vertices(std::vector< Basic_vertex > vertices, const std::vector< pgr_edge_t > data_edges)
Definition: basic_vertex.cpp:59
AssertFailedException
Extends std::exception and is the exception that we throw if an assert fails.
Definition: pgr_assert.h:139