Parent: [b323f7] (diff)

Download this file

AESender.cc    297 lines (251 with data), 8.7 kB

  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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
// The MIT License (MIT)
//
// Copyright (c) 2014-2016 Brno University of Technology, PRISTINE project
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#include "AESender.h"
Define_Module(AESender);
PingMsg::PingMsg(){
pingAt = simTime();
}
PongMsg::PongMsg(simtime_t _pingAt){
pingAt = _pingAt;
pongAt = simTime();
}
AESender::AESender() : AE() {
S_TIM_START = "StartCommunication";
S_TIM_COM = "MakeCommunication";
S_TIM_STOP = "StopCommunication";
S_PAR_START = "startAt";
S_PAR_STOP = "stopAt";
S_PAR_SEND = "sendAfter";
S_PAR_DSTAPNAME = "dstApName";
S_PAR_DSTAPINSTANCE = "dstApInstance";
S_PAR_DSTAENAME = "dstAeName";
S_PAR_DSTAEINSTANCE = "dstAeInstance";
S_PAR_RATE = "rate";
S_PAR_RATE_VAR = "ratevar";
S_PAR_SIZE = "size";
S_PAR_SIZE_VAR = "sizevar";
S_MSG_PING = "PING-";
S_PAR_PING = "pingAt";
S_VAL_MODULEPATH = "getFullPath()";
}
AESender::~AESender() {
connectionState = NIL;
FlowObject = NULL;
Irm = NULL;
Cdap = NULL;
}
void AESender::prepareAllocateRequest() {
//Schedule AllocateRequest
cMessage* m1 = new cMessage(S_TIM_START);
scheduleAt(startAt, m1);
}
void AESender::prepareDeallocateRequest() {
//Schedule DeallocateRequest
cMessage* m3 = new cMessage(S_TIM_STOP);
scheduleAt(stopAt, m3);
}
void AESender::initialize()
{
//Init pointers
initPointers();
//Source info
initNamingInfo();
//Setup signals
initSignalsAndListeners();
//Init QoSRequirements
initQoSRequiremets();
//Timers
startAt = simTime() + par(S_PAR_START);
stopAt = simTime() + par(S_PAR_STOP);
sendAfter = par(S_PAR_SEND);
if(sendAfter<1){
sendAfter = 1;
}
//Time between PDUS (s)
rate = par(S_PAR_RATE).doubleValue();
ratevar = par(S_PAR_RATE_VAR).doubleValue();
//SIZE of PDU
size = par(S_PAR_SIZE);
sizevar = par(S_PAR_SIZE_VAR);
//Destination for flow
dstApName = this->par(S_PAR_DSTAPNAME).stringValue();
dstApInstance = this->par(S_PAR_DSTAPINSTANCE).stringValue();
dstAeName = this->par(S_PAR_DSTAENAME).stringValue();
dstAeInstance = this->par(S_PAR_DSTAEINSTANCE).stringValue();
//Schedule AllocateRequest
if (startAt > 0)
prepareAllocateRequest();
//Schedule DeallocateRequest
/*
if (stopAt > 0)
prepareDeallocateRequest();
*/
myPath = this->getFullPath();
send = 0;
received = 0;
pingreceived = 0;
sendSize = 0;
receivedSize = 0;
pingreceivedSize = 0;
minDelay = 999;
maxDelay = -1;
firstR = -1;
lastR = 0;
recTimes = par("recTimes").boolValue();
pduburst = par("pduburst").longValue();
if(pduburst<1) { pduburst = 1; }
//Watchers
WATCH(FlowObject);
WATCH(send);
WATCH(received);
WATCH(pingreceived);
WATCH(sendSize);
WATCH(receivedSize);
WATCH(pingreceivedSize);
WATCH(minDelay);
WATCH(maxDelay);
}
void AESender::finish()
{
if(par("printAtEnd").boolValue()){
EV << "At "<<this->getApni()<<endl;
if(FlowObject != NULL) {
EV << "With QoS " << FlowObject->getConId().getQoSId() <<endl;
}
EV << "send " << send << " ("<<sendSize << ")"<<endl;
// EV << "pingsRcv " << pingreceived << " ("<<pingreceivedSize << ")"<<endl;
EV << "pongsRcv " << received << " ("<<receivedSize << ")"<<endl;
EV << "delay " << minDelay << " / "<<maxDelay<<endl;
EV << "timestamps " << firstR << " -> "<<lastR<<endl;
if(recTimes){
EV << "-----------------"<<endl;
for(std::map<double, int>::iterator it = times.begin(); it!=times.end(); it++) {
EV << " " << it->first << " " << it->second <<endl;
}
EV << "-----------------"<<endl;
}
EV << "-----------------"<<endl;
}
}
void AESender::handleSelfMessage(cMessage *msg) {
//EV << flows.back().info() << endl;
if ( !strcmp(msg->getName(), S_TIM_START) ) {
//FIXME: Vesely - last flow in a list?!
//Flow
APNamingInfo src = this->getApni();
APNamingInfo dst = APNamingInfo( APN(this->dstApName), this->dstApInstance,
this->dstAeName, this->dstAeInstance);
FlowObject = new Flow(src, dst);
FlowObject->setQosRequirements(this->getQoSRequirements());
//Insert it to the Flows ADT
insertFlow();
sendAllocationRequest(FlowObject);
//Schedule ComRequest
cMessage* m = new cMessage(S_TIM_COM);
scheduleAt(simTime()+sendAfter+uniform(0,rate), m);
}
else if ( !strcmp(msg->getName(), S_TIM_STOP) ) {
sendDeallocationRequest(FlowObject);
}
else if ( !strcmp(msg->getName(), S_TIM_COM) ) {
if(stopAt > simTime()){
int tburst = intuniform(1,pduburst);
double msgWait = tburst*rate;
for(int i = 0; i < tburst; i++){
int msgSize = size + intuniform(-sizevar,sizevar);
msgWait += uniform(-ratevar,ratevar);
//Create PING messsage
CDAP_M_Read* ping = new PingMsg();
ping->setByteLength(msgSize);
//Send message
sendData(FlowObject, ping);
send++;
sendSize += msgSize;
}
//Schedule ComRequest
cMessage* m = new cMessage(S_TIM_COM);
scheduleAt(simTime()+msgWait, m);
}
}
else
EV << this->getFullPath() << " received unknown self-message " << msg->getName();
delete(msg);
}
void AESender::handleMessage(cMessage *msg)
{
if ( msg->isSelfMessage() )
this->handleSelfMessage(msg);
}
void AESender::processMRead(CDAPMessage* msg) {
PingMsg* ping = check_and_cast<PingMsg*>(msg);
if(ping){
PongMsg* pong = new PongMsg(ping->pingAt);
pong->setByteLength(msg->getByteLength());
sendData(FlowObject, pong);
/*
pingreceived++;
pingreceivedSize += msg->getByteLength();
simtime_t delay = simTime() - ping->pingAt;
if(minDelay>delay){
minDelay = delay;
}
if(maxDelay<delay){
maxDelay = delay;
}
if(firstR<0) {
firstR = simTime();
}
lastR = simTime();
*/
}
}
void AESender::processMReadR(CDAPMessage* msg) {
PongMsg* pong = check_and_cast<PongMsg*>(msg);
if(pong){
received++;
receivedSize += msg->getByteLength();
simtime_t delay = simTime() - pong->pingAt;
if(minDelay>delay){
minDelay = delay;
}
if(maxDelay<delay){
maxDelay = delay;
}
if(firstR<0) {
firstR = simTime();
}
lastR = simTime();
if(recTimes){
double dl = dround(delay.dbl(), 3);
times[dl]++;
}
}
}
double AESender::dround(double a, int ndigits) {
int exp_base10 = round(log10(a));
double man_base10 = a*pow(10.0,-exp_base10);
double factor = pow(10.0,-ndigits+1);
double truncated_man_base10 = man_base10 - fmod(man_base10,factor);
double rounded_remainder = fmod(man_base10,factor)/factor;
rounded_remainder = rounded_remainder > 0.5 ? 1.0*factor : 0.0;
return (truncated_man_base10 + rounded_remainder)*pow(10.0,exp_base10) ;
}