Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
AFBuilder.h
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2001-2024 German Aerospace Center (DLR) and others.
4// This program and the accompanying materials are made available under the
5// terms of the Eclipse Public License 2.0 which is available at
6// https://www.eclipse.org/legal/epl-2.0/
7// This Source Code may also be made available under the following Secondary
8// Licenses when the conditions for such availability set forth in the Eclipse
9// Public License 2.0 are satisfied: GNU General Public License, version 2
10// or later which is available at
11// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13/****************************************************************************/
18// Arc flags builder for the arc flag router
19/****************************************************************************/
20#pragma once
21#include <config.h>
22#include <vector>
23// uncomment to disable assert()
24// #define NDEBUG
25#include <cassert>
26
27#include "AFBuild.h"
28#include "FlippedEdge.h"
29
30//#define AFBL_DEBUG_LEVEL_0
31//#define AFBL_DEBUG_LEVEL_1
32//#define AFBL_DEBUG_LEVEL_2
33
34#ifdef AFBL_DEBUG_LEVEL_2
35#define AFBL_DEBUG_LEVEL_1
36#endif
37
38#ifdef AFBL_DEBUG_LEVEL_1
39#define AFBL_DEBUG_LEVEL_0
40#endif
41
42// ===========================================================================
43// class definitions
44// ===========================================================================
50template<class E, class N, class V>
51class AFBuilder {
52public:
53 typedef typename AFInfo<E>::FlagInfo FlagInfo;
55
66 AFBuilder(int numberOfLevels, const std::vector<E*>& edges, bool unbuildIsWarning,
67 typename SUMOAbstractRouter<FlippedEdge<E, N, V>, V>::Operation flippedOperation,
68 const std::shared_ptr<const FlippedLookupTable> flippedLookup = nullptr,
69 const bool havePermissions = false, const bool haveRestrictions = false,
70 const std::vector<FlippedEdge<E, N, V>*>* toProhibit = nullptr) :
71 myEdges(edges),
72 myNumberOfLevels(numberOfLevels),
74#ifdef AFBL_DEBUG_LEVEL_0
75 myArcFlagsFileName("arcflags.csv"),
76#endif
77 myAmClean(true) {
78 for (const E* const edge : edges) {
79 myFlagInfos.push_back(new FlagInfo(edge));
80 }
81 // build the backward graph with flipped edges / nodes in advance
82#ifdef AFBL_DEBUG_LEVEL_0
83 std::cout << "Building flipped edges (" << edges.size() << " edges) / nodes..." << std::endl;
84#endif
85 for (const E* const edge : edges) {
86 myFlippedEdges.push_back(edge->getFlippedRoutingEdge());
87 }
88 for (FlippedEdge<E, N, V>* flippedEdge : myFlippedEdges) {
89 flippedEdge->init();
90 }
91#ifdef AFBL_DEBUG_LEVEL_0
92 std::cout << "Flipped edges / nodes are ready." << std::endl;
93#endif
95 myFlippedEdges, havePermissions, haveRestrictions);
96#ifdef AFBL_DEBUG_LEVEL_0
97 std::cout << "Instantiating arc flag build..." << std::endl;
98#endif
99 myArcFlagBuild = new AFBuild<E, N, V>(myFlippedEdges, myFlippedPartition, numberOfLevels, unbuildIsWarning,
100 flippedOperation, flippedLookup, havePermissions, haveRestrictions, toProhibit);
101
102#ifdef AFBL_DEBUG_LEVEL_0
103 std::cout << "Arc flag build is instantiated (but still uninitialized)." << std::endl;
104#endif
105 } // end of constructor
106
108 ~AFBuilder();
109
115 const std::vector<E*>& getEdges() {
116 return myEdges;
117 }
119 void reset();
125 std::vector<FlagInfo*>& build(SUMOTime msTime, const V* const vehicle);
133
134protected:
135#ifdef AFBL_DEBUG_LEVEL_0
139 void loadFlagsFromCsv(const std::string fileName);
143 void saveFlagsToCsv(const std::string fileName);
148 bool fileExists(const std::string& name) {
149 std::ifstream f(name.c_str());
150 return f.good();
151 }
152#endif
154 const std::vector<E*>& myEdges;
156 std::vector<FlippedEdge<E, N, V>*> myFlippedEdges;
160 std::vector<FlagInfo*> myFlagInfos;
167#ifdef AFBL_DEBUG_LEVEL_0
169 // @note This is a CSV file for convenience/testing purposes
170 const std::string myArcFlagsFileName;
171#endif
173};
174
175// ===========================================================================
176// method definitions
177// ===========================================================================
178
179template<class E, class N, class V>
181 delete myArcFlagBuild;
182 delete myFlippedPartition;
183 for (FlagInfo* flagInfo : myFlagInfos) {
184 delete flagInfo;
185 }
186}
187
188template<class E, class N, class V>
190 for (FlagInfo* flagInfo : myFlagInfos) {
191 flagInfo->reset();
192 }
193 myAmClean = true;
194}
195
196template<class E, class N, class V>
197std::vector<typename AFInfo<E>::FlagInfo*>& AFBuilder<E, N, V>::build(SUMOTime msTime, const V* const vehicle) {
198 if (!myAmClean) {
199 reset();
200 }
201 assert(myFlippedPartition);
202 if (myFlippedPartition->isClean()) {
203 myFlippedPartition->init(vehicle);
204 myArcFlagBuild->setFlippedPartition(myFlippedPartition);
205 } else {
206 myFlippedPartition->reset(vehicle);
207 }
208 assert(myArcFlagBuild);
209#ifdef AFBL_DEBUG_LEVEL_0
210 bool fileExists = this->fileExists(myArcFlagsFileName);
211 if (fileExists && myAmClean) {
212 std::cout << "Loading arc flags from file " << myArcFlagsFileName << std::endl;
213 loadFlagsFromCsv(myArcFlagsFileName);
214 std::cout << "Arc flags loaded." << std::endl;
215 } else {
216#endif
217 myArcFlagBuild->init(msTime, vehicle, myFlagInfos);
218#ifdef AFBL_DEBUG_LEVEL_0
219 }
220#endif
221 delete myFlippedPartition;
222 myFlippedPartition = nullptr;
223
224#ifdef AFBL_DEBUG_LEVEL_0
225 if (!fileExists) {
226 std::cout << "Saving arc flags..." << std::endl;
227 // save flag vectors in a CSV file (one column, flag vectors in the order of edges)
228 saveFlagsToCsv(myArcFlagsFileName);
229 std::cout << "Arc flags have been saved." << std::endl;
230 }
231#endif
232 myAmClean = false;
233 return myFlagInfos;
234}
235
236#ifdef AFBL_DEBUG_LEVEL_0
237template<class E, class N, class V>
238void AFBuilder<E, N, V>::saveFlagsToCsv(const std::string fileName) {
239 std::ofstream csvFile(fileName);
240 for (FlagInfo* flagInfo : myFlagInfos) {
241 if ((flagInfo->arcFlags).empty()) {
242 // default flag is false / zero
243 std::fill_n(std::back_inserter(flagInfo->arcFlags),
244 myNumberOfArcFlags, false);
245 }
246 for (bool flag : flagInfo->arcFlags) {
247 csvFile << flag;
248 }
249 csvFile << std::endl;
250 }
251 csvFile.close();
252}
253
254template<class E, class N, class V>
255void AFBuilder<E, N, V>::loadFlagsFromCsv(const std::string fileName) {
256 assert(myAmClean);
257 std::string fileNameCopy = fileName;
258 std::ifstream csvFile(fileNameCopy);
259 std::string result;
260 if (!csvFile.is_open()) {
261 result = fileNameCopy.insert(0, "Could not open CSV file ");
262 throw std::runtime_error(result);
263 }
264 for (FlagInfo* flagInfo : myFlagInfos) {
265 (flagInfo->arcFlags).clear();
266 std::fill_n(std::back_inserter(flagInfo->arcFlags),
267 myNumberOfArcFlags, false);
268 std::string line;
269 if (std::getline(csvFile, line)) {
270 if (line.empty()) {
271 continue;
272 }
273 std::stringstream stringStream(line);
274 std::string flagAsString(1, '\0');
275 int pos = 0;
276 while (stringStream.read(&flagAsString[0], 1)) {
277 (flagInfo->arcFlags)[pos++] = (!flagAsString.compare("0") ? 0 : 1);
278 }
279 } else {
280 result = fileNameCopy.insert(0, "CSV file ");
281 throw std::runtime_error(result.append(" has not enough lines - wrong or corrupted file?"));
282 }
283 }
284 myAmClean = false;
285 csvFile.close();
286}
287#endif
long long int SUMOTime
Definition GUI.h:36
Builds the flags for (multi-level) arc flag routing (Hilger et al.) in its multi-level variant (also ...
Definition AFBuild.h:82
Builds arc flags for shortest path search with the arc flag router.
Definition AFBuilder.h:51
std::vector< FlippedEdge< E, N, V > * > myFlippedEdges
The flipped (backward) edges.
Definition AFBuilder.h:156
AFBuilder(int numberOfLevels, const std::vector< E * > &edges, bool unbuildIsWarning, typename SUMOAbstractRouter< FlippedEdge< E, N, V >, V >::Operation flippedOperation, const std::shared_ptr< const FlippedLookupTable > flippedLookup=nullptr, const bool havePermissions=false, const bool haveRestrictions=false, const std::vector< FlippedEdge< E, N, V > * > *toProhibit=nullptr)
Constructor.
Definition AFBuilder.h:66
AFBuild< E, N, V > * getArcFlagBuild()
Returns the arc flag build.
Definition AFBuilder.h:111
~AFBuilder()
Destructor.
Definition AFBuilder.h:180
int myNumberOfArcFlags
The number of arc flags per each edge.
Definition AFBuilder.h:166
AFInfo< E >::FlagInfo FlagInfo
Definition AFBuilder.h:53
std::vector< FlagInfo * > & build(SUMOTime msTime, const V *const vehicle)
Build the arc flag information for the arc flag router.
Definition AFBuilder.h:197
AbstractLookupTable< FlippedEdge< E, N, V >, V > FlippedLookupTable
Definition AFBuilder.h:54
std::vector< FlagInfo * > myFlagInfos
The flag informations.
Definition AFBuilder.h:160
AFBuild< E, N, V > * myArcFlagBuild
The arc flag build.
Definition AFBuilder.h:162
bool myAmClean
Definition AFBuilder.h:172
void reset()
Resets the builder.
Definition AFBuilder.h:189
const std::vector< E * > & getEdges()
Returns the edges.
Definition AFBuilder.h:115
int sHARCLevel2PartitionLevel(int sHARCLevel)
Converts a SHARC level number to a partition level number.
Definition AFBuilder.h:130
int myNumberOfLevels
The number of levels of the k-d tree partition of the network.
Definition AFBuilder.h:164
const std::vector< E * > & myEdges
The edges.
Definition AFBuilder.h:154
KDTreePartition< FlippedEdge< E, N, V >, FlippedNode< E, N, V >, V > * myFlippedPartition
The k-d tree partition of the backward graph with flipped edges.
Definition AFBuilder.h:158
static int sHARCLevel2PartitionLevel(int sHARCLevel, int numberOfPartitionLevels)
Converts a SHARC level number to a partition level number.
Definition AFRouter.h:317
The edge type representing backward edges with flipped nodes.
Definition FlippedEdge.h:43
the node type representing nodes used for backward search
Definition FlippedNode.h:32
Partitions the router's network wrt a k-d tree subdivision scheme.