Switch to side-by-side view

--- a/src/DAF/IRM/IRMListeners.cc
+++ b/src/DAF/IRM/IRMListeners.cc
@@ -21,40 +21,31 @@
 }
 
 IRMListeners::~IRMListeners() {
-
+    irm = NULL;
 }
 
-void LisIRMAllocResNegaFa::receiveSignal(cComponent* src, simsignal_t id,
-        cObject* obj) {
-    EV << "AllocationResponseNegative{fromFA} initiated by " << src->getFullPath() << " and processed by " << irm->getFullPath() << endl;
-    this->irm->receiveAllocationResponseNegative(obj);
+void LisIRMAllocReq::receiveSignal(cComponent* src, simsignal_t id, cObject* obj) {
+    EV << "AllocationRequest initiated by " << src->getFullPath()
+       << " and processed by " << irm->getFullPath() << endl;
+    Flow* flow = dynamic_cast<Flow*>(obj);
+
+    if (flow) {
+       if (irm->getConTable()->findEntryByFlow(flow))
+           irm->receiveAllocationRequestFromAe(flow);
+    }
+    else
+       EV << "IRMListener received unknown object!" << endl;
 }
 
-void LisIRMAllocReqFai::receiveSignal(cComponent* src, simsignal_t id,
-        cObject* obj) {
-    EV << "AllocationRequest{fromFAI} initiated by " << src->getFullPath() << " and processed by " << irm->getFullPath() << endl;
-    this->irm->receiveAllocationRequestFromFAI(obj);
+void LisIRMDeallocReq::receiveSignal(cComponent* src, simsignal_t id, cObject* obj) {
+    EV << "DeallocationRequest initiated by " << src->getFullPath()
+       << " and processed by " << irm->getFullPath() << endl;
+    Flow* flow = dynamic_cast<Flow*>(obj);
+
+    if (flow) {
+       if (irm->getConTable()->findEntryByFlow(flow))
+           irm->receiveDeallocationRequestFromAe(flow);
+    }
+    else
+       EV << "IRMListener received unknown object!" << endl;
 }
-
-void LisIRMAllocResNegaFai::receiveSignal(cComponent* src, simsignal_t id,
-        cObject* obj) {
-    EV << "AllocationResponseNegative{fromFAI} initiated by " << src->getFullPath() << " and processed by " << irm->getFullPath() << endl;
-    this->irm->receiveAllocationResponseNegative(obj);
-}
-
-void LisIRMAllocReq::receiveSignal(cComponent* src, simsignal_t id,
-        cObject* obj) {
-    EV << "AllocationRequest initiated by " << src->getFullPath() << " and processed by " << irm->getFullPath() << endl;
-    irm->receiveAllocationRequest(obj);
-}
-
-void LisIRMAllocResNegaAppNotFound::receiveSignal(cComponent* src,
-        simsignal_t id, cObject* obj) {
-    EV << "AllocationResponseNegative{AppNotFound} initiated by " << src->getFullPath() << " and processed by " << irm->getFullPath() << endl;
-}
-
-void LisIRMDeallocReq::receiveSignal(cComponent* src, simsignal_t id,
-        cObject* obj) {
-    EV << "AllocationRequest initiated by " << src->getFullPath() << " and processed by " << irm->getFullPath() << endl;
-    irm->receiveDeallocationRequest(obj);
-}