FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pgrouting/src/lineGraph/lineGraph_driver.cpp at main · PostGraphDB/pgrouting · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
PostGraphDB
/
pgrouting
Public
forked from
pgRouting/pgrouting
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pgrouting
/
src
/
lineGraph
/
lineGraph_driver.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
135 lines (113 loc) · 4.12 KB
Breadcrumbs
pgrouting
/
src
/
lineGraph
/
lineGraph_driver.cpp
Copy path
File metadata and controls
135 lines (113 loc) · 4.12 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
PGR-GNU*****************************************************************
File: lineGraph_driver.cpp
Generated with Template by:
Copyright (c) 2015 pgRouting developers
Mail: project@pgrouting.org
Function's developer:
Copyright (c) 2017 Vidhan Jain
Mail: vidhanj1307@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/lineGraph/lineGraph_driver.h
"
#
include
<
sstream
>
#
include
<
deque
>
#
include
<
vector
>
#
include
<
utility
>
#
include
"
dijkstra/pgr_dijkstra.hpp
"
#
include
"
cpp_common/pgr_alloc.hpp
"
#
include
"
cpp_common/pgr_assert.h
"
#
include
"
lineGraph/pgr_lineGraph.hpp
"
#
include
"
cpp_common/linear_directed_graph.h
"
void
get_postgres_result
(
std::vector< Edge_t > edge_result,
Edge_t **return_tuples,
size_t
&sequence) {
(*return_tuples) =
pgr_alloc
(edge_result.
size
(), (*return_tuples));
for
(
const
auto
&edge : edge_result) {
(*return_tuples)[sequence] = {edge.
id
, edge.
source
, edge.
target
,
edge.
cost
, edge.
reverse_cost
};
sequence++;
}
}
void
do_pgr_lineGraph
(
Edge_t *data_edges,
size_t
total_edges,
bool
directed,
Edge_t **return_tuples,
size_t
*return_count,
char
** log_msg,
char
** notice_msg,
char
** err_msg) {
std::ostringstream log;
std::ostringstream err;
std::ostringstream notice;
try
{
pgassert
(!(*log_msg));
pgassert
(!(*notice_msg));
pgassert
(!(*err_msg));
pgassert
(!(*return_tuples));
pgassert
(*return_count ==
0
);
pgassert
(total_edges !=
0
);
graphType
gType
= directed?
DIRECTED
:
UNDIRECTED
;
pgrouting::DirectedGraph
digraph
(
gType
);
digraph.
insert_edges_neg
(data_edges, total_edges);
log << digraph <<
"
\n
"
;
pgrouting::graph::Pgr_lineGraph<
pgrouting::LinearDirectedGraph,
pgrouting::Line_vertex,
pgrouting::Basic_edge>
line
(digraph);
std::vector< Edge_t > line_graph_edges;
line_graph_edges = line.
get_postgres_results_directed
();
auto
count = line_graph_edges.
size
();
if
(count ==
0
) {
(*return_tuples) =
NULL
;
(*return_count) =
0
;
notice <<
"
Only vertices graph
"
;
}
else
{
size_t
sequence =
0
;
get_postgres_result
(
line_graph_edges,
return_tuples,
sequence);
(*return_count) = sequence;
}
pgassert
(*err_msg ==
NULL
);
*log_msg = log.
str
().
empty
()?
*log_msg :
pgr_msg
(log.
str
().
c_str
());
*notice_msg = notice.
str
().
empty
()?
*notice_msg :
pgr_msg
(notice.
str
().
c_str
());
}
catch
(AssertFailedException &except) {
(*return_tuples) =
pgr_free
(*return_tuples);
(*return_count) =
0
;
err << except.
what
();
*err_msg =
pgr_msg
(err.
str
().
c_str
());
*log_msg =
pgr_msg
(log.
str
().
c_str
());
}
catch
(std::exception &except) {
(*return_tuples) =
pgr_free
(*return_tuples);
(*return_count) =
0
;
err << except.
what
();
*err_msg =
pgr_msg
(err.
str
().
c_str
());
*log_msg =
pgr_msg
(log.
str
().
c_str
());
}
catch
(...) {
(*return_tuples) =
pgr_free
(*return_tuples);
(*return_count) =
0
;
err <<
"
Caught unknown exception!
"
;
*err_msg =
pgr_msg
(err.
str
().
c_str
());
*log_msg =
pgr_msg
(log.
str
().
c_str
());
}
}
Back
|
FazBrowse Home
|
New Git URL