Parent: [62f79d] (diff)

Download this file

FAI.cc    436 lines (342 with data), 15.1 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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
// Copyright \ufffd 2014 PRISTINE Consortium (http://ict-pristine.eu)
#include "FAI.h"
Define_Module(FAI);
FAI::FAI() : FAIBase() {
}
FAI::~FAI() {
this->FaModule = NULL;
this->FlowObject = NULL;
}
void FAI::initialize() {
this->portId = par("portId");
this->cepId = par("cepId");
this->initSignalsAndListeners();
// this->efcp = (EFCP*)(getParentModule()->getParentModule()->getSubmodule("efcp"));
}
void FAI::postInitialize(FABase* fa, Flow* fl, EFCP* efcp) {
//Initialize pointers! It cannot be done during model creation :(
this->FaModule = fa;
this->FlowObject = fl;
this->efcp = efcp;
//this->sigFAIAllocReq = sigAlReq;
}
bool FAI::receiveAllocateRequest() {
Enter_Method("receiveAllocateRequest()");
//Invoke NewFlowReqPolicy
bool status = this->FaModule->invokeNewFlowRequestPolicy(this->FlowObject);
if (!status){
EV << "invokeNewFlowPolicy() failed" << endl;
FaModule->getFaiTable()->changeAllocStatus(FlowObject, FAITableEntry::ALLOC_NEGA);
this->signalizeAllocateResponseNegative();
return false;
}
status = this->createEFCP();
if (!status) {
EV << "createEFCP() failed" << endl;
FaModule->getFaiTable()->changeAllocStatus(FlowObject, FAITableEntry::ALLOC_NEGA);
this->signalizeAllocateResponseNegative();
return false;
}
status = this->createBindings();
if (!status) {
EV << "createBindings() failed" << endl;
FaModule->getFaiTable()->changeAllocStatus(FlowObject, FAITableEntry::ALLOC_NEGA);
this->signalizeAllocateResponseNegative();
return false;
}
//EV << "!!!!!!" << FlowObject->info() << endl << FlowObject->getDstNeighbor() << endl;
// bind this flow to a suitable (N-1)-flow
RABase* raModule = (RABase*) getParentModule()->getParentModule()->getModuleByPath(".resourceAllocator.ra");
status = raModule->bindFlowToLowerFlow(FlowObject);
//IF connected to wire then schedule M_Create(Flow)
if (status)
this->signalizeCreateFlowRequest();
//Everything went fine
return true;
}
bool FAI::processDegenerateDataTransfer() {
return true;
}
bool FAI::receiveAllocateResponsePositive() {
Enter_Method("receiveAllocateResponsePositive()");
//Instantiate EFCPi
bool status = this->createEFCP();
if (!status) {
EV << "createEFCP() failed" << endl;
//Schedule negative M_Create_R(Flow)
this->signalizeCreateFlowResponseNegative();
return false;
}
//Interconnect IPC <-> EFCPi <-> RMT
status = this->createBindings();
if (!status) {
EV << "createBindings() failed" << endl;
//Schedule M_Create_R(Flow-)
this->signalizeCreateFlowResponseNegative();
return false;
}
// bind this flow to a suitable (N-1)-flow
RABase* raModule = (RABase*) getParentModule()->getParentModule()->getModuleByPath(".resourceAllocator.ra");
raModule->bindFlowToLowerFlow(FlowObject);
//Signalizes M_Create_R(flow)
this->signalizeCreateFlowResponsePositive();
return true;
}
void FAI::receiveAllocateResponseNegative() {
this->signalizeCreateFlowResponseNegative();
}
bool FAI::receiveCreateRequest() {
Enter_Method("receiveCreateRequest()");
//Invoke NewFlowReqPolicy
bool status = this->FaModule->invokeNewFlowRequestPolicy(this->FlowObject);
if (!status){
EV << "invokeNewFlowPolicy() failed" << endl;
//Schedule negative M_Create_R(Flow)
this->signalizeCreateFlowResponseNegative();
return false;
}
//Create IPC north gates
createNorthGates();
//Pass AllocationRequest to AP or RMT
this->signalizeAllocationRequestFromFai();
//Everything went fine
return true;
}
bool FAI::receiveDeallocateRequest() {
Enter_Method("receiveDeallocateRequest()");
//deleteBindings
bool status = this->deleteBindings();
//Signalize M_Delete(Flow)
this->signalizeDeleteFlowRequest();
return status;
}
void FAI::receiveDeleteRequest() {
Enter_Method("receiveDeleteRequest()");
FaModule->getFaiTable()->changeAllocStatus(FlowObject, FAITableEntry::DEALLOC_PEND);
//Notify application
signalizeDeallocateRequestFromFai();
//DeleteBindings
this->deleteBindings();
//Signalizes M_Delete_R(Flow)
this->signalizeDeleteFlowResponse();
FaModule->getFaiTable()->changeAllocStatus(FlowObject, FAITableEntry::DEALLOCATED);
}
bool FAI::receiveCreateResponseNegative(Flow* flow) {
Enter_Method("receiveCreResNegative()");
//invokeAllocateRetryPolicy
bool status = this->invokeAllocateRetryPolicy();
//If number of retries IS NOT reached THEN ...
if (status) {
signalizeCreateFlowRequest();
}
//...otherwise signalize to AE or RIBd failure
else {
EV << "invokeAllocateRetryPolicy() failed" << endl;
FaModule->getFaiTable()->changeAllocStatus(FlowObject, FAITableEntry::ALLOC_NEGA);
this->signalizeAllocateResponseNegative();
}
return status;
}
bool FAI::receiveCreateResponsePositive(Flow* flow) {
Enter_Method("receiveCreResPositive()");
//XXX: Vesely - D-Base-2011-015.pdf, p.9
// Create bindings. WTF? Bindings should be already created!
//Change dstCep-Id and dstPortId according to new information
FlowObject->getConnectionId().setDstCepId(flow->getConId().getDstCepId());
FlowObject->setDstPortId(flow->getDstPortId());
//Change status
FaModule->getFaiTable()->changeAllocStatus(FlowObject, FAITableEntry::ALLOC_POSI);
//Pass Allocate Response to AE or RIBd
this->signalizeAllocateResponsePositive();
//FIXME: Vesely - always true
return true;
}
void FAI::receiveDeleteResponse() {
//Notify application
signalizeDeallocateRequestFromFai();
FaModule->getFaiTable()->changeAllocStatus(FlowObject, FAITableEntry::DEALLOCATED);
}
void FAI::handleMessage(cMessage *msg) {
}
std::string FAI::info() const {
std::stringstream os;
os << "FAI>\tPort-ID: " << this->portId << "\tCEP-ID: " << this->cepId;
return os.str();
}
//Free function
std::ostream& operator<< (std::ostream& os, const FAI& fai) {
return os << fai.info();
}
bool FAI::createEFCP() {
EV << this->getFullPath() << " attempts to create EFCP instance" << endl;
EFCPInstance* efcpi = efcp->createEFCPI(this->getFlow(), cepId);
return efcpi ? true : false;
}
bool FAI::createBindings() {
EV << this->getFullPath() << " attempts to bind EFCP and RMT" << endl;
std::ostringstream nameIpcDown;
nameIpcDown << GATE_NORTHIO_ << portId;
cModule* IPCModule = FaModule->getParentModule()->getParentModule();
//IF called as consequence of AllocateRequest then createNorthGate
//ELSE (called as consequence of CreateRequestFlow) skip
if (!IPCModule->hasGate(nameIpcDown.str().c_str()))
createNorthGates();
cGate* gateIpcDownIn = IPCModule->gateHalf(nameIpcDown.str().c_str(), cGate::INPUT);
cGate* gateIpcDownOut = IPCModule->gateHalf(nameIpcDown.str().c_str(), cGate::OUTPUT);
std::ostringstream nameEfcpNorth;
nameEfcpNorth << GATE_APPIO_ << cepId;
cModule* efcpModule = IPCModule->getModuleByPath(".efcp");
cGate* gateEfcpUpIn = efcpModule->gateHalf(nameEfcpNorth.str().c_str(), cGate::INPUT);
cGate* gateEfcpUpOut = efcpModule->gateHalf(nameEfcpNorth.str().c_str(), cGate::OUTPUT);
//IPCModule.northIo <--> Efcp.fai
gateEfcpUpOut->connectTo(gateIpcDownOut);
gateIpcDownIn->connectTo(gateEfcpUpIn);
//Create bindings in RMT
RMT* rmtModule = (RMT*) IPCModule->getModuleByPath(".rmt.rmt");
rmtModule->createEfcpiGate(cepId);
std::ostringstream nameRmtUp;
nameRmtUp << GATE_EFCPIO_ << cepId;
cGate* gateRmtUpIn = rmtModule->getParentModule()->gateHalf(nameRmtUp.str().c_str(), cGate::INPUT);
cGate* gateRmtUpOut = rmtModule->getParentModule()->gateHalf(nameRmtUp.str().c_str(), cGate::OUTPUT);
std::ostringstream nameEfcpDown;
nameEfcpDown << GATE_RMT_ << cepId;
cGate* gateEfcpDownIn = efcpModule->gateHalf(nameEfcpDown.str().c_str(), cGate::INPUT);
cGate* gateEfcpDownOut = efcpModule->gateHalf(nameEfcpDown.str().c_str(), cGate::OUTPUT);
//Efcp.rmt <--> Rmt.efcpIo
gateRmtUpOut->connectTo(gateEfcpDownIn);
gateEfcpDownOut->connectTo(gateRmtUpIn);
return gateEfcpDownIn->isConnected() && gateEfcpDownOut->isConnected()
&& gateEfcpUpIn->isConnected() && gateEfcpUpOut->isConnected()
&& gateRmtUpIn->isConnected() && gateRmtUpOut->isConnected();
}
bool FAI::deleteBindings() {
EV << this->getFullPath() << " attempts to disconnect bindings between EFCP, IPC and RMT" << endl;
std::ostringstream nameIpcDown;
nameIpcDown << GATE_NORTHIO_ << portId;
cModule* IPCModule = FaModule->getParentModule()->getParentModule();
cGate* gateIpcDownIn = IPCModule->gateHalf(nameIpcDown.str().c_str(), cGate::INPUT);
cGate* gateIpcDownOut = IPCModule->gateHalf(nameIpcDown.str().c_str(), cGate::OUTPUT);
std::ostringstream nameEfcpNorth;
nameEfcpNorth << GATE_APPIO_ << this->getFlow()->getConId().getSrcCepId();
cModule* efcpModule = IPCModule->getModuleByPath(".efcp");
cGate* gateEfcpUpIn = efcpModule->gateHalf(nameEfcpNorth.str().c_str(), cGate::INPUT);
cGate* gateEfcpUpOut = efcpModule->gateHalf(nameEfcpNorth.str().c_str(), cGate::OUTPUT);
//IPCModule.northIo <- XX -> Efcp.fai
gateEfcpUpIn->disconnect();
gateEfcpUpOut->disconnect();
gateIpcDownOut->disconnect();
gateIpcDownIn->disconnect();
//Delete bindings in RMT
RMT* rmtModule = (RMT*) IPCModule->getModuleByPath(".rmt.rmt");
std::ostringstream nameRmtUp;
nameRmtUp << GATE_EFCPIO_ << this->getFlow()->getConId().getSrcCepId();
cGate* gateRmtUpIn = rmtModule->getParentModule()->gateHalf(nameRmtUp.str().c_str(), cGate::INPUT);
cGate* gateRmtUpOut = rmtModule->getParentModule()->gateHalf(nameRmtUp.str().c_str(), cGate::OUTPUT);
std::ostringstream nameEfcpDown;
nameEfcpDown << GATE_RMT_ << this->getFlow()->getConId().getSrcCepId();
cGate* gateEfcpDownIn = efcpModule->gateHalf(nameEfcpDown.str().c_str(), cGate::INPUT);
cGate* gateEfcpDownOut = efcpModule->gateHalf(nameEfcpDown.str().c_str(), cGate::OUTPUT);
//Efcp.rmt <- XX -> Rmt.efcpIo
gateRmtUpOut->disconnect();
gateRmtUpIn->disconnect();
gateEfcpDownIn->disconnect();
gateEfcpDownOut->disconnect();
rmtModule->deleteEfcpiGate(cepId);
return true;
}
bool FAI::invokeAllocateRetryPolicy() {
//Increase CreateFlowRetries
//int hops = this->getFlow()->getCreateFlowRetries();
this->getFlow()->setCreateFlowRetries( this->getFlow()->getCreateFlowRetries() + 1 );
//Compare whether the limit is reached
return ( this->getFlow()->getCreateFlowRetries() <= this->getFlow()->getMaxCreateFlowRetries() );
}
void FAI::initSignalsAndListeners() {
cModule* catcher2 = this->getParentModule()->getParentModule();
cModule* catcher3 = this->getParentModule()->getParentModule()->getParentModule();
//Signals that module emits
sigFAIAllocReq = registerSignal(SIG_FAI_AllocateRequest);
sigFAIDeallocReq = registerSignal(SIG_FAI_DeallocateRequest);
sigFAIDeallocRes = registerSignal(SIG_FAI_DeallocateResponse);
sigFAIAllocResPosi = registerSignal(SIG_FAI_AllocateResponsePositive);
sigFAIAllocResNega = registerSignal(SIG_FAI_AllocateResponseNegative);
sigFAICreReq = registerSignal(SIG_FAI_CreateFlowRequest);
sigFAIDelReq = registerSignal(SIG_FAI_DeleteFlowRequest);
sigFAIDelRes = registerSignal(SIG_FAI_DeleteFlowResponse);
sigFAICreResNega = registerSignal(SIG_FAI_CreateFlowResponseNegative);
sigFAICreResPosi = registerSignal(SIG_FAI_CreateFlowResponsePositive);
//Signals that module processes
// AllocationRequest
this->lisAllocReq = new LisFAIAllocReq(this);
catcher3->subscribe(SIG_toFAI_AllocateRequest, this->lisAllocReq);
// AllocationRespNegative
this->lisAllocResNega = new LisFAIAllocResNega(this);
catcher3->subscribe(SIG_toFAI_AllocateResponseNegative, this->lisAllocResNega);
// AllocationRespPositive
this->lisAllocResPosi = new LisFAIAllocResPosi(this);
catcher3->subscribe(SIG_AERIBD_AllocateResponsePositive, this->lisAllocResPosi);
// // CreateFlowRequest
// this->lisCreReq = new LisFAICreReq(this);
// catcher->subscribe(SIG_FAI_CreateFlowRequest, this->lisCreReq);
// CreateFlowResponseNegative
this->lisCreResNega = new LisFAICreResNega(this);
catcher3->subscribe(SIG_RIBD_CreateFlowResponseNegative, this->lisCreResNega);
// CreateFlowResponsePositive
this->lisCreResPosi = new LisFAICreResPosi(this);
catcher3->subscribe(SIG_RIBD_CreateFlowResponsePositive, this->lisCreResPosi);
// CreateFlowResponseNegative
lisCreResNegaNmO = new LisFAICreResNegaNminusOne(this);
catcher3->subscribe(SIG_RIBD_CreateFlowResponseNegative, lisCreResNegaNmO);
// CreateFlowResponsePositive
lisCreResPosiNmO = new LisFAICreResPosiNminusOne(this);
catcher3->subscribe(SIG_RIBD_CreateFlowResponsePositive, lisCreResPosiNmO);
//DeleteRequestFlow
lisDelReq = new LisFAIDelReq(this);
catcher2->subscribe(SIG_RIBD_DeleteRequestFlow, lisDelReq);
//DeleteResponseFlow
lisDelRes = new LisFAIDelRes(this);
catcher2->subscribe(SIG_RIBD_DeleteResponseFlow, lisDelRes);
}
void FAI::signalizeCreateFlowRequest() {
emit(this->sigFAICreReq, FlowObject);
}
void FAI::signalizeDeleteFlowResponse() {
emit(this->sigFAIDelRes, this->FlowObject);
}
void FAI::signalizeCreateFlowResponsePositive() {
emit(this->sigFAICreResPosi, FlowObject);
}
void FAI::signalizeCreateFlowResponseNegative() {
emit(this->sigFAICreResNega, FlowObject);
}
void FAI::signalizeAllocationRequestFromFai() {
emit(sigFAIAllocReq, FlowObject);
}
void FAI::signalizeDeleteFlowRequest() {
emit(this->sigFAIDelReq, this->FlowObject);
}
void FAI::signalizeAllocateResponseNegative() {
emit(this->sigFAIAllocResNega, this->FlowObject);
}
void FAI::signalizeDeallocateRequestFromFai() {
emit(this->sigFAIDeallocReq, this->FlowObject);
}
void FAI::signalizeDeallocateResponseFromFai() {
emit(this->sigFAIDeallocRes, this->FlowObject);
}
void FAI::signalizeAllocateResponsePositive() {
emit(this->sigFAIAllocResPosi, this->FlowObject);
}
void FAI::createNorthGates() {
std::ostringstream nameIpcDown;
nameIpcDown << GATE_NORTHIO_ << portId;
cModule* IPCModule = FaModule->getParentModule()->getParentModule();
IPCModule->addGate(nameIpcDown.str().c_str(), cGate::INOUT, false);
}
void FAI::receiveCreateFlowResponsePositiveFromNminusOne() {
//Schedule M_Create(Flow)
this->signalizeCreateFlowRequest();
}
void FAI::receiveCreateFlowResponseNegativeFromNminusOne() {
this->signalizeAllocateResponseNegative();
}