-
Notifications
You must be signed in to change notification settings - Fork 0
/
PriorityTrafficGenerator.cc
196 lines (166 loc) · 6.26 KB
/
PriorityTrafficGenerator.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
//
// 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 3 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/.
//
#include "PriorityTrafficGenerator.h"
#include "Ieee802Ctrl_m.h"
Define_Module(PriorityTrafficGenerator);
simsignal_t PriorityTrafficGenerator::sentPkSignal = SIMSIGNAL_NULL;
simsignal_t PriorityTrafficGenerator::rcvdPkSignal = SIMSIGNAL_NULL;
PriorityTrafficGenerator::PriorityTrafficGenerator()
{
timerMsg = NULL;
}
PriorityTrafficGenerator::~PriorityTrafficGenerator()
{
cancelAndDelete(timerMsg);
}
void PriorityTrafficGenerator::initialize(int stage)
{
// we can only initialize in the 2nd stage (stage==1), because
// assignment of "auto" MAC addresses takes place in stage 0
if (stage == 1)
{
sendInterval = &par("sendInterval");
numPacketsPerBurst = &par("numPacketsPerBurst");
packetLength = &par("packetLength");
etherType = par("etherType");
seqNum = 0;
WATCH(seqNum);
// statistics
packetsSent = packetsReceived = 0;
sentPkSignal = registerSignal("sentPk");
rcvdPkSignal = registerSignal("rcvdPk");
WATCH(packetsSent);
WATCH(packetsReceived);
destMACAddress = resolveDestMACAddress();
// if no dest address given, nothing to do
if (destMACAddress.isUnspecified())
return;
simtime_t startTime = par("startTime");
stopTime = par("stopTime");
if (stopTime != 0 && stopTime <= startTime)
error("Invalid startTime/stopTime parameters");
timerMsg = new cMessage("generateNextPacket");
scheduleAt(startTime, timerMsg);
//find access points
cModule *parent = getParentModule();
if (parent->hasPar("dynamicAPConnections"))
dynamicAPConnections = parent->par("dynamicAPConnections");
else
dynamicAPConnections = false;
if (dynamicAPConnections) {
cModule *network = simulation.getSystemModule();
for (SubmoduleIterator iter(network); !iter.end(); iter++)
{
if (iter()->hasPar("relayUnitType")
&& opp_strcmp(iter()->par("relayUnitType"), "PriorityMACRelayUnitNPAccessPoint") == 0) {
accessPointPaths.push_back(iter()->getFullPath());
}
}
}
}
}
MACAddress PriorityTrafficGenerator::resolveDestMACAddress()
{
MACAddress destMACAddress;
const char *destAddress = par("destAddress");
if (destAddress[0])
{
// try as mac address first, then as a module
if (!destMACAddress.tryParse(destAddress))
{
cModule *destStation = simulation.getModuleByPath(destAddress);
if (!destStation)
error("cannot resolve MAC address '%s': not a 12-hex-digit MAC address or a valid module path name", destAddress);
cModule *destMAC = destStation->getSubmodule("mac");
if (!destMAC)
error("module '%s' has no 'mac' submodule", destAddress);
destMACAddress.setAddress(destMAC->par("address"));
}
}
return destMACAddress;
}
void PriorityTrafficGenerator::handleMessage(cMessage *msg)
{
if (msg->isSelfMessage())
{
sendBurstPackets();
simtime_t d = simTime() + sendInterval->doubleValue();
if (stopTime == 0 || d < stopTime)
scheduleAt(d, msg);
}
else
{
receivePacket(check_and_cast<cPacket*>(msg));
}
if (dynamicAPConnections && intrand(2) % 2 == 0) {
// reconnect
reconnect();
}
}
void PriorityTrafficGenerator::reconnect() {
if (accessPointPaths.size() > 0) {
std::string connectToPath = accessPointPaths[intrand(accessPointPaths.size())];
cModule *network = simulation.getSystemModule();
cModule *connectTo = network->getModuleByPath(connectToPath.c_str());
if (connectTo != currentlyAPConnected) {
cModule *parent = getParentModule();
if (currentlyAPConnected != NULL) {
//disconnect
currentlyAPConnected->gate("ethg$o", parent->getIndex() + 1)->disconnect();
parent->gate("ethg$o")->disconnect();
}
//connect to AP
currentlyAPConnected = connectTo;
cChannelType *channelType = cChannelType::get("backbone.Network.C");
cChannel *channel = channelType->create("channelAP");
currentlyAPConnected->gate("ethg$o", parent->getIndex() + 1)->connectTo(parent->gate("ethg$i"), channel);
channel = channelType->create("channelV");
parent->gate("ethg$o")->connectTo(currentlyAPConnected->gate("ethg$i", parent->getIndex() + 1), channel);
}
}
}
void PriorityTrafficGenerator::sendBurstPackets()
{
int n = numPacketsPerBurst->longValue();
for (int i = 0; i < n; i++)
{
seqNum++;
char msgname[40];
sprintf(msgname, "pk-%d-%ld", getId(), seqNum);
EV << "Generating packet `" << msgname << "'\n";
cPacket *datapacket = new cPacket(msgname, IEEE802CTRL_DATA);
long len = packetLength->longValue();
datapacket->setByteLength(len);
Ieee802Ctrl *etherctrl = new Ieee802Ctrl();
etherctrl->setEtherType(etherType);
etherctrl->setDest(destMACAddress);
datapacket->setControlInfo(etherctrl);
emit(sentPkSignal, datapacket);
send(datapacket, "out");
packetsSent++;
}
}
void PriorityTrafficGenerator::receivePacket(cPacket *msg)
{
EV << "Received packet `" << msg->getName() << "'\n";
packetsReceived++;
emit(rcvdPkSignal, msg);
delete msg;
}
void PriorityTrafficGenerator::finish()
{
cancelAndDelete(timerMsg);
timerMsg = NULL;
}