Parent: [180d2e] (diff)

Child: [569601] (diff)

Download this file

RAListeners.cc    127 lines (109 with data), 3.2 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
//
// Copyright Š 2014 - 2015 PRISTINE Consortium (http://ict-pristine.eu)
//
// 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 <RAListeners.h>
RAListeners::RAListeners(RABase* nra) : ra(nra)
{
}
RAListeners::~RAListeners()
{
ra = NULL;
}
void LisRACreFlow::receiveSignal(cComponent* src, simsignal_t id, cObject* obj)
{
Flow* flow = dynamic_cast<Flow*>(obj);
if (flow)
{
ra->createNM1FlowWithoutAllocate(flow);
}
else
{
EV << "RAListener received unknown object!" << endl;
}
}
void LisRAAllocResPos::receiveSignal(cComponent* src, simsignal_t id, cObject* obj)
{
Flow* flow = dynamic_cast<Flow*>(obj);
if (flow && !flow->isDdtFlag())
{
ra->postNFlowAllocation(flow);
}
else
{
EV << "RAListener received unknown object!" << endl;
}
}
void LisRACreAllocResPos::receiveSignal(cComponent* src, simsignal_t id, cObject* obj)
{
Flow* flow = dynamic_cast<Flow*>(obj);
if (flow && !flow->isDdtFlag())
{
ra->postNFlowAllocation(flow);
}
else
{
EV << "RAListener received unknown object!" << endl;
}
}
void LisRACreResPosi::receiveSignal(cComponent* src, simsignal_t id, cObject* obj)
{
Flow* flow = dynamic_cast<Flow*>(obj);
const APN& dstApn = flow->getDstApni().getApn();
unsigned short qosId = flow->getConId().getQoSId();
NM1FlowTableItem* item = ra->getFlowTable()->findFlowByDstApni(dstApn.getName(), qosId);
if (item != NULL)
{
ra->postNM1FlowAllocation(item);
}
else
{
return;
}
}
void LisEFCPStopSending::receiveSignal(cComponent* src, simsignal_t id, cObject* obj)
{
Flow* flow = dynamic_cast<Flow*>(obj);
NM1FlowTableItem* item = ra->getFlowTable()->lookup(flow);
if (item)
{
ra->blockNM1PortOutput(item);
}
}
void LisEFCPStartSending::receiveSignal(cComponent* src, simsignal_t id, cObject* obj)
{
Flow* flow = dynamic_cast<Flow*>(obj);
NM1FlowTableItem* item = ra->getFlowTable()->lookup(flow);
if (item)
{
ra->unblockNM1PortOutput(item);
}
}
void LisRMTSlowdownRequest::receiveSignal(cComponent* src, simsignal_t id, cObject* obj)
{
cPacket* pdu = dynamic_cast<cPacket*>(obj);
if (pdu)
{
ra->signalizeSlowdownRequestToRIBd(pdu);
}
else
{
EV << "RAListener received unknown object!" << endl;
}
}
void LisRIBCongNotif::receiveSignal(cComponent* src, simsignal_t id, cObject* obj)
{
ra->signalizeSlowdownRequestToEFCP(obj);
}