Base class for all simple modules of a host. This method raises an error if the host state changes to something else than ACTIVE. Therefore that a sub-classing module can be used in a simulation where the host state can change it has to override that method which forces the author to make sure the module reacts well to host state changes.
Alternatively one can also set a “notAffectedByHostState” parameter of the module to true. The base module additionally provides a function findHost which returns a pointer to the host module and a function hostIndex to return the index of the host module. The latter one correspondes to the index shown in tkenv and comes in very handy for testing and debugging using tkenv. It is used e.g. in all the ‘print’ macros used for debugging. There will never be a stand-alone BaseModule module.
Note: most modules wont derive from BaseModule directly but from its sub class “BatteryAccess” which extends BaseModule by several methods for accessing the battery module.
// module reacting to signals in plain OMNeT++ fashion, has to inherit from cListener or implement cIListener classWithoutSignalCallbacks: public cModule, public cListener { protected: voidinitialize()override{ // subscribe to the signal with itself as handler subscribe(SignalEmitter::counterSignal, this); subscribe(SignalEmitter::nameSignal, this); } public: // signal handler for all signals with a long parameter voidreceiveSignal(cComponent* source, simsignal_t signalID, long l, cObject* details)override{ // identify signal to handle if (signalID == SignalEmitter::counterSignal) { // react to signal std::cerr << "Module " << source->getFullName() << " received message nr " << l << std::endl; } } // signal handler for all signals with a string parameter voidreceiveSignal(cComponent* source, simsignal_t signalID, constchar* s, cObject* details)override{ // identify signal to handle if (signalID == SignalEmitter::nameSignal) { // react to signal std::cerr << "Module " << source->getFullName() << " received message with content " << c << std::endl; } } };
SignalManager
使用 [SignalManager],可以封装所有信号处理,并将配置保留在一个地方:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// module reacting to signals using the SignalManager classWithSignalManager: public cModule { protected: veins::SignalManager signalManager; voidinitialize()override{ // reaction to the signal auto nameSignalCallback = [this](veins::SignalPayload<constchar*> payload) { std::cerr << "Module " << payload.source->getFullName() << " received message with content " << payload.p << std::endl; }; auto counterSignalCallback = [this](veins::SignalPayload<long> payload) { std::cerr << "Module " << payload.source->getFullName() << " received message nr " << payload.p << " via signal " << payload.signalID << std::endl; }; // register callbacks with the signal manager, which takes care to perform the actual subscription signalManager.subscribeCallback(getSystemModule(), SignalEmitter::nameSignal, nameSignalCallback); signalManager.subscribeCallback(getSystemModule(), SignalEmitter::counterSignal, counterSignalCallback); } };