123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- //
- // Copyright (C) 2013 Opensim Ltd.
- //
- // This program is free software; you can redistribute it and/or
- // modify it under the terms of the GNU Lesser General Public License
- // as published by the Free Software Foundation; either version 2
- // of the License, or (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Lesser General Public License for more details.
- //
- // You should have received a copy of the GNU Lesser General Public License
- // along with this program; if not, see <http://www.gnu.org/licenses/>.
- //
- // author: Levente Meszaros (levy@omnetpp.org)
- //
- #include "TestProtocol.h"
- #include "TestOperation.h"
- namespace inet {
- Define_Module(TestProtocol);
- bool TestProtocol::handleOperationStage(LifecycleOperation *operation, int stage, IDoneCallback *doneCallback)
- {
- Enter_Method_Silent();
- if (dynamic_cast<TestNodeStartOperation *>(operation)) {
- if (stage == 0 || stage == 3)
- return true;
- else if (stage == 1) {
- scheduleAt(simTime() + 3, &sendOpen);
- EV << getFullPath() << " opening connection" << endl;
- }
- else if (stage == 2) {
- scheduleAt(simTime() + 2, &sendData);
- EV << getFullPath() << " sending initial data" << endl;
- }
- else
- throw cRuntimeError("Unknown stage");
- this->doneCallback = doneCallback;
- return false;
- }
- else if (dynamic_cast<TestNodeShutdownOperation *>(operation)) {
- if (stage == 0) {
- scheduleAt(simTime() + 2, &sendData);
- EV << getFullPath() << " sending final data" << endl;
- }
- else if (stage == 1) {
- scheduleAt(simTime() + 3, &sendClose);
- EV << getFullPath() << " closing connection" << endl;
- }
- else if (stage == 2 || stage == 3)
- return true;
- else
- throw cRuntimeError("Unknown stage");
- this->doneCallback = doneCallback;
- return false;
- }
- else
- return true;
- }
- void TestProtocol::initialize(int stage)
- {
- connectionOpen = false;
- dataSent = false;
- }
- void TestProtocol::handleMessage(cMessage * message)
- {
- if (message == &sendOpen) {
- connectionOpen = true;
- EV << getFullPath() << " connection open" << endl;
- doneCallback->invoke();
- }
- else if (message == &sendData) {
- dataSent = true;
- EV << getFullPath() << " data sent" << endl;
- doneCallback->invoke();
- }
- else if (message == &sendClose) {
- connectionOpen = false;
- EV << getFullPath() << " connection closed" << endl;
- doneCallback->invoke();
- }
- else
- throw cRuntimeError("Unknown message");
- }
- }
|