SUMO - Simulation of Urban MObility
|
The main interface for loading a microsim. More...
#include <NLBuilder.h>
Data Structures | |
class | EdgeFloatTimeLineRetriever_EdgeEffort |
class | EdgeFloatTimeLineRetriever_EdgeTravelTime |
Obtains edge efforts from a weights handler and stores them within the edges. More... | |
Public Member Functions | |
virtual bool | build () |
Builds and initialises the simulation. More... | |
NLBuilder (OptionsCont &oc, MSNet &net, NLEdgeControlBuilder &eb, NLJunctionControlBuilder &jb, NLDetectorBuilder &db, NLHandler &xmlHandler) | |
Constructor. More... | |
virtual | ~NLBuilder () |
Destructor. More... | |
Protected Member Functions | |
void | buildNet () |
Closes the net building process. More... | |
SUMORouteLoaderControl * | buildRouteLoaderControl (const OptionsCont &oc) |
Builds the route loader control. More... | |
bool | load (const std::string &mmlWhat, const bool isNet=false) |
Loads a described subpart form the given list of files. More... | |
Protected Attributes | |
NLDetectorBuilder & | myDetectorBuilder |
The detector control builder to use. More... | |
NLEdgeControlBuilder & | myEdgeBuilder |
The edge control builder to use. More... | |
NLJunctionControlBuilder & | myJunctionBuilder |
The junction control builder to use. More... | |
MSNet & | myNet |
The net to fill. More... | |
OptionsCont & | myOptions |
The options to get the names of the files to load and further information from. More... | |
NLHandler & | myXMLHandler |
The handler used to parse the net. More... | |
Private Member Functions | |
NLBuilder (const NLBuilder &s) | |
invalidated copy operator More... | |
NLBuilder & | operator= (const NLBuilder &s) |
invalidated assignment operator More... | |
The main interface for loading a microsim.
It is a black-box where only the options and factories must be supplied on the constructor call. An (empty) instance of the network must be supplied, too, and is filled during loading.
Definition at line 68 of file NLBuilder.h.
NLBuilder::NLBuilder | ( | OptionsCont & | oc, |
MSNet & | net, | ||
NLEdgeControlBuilder & | eb, | ||
NLJunctionControlBuilder & | jb, | ||
NLDetectorBuilder & | db, | ||
NLHandler & | xmlHandler | ||
) |
Constructor.
[in] | oc | The options to use |
[in,out] | net | The network to fill |
[in] | eb | The builder of edges to use |
[in] | jb | The builder of junctions to use |
[in] | db | The detector builder to use |
[in] | tb | The trigger builder to use |
[in] | xmlHandler | The xml handler to use |
Definition at line 107 of file NLBuilder.cpp.
|
virtual |
Destructor.
Definition at line 118 of file NLBuilder.cpp.
|
private |
invalidated copy operator
|
virtual |
Builds and initialises the simulation.
At first, the network is loaded and the built using "buildNet". If this could be done, additional information is loaded (state dump, weight files, route files, and additional files). If everything could be done, true is returned, otherwise false.
ProcessError | If something fails on network building |
Definition at line 122 of file NLBuilder.cpp.
References buildNet(), MsgHandler::endProcessMsg(), OptionsCont::getBool(), SysUtils::getCurrentMillis(), MsgHandler::getErrorInstance(), MsgHandler::getMessageInstance(), OptionsCont::getOptions(), OptionsCont::getString(), OptionsCont::getStringVector(), MSStateHandler::getTime(), NLHandler::haveSeenInternalEdge(), OptionsCont::isDefault(), OptionsCont::isSet(), OptionsCont::isUsableFileList(), load(), myNet, myOptions, myXMLHandler, PROGRESS_BEGIN_MESSAGE, XMLSubSys::runParser(), OptionsCont::set(), string2time(), time2string(), toString(), MsgHandler::wasInformed(), WRITE_MESSAGE, and WRITE_WARNING.
Referenced by load(), and GUILoadThread::run().
|
protected |
Closes the net building process.
Builds the microsim-structures which belong to a MSNet using the factories filled while loading. Initialises the network using these structures by calling MSNet::closeBuilding. If an error occurs, all built structures are deleted and a ProcessError is thrown.
ProcessError | If the loaded structures could not be built |
Definition at line 202 of file NLBuilder.cpp.
References NLEdgeControlBuilder::build(), NLJunctionControlBuilder::build(), buildRouteLoaderControl(), MSFrame::buildStreams(), NLJunctionControlBuilder::buildTLLogics(), MSNet::closeBuilding(), OptionsCont::getIntVector(), OptionsCont::getString(), OptionsCont::getStringVector(), OptionsCont::isSet(), myEdgeBuilder, myJunctionBuilder, myNet, myOptions, TIME2STEPS, time2string(), and WRITE_ERROR.
Referenced by build().
|
protected |
Builds the route loader control.
Goes through the list of route files to open defined in the option "route-files" and builds loaders reading these files
[in] | oc | The options to read the list of route files to open from |
ProcessError | If an error occured |
Definition at line 267 of file NLBuilder.cpp.
References SUMORouteLoaderControl::add(), FileHelpers::exists(), OptionsCont::getString(), OptionsCont::getStringVector(), OptionsCont::isSet(), and string2time().
Referenced by buildNet().
Loads a described subpart form the given list of files.
Assuming the given string to be an option name behind which a list of files is stored, this method invokes an XML reader on all the files set for this option.
[in] | mmlWhat | The option to get the file list from |
[in] | isNet | whether a network gets loaded |
Definition at line 248 of file NLBuilder.cpp.
References MsgHandler::endProcessMsg(), SysUtils::getCurrentMillis(), MsgHandler::getMessageInstance(), OptionsCont::getOptions(), OptionsCont::getStringVector(), myXMLHandler, PROGRESS_BEGIN_MESSAGE, XMLSubSys::runParser(), toString(), and WRITE_MESSAGE.
Referenced by build().
|
protected |
The detector control builder to use.
Definition at line 213 of file NLBuilder.h.
|
protected |
The edge control builder to use.
Definition at line 207 of file NLBuilder.h.
Referenced by buildNet().
|
protected |
The junction control builder to use.
Definition at line 210 of file NLBuilder.h.
Referenced by buildNet().
|
protected |
The net to fill.
Definition at line 216 of file NLBuilder.h.
Referenced by NLBuilder::EdgeFloatTimeLineRetriever_EdgeTravelTime::addEdgeWeight(), build(), and buildNet().
|
protected |
The options to get the names of the files to load and further information from.
Definition at line 204 of file NLBuilder.h.
Referenced by build(), and buildNet().
|
protected |
The handler used to parse the net.
Definition at line 219 of file NLBuilder.h.