Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
NIXMLNodesHandler.cpp
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/****************************************************************************/
21// Importer for network nodes stored in XML
22/****************************************************************************/
23#include <config.h>
24
25#include <string>
26#include <iostream>
35#include <netbuild/NBNodeCont.h>
37#include <netbuild/NBOwnTLDef.h>
39#include "NIXMLNodesHandler.h"
40#include "NIImporter_SUMO.h"
41
42
43// ===========================================================================
44// method definitions
45// ===========================================================================
48 OptionsCont& options) :
49 SUMOSAXHandler("xml-nodes - file"),
50 myOptions(options),
51 myNodeCont(nc),
52 myEdgeCont(ec),
53 myTLLogicCont(tlc),
54 myLocation(nullptr),
55 myLastParameterised(nullptr) {
56}
57
58
62
63
64void
66 const SUMOSAXAttributes& attrs) {
67 switch (element) {
70 if (myLocation) {
72 }
73 break;
74 case SUMO_TAG_NODE:
75 addNode(attrs);
76 break;
77 case SUMO_TAG_JOIN:
78 addJoinCluster(attrs);
79 break;
81 addJoinExclusion(attrs);
82 break;
83 case SUMO_TAG_DEL:
84 deleteNode(attrs);
85 break;
86 case SUMO_TAG_PARAM:
87 if (myLastParameterised != nullptr) {
88 bool ok = true;
89 const std::string key = attrs.get<std::string>(SUMO_ATTR_KEY, nullptr, ok);
90 // circumventing empty string test
91 const std::string val = attrs.hasAttribute(SUMO_ATTR_VALUE) ? attrs.getString(SUMO_ATTR_VALUE) : "";
93 }
94 break;
95 default:
96 break;
97 }
98}
99
100
101void
103 switch (element) {
104 case SUMO_TAG_NODE:
105 myLastParameterised = nullptr;
106 break;
107 default:
108 break;
109 }
110}
111
112
113void
115 bool ok = true;
116 // get the id, report a warning if not given or empty...
117 myID = attrs.get<std::string>(SUMO_ATTR_ID, nullptr, ok);
118 if (!ok) {
119 return;
120 }
122 // retrieve the position of the node
123 bool xOk = false;
124 bool yOk = false;
125 bool needConversion = true;
126 if (node != nullptr) {
127 myPosition = node->getPosition();
128 xOk = yOk = true;
129 needConversion = false;
130 } else {
131 myPosition.set(0, 0, 0); // better to reset than to reuse the previous (z)-value
132 }
133 if (attrs.hasAttribute(SUMO_ATTR_X)) {
134 myPosition.set(attrs.get<double>(SUMO_ATTR_X, myID.c_str(), ok), myPosition.y());
135 xOk = true;
136 needConversion = true;
137 }
138 if (attrs.hasAttribute(SUMO_ATTR_Y)) {
139 myPosition.set(myPosition.x(), attrs.get<double>(SUMO_ATTR_Y, myID.c_str(), ok));
140 yOk = true;
141 needConversion = true;
142 }
143 if (attrs.hasAttribute(SUMO_ATTR_Z)) {
144 myPosition.set(myPosition.x(), myPosition.y(), attrs.get<double>(SUMO_ATTR_Z, myID.c_str(), ok));
145 }
146 if (xOk && yOk) {
147 if (needConversion && !NBNetBuilder::transformCoordinate(myPosition, true, myLocation)) {
148 WRITE_ERRORF(TL("Unable to project coordinates for node '%'."), myID);
149 }
150 } else {
151 WRITE_ERRORF(TL("Missing position (at node ID='%')."), myID);
152 }
153 bool updateEdgeGeometries = node != nullptr && myPosition != node->getPosition();
154 node = processNodeType(attrs, node, myID, myPosition, updateEdgeGeometries, myNodeCont, myEdgeCont, myTLLogicCont, myLocation);
155 myLastParameterised = node;
156}
157
158
159NBNode*
160NIXMLNodesHandler::processNodeType(const SUMOSAXAttributes& attrs, NBNode* node, const std::string& nodeID, const Position& position,
161 bool updateEdgeGeometries,
163 GeoConvHelper* from_srs) {
164 bool ok = true;
165 // get the type
167 if (node != nullptr) {
168 type = node->getType();
169 }
170 std::string typeS = attrs.getOpt<std::string>(SUMO_ATTR_TYPE, nodeID.c_str(), ok, "");
171 if (SUMOXMLDefinitions::NodeTypes.hasString(typeS)) {
174 // dead end is a computed status. Reset this to unknown so it will
175 // be corrected if additional connections are loaded
177 }
178 }
179 std::set<NBTrafficLightDefinition*> oldTLS;
180 // check whether a prior node shall be modified
181 const bool isPatch = node != nullptr;
182 if (node == nullptr) {
183 node = new NBNode(nodeID, position, type);
184 if (!nc.insert(node)) {
185 throw ProcessError(TLF("Could not insert node though checked this before (id='%').", nodeID));
186 }
187 } else {
188 // patch information
189 oldTLS = node->getControllingTLS();
192 ec.removeRoundabout(node);
193 }
194 node->reinit(position, type, updateEdgeGeometries);
195 }
196 // process traffic light definition
197 if (NBNode::isTrafficLight(type)) {
198 processTrafficLightDefinitions(attrs, node, tlc);
199 } else if (isPatch && typeS != "") {
200 nc.markAsNotTLS(node);
201 }
202 // remove previously set tls if this node is not controlled by them
203 for (std::set<NBTrafficLightDefinition*>::iterator i = oldTLS.begin(); i != oldTLS.end(); ++i) {
204 if ((*i)->getNodes().size() == 0) {
205 tlc.removeFully((*i)->getID());
206 }
207 }
208
209 // set optional shape
210 PositionVector shape;
211 if (attrs.hasAttribute(SUMO_ATTR_SHAPE)) {
212 shape = attrs.getOpt<PositionVector>(SUMO_ATTR_SHAPE, nodeID.c_str(), ok, PositionVector());
213 if (!NBNetBuilder::transformCoordinates(shape, true, from_srs)) {
214 WRITE_ERRORF(TL("Unable to project node shape at node '%'."), node->getID());
215 }
216 if (shape.size() > 2) {
217 shape.closePolygon();
218 }
219 node->setCustomShape(shape);
220 }
221 // set optional radius
222 if (attrs.hasAttribute(SUMO_ATTR_RADIUS)) {
223 node->setRadius(attrs.get<double>(SUMO_ATTR_RADIUS, nodeID.c_str(), ok));
224 }
225 // set optional keepClear flag
227 node->setKeepClear(attrs.get<bool>(SUMO_ATTR_KEEP_CLEAR, nodeID.c_str(), ok));
228 }
229 node->setRightOfWay(attrs.getOpt<RightOfWay>(SUMO_ATTR_RIGHT_OF_WAY, nodeID.c_str(), ok, node->getRightOfWay()));
230 node->setFringeType(attrs.getOpt<FringeType>(SUMO_ATTR_FRINGE, nodeID.c_str(), ok, node->getFringeType()));
231 // set optional name
232 if (attrs.hasAttribute(SUMO_ATTR_NAME)) {
233 node->setName(attrs.get<std::string>(SUMO_ATTR_NAME, nodeID.c_str(), ok));
234 }
235 return node;
236}
237
238
239void
241 bool ok = true;
242 // get the id, report a warning if not given or empty...
243 myID = attrs.get<std::string>(SUMO_ATTR_ID, nullptr, ok);
244 if (!ok) {
245 return;
246 }
248 if (node == nullptr) {
249 WRITE_WARNING("Ignoring tag '" + toString(SUMO_TAG_DEL) + "' for unknown node '" +
250 myID + "'");
251 return;
252 } else {
253 myNodeCont.extract(node, true);
254 }
255}
256
257
258void
260 bool ok = true;
261 const std::string clusterString = attrs.get<std::string>(SUMO_ATTR_NODES, nullptr, ok);
262 const std::set<std::string>& cluster = StringTokenizer(clusterString).getSet();
263
264 myID = attrs.getOpt<std::string>(SUMO_ATTR_ID, nullptr, ok, myNodeCont.createClusterId(cluster));
265
267 if (attrs.hasAttribute(SUMO_ATTR_X)) {
268 pos.setx(attrs.get<double>(SUMO_ATTR_X, myID.c_str(), ok));
269 }
270 if (attrs.hasAttribute(SUMO_ATTR_Y)) {
271 pos.sety(attrs.get<double>(SUMO_ATTR_Y, myID.c_str(), ok));
272 }
273 if (attrs.hasAttribute(SUMO_ATTR_Z)) {
274 pos.setz(attrs.get<double>(SUMO_ATTR_Z, myID.c_str(), ok));
275 }
276
277 NBNode* node = processNodeType(attrs, nullptr, myID, pos, false, myNodeCont, myEdgeCont, myTLLogicCont, myLocation);
278 if (ok) {
279 myNodeCont.addCluster2Join(cluster, node);
280 }
281}
282
283
284void
286 bool ok = true;
287 const std::vector<std::string> ids = StringTokenizer(
288 attrs.get<std::string>(SUMO_ATTR_NODES, nullptr, ok)).getVector();
289 if (ok) {
291 }
292}
293
294
295void
297 NBNode* currentNode, NBTrafficLightLogicCont& tlc) {
298 // try to get the tl-id
299 // if a tl-id is given, we will look whether this tl already exists
300 // if so, we will add the node to it (and to all programs with this id), otherwise allocate a new one with this id
301 // if no tl-id exists, we will build a tl with the node's id
302 std::set<NBTrafficLightDefinition*> tlDefs;
303 bool ok = true;
304
305 std::string oldTlID = "";
306 std::string oldTypeS = OptionsCont::getOptions().getString("tls.default-type");
307
308 if (currentNode->isTLControlled()) {
309 NBTrafficLightDefinition* oldDef = *(currentNode->getControllingTLS().begin());
310 oldTlID = oldDef->getID();
311 oldTypeS = toString(oldDef->getType());
312 }
313 std::string tlID = attrs.getOpt<std::string>(SUMO_ATTR_TLID, nullptr, ok, oldTlID);
314 std::string typeS = attrs.getOpt<std::string>(SUMO_ATTR_TLTYPE, nullptr, ok, oldTypeS);
315 if (tlID != oldTlID || typeS != oldTypeS) {
316 currentNode->removeTrafficLights();
317 }
318 TrafficLightType type;
319 if (SUMOXMLDefinitions::TrafficLightTypes.hasString(typeS)) {
321 } else {
322 WRITE_ERRORF(TL("Unknown traffic light type '%' for node '%'."), typeS, currentNode->getID());
323 return;
324 }
326 if (attrs.hasAttribute(SUMO_ATTR_TLLAYOUT)) {
327 std::string layoutS = attrs.get<std::string>(SUMO_ATTR_TLLAYOUT, nullptr, ok);
328 if (SUMOXMLDefinitions::TrafficLightLayouts.hasString(layoutS)) {
330 } else {
331 WRITE_ERRORF(TL("Unknown traffic light layout '%' for node '%'."), typeS, currentNode->getID());
332 return;
333 }
334 }
335 if (tlID != "" && tlc.getPrograms(tlID).size() > 0) {
336 // we already have definitions for this tlID
337 for (auto item : tlc.getPrograms(tlID)) {
338 NBTrafficLightDefinition* def = item.second;
339 tlDefs.insert(def);
340 def->addNode(currentNode);
341 if (def->getType() != type && attrs.hasAttribute(SUMO_ATTR_TLTYPE)) {
342 WRITE_WARNINGF(TL("Changing traffic light type '%' to '%' for tl '%'."), toString(def->getType()), typeS, tlID);
343 def->setType(type);
344 if (type != TrafficLightType::STATIC && dynamic_cast<NBLoadedSUMOTLDef*>(def) != nullptr) {
345 dynamic_cast<NBLoadedSUMOTLDef*>(def)->guessMinMaxDuration();
346 }
347 }
348 if (layout != TrafficLightLayout::DEFAULT && dynamic_cast<NBOwnTLDef*>(def) != nullptr) {
349 dynamic_cast<NBOwnTLDef*>(def)->setLayout(layout);
350 }
351 }
352 } else {
353 // we need to add a new defition
354 tlID = (tlID == "" ? currentNode->getID() : tlID);
355 NBOwnTLDef* tlDef = new NBOwnTLDef(tlID, currentNode, 0, type);
356 if (!tlc.insert(tlDef)) {
357 // actually, nothing should fail here
358 delete tlDef;
359 throw ProcessError(TLF("Could not allocate tls '%'.", currentNode->getID()));
360 }
361 tlDef->setLayout(layout);
362 tlDefs.insert(tlDef);
363 }
364 // process inner edges which shall be controlled
365 const std::vector<std::string>& controlledInner = attrs.getOpt<std::vector<std::string> >(SUMO_ATTR_CONTROLLED_INNER, nullptr, ok);
366 if (controlledInner.size() != 0) {
367 for (std::set<NBTrafficLightDefinition*>::iterator it = tlDefs.begin(); it != tlDefs.end(); it++) {
368 (*it)->addControlledInnerEdges(controlledInner);
369 }
370 }
371}
372
373
374/****************************************************************************/
#define WRITE_WARNINGF(...)
Definition MsgHandler.h:296
#define WRITE_ERRORF(...)
Definition MsgHandler.h:305
#define WRITE_WARNING(msg)
Definition MsgHandler.h:295
#define TL(string)
Definition MsgHandler.h:315
#define TLF(string,...)
Definition MsgHandler.h:317
@ SUMO_TAG_JOINEXCLUDE
join exlude operation
@ SUMO_TAG_LOCATION
@ SUMO_TAG_JOIN
Join operation.
@ SUMO_TAG_NODE
alternative definition for junction
@ SUMO_TAG_PARAM
parameter associated to a certain key
@ SUMO_TAG_DEL
delete certain element (note: DELETE is a macro)
TrafficLightLayout
FringeType
classifying boundary nodes
SumoXMLNodeType
Numbers representing special SUMO-XML-attribute values for representing node- (junction-) types used ...
RightOfWay
algorithms for computing right of way
@ SUMO_ATTR_NODES
a list of node ids, used for controlling joining
@ SUMO_ATTR_VALUE
@ SUMO_ATTR_RADIUS
The turning radius at an intersection in m.
@ SUMO_ATTR_Y
@ SUMO_ATTR_Z
@ SUMO_ATTR_X
@ SUMO_ATTR_TLLAYOUT
node: the layout of the traffic light program
@ SUMO_ATTR_FRINGE
Fringe type of node.
@ SUMO_ATTR_SHAPE
edge: the shape in xml-definition
@ SUMO_ATTR_TLTYPE
node: the type of traffic light
@ SUMO_ATTR_NAME
@ SUMO_ATTR_TLID
link,node: the traffic light id responsible for this link
@ SUMO_ATTR_TYPE
@ SUMO_ATTR_ID
@ SUMO_ATTR_RIGHT_OF_WAY
How to compute right of way.
@ SUMO_ATTR_CONTROLLED_INNER
@ SUMO_ATTR_KEY
@ SUMO_ATTR_KEEP_CLEAR
Whether vehicles must keep the junction clear.
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:46
const std::string & getFileName() const
returns the current file name
static methods for processing the coordinates conversion for the current net
static void setLoadedPlain(const std::string &nodFile, const GeoConvHelper &loaded)
registers the coordinate transformation as having been loaded from the given file
Storage for edges, including some functionality operating on multiple edges.
Definition NBEdgeCont.h:59
void removeRoundabout(const NBNode *node)
remove roundabout that contains the given node
A loaded (complete) traffic light logic.
static bool transformCoordinates(PositionVector &from, bool includeInBoundary=true, GeoConvHelper *from_srs=nullptr)
static bool transformCoordinate(Position &from, bool includeInBoundary=true, GeoConvHelper *from_srs=nullptr)
transforms loaded coordinates handles projections, offsets (using GeoConvHelper) and import of height...
Container for nodes during the netbuilding process.
Definition NBNodeCont.h:57
void markAsNotTLS(const NBNode *node)
mark a node as explicitly not controlled by a TLS
Definition NBNodeCont.h:368
std::string createClusterId(const NodeSet &cluster, const std::string &prefix="cluster_")
generate id from cluster node ids
Definition NBNodeCont.h:136
void addJoinExclusion(const std::vector< std::string > &ids)
bool insert(const std::string &id, const Position &position, NBDistrict *district=0)
Inserts a node into the map.
NBNode * retrieve(const std::string &id) const
Returns the node with the given name.
bool extract(NBNode *node, bool remember=false)
Removes the given node but does not delete it.
void addCluster2Join(const std::set< std::string > &cluster, NBNode *node)
add ids of nodes which shall be joined into a single node
Represents a single node (junction) during network building.
Definition NBNode.h:66
RightOfWay getRightOfWay() const
Returns hint on how to compute right of way.
Definition NBNode.h:300
const std::set< NBTrafficLightDefinition * > & getControllingTLS() const
Returns the traffic lights that were assigned to this node (The set of tls that control this node)
Definition NBNode.h:336
void reinit(const Position &position, SumoXMLNodeType type, bool updateEdgeGeometries=false)
Resets initial values.
Definition NBNode.cpp:338
FringeType getFringeType() const
Returns fringe type.
Definition NBNode.h:305
SumoXMLNodeType getType() const
Returns the type of this node.
Definition NBNode.h:285
bool isTrafficLight() const
Definition NBNode.h:822
void setRightOfWay(RightOfWay rightOfWay)
set method for computing right-of-way
Definition NBNode.h:569
void setCustomShape(const PositionVector &shape)
set the junction shape
Definition NBNode.cpp:2622
void setKeepClear(bool keepClear)
set the keepClear flag
Definition NBNode.h:564
void removeTrafficLights(bool setAsPriority=false)
Removes all references to traffic lights that control this tls.
Definition NBNode.cpp:413
void setRadius(double radius)
set the turning radius
Definition NBNode.h:559
void setName(const std::string &name)
set intersection name
Definition NBNode.h:579
const Position & getPosition() const
Definition NBNode.h:260
void setFringeType(FringeType fringeType)
set method for computing right-of-way
Definition NBNode.h:574
bool isTLControlled() const
Returns whether this node is controlled by any tls.
Definition NBNode.h:331
A traffic light logics which must be computed (only nodes/edges are given)
Definition NBOwnTLDef.h:44
void setLayout(TrafficLightLayout layout)
sets the layout for the generated signal plan
Definition NBOwnTLDef.h:143
The base class for traffic light logic definitions.
TrafficLightType getType() const
get the algorithm type (static etc..)
virtual void addNode(NBNode *node)
Adds a node to the traffic light logic.
virtual void setType(TrafficLightType type)
set the algorithm type (static etc..)
A container for traffic light definitions and built programs.
const std::map< std::string, NBTrafficLightDefinition * > & getPrograms(const std::string &id) const
Returns all programs for the given tl-id.
bool removeFully(const std::string id)
Removes a logic definition (and all programs) from the dictionary.
bool insert(NBTrafficLightDefinition *logic, bool forceInsert=false)
Adds a logic definition to the dictionary.
static GeoConvHelper * loadLocation(const SUMOSAXAttributes &attrs, bool setLoaded=true)
Parses network location description and registers it with GeoConveHelper::setLoaded.
~NIXMLNodesHandler()
Destructor.
std::string myID
The id of the currently parsed node.
void addJoinCluster(const SUMOSAXAttributes &attrs)
GeoConvHelper * myLocation
The coordinate transformation which was used compute the node coordinates.
Position myPosition
The position of the currently parsed node.
NBNodeCont & myNodeCont
The node container to add built nodes to.
void deleteNode(const SUMOSAXAttributes &attrs)
NBTrafficLightLogicCont & myTLLogicCont
The traffic lights container to add built tls to.
static NBNode * processNodeType(const SUMOSAXAttributes &attrs, NBNode *node, const std::string &nodeID, const Position &position, bool updateEdgeGeometries, NBNodeCont &nc, NBEdgeCont &ec, NBTrafficLightLogicCont &tlc, GeoConvHelper *from_srs=nullptr)
parses node attributes (not related to positioning)
static void processTrafficLightDefinitions(const SUMOSAXAttributes &attrs, NBNode *currentNode, NBTrafficLightLogicCont &tlc)
Builds the defined traffic light or adds a node to it.
NBEdgeCont & myEdgeCont
The node container to add built nodes to.
Parameterised * myLastParameterised
last item the could receive parameters
void myEndElement(int element)
Called when a closing tag occurs.
void addNode(const SUMOSAXAttributes &attrs)
void myStartElement(int element, const SUMOSAXAttributes &attrs)
Called on the opening of a tag;.
NIXMLNodesHandler(NBNodeCont &nc, NBEdgeCont &ec, NBTrafficLightLogicCont &tlc, OptionsCont &options)
Constructor.
void addJoinExclusion(const SUMOSAXAttributes &attrs)
const std::string & getID() const
Returns the id.
Definition Named.h:74
A storage for options typed value containers)
Definition OptionsCont.h:89
std::string getString(const std::string &name) const
Returns the string-value of the named option (only for Option_String)
static OptionsCont & getOptions()
Retrieves the options.
virtual void setParameter(const std::string &key, const std::string &value)
Sets a parameter.
A point in 2D or 3D with translation and scaling methods.
Definition Position.h:37
void setx(double x)
set position x
Definition Position.h:70
void set(double x, double y)
set positions x and y
Definition Position.h:85
static const Position INVALID
used to indicate that a position is valid
Definition Position.h:322
double x() const
Returns the x-position.
Definition Position.h:55
double y() const
Returns the y-position.
Definition Position.h:60
A list of positions.
void closePolygon()
ensures that the last position equals the first
Encapsulated SAX-Attributes.
virtual std::string getString(int id, bool *isPresent=nullptr) const =0
Returns the string-value of the named (by its enum-value) attribute.
T getOpt(int attr, const char *objectid, bool &ok, T defaultValue=T(), bool report=true) const
Tries to read given attribute assuming it is an int.
T get(int attr, const char *objectid, bool &ok, bool report=true) const
Tries to read given attribute assuming it is an int.
virtual bool hasAttribute(int id) const =0
Returns the information whether the named (by its enum-value) attribute is within the current list.
SAX-handler base for SUMO-files.
static StringBijection< SumoXMLNodeType > NodeTypes
node types
static StringBijection< TrafficLightType > TrafficLightTypes
traffic light types
static StringBijection< TrafficLightLayout > TrafficLightLayouts
traffic light layouts
T get(const std::string &str) const
std::set< std::string > getSet()
return set of strings
std::vector< std::string > getVector()
return vector of strings