-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sink.cc
executable file
·53 lines (41 loc) · 966 Bytes
/
Sink.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef SINK
#define SINK
#include <string.h>
#include <omnetpp.h>
using namespace omnetpp;
class Sink : public cSimpleModule {
private:
cStdDev delayStats;
cOutVector delayVector;
public:
Sink();
virtual ~Sink();
protected:
virtual void initialize();
virtual void finish();
virtual void handleMessage(cMessage *msg);
};
Define_Module(Sink);
Sink::Sink() {
}
Sink::~Sink() {
}
void Sink::initialize(){
delayStats.setName("TotalDelay");
delayVector.setName("Delay");
}
void Sink::finish(){
// Stats record at the end of simulation
recordScalar("Avg delay", delayStats.getMean());
recordScalar("Number of packets", delayStats.getCount());
}
void Sink::handleMessage(cMessage * msg) {
// Compute queuing delay
simtime_t delay = simTime() - msg->getCreationTime();
// Update stats
delayStats.collect(delay);
delayVector.record(delay);
// Delete msg
delete(msg);
}
#endif /* SINK */