![]() |
Eclipse SUMO - Simulation of Urban MObility
|
#include <MsgHandler.h>
Public Types | |
enum | MsgType { MT_MESSAGE, MT_WARNING, MT_ERROR, MT_DEBUG, MT_GLDEBUG } |
Public Member Functions | |
virtual void | addRetriever (OutputDevice *retriever) |
Adds a further retriever to the instance responsible for a certain msg type. More... | |
virtual void | beginProcessMsg (std::string msg, bool addType=true) |
Begins a process information. More... | |
virtual void | clear () |
Clears information whether an error occurred previously. More... | |
virtual void | endProcessMsg (std::string msg) |
Ends a process information. More... | |
virtual void | inform (std::string msg, bool addType=true) |
adds a new error to the list More... | |
bool | isRetriever (OutputDevice *retriever) const |
Returns whether the given output device retrieves messages from the handler. More... | |
template<class T > | |
MsgHandler & | operator<< (const T &t) |
Generic output operator. More... | |
virtual void | removeRetriever (OutputDevice *retriever) |
Removes the retriever from the handler. More... | |
bool | wasInformed () const |
Returns the information whether any messages were added. More... | |
Static Public Member Functions | |
static void | cleanupOnEnd () |
Removes pending handler. More... | |
static void | enableDebugGLMessages (bool enable) |
enable/disable gl-debug messages More... | |
static void | enableDebugMessages (bool enable) |
enable/disable debug messages More... | |
static MsgHandler * | getDebugInstance () |
Returns the instance to add debug to. More... | |
static MsgHandler * | getErrorInstance () |
Returns the instance to add errors to. More... | |
static MsgHandler * | getGLDebugInstance () |
Returns the instance to add GLdebug to. More... | |
static MsgHandler * | getMessageInstance () |
Returns the instance to add normal messages to. More... | |
static MsgHandler * | getWarningInstance () |
Returns the instance to add warnings to. More... | |
static void | initOutputOptions () |
init output options More... | |
static void | removeRetrieverFromAllInstances (OutputDevice *out) |
ensure that that given output device is no longer used as retriever by any instance More... | |
static void | setFactory (Factory func) |
Sets the factory function to use for new MsgHandlers. More... | |
static bool | writeDebugGLMessages () |
check whether to enable/disable gl-debug messages More... | |
static bool | writeDebugMessages () |
check whether to enable/disable debug messages More... | |
Protected Member Functions | |
std::string | build (const std::string &msg, bool addType) |
Builds the string which includes the mml-message type. More... | |
MsgHandler (MsgType type) | |
standard constructor More... | |
virtual | ~MsgHandler () |
destructor More... | |
Private Types | |
typedef MsgHandler *(* | Factory) (MsgType) |
Private Member Functions | |
MsgHandler (const MsgHandler &s)=delete | |
invalid copy constructor More... | |
MsgHandler & | operator= (const MsgHandler &s)=delete |
invalid assignment operator More... | |
Private Attributes | |
std::vector< OutputDevice * > | myRetrievers |
The list of retrievers that shall be informed about new messages or errors. More... | |
MsgType | myType |
The type of the instance. More... | |
bool | myWasInformed |
information wehther an error occurred at all More... | |
Static Private Attributes | |
static bool | myAmProcessingProcess = false |
Information whether a process information is printed to cout. More... | |
static MsgHandler * | myDebugInstance = nullptr |
The instance to handle debug. More... | |
static MsgHandler * | myErrorInstance = nullptr |
The instance to handle errors. More... | |
static Factory | myFactory = nullptr |
The function to call for new MsgHandlers, nullptr means use default constructor. More... | |
static MsgHandler * | myGLDebugInstance = nullptr |
The instance to handle glDebug. More... | |
static MsgHandler * | myMessageInstance = nullptr |
The instance to handle normal messages. More... | |
static MsgHandler * | myWarningInstance = nullptr |
The instance to handle warnings. More... | |
static bool | myWriteDebugGLMessages |
static bool | myWriteDebugMessages |
Flag to enable or disable debug GL Functions. More... | |
Definition at line 44 of file MsgHandler.h.
|
private |
Definition at line 65 of file MsgHandler.h.
enum MsgHandler::MsgType |
An enumeration to differ between different types of messages (errors, warning and information)
Definition at line 51 of file MsgHandler.h.
|
protected |
standard constructor
Definition at line 255 of file MsgHandler.cpp.
References addRetriever(), OutputDevice::getDevice(), and MT_MESSAGE.
Referenced by getDebugInstance(), getErrorInstance(), getGLDebugInstance(), getMessageInstance(), and getWarningInstance().
|
protectedvirtual |
destructor
Definition at line 265 of file MsgHandler.cpp.
|
privatedelete |
invalid copy constructor
|
virtual |
Adds a further retriever to the instance responsible for a certain msg type.
Reimplemented in MsgHandlerSynchronized.
Definition at line 166 of file MsgHandler.cpp.
References isRetriever(), and myRetrievers.
Referenced by MsgHandlerSynchronized::addRetriever(), GNELoadThread::GNELoadThread(), GUILoadThread::GUILoadThread(), GUIRunThread::init(), initOutputOptions(), MsgHandler(), GUIMessageWindow::registerMsgHandlers(), GNELoadThread::run(), and GUILoadThread::run().
|
virtual |
Begins a process information.
When a longer action is started, this method should be used to inform the user about it. There will be no newline printed, but the message handler will be informed that a process message has been begun. If an error occurs, a newline will be printed. After the action has been performed, use endProcessMsg to inform the user about it.
Reimplemented in MsgHandlerSynchronized.
Definition at line 135 of file MsgHandler.cpp.
References build(), myAmProcessingProcess, myRetrievers, and myWasInformed.
Referenced by MsgHandlerSynchronized::beginProcessMsg().
|
inlineprotected |
Builds the string which includes the mml-message type.
Definition at line 157 of file MsgHandler.h.
References MT_DEBUG, MT_ERROR, MT_GLDEBUG, MT_MESSAGE, MT_WARNING, and myType.
Referenced by beginProcessMsg(), and inform().
|
static |
Removes pending handler.
Definition at line 241 of file MsgHandler.cpp.
References myDebugInstance, myErrorInstance, myGLDebugInstance, myMessageInstance, and myWarningInstance.
Referenced by SystemFrame::close(), and GUIRunThread::deleteSim().
|
virtual |
Clears information whether an error occurred previously.
Reimplemented in MsgHandlerSynchronized.
Definition at line 160 of file MsgHandler.cpp.
References myWasInformed.
Referenced by MsgHandlerSynchronized::clear(), NLBuilder::init(), loadJTRDefinitions(), main(), NBLoadedTLDef::myCompute(), GNELoadThread::run(), GUILoadThread::run(), and XMLSubSys::runParser().
|
static |
enable/disable gl-debug messages
Definition at line 113 of file MsgHandler.cpp.
References myWriteDebugGLMessages.
Referenced by GUIDialog_Options::InputBool::onCmdSetOption(), and GNELoadThread::run().
|
static |
enable/disable debug messages
Definition at line 108 of file MsgHandler.cpp.
References myWriteDebugMessages.
Referenced by GUIDialog_Options::InputBool::onCmdSetOption(), and GNELoadThread::run().
|
virtual |
Ends a process information.
Reimplemented in MsgHandlerSynchronized.
Definition at line 148 of file MsgHandler.cpp.
References myAmProcessingProcess, myRetrievers, and myWasInformed.
Referenced by CHBuilder< E, V >::buildContractionHierarchy(), MsgHandlerSynchronized::endProcessMsg(), and NBHeightMapper::loadIfSet().
|
static |
Returns the instance to add debug to.
Definition at line 90 of file MsgHandler.cpp.
References MsgHandler(), MT_DEBUG, and myDebugInstance.
Referenced by GUIMessageWindow::registerMsgHandlers(), GNELoadThread::run(), GNELoadThread::submitEndAndCleanup(), and GUIMessageWindow::unregisterMsgHandlers().
|
static |
Returns the instance to add errors to.
Definition at line 81 of file MsgHandler.cpp.
References MsgHandler(), MT_ERROR, and myErrorInstance.
Referenced by NLHandler::addPhase(), MSRouteHandler::addStop(), GNERouteHandler::addStop(), NLBuilder::build(), MSSOTLTrafficLightLogic::checkPhases(), OutputDevice::closeAll(), RORouteHandler::closeFlow(), RORouteHandler::closeVehicle(), ROJTRRouter::compute(), GUIRunThread::deleteSim(), GNELoadThread::GNELoadThread(), GUILoadThread::GUILoadThread(), GUIRunThread::init(), NLBuilder::init(), initOutputOptions(), PCLoaderOSM::loadIfSet(), loadJTRDefinitions(), NIImporter_ArcView::loadNetwork(), main(), GUIRunThread::makeStep(), MSPhaseDefinition::MSPhaseDefinition(), ROLoader::openRoutes(), RORouteDef::preComputeCurrentRoute(), ROLoader::processRoutes(), GUIMessageWindow::registerMsgHandlers(), RORouteDef::repairCurrentRoute(), GNELoadThread::run(), GUILoadThread::run(), XMLSubSys::runParser(), RONet::saveAndRemoveRoutesUntil(), MSSOTLTrafficLightLogic::setToATargetPhase(), GUILoadThread::submitEndAndCleanup(), GNELoadThread::submitEndAndCleanup(), and GUIMessageWindow::unregisterMsgHandlers().
|
static |
Returns the instance to add GLdebug to.
Definition at line 99 of file MsgHandler.cpp.
References MsgHandler(), MT_GLDEBUG, and myGLDebugInstance.
Referenced by GUIMessageWindow::registerMsgHandlers(), GNELoadThread::run(), GNELoadThread::submitEndAndCleanup(), and GUIMessageWindow::unregisterMsgHandlers().
|
static |
Returns the instance to add normal messages to.
Definition at line 59 of file MsgHandler.cpp.
References MsgHandler(), MT_MESSAGE, myFactory, and myMessageInstance.
Referenced by CHBuilder< E, V >::buildContractionHierarchy(), MSDeterministicHiLevelTrafficLightLogic::decideNextPhase(), MSSwarmTrafficLightLogic::decideNextPhase(), GUIRunThread::deleteSim(), inform(), GUIRunThread::init(), NLBuilder::init(), initOutputOptions(), NBHeightMapper::loadIfSet(), MSSOTLPhaseTrafficLightLogic::MSSOTLPhaseTrafficLightLogic(), MSSOTLPolicyBasedTrafficLightLogic::MSSOTLPolicyBasedTrafficLightLogic(), MSSOTLWaveTrafficLightLogic::MSSOTLWaveTrafficLightLogic(), GUIMessageWindow::registerMsgHandlers(), GNELoadThread::run(), GUILoadThread::run(), GUILoadThread::submitEndAndCleanup(), GNELoadThread::submitEndAndCleanup(), and GUIMessageWindow::unregisterMsgHandlers().
|
static |
Returns the instance to add warnings to.
Definition at line 72 of file MsgHandler.cpp.
References MsgHandler(), MT_WARNING, and myWarningInstance.
Referenced by NLHandler::addPhase(), DijkstraRouter< E, V, BASE >::clone(), AStarRouter< MSEdge, SUMOVehicle, SUMOAbstractRouterPermissions< MSEdge, SUMOVehicle > >::clone(), CHRouter< E, V, BASE >::clone(), ROJTRRouter::compute(), GUIRunThread::deleteSim(), GUIRunThread::init(), NLBuilder::init(), initOutputOptions(), PCLoaderOSM::loadIfSet(), NBLoadedTLDef::myCompute(), RORouteDef::preComputeCurrentRoute(), GUIMessageWindow::registerMsgHandlers(), RORouteDef::repairCurrentRoute(), GNELoadThread::run(), GUILoadThread::run(), RONet::saveAndRemoveRoutesUntil(), GUILoadThread::submitEndAndCleanup(), GNELoadThread::submitEndAndCleanup(), TraCIServer::TraCIServer(), and GUIMessageWindow::unregisterMsgHandlers().
|
virtual |
adds a new error to the list
Reimplemented in MsgHandlerSynchronized.
Definition at line 118 of file MsgHandler.cpp.
References build(), getMessageInstance(), inform(), myAmProcessingProcess, myRetrievers, and myWasInformed.
Referenced by RORouteHandler::addPersonTrip(), NLHandler::addPhase(), ROVehicle::addStop(), RORouteHandler::addStop(), MSSOTLTrafficLightLogic::checkPhases(), RORouteHandler::closeFlow(), RORouteHandler::closeRoute(), RORouteHandler::closeRouteDistribution(), RORouteHandler::closeVehicle(), RORouteHandler::closeVehicleTypeDistribution(), ROJTRRouter::compute(), ROPerson::computeIntermodal(), SUMOAbstractRouter< E, IntermodalTrip< E, N, V > >::computeLooped(), ROVehicle::computeRoute(), MSDeterministicHiLevelTrafficLightLogic::decideNextPhase(), MSSwarmTrafficLightLogic::decideNextPhase(), MsgHandlerSynchronized::inform(), inform(), GUIRunThread::init(), main(), GUIRunThread::makeStep(), MSPhaseDefinition::MSPhaseDefinition(), MSSOTLPhaseTrafficLightLogic::MSSOTLPhaseTrafficLightLogic(), MSSOTLPolicyBasedTrafficLightLogic::MSSOTLPolicyBasedTrafficLightLogic(), MSSOTLWaveTrafficLightLogic::MSSOTLWaveTrafficLightLogic(), NIXMLConnectionsHandler::myStartElement(), RORouteHandler::myStartElement(), RORouteHandler::openRoute(), RORouteHandler::openRouteDistribution(), RORouteHandler::openVehicleTypeDistribution(), NIXMLConnectionsHandler::parseConnection(), NIXMLConnectionsHandler::parseDeprecatedLaneDefinition(), RORouteHandler::parseEdges(), RORouteHandler::parseFromViaTo(), RORouteHandler::parseGeoEdges(), NIXMLConnectionsHandler::parseLaneBound(), SUMORouteHandler::parseStop(), RORouteDef::preComputeCurrentRoute(), RORouteDef::repairCurrentRoute(), GUILoadThread::run(), MSSOTLTrafficLightLogic::setToATargetPhase(), and TraCIServer::TraCIServer().
|
static |
init output options
Definition at line 208 of file MsgHandler.cpp.
References addRetriever(), OptionsCont::getBool(), OutputDevice::getDevice(), getErrorInstance(), getMessageInstance(), OptionsCont::getOptions(), OptionsCont::getString(), getWarningInstance(), OptionsCont::isSet(), and removeRetriever().
Referenced by NLBuilder::init(), main(), GNELoadThread::run(), and GUILoadThread::run().
bool MsgHandler::isRetriever | ( | OutputDevice * | retriever | ) | const |
Returns whether the given output device retrieves messages from the handler.
Definition at line 183 of file MsgHandler.cpp.
References myRetrievers.
Referenced by addRetriever(), and OutputDevice::closeAll().
|
inline |
Generic output operator.
Definition at line 147 of file MsgHandler.h.
References myRetrievers.
|
privatedelete |
invalid assignment operator
|
virtual |
Removes the retriever from the handler.
Reimplemented in MsgHandlerSynchronized.
Definition at line 174 of file MsgHandler.cpp.
References myRetrievers.
Referenced by GUIRunThread::deleteSim(), initOutputOptions(), MsgHandlerSynchronized::removeRetriever(), removeRetrieverFromAllInstances(), GUILoadThread::run(), GUILoadThread::submitEndAndCleanup(), GNELoadThread::submitEndAndCleanup(), and GUIMessageWindow::unregisterMsgHandlers().
|
static |
ensure that that given output device is no longer used as retriever by any instance
Definition at line 189 of file MsgHandler.cpp.
References myDebugInstance, myErrorInstance, myGLDebugInstance, myMessageInstance, myWarningInstance, and removeRetriever().
Referenced by OutputDevice::close().
|
inlinestatic |
Sets the factory function to use for new MsgHandlers.
Definition at line 69 of file MsgHandler.h.
References myFactory.
Referenced by main().
bool MsgHandler::wasInformed | ( | ) | const |
Returns the information whether any messages were added.
Definition at line 270 of file MsgHandler.cpp.
References myWasInformed.
Referenced by NLBuilder::build(), ROLoader::openRoutes(), ROLoader::processRoutes(), and XMLSubSys::runParser().
|
inlinestatic |
check whether to enable/disable gl-debug messages
Definition at line 100 of file MsgHandler.h.
References myWriteDebugGLMessages.
Referenced by SUMORTree::addAdditionalGLObject(), and SUMORTree::removeAdditionalGLObject().
|
inlinestatic |
check whether to enable/disable debug messages
Definition at line 95 of file MsgHandler.h.
References myWriteDebugMessages.
|
staticprivate |
Information whether a process information is printed to cout.
Definition at line 208 of file MsgHandler.h.
Referenced by beginProcessMsg(), endProcessMsg(), and inform().
|
staticprivate |
The instance to handle debug.
Definition at line 193 of file MsgHandler.h.
Referenced by cleanupOnEnd(), getDebugInstance(), and removeRetrieverFromAllInstances().
|
staticprivate |
The instance to handle errors.
Definition at line 199 of file MsgHandler.h.
Referenced by cleanupOnEnd(), getErrorInstance(), and removeRetrieverFromAllInstances().
|
staticprivate |
The function to call for new MsgHandlers, nullptr means use default constructor.
Definition at line 190 of file MsgHandler.h.
Referenced by getMessageInstance(), and setFactory().
|
staticprivate |
The instance to handle glDebug.
Definition at line 196 of file MsgHandler.h.
Referenced by cleanupOnEnd(), getGLDebugInstance(), and removeRetrieverFromAllInstances().
|
staticprivate |
The instance to handle normal messages.
Definition at line 205 of file MsgHandler.h.
Referenced by cleanupOnEnd(), getMessageInstance(), and removeRetrieverFromAllInstances().
|
private |
The list of retrievers that shall be informed about new messages or errors.
Definition at line 218 of file MsgHandler.h.
Referenced by addRetriever(), beginProcessMsg(), endProcessMsg(), inform(), isRetriever(), operator<<(), and removeRetriever().
|
private |
|
staticprivate |
The instance to handle warnings.
Definition at line 202 of file MsgHandler.h.
Referenced by cleanupOnEnd(), getWarningInstance(), and removeRetrieverFromAllInstances().
|
private |
information wehther an error occurred at all
Definition at line 215 of file MsgHandler.h.
Referenced by beginProcessMsg(), clear(), endProcessMsg(), inform(), and wasInformed().
|
staticprivate |
Definition at line 232 of file MsgHandler.h.
Referenced by enableDebugGLMessages(), and writeDebugGLMessages().
|
staticprivate |
Flag to enable or disable debug GL Functions.
This value is used to show more internal information throught warning messages about certain operations
Definition at line 231 of file MsgHandler.h.
Referenced by enableDebugMessages(), and writeDebugMessages().