Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
SUMORouteHandler.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-2026 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// Parser for routes during their loading
22/****************************************************************************/
23#include <config.h>
24
30#include <utils/xml/XMLSubSys.h>
31
32#include "SUMORouteHandler.h"
33
34
35// ===========================================================================
36// method definitions
37// ===========================================================================
38
39SUMORouteHandler::SUMORouteHandler(const std::string& file, const std::string& expectedRoot, const bool hardFail) :
40 SUMOSAXHandler(file, expectedRoot),
41 myHardFail(hardFail),
42 myVehicleParameter(nullptr),
43 myLastDepart(-1),
44 myActiveRouteColor(nullptr),
45 myCurrentCosts(0.),
46 myCurrentVType(nullptr),
47 myCurrentVTypeProbability(-1),
48 myBeginDefault(OptionsCont::getOptions().exists("begin") ? string2time(OptionsCont::getOptions().getString("begin")) : 0),
49 myEndDefault(OptionsCont::getOptions().exists("end") ? string2time(OptionsCont::getOptions().getString("end")) : -1),
50 myFirstDepart(-1),
51 myInsertStopEdgesAt(-1),
52 myAllowInternalRoutes(false) {
53}
54
55
60
61
62bool
66 WRITE_WARNINGF(TL("Route file should be sorted by departure time, ignoring '%'!"), myVehicleParameter->id);
67 return false;
68 }
69 }
70 return true;
71}
72
73
74void
76 // register only non public transport to parse all public transport lines in advance
79 if (myFirstDepart == -1) {
81 }
82 }
83 // else: we don't know when this vehicle will depart. keep the previous known depart time
84}
85
86
87void
89 myElementStack.push_back(element);
90 switch (element) {
92 case SUMO_TAG_PERSON:
94 // if myVehicleParameter is nullptr this will do nothing
95 delete myVehicleParameter;
96 // we set to nullptr to have a consistent state if the parsing fails
97 myVehicleParameter = nullptr;
100 if (element != SUMO_TAG_VEHICLE) {
101 addTransportable(attrs, element == SUMO_TAG_PERSON);
102 }
103 break;
104 case SUMO_TAG_FLOW:
105 // delete if myVehicleParameter isn't null
106 if (myVehicleParameter) {
107 delete myVehicleParameter;
108 myVehicleParameter = nullptr;
109 }
110 // parse vehicle parameters
111 // might be called to parse vehicles from additional file in the
112 // context of quickReload. In this case, rerouter flows must be ignored
113 if (myElementStack.size() == 1 || myElementStack[myElementStack.size() - 2] != SUMO_TAG_CALIBRATOR) {
115 }
116 // check if myVehicleParameter was successfully created
117 if (myVehicleParameter) {
118 // check tag
119 if (myVehicleParameter->routeid.empty()) {
120 // open a route flow (It could be a flow with embedded route)
121 openFlow(attrs);
122 } else {
123 // open a route flow
124 openRouteFlow(attrs);
125 }
127 }
128 break;
131 // delete if myVehicleParameter isn't null
132 if (myVehicleParameter) {
133 delete myVehicleParameter;
134 myVehicleParameter = nullptr;
135 }
136 // create a new flow
139 break;
140 case SUMO_TAG_VTYPE:
141 // delete if myCurrentVType isn't null
142 if (myCurrentVType != nullptr) {
143 delete myCurrentVType;
144 myCurrentVType = nullptr;
145 }
146 // create a new vType
148 bool ok = true;
149 myCurrentVTypeRef = attrs.get<std::string>(SUMO_ATTR_REFID, nullptr, ok);
150 myCurrentVTypeProbability = attrs.getOpt<double>(SUMO_ATTR_PROB, myCurrentVTypeRef.c_str(), ok, -1);
151 } else {
153 }
154 myParamStack.push_back(myCurrentVType);
155 break;
158 break;
159 case SUMO_TAG_ROUTE:
160 openRoute(attrs);
161 break;
164 break;
165 case SUMO_TAG_STOP:
166 myParamStack.push_back(addStop(attrs));
167 break;
168 case SUMO_TAG_TRIP: {
169 // delete if myVehicleParameter isn't null
170 if (myVehicleParameter) {
171 delete myVehicleParameter;
172 myVehicleParameter = nullptr;
173 }
174 // parse vehicle parameters
176 // check if myVehicleParameter was successfully created
177 if (myVehicleParameter) {
180 // open trip
181 openTrip(attrs);
183 }
184 break;
185 }
187 addPersonTrip(attrs);
188 break;
189 case SUMO_TAG_WALK:
190 addWalk(attrs);
191 break;
192 case SUMO_TAG_INTERVAL: {
193 bool ok;
195 myEndDefault = attrs.getSUMOTimeReporting(SUMO_ATTR_END, nullptr, ok);
196 break;
197 }
198 case SUMO_TAG_RIDE:
199 addRide(attrs);
200 break;
202 addTransport(attrs);
203 break;
205 addTranship(attrs);
206 break;
207 case SUMO_TAG_PARAM:
208 addParam(attrs);
209 break;
210 default:
211 // parse embedded car following model information
212 if (myCurrentVType != nullptr) {
213 WRITE_WARNINGF(TL("Defining car-following parameters in a nested element is deprecated in vType '%', use attributes instead!"), myCurrentVType->id);
215 if (myHardFail) {
216 throw ProcessError(TL("Invalid parsing embedded VType"));
217 } else {
218 WRITE_ERROR(TL("Invalid parsing embedded VType"));
219 }
220 }
221 }
222 break;
223 }
224}
225
226
227void
229 switch (element) {
230 case SUMO_TAG_STOP:
231 myParamStack.pop_back();
232 break;
233 case SUMO_TAG_ROUTE:
234 closeRoute();
235 break;
236 case SUMO_TAG_VTYPE:
237 closeVType();
238 if (myCurrentVTypeRef.empty()) {
239 delete myCurrentVType;
240 }
241 myCurrentVType = nullptr;
244 myParamStack.pop_back();
245 break;
246 case SUMO_TAG_PERSON:
247 closePerson();
248 delete myVehicleParameter;
249 myVehicleParameter = nullptr;
250 myParamStack.pop_back();
251 break;
254 delete myVehicleParameter;
255 myVehicleParameter = nullptr;
256 myParamStack.pop_back();
257 break;
260 delete myVehicleParameter;
261 myVehicleParameter = nullptr;
262 myParamStack.pop_back();
263 break;
266 delete myVehicleParameter;
267 myVehicleParameter = nullptr;
268 myParamStack.pop_back();
269 break;
270 case SUMO_TAG_VEHICLE:
271 if (myVehicleParameter == nullptr) {
272 break;
273 }
275 closeVehicle();
276 delete myVehicleParameter;
277 myVehicleParameter = nullptr;
278 myParamStack.pop_back();
279 break;
280 }
281 myVehicleParameter->repetitionNumber++; // for backwards compatibility
282 // it is a flow, thus no break here
284 case SUMO_TAG_FLOW:
285 if (myVehicleParameter) {
286 closeFlow();
287 delete myVehicleParameter;
288 myParamStack.pop_back();
289 }
290 myVehicleParameter = nullptr;
292 break;
293 case SUMO_TAG_TRIP:
294 closeTrip();
295 delete myVehicleParameter;
296 myVehicleParameter = nullptr;
297 myParamStack.pop_back();
299 break;
302 break;
305 break;
307 case SUMO_TAG_RIDE:
310 case SUMO_TAG_WALK:
311 if (myParamStack.size() == 2) {
312 myParamStack.pop_back();
313 }
314 break;
316 myBeginDefault = string2time(OptionsCont::getOptions().getString("begin"));
318 break;
319 default:
320 break;
321 }
322 myElementStack.pop_back();
323}
324
325
327SUMORouteHandler::checkStopPos(double& startPos, double& endPos, const double laneLength, const double minLength, const bool friendlyPos) {
328 if (minLength > laneLength) {
330 }
331 if (startPos < 0) {
332 startPos += laneLength;
333 }
334 if (endPos < 0) {
335 endPos += laneLength;
336 }
337 if ((endPos < minLength) || (endPos > laneLength)) {
338 if (!friendlyPos) {
340 }
341 if (endPos < minLength) {
342 endPos = minLength;
343 }
344 if (endPos > laneLength) {
345 endPos = laneLength;
346 }
347 }
348 if ((startPos < 0) || (startPos > (endPos - minLength))) {
349 if (!friendlyPos) {
351 }
352 if (startPos < 0) {
353 startPos = 0;
354 }
355 if (startPos > (endPos - minLength)) {
356 startPos = endPos - minLength;
357 }
358 }
359 return STOPPOS_VALID;
360}
361
362
367
368
373
374
375void
377 bool ok = true;
378 const std::string key = attrs.get<std::string>(SUMO_ATTR_KEY, nullptr, ok);
379 // only continue if key isn't empty
380 if (ok && (key.size() > 0)) {
381 // circumventing empty string test
382 std::string val = attrs.hasAttribute(SUMO_ATTR_VALUE) ? attrs.getString(SUMO_ATTR_VALUE) : "";
383 // check special params that must be interpreted as relative paths
384 if ((myVehicleParameter != nullptr || myCurrentVType != nullptr)
385 && (key == "device.toc.file" || key == "device.ssm.file")) {
387 }
388 // add parameter in current created element
389 if (!myParamStack.empty()) {
390 if (!myCurrentVTypeRef.empty() && myParamStack.back() == myCurrentVType) {
391 WRITE_WARNINGF(TL("Ignoring param for referenced vType %"), myCurrentVType->id);
392 } else {
393 myParamStack.back()->setParameter(key, val);
394 }
395 }
396 }
397}
398
399
400bool
401SUMORouteHandler::parseStop(SUMOVehicleParameter::Stop& stop, const SUMOSAXAttributes& attrs, std::string errorSuffix, MsgHandler* const errorOutput) {
402 stop.parametersSet = 0;
403 if (attrs.hasAttribute(SUMO_ATTR_ARRIVAL)) {
405 }
406 if (attrs.hasAttribute(SUMO_ATTR_DURATION)) {
408 }
409 if (attrs.hasAttribute(SUMO_ATTR_UNTIL)) {
411 }
412 if (attrs.hasAttribute(SUMO_ATTR_STARTED)) {
414 }
415 if (attrs.hasAttribute(SUMO_ATTR_ENDED)) {
417 }
420 }
421 if (attrs.hasAttribute(SUMO_ATTR_ENDPOS)) {
423 }
424 if (attrs.hasAttribute(SUMO_ATTR_STARTPOS)) {
426 }
429 }
432 }
433 // legacy attribute
436 }
437 if (attrs.hasAttribute(SUMO_ATTR_PARKING)) {
439 }
440 if (attrs.hasAttribute(SUMO_ATTR_EXPECTED)) {
442 }
445 }
448 }
449 if (attrs.hasAttribute(SUMO_ATTR_TRIP_ID)) {
451 }
452 if (attrs.hasAttribute(SUMO_ATTR_SPLIT)) {
454 }
455 if (attrs.hasAttribute(SUMO_ATTR_JOIN)) {
457 }
458 if (attrs.hasAttribute(SUMO_ATTR_LINE)) {
460 }
461 if (attrs.hasAttribute(SUMO_ATTR_SPEED)) {
463 }
464 if (attrs.hasAttribute(SUMO_ATTR_ONDEMAND)) {
466 }
467 if (attrs.hasAttribute(SUMO_ATTR_PRIORITY)) {
469 }
470 if (attrs.hasAttribute(SUMO_ATTR_JUMP)) {
472 }
475 }
476 bool ok = true;
477 stop.busstop = attrs.getOpt<std::string>(SUMO_ATTR_BUS_STOP, nullptr, ok, "");
478 stop.busstop = attrs.getOpt<std::string>(SUMO_ATTR_TRAIN_STOP, nullptr, ok, stop.busstop);
479 stop.chargingStation = attrs.getOpt<std::string>(SUMO_ATTR_CHARGING_STATION, nullptr, ok, "");
480 stop.overheadWireSegment = attrs.getOpt<std::string>(SUMO_ATTR_OVERHEAD_WIRE_SEGMENT, nullptr, ok, "");
481 stop.containerstop = attrs.getOpt<std::string>(SUMO_ATTR_CONTAINER_STOP, nullptr, ok, "");
482 stop.parkingarea = attrs.getOpt<std::string>(SUMO_ATTR_PARKING_AREA, nullptr, ok, "");
483 if (stop.busstop != "") {
484 errorSuffix = " at '" + stop.busstop + "'" + errorSuffix;
485 } else if (stop.chargingStation != "") {
486 errorSuffix = " at '" + stop.chargingStation + "'" + errorSuffix;
487 } else if (stop.overheadWireSegment != "") {
488 errorSuffix = " at '" + stop.overheadWireSegment + "'" + errorSuffix;
489 } else if (stop.containerstop != "") {
490 errorSuffix = " at '" + stop.containerstop + "'" + errorSuffix;
491 } else if (stop.parkingarea != "") {
492 errorSuffix = " at '" + stop.parkingarea + "'" + errorSuffix;
493 } else if (attrs.hasAttribute(SUMO_ATTR_LANE)) {
494 errorSuffix = " on lane '" + attrs.get<std::string>(SUMO_ATTR_LANE, nullptr, ok) + "'" + errorSuffix;
495 } else if (attrs.hasAttribute(SUMO_ATTR_EDGE)) {
496 errorSuffix = " on edge '" + attrs.get<std::string>(SUMO_ATTR_EDGE, nullptr, ok) + "'" + errorSuffix;
497 } else {
498 errorSuffix = " at undefined location" + errorSuffix;
499 }
500 // speed for counting as stopped
501 stop.speed = attrs.getOpt<double>(SUMO_ATTR_SPEED, nullptr, ok, 0);
502 if (stop.speed < 0) {
503 errorOutput->inform(TLF("Speed cannot be negative for stop%.", errorSuffix));
504 return false;
505 }
506
507 // get the standing duration
508 bool expectTrigger = !attrs.hasAttribute(SUMO_ATTR_DURATION) && !attrs.hasAttribute(SUMO_ATTR_UNTIL) && !attrs.hasAttribute(SUMO_ATTR_SPEED);
509 std::vector<std::string> triggers = attrs.getOpt<std::vector<std::string> >(SUMO_ATTR_TRIGGERED, nullptr, ok);
510 // legacy
511 if (attrs.getOpt<bool>(SUMO_ATTR_CONTAINER_TRIGGERED, nullptr, ok, false)) {
512 triggers.push_back(toString(SUMO_TAG_CONTAINER));
513 }
514 SUMOVehicleParameter::parseStopTriggers(triggers, expectTrigger, stop);
515 stop.arrival = attrs.getOptSUMOTimeReporting(SUMO_ATTR_ARRIVAL, nullptr, ok, -1);
516 stop.duration = attrs.getOptSUMOTimeReporting(SUMO_ATTR_DURATION, nullptr, ok, -1);
517 stop.until = attrs.getOptSUMOTimeReporting(SUMO_ATTR_UNTIL, nullptr, ok, -1);
518 if (!expectTrigger && (!ok || (stop.duration < 0 && stop.until < 0 && stop.speed == 0))) {
519 errorOutput->inform(TLF("Invalid duration or end time is given for a stop%.", errorSuffix));
520 return false;
521 }
522 if (triggers.size() > 0 && stop.speed > 0) {
523 errorOutput->inform(TLF("Triggers and waypoints cannot be combined%.", errorSuffix));
524 return false;
525 }
526 stop.extension = attrs.getOptSUMOTimeReporting(SUMO_ATTR_EXTENSION, nullptr, ok, -1);
527 const bool defaultParking = (stop.triggered || stop.containerTriggered || stop.parkingarea != "");
528 stop.parking = attrs.getOpt<ParkingType>(SUMO_ATTR_PARKING, nullptr, ok, defaultParking ? ParkingType::OFFROAD : ParkingType::ONROAD);
529 if ((stop.parkingarea != "") && (stop.parking == ParkingType::ONROAD)) {
530 WRITE_WARNINGF(TL("Stop at parkingArea overrides attribute 'parking' for stop%."), errorSuffix);
532 }
533
534 // expected persons
535 const std::vector<std::string>& expected = attrs.getOpt<std::vector<std::string> >(SUMO_ATTR_EXPECTED, nullptr, ok);
536 stop.awaitedPersons.insert(expected.begin(), expected.end());
537 if (stop.awaitedPersons.size() > 0) {
538 stop.triggered = true;
539 if ((stop.parametersSet & STOP_PARKING_SET) == 0) {
541 }
542 }
543
544 // permitted transportables
545 const std::vector<std::string>& permitted = attrs.getOpt<std::vector<std::string> >(SUMO_ATTR_PERMITTED, nullptr, ok);
546 stop.permitted.insert(permitted.begin(), permitted.end());
547
548 // expected containers
549 const std::vector<std::string>& expectedContainers = attrs.getOpt<std::vector<std::string> >(SUMO_ATTR_EXPECTED_CONTAINERS, nullptr, ok);
550 stop.awaitedContainers.insert(expectedContainers.begin(), expectedContainers.end());
551 if (stop.awaitedContainers.size() > 0) {
552 stop.containerTriggered = true;
553 if ((stop.parametersSet & STOP_PARKING_SET) == 0) {
555 }
556 }
557 // public transport trip id
558 stop.tripId = attrs.getOpt<std::string>(SUMO_ATTR_TRIP_ID, nullptr, ok, "");
559 stop.split = attrs.getOpt<std::string>(SUMO_ATTR_SPLIT, nullptr, ok, "");
560 stop.join = attrs.getOpt<std::string>(SUMO_ATTR_JOIN, nullptr, ok, "");
561 stop.line = attrs.getOpt<std::string>(SUMO_ATTR_LINE, nullptr, ok, "");
562
563 const std::string idx = attrs.getOpt<std::string>(SUMO_ATTR_INDEX, nullptr, ok, "end");
564 if (idx == "end") {
565 stop.index = STOP_INDEX_END;
566 } else if (idx == "fit") {
567 stop.index = STOP_INDEX_FIT;
568 } else {
569 stop.index = attrs.get<int>(SUMO_ATTR_INDEX, nullptr, ok);
570 if (!ok || stop.index < 0) {
571 errorOutput->inform(TLF("Invalid 'index' for stop%.", errorSuffix));
572 return false;
573 }
574 }
575 stop.started = attrs.getOptSUMOTimeReporting(SUMO_ATTR_STARTED, nullptr, ok, -1);
576 stop.ended = attrs.getOptSUMOTimeReporting(SUMO_ATTR_ENDED, nullptr, ok, -1);
577 stop.posLat = attrs.getOpt<double>(SUMO_ATTR_POSITION_LAT, nullptr, ok, INVALID_DOUBLE);
578 stop.actType = attrs.getOpt<std::string>(SUMO_ATTR_ACTTYPE, nullptr, ok, "");
579 stop.onDemand = attrs.getOpt<bool>(SUMO_ATTR_ONDEMAND, nullptr, ok, false);
580 stop.priority = attrs.getOpt<double>(SUMO_ATTR_PRIORITY, nullptr, ok, -1);
581 stop.jump = attrs.getOptSUMOTimeReporting(SUMO_ATTR_JUMP, nullptr, ok, -1);
582 stop.jumpUntil = attrs.getOptSUMOTimeReporting(SUMO_ATTR_JUMP_UNTIL, nullptr, ok, -1);
583 stop.collision = attrs.getOpt<bool>(SUMO_ATTR_COLLISION, nullptr, ok, false);
584 return true;
585}
586
587
588/****************************************************************************/
long long int SUMOTime
Definition GUI.h:36
#define WRITE_WARNINGF(...)
Definition MsgHandler.h:287
#define WRITE_ERROR(msg)
Definition MsgHandler.h:295
#define TL(string)
Definition MsgHandler.h:304
#define TLF(string,...)
Definition MsgHandler.h:306
SUMOTime string2time(const std::string &r)
convert string to SUMOTime
Definition SUMOTime.cpp:46
const int STOP_ARRIVAL_SET
const int STOP_DURATION_SET
const int STOP_INDEX_END
const int STOP_POSLAT_SET
const int STOP_EXPECTED_SET
const long long int VEHPARS_FORCE_REROUTE
const int STOP_SPEED_SET
const int STOP_JUMP_UNTIL_SET
const int STOP_UNTIL_SET
const int STOP_LINE_SET
const int STOP_PARKING_SET
const int STOP_TRIP_ID_SET
const int STOP_PERMITTED_SET
const int STOP_SPLIT_SET
const int STOP_START_SET
const int STOP_JOIN_SET
const int STOP_EXTENSION_SET
const int STOP_INDEX_FIT
const int STOP_ENDED_SET
const int STOP_TRIGGER_SET
const int STOP_PRIORITY_SET
const int STOP_JUMP_SET
const int STOP_ONDEMAND_SET
const int STOP_END_SET
const int STOP_STARTED_SET
const int STOP_EXPECTED_CONTAINERS_SET
@ GIVEN
The time is given.
SumoXMLTag
Numbers representing SUMO-XML - element names.
@ SUMO_TAG_INTERVAL
an aggreagated-output interval
@ SUMO_TAG_VTYPE
description of a vehicle/person/container type
@ SUMO_TAG_WALK
@ SUMO_TAG_TRANSHIP
@ SUMO_TAG_CONTAINERFLOW
@ SUMO_TAG_STOP
stop for vehicles
@ SUMO_TAG_VEHICLE
description of a vehicle
@ SUMO_TAG_ROUTE_DISTRIBUTION
distribution of a route
@ SUMO_TAG_FLOW
a flow definition using from and to edges or a route
@ SUMO_TAG_TRANSPORT
@ SUMO_TAG_CONTAINER
@ SUMO_TAG_ROUTE
description of a route
@ SUMO_TAG_RIDE
@ SUMO_TAG_VTYPE_DISTRIBUTION
distribution of a vehicle type
@ SUMO_TAG_PARAM
parameter associated to a certain key
@ SUMO_TAG_PERSON
@ SUMO_TAG_PERSONTRIP
@ SUMO_TAG_CALIBRATOR
A calibrator placed over edge.
@ SUMO_TAG_PERSONFLOW
@ SUMO_TAG_TRIP
a single trip definition (used by router)
ParkingType
Numbers representing special SUMO-XML-attribute values Information on whether a car is parking on the...
@ SUMO_ATTR_CONTAINER_TRIGGERED
@ SUMO_ATTR_STARTPOS
@ SUMO_ATTR_PARKING
@ SUMO_ATTR_EXTENSION
@ SUMO_ATTR_LANE
@ SUMO_ATTR_COLLISION
@ SUMO_ATTR_REFID
@ SUMO_ATTR_SPEED
@ SUMO_ATTR_STARTED
@ SUMO_ATTR_VALUE
@ SUMO_ATTR_CONTAINER_STOP
@ SUMO_ATTR_PARKING_AREA
@ SUMO_ATTR_EDGE
@ SUMO_ATTR_BUS_STOP
@ SUMO_ATTR_TRAIN_STOP
@ SUMO_ATTR_ENDPOS
@ SUMO_ATTR_SPLIT
@ SUMO_ATTR_ACTTYPE
@ SUMO_ATTR_BEGIN
weights: time range begin
@ SUMO_ATTR_POSITION_LAT
@ SUMO_ATTR_EXPECTED
@ SUMO_ATTR_PRIORITY
@ SUMO_ATTR_LINE
@ SUMO_ATTR_CHARGING_STATION
@ SUMO_ATTR_OVERHEAD_WIRE_SEGMENT
@ SUMO_ATTR_ENDED
@ SUMO_ATTR_ONDEMAND
@ SUMO_ATTR_INDEX
@ SUMO_ATTR_ARRIVAL
@ SUMO_ATTR_TRIP_ID
@ SUMO_ATTR_END
weights: time range end
@ SUMO_ATTR_PERMITTED
@ SUMO_ATTR_JOIN
@ SUMO_ATTR_JUMP
@ SUMO_ATTR_PROB
@ SUMO_ATTR_EXPECTED_CONTAINERS
@ SUMO_ATTR_ID
@ SUMO_ATTR_UNTIL
@ SUMO_ATTR_JUMP_UNTIL
@ SUMO_ATTR_TRIGGERED
@ SUMO_ATTR_DURATION
@ SUMO_ATTR_KEY
#define FALLTHROUGH
Definition StdDefs.h:39
const double INVALID_DOUBLE
invalid double
Definition StdDefs.h:68
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:49
static std::string checkForRelativity(const std::string &filename, const std::string &basePath)
Returns the path from a configuration so that it is accessible from the current working directory.
const std::string & getFileName() const
returns the current file name
virtual void inform(std::string msg, bool addType=true)
adds a new error to the list
A storage for options typed value containers)
Definition OptionsCont.h:89
static OptionsCont & getOptions()
Retrieves the options.
bool parseStop(SUMOVehicleParameter::Stop &stop, const SUMOSAXAttributes &attrs, std::string errorSuffix, MsgHandler *const errorOutput)
parses attributes common to all stops
virtual void openTrip(const SUMOSAXAttributes &attrs)=0
opens a trip for reading
StopPos
enum for stops
void registerLastDepart()
save last depart (only to be used if vehicle is not discarded)
virtual void openFlow(const SUMOSAXAttributes &attrs)=0
opens a flow for reading
virtual void closeContainer()=0
Ends the processing of a container.
SUMOTime myFirstDepart
the first read departure time
virtual void addWalk(const SUMOSAXAttributes &attrs)=0
add a fully specified walk
SUMOTime myBeginDefault
The default value for flow begins.
SUMORouteHandler(const std::string &file, const std::string &expectedRoot, const bool hardFail)
standard constructor
virtual void openRouteDistribution(const SUMOSAXAttributes &attrs)=0
opens a route distribution for reading
bool myAllowInternalRoutes
whether references to internal routes are allowed in this context
std::string myActiveRouteID
The id of the current route.
virtual void openRoute(const SUMOSAXAttributes &attrs)=0
opens a route for reading
virtual void openVehicleTypeDistribution(const SUMOSAXAttributes &attrs)=0
opens a type distribution for reading
virtual ~SUMORouteHandler()
standard destructor
virtual void closeVehicle()=0
Ends the processing of a vehicle.
virtual void closeFlow()=0
Ends the processing of a flow.
virtual void closePersonFlow()=0
Ends the processing of a person flow.
std::vector< Parameterised * > myParamStack
The stack of currently parsed parameterised objects.
SUMOVehicleParameter * myVehicleParameter
Parameter of the current vehicle, trip, person, container or flow.
virtual void addRide(const SUMOSAXAttributes &attrs)=0
Processing of a ride.
virtual void addTranship(const SUMOSAXAttributes &attrs)=0
Processing of a tranship.
SUMOTime getLastDepart() const
Returns the last loaded depart time.
const bool myHardFail
flag to enable or disable hard fails
std::vector< int > myElementStack
hierarchy of elements being parsed
std::string myCurrentVTypeRef
if the currently parsed vType is only a reference to an existing type, store the refId
SUMOVTypeParameter * myCurrentVType
The currently parsed vehicle type.
virtual void addTransport(const SUMOSAXAttributes &attrs)=0
Processing of a transport.
virtual void closeRoute(const bool mayBeDisconnected=false)=0
virtual void closePerson()=0
Ends the processing of a person.
SUMOTime myLastDepart
The insertion time of the vehicle read last.
SUMOTime myEndDefault
The default value for flow ends.
virtual void closeVehicleTypeDistribution()=0
closes (ends) the building of a distribution
static StopPos checkStopPos(double &startPos, double &endPos, const double laneLength, const double minLength, const bool friendlyPos)
check start and end position of a stop
virtual void myStartElement(int element, const SUMOSAXAttributes &attrs)
Called on the opening of a tag;.
void addParam(const SUMOSAXAttributes &attrs)
assign arbitrary vehicle parameters
virtual void closeContainerFlow()=0
Ends the processing of a container flow.
virtual const SUMOVTypeParameter * getVTypeParameter(const std::string &refid)=0
virtual Parameterised * addStop(const SUMOSAXAttributes &attrs)=0
Processing of a stop.
virtual void closeTrip()=0
Ends the processing of a trip.
SUMOTime getFirstDepart() const
returns the first departure time that was ever read
virtual void openRouteFlow(const SUMOSAXAttributes &attrs)=0
opens a route flow for reading
double myCurrentVTypeProbability
if the currently parsed vType is only a reference, store the probability here
int myInsertStopEdgesAt
where stop edges can be inserted into the current route (-1 means no insertion)
virtual void addTransportable(const SUMOSAXAttributes &attrs, const bool isPerson)
Processing of a person or container.
virtual void addPersonTrip(const SUMOSAXAttributes &attrs)=0
add a routing request for a walking or intermodal person
virtual void myEndElement(int element)
Called when a closing tag occurs.
virtual void closeVType()=0
Ends the processing of a vehicle type.
virtual void closeRouteDistribution()=0
closes (ends) the building of a distribution
virtual bool checkLastDepart()
Checks whether the route file is sorted by departure time if needed.
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.
SUMOTime getOptSUMOTimeReporting(int attr, const char *objectid, bool &ok, SUMOTime defaultValue, bool report=true) const
Tries to read given attribute assuming it is a SUMOTime.
virtual std::string getStringSecure(int id, const std::string &def) const =0
Returns the string-value of the named (by its enum-value) attribute.
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.
SUMOTime getSUMOTimeReporting(int attr, const char *objectid, bool &ok, bool report=true) const
Tries to read given attribute assuming it is a SUMOTime.
SAX-handler base for SUMO-files.
std::string id
The vehicle type's id.
Definition of vehicle stop (position and duration)
SUMOTime started
the time at which this stop was reached
ParkingType parking
whether the vehicle is removed from the net while stopping
SUMOTime extension
The maximum time extension for boarding / loading.
double speed
the speed at which this stop counts as reached (waypoint mode)
std::string parkingarea
(Optional) parking area if one is assigned to the stop
std::string split
the id of the vehicle (train portion) that splits of upon reaching this stop
std::string line
the new line id of the trip within a cyclical public transport route
double posLat
the lateral offset when stopping
bool onDemand
whether the stop may be skipped
std::string chargingStation
(Optional) charging station if one is assigned to the stop
std::string overheadWireSegment
(Optional) overhead line segment if one is assigned to the stop
std::set< std::string > permitted
IDs of persons or containers that may board/load at this stop.
SUMOTime jumpUntil
earlierst jump end if there shall be a jump from this stop to the next route edge
int parametersSet
Information for the output which parameter were set.
double priority
priority for weighting/skipping stops
int index
at which position in the stops list
SUMOTime jump
transfer time if there shall be a jump from this stop to the next route edge
std::string join
the id of the vehicle (train portion) to which this vehicle shall be joined
SUMOTime until
The time at which the vehicle may continue its journey.
std::string actType
act Type (only used by Persons) (used by netedit)
bool triggered
whether an arriving person lets the vehicle continue
SUMOTime ended
the time at which this stop was ended
std::set< std::string > awaitedPersons
IDs of persons the vehicle has to wait for until departing.
std::set< std::string > awaitedContainers
IDs of containers the vehicle has to wait for until departing.
std::string busstop
(Optional) bus stop if one is assigned to the stop
std::string tripId
id of the trip within a cyclical public transport route
std::string containerstop
(Optional) container stop if one is assigned to the stop
bool containerTriggered
whether an arriving container lets the vehicle continue
bool collision
Whether this stop was triggered by a collision.
SUMOTime arrival
The (expected) time at which the vehicle reaches the stop.
SUMOTime duration
The stopping duration.
long long int parametersSet
Information for the router which parameter were set, TraCI may modify this (when changing color)
std::string routeid
The vehicle's route id.
std::string id
The vehicle's id.
DepartDefinition departProcedure
Information how the vehicle shall choose the depart time.
std::string line
The vehicle's line (mainly for public transport)
static void parseStopTriggers(const std::vector< std::string > &triggers, bool expectTrigger, Stop &stop)
parses stop trigger values
static SUMOVTypeParameter * beginVTypeParsing(const SUMOSAXAttributes &attrs, const bool hardFail, const std::string &file, const SUMOVTypeParameter *const base)
Starts to parse a vehicle type.
static bool parseCFMParams(SUMOVTypeParameter *into, const SumoXMLTag element, const SUMOSAXAttributes &attrs, const bool nestedCFM)
Parses Car Following Mode params.
static SUMOVehicleParameter * parseVehicleAttributes(int element, const SUMOSAXAttributes &attrs, const bool hardFail, const bool optionalID=false, const bool skipDepart=false, const bool allowInternalRoutes=false)
Parses a vehicle's attributes.
static SUMOVehicleParameter * parseFlowAttributes(SumoXMLTag tag, const SUMOSAXAttributes &attrs, const bool hardFail, const bool needID, const SUMOTime beginDefault, const SUMOTime endDefault, const bool allowInternalRoutes=false)
Parses a flow's attributes.