Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
MSStateHandler.cpp
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2012-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/****************************************************************************/
20// Parser and output filter for routes and vehicles state saving and loading
21/****************************************************************************/
22#include <config.h>
23
24#ifdef HAVE_VERSION_H
25#include <version.h>
26#endif
27
28#include <sstream>
34#include <utils/xml/XMLSubSys.h>
48#include <microsim/MSEdge.h>
49#include <microsim/MSLane.h>
50#include <microsim/MSLink.h>
51#include <microsim/MSGlobals.h>
52#include <microsim/MSNet.h>
56#include <microsim/MSRoute.h>
59#include <netload/NLHandler.h>
60#include "MSStateHandler.h"
61
62#include <mesosim/MESegment.h>
63#include <mesosim/MELoop.h>
64
65// ===========================================================================
66// MSStateTimeHandler method definitions
67// ===========================================================================
68
70MSStateHandler::MSStateTimeHandler::getTime(const std::string& fileName) {
71 // build handler and parser
72 MSStateTimeHandler handler;
73 handler.setFileName(fileName);
74 handler.myTime = -1;
75 SUMOSAXReader* parser = XMLSubSys::getSAXReader(handler);
76 try {
77 if (!parser->parseFirst(fileName)) {
78 delete parser;
79 throw ProcessError(TLF("Can not read XML-file '%'.", fileName));
80 }
81 } catch (ProcessError&) {
82 delete parser;
83 throw;
84 }
85 // parse
86 while (parser->parseNext() && handler.myTime != -1);
87 // clean up
88 if (handler.myTime == -1) {
89 delete parser;
90 throw ProcessError(TLF("Could not parse time from state file '%'", fileName));
91 }
92 delete parser;
93 return handler.myTime;
94}
95
96void
102
103// ===========================================================================
104// method definitions
105// ===========================================================================
106MSStateHandler::MSStateHandler(const std::string& file, const SUMOTime offset) :
107 MSRouteHandler(file, true),
108 myOffset(offset),
109 mySegment(nullptr),
110 myCurrentLane(nullptr),
111 myCurrentLink(nullptr),
112 myAttrs(nullptr),
113 myVCAttrs(nullptr),
114 myCFMAttrs(nullptr),
115 myLastParameterised(nullptr),
116 myRemoved(0),
117 myFlowIndex(-1),
118 myConstrainedSignal(nullptr) {
119 myAmLoadingState = true;
120 const std::vector<std::string> vehIDs = OptionsCont::getOptions().getStringVector("load-state.remove-vehicles");
121 myVehiclesToRemove.insert(vehIDs.begin(), vehIDs.end());
123}
124
125
129
130
131void
132MSStateHandler::saveState(const std::string& file, SUMOTime step, bool usePrefix) {
133 OutputDevice& out = OutputDevice::getDevice(file, usePrefix);
134 const int statePrecision = OptionsCont::getOptions().getInt("save-state.precision");
135 out.setPrecision(statePrecision);
136 const int defaultPrecision = gPrecision;
137 gPrecision = statePrecision;
138 std::map<SumoXMLAttr, std::string> attrs;
139 attrs[SUMO_ATTR_VERSION] = VERSION_STRING;
140 attrs[SUMO_ATTR_TIME] = time2string(step);
141 attrs[SUMO_ATTR_TYPE] = MSGlobals::gUseMesoSim ? "meso" : "micro";
142 if (OptionsCont::getOptions().getBool("save-state.constraints")) {
143 attrs[SUMO_ATTR_CONSTRAINTS] = "1";
144 }
146 attrs[SUMO_ATTR_RAIL] = "1";
147 }
148 out.writeXMLHeader("snapshot", "state_file.xsd", attrs);
149 if (OptionsCont::getOptions().getBool("save-state.rng")) {
150 saveRNGs(out);
153 }
154 }
156 if (dispatcher != nullptr) {
157 // save early to pre-empty initialization from loaded persons
159 }
163 if (OptionsCont::getOptions().getBool("save-state.transportables")) {
164 if (MSNet::getInstance()->hasPersons()) {
167 out.closeTag();
168 }
169 if (MSNet::getInstance()->hasContainers()) {
172 out.closeTag();
173 }
174 }
176 for (MSEdge* const edge : MSEdge::getAllEdges()) {
178 for (MESegment* s = MSGlobals::gMesoNet->getSegmentForEdge(*edge); s != nullptr; s = s->getNextSegment()) {
179 s->saveState(out);
180 }
181 } else {
182 for (MSLane* const lane : edge->getLanes()) {
183 lane->saveState(out);
184 }
185 }
186 }
189 out.close();
190 gPrecision = defaultPrecision;
191}
192
193
194void
196 MSRouteHandler::myStartElement(element, attrs);
198 switch (element) {
199 case SUMO_TAG_SNAPSHOT: {
201 const std::string& version = attrs.getString(SUMO_ATTR_VERSION);
202 if (version != VERSION_STRING) {
203 WRITE_WARNINGF(TL("State was written with sumo version % (present: %)!"), version, VERSION_STRING);
204 }
205 bool ok;
206 if (attrs.getOpt<bool>(SUMO_ATTR_CONSTRAINTS, nullptr, ok, false)) {
208 }
209 if (attrs.getOpt<bool>(SUMO_ATTR_RAIL, nullptr, ok, false)) {
210 // init before loading any vehicles to ensure that driveways are built early
212 }
213 break;
214 }
215 case SUMO_TAG_RNGSTATE: {
216 if (attrs.hasAttribute(SUMO_ATTR_DEFAULT)) {
218 }
221 }
224 }
227 }
230 }
233 }
236 }
237 break;
238 }
239 case SUMO_TAG_RNGLANE: {
240 const int index = attrs.getInt(SUMO_ATTR_INDEX);
241 const std::string state = attrs.getString(SUMO_ATTR_STATE);
242 MSLane::loadRNGState(index, state);
243 break;
244 }
246 bool ok;
247 std::list<MSLane*> activeLanes;
248 const std::vector<std::string>& laneIDs = attrs.get<std::vector<std::string> >(SUMO_ATTR_LANES, nullptr, ok, false);
249 for (const std::string& laneID : laneIDs) {
250 MSLane* lane = MSLane::dictionary(laneID);
251 if (lane == nullptr) {
252 throw ProcessError(TLF("Unknown lane '%' in loaded state.", laneID));
253 }
254 activeLanes.push_back(lane);
255 }
257 break;
258 }
260 bool ok = true;
261 const SUMOTime lastAdaptation = attrs.get<SUMOTime>(SUMO_ATTR_LAST, nullptr, ok);
262 const int index = attrs.get<int>(SUMO_ATTR_INDEX, nullptr, ok);
263 if (lastAdaptation >= 0) {
264 MSRoutingEngine::initWeightUpdate(lastAdaptation);
265 }
266 MSRoutingEngine::initEdgeWeights(SVC_PASSENGER, lastAdaptation, index);
267 if (OptionsCont::getOptions().getBool("device.rerouting.bike-speeds")) {
269 }
271 for (const MSEdge* e : MSEdge::getAllEdges()) {
272 for (MESegment* segment = MSGlobals::gMesoNet->getSegmentForEdge(*e); segment != nullptr; segment = segment->getNextSegment()) {
273 segment->resetCachedSpeeds();
274 }
275 }
276 }
277 break;
278 }
279 case SUMO_TAG_EDGE: {
280#ifdef HAVE_FOX
282#endif
283 break;
284 }
285 case SUMO_TAG_DELAY: {
286 if (myVCAttrs != nullptr) {
287 delete myVCAttrs;
288 }
289 bool ok;
291 myVCAttrs = attrs.clone();
292 break;
293 }
294 case SUMO_TAG_FLOWSTATE: {
295 bool ok;
297 pars->repetitionsDone = attrs.get<int>(SUMO_ATTR_DONE, pars->id.c_str(), ok);
298 pars->repetitionTotalOffset = attrs.getOptSUMOTimeReporting(SUMO_ATTR_NEXT, pars->id.c_str(), ok, 0);
300 myVehicleParameter = pars;
301 break;
302 }
303 case SUMO_TAG_VTYPE: {
305 break;
306 }
307 case SUMO_TAG_VEHICLE: {
309 myAttrs = attrs.clone();
310 break;
311 }
312 case SUMO_TAG_DEVICE: {
313 myDeviceAttrs.push_back(attrs.clone());
314 break;
315 }
317 myCFMAttrs = attrs.clone();
318 break;
319 }
320 case SUMO_TAG_REMINDER: {
321 myReminderAttrs.push_back(attrs.clone());
322 break;
323 }
326 break;
327 }
328 case SUMO_TAG_SEGMENT: {
329 const std::string& segmentID = attrs.getString(SUMO_ATTR_ID);
330 const MSEdge* const edge = MSEdge::dictionary(segmentID.substr(0, segmentID.rfind(":")));
331 int idx = StringUtils::toInt(segmentID.substr(segmentID.rfind(":") + 1));
333 while (idx-- > 0 && mySegment != nullptr) {
335 }
336 if (mySegment == nullptr) {
337 throw ProcessError(TLF("Unknown segment '%' in loaded state.", segmentID));
338 }
339 myQueIndex = 0;
340 break;
341 }
342 case SUMO_TAG_LANE: {
343 bool ok;
344 const std::string laneID = attrs.get<std::string>(SUMO_ATTR_ID, nullptr, ok);
346 if (myCurrentLane == nullptr) {
347 throw ProcessError(TLF("Unknown lane '%' in loaded state.", laneID));
348 }
349 break;
350 }
352 bool ok;
353 const std::vector<std::string>& vehIDs = attrs.get<std::vector<std::string> >(SUMO_ATTR_VALUE, nullptr, ok, false);
354 std::vector<SUMOVehicle*> vehs;
355 for (const std::string& id : vehIDs) {
356 SUMOVehicle* v = vc.getVehicle(id);
357 // vehicle could be removed due to options
358 if (v != nullptr) {
359 vehs.push_back(v);
360 myArrived.erase(v);
361 }
362 }
364 if (myQueIndex >= mySegment->numQueues()) {
365 throw ProcessError(TLF("Invalid queue index '%' on segment '%'. Check for consistency of lane numbers and queue options.", myQueIndex, mySegment->getID()));
366 }
367 const SUMOTime blockTime = StringUtils::toLong(attrs.getString(SUMO_ATTR_TIME));
368 const SUMOTime entryBlockTime = StringUtils::toLong(attrs.getString(SUMO_ATTR_BLOCKTIME));
369 mySegment->loadState(vehs, blockTime - myOffset, entryBlockTime - myOffset, myQueIndex);
370 myQueIndex++;
371 } else {
373 }
374 break;
375 }
376 case SUMO_TAG_LINK: {
377 bool ok;
378 myCurrentLink = nullptr;
379 const std::string toLaneID = attrs.get<std::string>(SUMO_ATTR_TO, nullptr, ok);
380 for (MSLink* link : myCurrentLane->getLinkCont()) {
381 if (link->getViaLaneOrLane()->getID() == toLaneID) {
382 myCurrentLink = link;
383 }
384 }
385 if (myCurrentLink == nullptr) {
386 throw ProcessError("Unknown link from lane '" + myCurrentLane->getID() + "' to lane '" + toLaneID + "' in loaded state");
387 }
388 break;
389 }
391 bool ok;
392 const std::string vehID = attrs.get<std::string>(SUMO_ATTR_ID, nullptr, ok);
393 const SUMOTime arrivalTime = attrs.get<SUMOTime>(SUMO_ATTR_ARRIVALTIME, nullptr, ok);
394 const double arrivalSpeed = attrs.get<double>(SUMO_ATTR_ARRIVALSPEED, nullptr, ok);
395 const double leaveSpeed = attrs.get<double>(SUMO_ATTR_DEPARTSPEED, nullptr, ok);
396 const bool setRequest = attrs.get<bool>(SUMO_ATTR_REQUEST, nullptr, ok);
397 const double arrivalSpeedBraking = attrs.get<double>(SUMO_ATTR_ARRIVALSPEEDBRAKING, nullptr, ok);
398 const SUMOTime waitingTime = attrs.get<SUMOTime>(SUMO_ATTR_WAITINGTIME, nullptr, ok);
399 const double dist = attrs.get<double>(SUMO_ATTR_DISTANCE, nullptr, ok);
400 const double latOffset = attrs.getOpt<double>(SUMO_ATTR_POSITION_LAT, nullptr, ok, 0);
401 SUMOVehicle* veh = vc.getVehicle(vehID);
402 myCurrentLink->setApproaching(veh, arrivalTime, arrivalSpeed, leaveSpeed, setRequest, arrivalSpeedBraking, waitingTime, dist, latOffset);
404 MSVehicle* microVeh = dynamic_cast<MSVehicle*>(veh);
405 microVeh->loadPreviousApproaching(myCurrentLink, setRequest, arrivalTime, arrivalSpeed, arrivalSpeedBraking, dist, leaveSpeed);
406 }
407 break;
408 }
411 break;
412 }
415 MSDriveWay::loadState(attrs, element);
416 break;
417 }
418 case SUMO_TAG_PARAM: {
419 bool ok;
420 const std::string key = attrs.get<std::string>(SUMO_ATTR_KEY, nullptr, ok);
421 // circumventing empty string test
422 const std::string val = attrs.hasAttribute(SUMO_ATTR_VALUE) ? attrs.getString(SUMO_ATTR_VALUE) : "";
423 assert(myLastParameterised != 0);
424 if (myLastParameterised != nullptr) {
426 }
427 break;
428 }
430 if (attrs.getString(SUMO_ATTR_TYPE) == "person") {
432 }
433 if (attrs.getString(SUMO_ATTR_TYPE) == "container") {
435 }
436 break;
437 case SUMO_TAG_PERSON:
439 myAttrs = attrs.clone();
440 break;
442 bool ok = true;
443 const std::string signalID = attrs.get<std::string>(SUMO_ATTR_ID, nullptr, ok);
444 if (!MSNet::getInstance()->getTLSControl().knows(signalID)) {
445 throw InvalidArgument("Rail signal '" + signalID + "' in railSignalConstraints loaded from state is not known");
446 }
448 if (myConstrainedSignal == nullptr) {
449 throw InvalidArgument("Traffic light '" + signalID + "' is not a rail signal");
450 }
451 break;
452 }
453 case SUMO_TAG_PREDECESSOR: // intended fall-through
454 case SUMO_TAG_INSERTION_PREDECESSOR: // intended fall-through
455 case SUMO_TAG_FOE_INSERTION: // intended fall-through
456 case SUMO_TAG_INSERTION_ORDER: // intended fall-through
459 break;
460 case SUMO_TAG_TLLOGIC: {
461 bool ok;
462 const std::string tlID = attrs.get<std::string>(SUMO_ATTR_ID, nullptr, ok);
463 const std::string programID = attrs.get<std::string>(SUMO_ATTR_PROGRAMID, tlID.c_str(), ok);
464 const int phase = attrs.get<int>(SUMO_ATTR_PHASE, tlID.c_str(), ok);
465 const SUMOTime spentDuration = attrs.get<SUMOTime>(SUMO_ATTR_DURATION, tlID.c_str(), ok);
466 const bool active = attrs.get<bool>(SUMO_ATTR_ACTIVE, tlID.c_str(), ok);
468 MSTrafficLightLogic* tl = tlc.get(tlID, programID);
469 if (tl == nullptr) {
470 if (programID == "online") {
471 WRITE_WARNINGF(TL("Ignoring program '%' for traffic light '%' in loaded state"), programID, tlID);
472 return;
473 } else {
474 throw ProcessError("Unknown program '" + programID + "' for traffic light '" + tlID + "'");
475 }
476 }
477 if (phase >= tl->getPhaseNumber()) {
478 throw ProcessError("Invalid phase '" + toString(phase) + "' for traffic light '" + tlID + "'");
479 }
480 // might not be set if the phase happens to match and there are multiple programs
481 tl->loadState(tlc, myTime, phase, spentDuration, active);
482 if (attrs.hasAttribute(SUMO_ATTR_STATE)) {
483 tl->loadExtraState(attrs.get<std::string>(SUMO_ATTR_STATE, tlID.c_str(), ok));
484 }
485 break;
486 }
487 case SUMO_TAG_DISPATCHER: {
488 bool ok = true;
489 SUMOTime next = attrs.get<SUMOTime>(SUMO_ATTR_NEXT, "dispatcher", ok);
492 break;
493 }
494 default:
495 break;
496 }
497}
498
499
500void
503 switch (element) {
504 case SUMO_TAG_PERSON:
505 case SUMO_TAG_CONTAINER: {
507 MSTransportable* transportable = tc.get(myAttrs->getString(SUMO_ATTR_ID));
508 transportable->loadState(myAttrs->getString(SUMO_ATTR_STATE));
509 tc.fixLoadCount(transportable);
510 delete myAttrs;
511 myAttrs = nullptr;
512 break;
513 }
514 case SUMO_TAG_FLOWSTATE: {
516 myVehicleParameter = nullptr;
517 break;
518 }
519 case SUMO_TAG_SNAPSHOT: {
520 if (myVCAttrs == nullptr) {
521 throw ProcessError(TL("Could not load vehicle control state"));
522 }
531 if (myRemoved > 0) {
532 WRITE_MESSAGEF(TL("Removed % vehicles while loading state."), toString(myRemoved));
534 }
535 for (SUMOVehicle* v : myArrived) {
536 // state was created with active option --keep-after-arrival
537 vc.deleteKeptVehicle(v);
538 }
540 for (MSVehicleControl::constVehIt i = vc.loadedVehBegin(); i != vc.loadedVehEnd(); ++i) {
541 MSVehicle* microVeh = dynamic_cast<MSVehicle*>((*i).second);
542 if (microVeh->hasDeparted() && microVeh->getLane() != nullptr) {
543 // occupancy update must happen after all lane states have been loaded
544 microVeh->updateBestLanes();
545 }
546 }
547 }
549 break;
550 }
551 default:
552 break;
553 }
554 if (element != SUMO_TAG_PARAM && myVehicleParameter == nullptr && myCurrentVType == nullptr) {
555 myLastParameterised = nullptr;
556 }
557}
558
559
560void
562 assert(myVehicleParameter != nullptr);
564 // the vehicle was already counted in MSVehicleControl::setState
566 // make a copy because myVehicleParameter is reset in closeVehicle()
567 const std::string vehID = myVehicleParameter->id;
568 if (myVehiclesToRemove.count(vehID) == 0) {
569
570 // devices that influence simulation behavior must replicate stochastic assignment
571 // also, setting the parameter avoids extra calls to MSDevice::myEquipmentRNG (which would pollute replication)
572 std::vector<std::string> deviceNames;
573 for (auto attrs : myDeviceAttrs) {
574 deviceNames.push_back(MSDevice::getDeviceName(attrs->getString(SUMO_ATTR_ID)));
575 }
578 SUMOVehicle* v = vc.getVehicle(vehID);
579 // special case: transportable devices are not assigned by options
580 if (std::find(deviceNames.begin(), deviceNames.end(), "person") != deviceNames.end()) {
581 dynamic_cast<MSBaseVehicle*>(v)->initTransportableDevice(true);
582 }
583 if (std::find(deviceNames.begin(), deviceNames.end(), "container") != deviceNames.end()) {
584 dynamic_cast<MSBaseVehicle*>(v)->initTransportableDevice(false);
585 }
586 // clean up added param after initializing devices in closeVehicle
588 if (v == nullptr) {
589 throw ProcessError(TLF("Could not load vehicle '%' from state", vehID));
590 }
593
594 if (v->hasDeparted()) {
595 // vehicle already departed: disable pre-insertion rerouting and enable regular routing behavior
596 MSDevice_Routing* routingDevice = static_cast<MSDevice_Routing*>(v->getDevice(typeid(MSDevice_Routing)));
597 if (routingDevice != nullptr) {
599 }
602 // register route for deadlock prevention (vehicleStateChanged would not be called otherwise)
604 }
605 vc.handleTriggeredDepart(v, false);
606 if (v->hasArrived()) {
607 myArrived.insert(v);
608 }
609 }
610 while (!myDeviceAttrs.empty()) {
611 const std::string attrID = myDeviceAttrs.back()->getString(SUMO_ATTR_ID);
612 for (MSVehicleDevice* const dev : v->getDevices()) {
613 if (dev->getID() == attrID) {
614 dev->loadState(*myDeviceAttrs.back());
615 }
616 }
617 delete myDeviceAttrs.back();
618 myDeviceAttrs.pop_back();
619 }
620 bool ok = true;
621 while (!myReminderAttrs.empty()) {
622 const std::string attrID = myReminderAttrs.back()->getString(SUMO_ATTR_ID);
623 const SUMOTime time = myReminderAttrs.back()->get<SUMOTime>(SUMO_ATTR_TIME, nullptr, ok, false);
624 const double pos = myReminderAttrs.back()->get<double>(SUMO_ATTR_POSITION, nullptr, ok, false);
625 const auto& remDict = MSNet::getInstance()->getDetectorControl().getAllReminders();
626 auto it = remDict.find(attrID);
627 if (it != remDict.end()) {
628 it->second->loadReminderState(v->getNumericalID(), time, pos);
629 }
630 delete myReminderAttrs.back();
631 myReminderAttrs.pop_back();
632 }
633 if (myCFMAttrs != nullptr) {
634 assert(!MSGlobals::gUseMesoSim);
635 MSVehicle* microVeh = dynamic_cast<MSVehicle*>(v);
636 const MSCFModel::VehicleVariables* vars = microVeh->getCarFollowVariables();
637 if (vars != nullptr) {
638 const_cast<MSCFModel::VehicleVariables*>(vars)->loadState(*myCFMAttrs);
639 }
640 delete myCFMAttrs;
641 myCFMAttrs = nullptr;
642 }
643 } else {
644 const std::string embeddedRouteID = "!" + myVehicleParameter->id;
645 if (MSRoute::hasRoute(embeddedRouteID)) {
646 ConstMSRoutePtr embedded = MSRoute::dictionary(embeddedRouteID);
647 embedded->checkRemoval();
648 }
649 delete myVehicleParameter;
650
651 myVehicleParameter = nullptr;
652 myRemoved++;
653 while (!myDeviceAttrs.empty()) {
654 delete myDeviceAttrs.back();
655 myDeviceAttrs.pop_back();
656 }
657 while (!myReminderAttrs.empty()) {
658 delete myReminderAttrs.back();
659 myReminderAttrs.pop_back();
660 }
661 }
662 delete myAttrs;
663}
664
665
666void
680
681
682/****************************************************************************/
long long int SUMOTime
Definition GUI.h:36
#define WRITE_WARNINGF(...)
Definition MsgHandler.h:287
#define WRITE_MESSAGEF(...)
Definition MsgHandler.h:289
#define TL(string)
Definition MsgHandler.h:304
#define TLF(string,...)
Definition MsgHandler.h:306
std::shared_ptr< const MSRoute > ConstMSRoutePtr
Definition Route.h:32
SUMOTime string2time(const std::string &r)
convert string to SUMOTime
Definition SUMOTime.cpp:46
std::string time2string(SUMOTime t, bool humanReadable)
convert SUMOTime to string (independently of global format setting)
Definition SUMOTime.cpp:91
@ SVC_PASSENGER
vehicle is a passenger car (a "normal" car)
@ SVC_BICYCLE
vehicle is a bicycle
@ SUMO_TAG_RAILSIGNAL_CONSTRAINTS
Constraints on switching a rail signal.
@ SUMO_TAG_BIDI_PREDECESSOR
Predecessor constraint for rail signal before bidirectional section.
@ SUMO_TAG_LINK
Link information for state-saving.
@ SUMO_TAG_TRANSPORTABLES
@ SUMO_TAG_APPROACHING
Link-approaching vehicle information for state-saving.
@ SUMO_TAG_INSERTION_PREDECESSOR
Predecessor constraint on insertion before rail signal.
@ SUMO_TAG_DEVICE
@ SUMO_TAG_VTYPE
description of a vehicle/person/container type
@ SUMO_TAG_SUBDRIVEWAY
@ SUMO_TAG_RNGLANE
@ SUMO_TAG_EDGECONTROL
the internal state for edge control
@ SUMO_TAG_FLOWSTATE
a flow state definition (used when saving and loading simulatino state)
@ SUMO_TAG_VEHICLE
description of a vehicle
@ SUMO_TAG_RAILSIGNAL_CONSTRAINT_TRACKER
Saved state for constraint tracker.
@ SUMO_TAG_RNGSTATE
@ SUMO_TAG_REMINDER
@ SUMO_TAG_DISPATCHER
Dispatcher state for saving.
@ SUMO_TAG_CFM_VARIABLES
@ SUMO_TAG_DELAY
@ SUMO_TAG_TLLOGIC
a traffic light logic
@ SUMO_TAG_FOE_INSERTION
Predecessor constraint on switching a rail signal.
@ SUMO_TAG_CONTAINER
@ SUMO_TAG_VIEWSETTINGS_VEHICLES
@ SUMO_TAG_ROUTINGENGINE
the internal state for MSRoutingEngine
@ SUMO_TAG_SNAPSHOT
@ SUMO_TAG_LANE
begin/end of the description of a single lane
@ SUMO_TAG_SEGMENT
segment of a lane
@ SUMO_TAG_PARAM
parameter associated to a certain key
@ SUMO_TAG_INSERTION_ORDER
Predecessor constraint on insertion before rail signal.
@ SUMO_TAG_PERSON
@ SUMO_TAG_VEHICLETRANSFER
@ SUMO_TAG_DRIVEWAY
Saved driveway information.
@ SUMO_TAG_PREDECESSOR
Predecessor constraint on switching a rail signal.
@ SUMO_TAG_EDGE
begin/end of the description of an edge
@ SUMO_ATTR_DONE
@ SUMO_ATTR_LAST
@ SUMO_ATTR_NUMBER
@ SUMO_ATTR_ARRIVALSPEED
@ SUMO_ATTR_CONSTRAINTS
@ SUMO_ATTR_DEPART
@ SUMO_ATTR_RNG_INSERTIONCONTROL
@ SUMO_ATTR_ARRIVALTIME
@ SUMO_ATTR_WAITINGTIME
@ SUMO_ATTR_VALUE
@ SUMO_ATTR_RNG_DRIVERSTATE
@ SUMO_ATTR_BEGIN
weights: time range begin
@ SUMO_ATTR_POSITION_LAT
@ SUMO_ATTR_PHASE
@ SUMO_ATTR_LANES
@ SUMO_ATTR_DEFAULT
@ SUMO_ATTR_ARRIVALSPEEDBRAKING
@ SUMO_ATTR_DECEL
@ SUMO_ATTR_NEXT
succesor phase index
@ SUMO_ATTR_RNG_DEVICE_TOC
@ SUMO_ATTR_INDEX
@ SUMO_ATTR_BLOCKTIME
@ SUMO_ATTR_DEPARTSPEED
@ SUMO_ATTR_TO
@ SUMO_ATTR_END
weights: time range end
@ SUMO_ATTR_RNG_DEVICE_BT
@ SUMO_ATTR_DISTANCE
@ SUMO_ATTR_SPEEDFACTOR
@ SUMO_ATTR_TYPE
@ SUMO_ATTR_VERSION
@ SUMO_ATTR_ID
@ SUMO_ATTR_RAIL
@ SUMO_ATTR_LOADERTIME
@ SUMO_ATTR_PROGRAMID
@ SUMO_ATTR_RNG_ROUTEHANDLER
@ SUMO_ATTR_DURATION
@ SUMO_ATTR_RNG_DEVICE
@ SUMO_ATTR_REQUEST
@ SUMO_ATTR_KEY
@ SUMO_ATTR_POSITION
@ SUMO_ATTR_STATE
The state of a link.
@ SUMO_ATTR_TIME
trigger: the time of the step
@ SUMO_ATTR_ACTIVE
int gPrecision
the precision for floating point outputs
Definition StdDefs.cpp:27
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:49
void setFileName(const std::string &name)
Sets the current file name.
MESegment * getSegmentForEdge(const MSEdge &e, double pos=0)
Get the segment for a given edge at a given position.
Definition MELoop.cpp:339
A single mesoscopic segment (cell)
Definition MESegment.h:50
int numQueues() const
return the number of queues
Definition MESegment.h:215
void loadState(const std::vector< SUMOVehicle * > &vehs, const SUMOTime blockTime, const SUMOTime entryBlockTime, const int queIdx)
Loads the state of this segment with the given parameters.
MESegment * getNextSegment() const
Returns the following segment on the same edge (0 if it is the last).
Definition MESegment.h:243
The base class for microscopic and mesoscopic vehicles.
bool hasDeparted() const
Returns whether this vehicle has already departed.
const std::map< std::string, MSMoveReminder * > & getAllReminders()
retrieve reminders of all detectors (for loading state)
static SumoRNG * getRNG()
A device that performs vehicle rerouting based on current edge speeds.
bool notifyEnter(SUMOTrafficObject &veh, MSMoveReminder::Notification reason, const MSLane *enteredLane=0)
Computes a new route on vehicle insertion.
static SUMOTime getNextDispatchTime()
static void finalizeLoadState()
call during state loading after all transportables are loaded
static void initDispatch(SUMOTime next=-1)
initialize the dispatch algorithm
static MSDispatch * getDispatchAlgorithm()
static SumoRNG * getResponseTimeRNG()
static const std::string LOADSTATE_DEVICENAMES
Definition MSDevice.h:102
static SumoRNG * getEquipmentRNG()
Definition MSDevice.h:92
static std::string getDeviceName(const std::string &id)
extracts the deviceName from the id (which includes holder id) and is subject to special cases
Definition MSDevice.cpp:173
An algorithm that performs distpach for a taxi fleet.
Definition MSDispatch.h:114
virtual void loadState(const SUMOSAXAttributes &attrs)
Loads the state of the device from the given description.
virtual void saveState(OutputDevice &out, SUMOTime nextDispatch) const
Saves the state of the device.
static bool haveDriveWays()
Definition MSDriveWay.h:72
static void loadState(const SUMOSAXAttributes &attrs, int tag)
void setActiveLanes(std::list< MSLane * > lanes)
Reconstruct the current state.
void saveState(OutputDevice &out)
Saves the current state into the given stream.
A road/street connecting two junctions.
Definition MSEdge.h:77
static const MSEdgeVector & getAllEdges()
Returns all edges with a numerical id.
Definition MSEdge.cpp:1120
static bool dictionary(const std::string &id, MSEdge *edge)
Inserts edge into the static dictionary Returns true if the key id isn't already in the dictionary....
Definition MSEdge.cpp:1081
static bool gUseMesoSim
Definition MSGlobals.h:106
static MELoop * gMesoNet
mesoscopic simulation infrastructure
Definition MSGlobals.h:115
bool addFlow(SUMOVehicleParameter *const pars, int index=-1)
Adds parameter for a vehicle flow for departure.
void alreadyDeparted(SUMOVehicle *veh)
stops trying to emit the given vehicle (because it already departed)
SumoRNG * getFlowRNG()
retrieve internal RNG
void saveState(OutputDevice &out)
Saves the current state into the given stream.
Representation of a lane in the micro simulation.
Definition MSLane.h:84
void loadState(const std::vector< SUMOVehicle * > &vehs)
Loads the state of this segment with the given parameters.
Definition MSLane.cpp:3801
static void saveRNGStates(OutputDevice &out)
save random number generator states to the given output device
Definition MSLane.cpp:4700
static void loadRNGState(int index, const std::string &state)
load random number generator state for the given rng index
Definition MSLane.cpp:4710
static bool dictionary(const std::string &id, MSLane *lane)
Static (sic!) container methods {.
Definition MSLane.cpp:2521
const std::vector< MSLink * > & getLinkCont() const
returns the container with all links !!!
Definition MSLane.h:735
@ NOTIFICATION_DEPARTED
The vehicle has departed (was inserted into the network)
@ NEWROUTE
The vehicle got a new route.
MSDetectorControl & getDetectorControl()
Returns the detector control.
Definition MSNet.h:465
static MSNet * getInstance()
Returns the pointer to the unique instance of MSNet (singleton).
Definition MSNet.cpp:199
MSTLLogicControl & getTLSControl()
Returns the tls logics control.
Definition MSNet.h:475
virtual MSTransportableControl & getContainerControl()
Returns the container control.
Definition MSNet.cpp:1295
void setLoaderTime(SUMOTime time)
Definition MSNet.cpp:1127
MSInsertionControl & getInsertionControl()
Returns the insertion control.
Definition MSNet.h:455
MSVehicleControl & getVehicleControl()
Returns the vehicle control.
Definition MSNet.h:402
virtual MSTransportableControl & getPersonControl()
Returns the person control.
Definition MSNet.cpp:1286
MSEdgeControl & getEdgeControl()
Returns the edge control.
Definition MSNet.h:445
static void loadState(const SUMOSAXAttributes &attrs)
loads the constraint state from the given attrs
static void clearAll()
Remove all constraints before quick-loading state.
void vehicleStateChanged(const SUMOVehicle *const vehicle, MSNet::VehicleState to, const std::string &info="")
Called if a vehicle changes its state.
static MSRailSignalControl & getInstance()
A signal for rails.
Parser and container for routes during their loading.
bool myAmLoadingState
whether a state file is being loaded
virtual void myStartElement(int element, const SUMOSAXAttributes &attrs) override
Called on the opening of a tag;.
static SumoRNG * getParsingRNG()
get parsing RNG
virtual void closeVehicle() override
Ends the processing of a vehicle (note: is virtual because is reimplemented in MSStateHandler)
static void dict_saveState(OutputDevice &out)
Saves all known routes into the given stream.
Definition MSRoute.cpp:268
static bool hasRoute(const std::string &id)
returns whether a route with the given id exists
Definition MSRoute.cpp:159
static bool dictionary(const std::string &id, ConstMSRoutePtr route)
Adds a route to the dictionary.
Definition MSRoute.cpp:116
static void saveState(OutputDevice &out)
Saves the state (i.e. recorded speeds)
static void initEdgeWeights(SUMOVehicleClass svc, SUMOTime lastAdaption=-1, int index=-1)
initialize the edge weights if not done before
static void initWeightUpdate(SUMOTime lastAdaption=- 1)
intialize period edge weight update
static void loadState(const SUMOSAXAttributes &attrs)
Loads the state.
handler to read only the simulation time from a state
static SUMOTime getTime(const std::string &fileName)
parse time from state file
void myStartElement(int element, const SUMOSAXAttributes &attrs)
Callback method for an opening tag to implement by derived classes.
MSRailSignal * myConstrainedSignal
rail signal for which constraints are being loaded
SUMOSAXAttributes * myAttrs
cached attrs (used when loading vehicles or transportables)
MSStateHandler(const std::string &file, const SUMOTime offset)
standard constructor
static void saveState(const std::string &file, SUMOTime step, bool usePrefix=true)
Saves the current state.
int myQueIndex
que index
SUMOTime myTime
time
std::set< std::string > myVehiclesToRemove
vehicles that shall be removed when loading state
int myRemoved
vehicles that were removed when loading state
MSLink * myCurrentLink
current link being loaded
MESegment * mySegment
segment
MSLane * myCurrentLane
current lane being loaded
static void saveRNGs(OutputDevice &out)
save the state of random number generators
const SUMOTime myOffset
offset
Parameterised * myLastParameterised
the last object that potentially carries parameters
void closeVehicle()
Ends the processing of a vehicle.
void myStartElement(int element, const SUMOSAXAttributes &attrs)
Called on the opening of a tag;.
SUMOSAXAttributes * myCFMAttrs
std::vector< SUMOSAXAttributes * > myDeviceAttrs
cached device and reminder attrs (used when loading vehicles)
std::vector< SUMOSAXAttributes * > myReminderAttrs
SUMOSAXAttributes * myVCAttrs
cached attrs for delayed loading of MSVehicleControl state
std::set< SUMOVehicle * > myArrived
vehicles that have arrived
void myEndElement(int element)
Called when a closing tag occurs.
int myFlowIndex
index of the currently parse flowState
virtual ~MSStateHandler()
standard destructor
MSTrafficLightLogic * getDefault() const
return the default program (that last used program except TRACI_PROGRAM)
A class that stores and controls tls and switching of their programs.
bool knows(const std::string &id) const
Returns the information whether the named tls is stored.
void saveState(OutputDevice &out)
Saves the current tls states into the given stream.
TLSLogicVariants & get(const std::string &id) const
Returns the variants of a named tls.
The parent class for traffic light logics.
virtual int getPhaseNumber() const =0
Returns the number of phases.
virtual void loadState(MSTLLogicControl &tlcontrol, SUMOTime t, int step, SUMOTime spentDuration, bool active)
restores the tls state
virtual void loadExtraState(const std::string &)
void loadState(const std::string &state)
Reconstruct the current state.
void fixLoadCount(const MSTransportable *transportable)
decrement counter to avoid double counting transportables loaded from state
void saveState(OutputDevice &out)
Saves the current state into the given stream.
MSTransportable * get(const std::string &id) const
Returns the named transportable, if existing.
void loadState(const std::string &state)
Reconstructs the current state.
The class responsible for building and deletion of vehicles.
void discountStateRemoved(int n)
discount vehicles that were removed during state loading
SUMOVehicle * getVehicle(const std::string &id) const
Returns the vehicle with the given id.
void deleteKeptVehicle(SUMOVehicle *veh)
when a vehicle is kept after arrival, schedule later deletion
std::map< std::string, SUMOVehicle * >::const_iterator constVehIt
Definition of the internal vehicles map iterator.
constVehIt loadedVehBegin() const
Returns the begin of the internal vehicle map.
void handleTriggeredDepart(SUMOVehicle *v, bool add)
register / unregister depart-triggered vehicles with edges
void saveState(OutputDevice &out)
Saves the current state into the given stream.
constVehIt loadedVehEnd() const
Returns the end of the internal vehicle map.
void setState(int runningVehNo, int loadedVehNo, int endedVehNo, double totalDepartureDelay, double totalTravelTime, double maxSpeedFactor, double minDecel)
Sets the current state variables as loaded from the stream.
Abstract in-vehicle device.
Representation of a vehicle in the micro simulation.
Definition MSVehicle.h:77
void updateBestLanes(bool forceRebuild=false, const MSLane *startLane=0)
computes the best lanes to use in order to continue the route
const MSLane * getLane() const
Returns the lane the vehicle is on.
Definition MSVehicle.h:581
void loadPreviousApproaching(MSLink *link, bool setRequest, SUMOTime arrivalTime, double arrivalSpeed, double arrivalSpeedBraking, double dist, double leaveSpeed)
MSCFModel::VehicleVariables * getCarFollowVariables() const
Returns the vehicle's car following model variables.
Definition MSVehicle.h:994
static MSVehicleTransfer * getInstance()
Returns the instance of this object.
void saveState(OutputDevice &out)
Saves the current state into the given stream.
void loadState(const SUMOSAXAttributes &attrs, const SUMOTime offset, MSVehicleControl &vc)
Loads one transfer vehicle state from the given description.
static Parameterised * addPredecessorConstraint(int element, const SUMOSAXAttributes &attrs, MSRailSignal *rs)
const std::string & getID() const
Returns the id.
Definition Named.h:74
static SumoRNG * getRNG()
int getInt(const std::string &name) const
Returns the int-value of the named option (only for Option_Integer)
const StringVector & getStringVector(const std::string &name) const
Returns the list of string-value of the named option (only for Option_StringVector)
static OptionsCont & getOptions()
Retrieves the options.
Static storage of an output device and its base (abstract) implementation.
void close()
Closes the device and removes it from the dictionary.
OutputDevice & openTag(const std::string &xmlElement)
Opens an XML tag.
OutputDevice & writeAttr(const ATTR_TYPE &attr, const T &val, const bool isNull=false)
writes a named attribute
bool closeTag(const std::string &comment="")
Closes the most recently opened tag and optionally adds a comment.
void setPrecision(int precision=gPrecision)
Sets the precision or resets it to default.
static OutputDevice & getDevice(const std::string &name, bool usePrefix=true)
Returns the described OutputDevice.
bool writeXMLHeader(const std::string &rootElement, const std::string &schemaFile, std::map< SumoXMLAttr, std::string > attrs=std::map< SumoXMLAttr, std::string >(), bool includeConfig=true)
Writes an XML header with optional configuration.
virtual void setParameter(const std::string &key, const std::string &value)
Sets a parameter.
static void loadState(const std::string &state, SumoRNG *rng=nullptr)
load rng state from string
Definition RandHelper.h:244
static std::string saveState(SumoRNG *rng=nullptr)
save rng state to string
Definition RandHelper.h:231
bool myAllowInternalRoutes
whether references to internal routes are allowed in this context
SUMOVehicleParameter * myVehicleParameter
Parameter of the current vehicle, trip, person, container or flow.
SUMOVTypeParameter * myCurrentVType
The currently parsed vehicle type.
virtual void myEndElement(int element)
Called when a closing tag occurs.
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.
T get(int attr, const char *objectid, bool &ok, bool report=true) const
Tries to read given attribute assuming it is an int.
virtual SUMOSAXAttributes * clone() const =0
return a new deep-copy attributes object
virtual bool hasAttribute(int id) const =0
Returns the information whether the named (by its enum-value) attribute is within the current list.
int getInt(int id) const
Returns the int-value of the named (by its enum-value) attribute.
double getFloat(int id) const
Returns the double-value of the named (by its enum-value) attribute.
SAX-reader encapsulation containing binary reader.
bool parseFirst(std::string systemID)
Start parsing the given file using parseFirst of myXMLReader.
bool parseNext()
Continue a progressive parse started by parseFirst.
virtual NumericalID getNumericalID() const =0
return the numerical ID which is only for internal usage
virtual MSDevice * getDevice(const std::type_info &type) const =0
Returns a device of the given type if it exists or nullptr if not.
virtual const SUMOVehicleParameter & getParameter() const =0
Returns the vehicle's parameter (including departure definition)
virtual bool hasArrived() const =0
Returns whether this object has arrived.
Representation of a vehicle.
Definition SUMOVehicle.h:63
virtual void setChosenSpeedFactor(const double factor)=0
virtual const std::vector< MSVehicleDevice * > & getDevices() const =0
Returns this vehicle's devices.
virtual bool hasDeparted() const =0
Returns whether this vehicle has departed.
virtual void loadState(const SUMOSAXAttributes &attrs, const SUMOTime offset)=0
Loads the state of this vehicle from the given description.
Structure representing possible vehicle parameter.
long long int repetitionsDone
The number of times the vehicle was already inserted.
SUMOTime repetitionTotalOffset
The offset between depart and the time for the next vehicle insertions.
std::string id
The vehicle's id.
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.
static long long int toLong(const std::string &sData)
converts a string into the long value described by it by calling the char-type converter,...
static int toInt(const std::string &sData)
converts a string into the integer value described by it by calling the char-type converter,...
static SUMOSAXReader * getSAXReader(SUMOSAXHandler &handler, const bool isNet=false, const bool isRoute=false)
Builds a reader and assigns the handler to it.