/* * TeleStax, Open Source Cloud Communications Copyright 2012. * and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This 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 2.1 of * the License, or (at your option) any later version. * * This software 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 software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.mobicents.protocols.ss7.m3ua.impl; import org.apache.log4j.Logger; import org.mobicents.protocols.ss7.m3ua.impl.fsm.FSM; import org.mobicents.protocols.ss7.m3ua.message.transfer.PayloadData; import org.mobicents.protocols.ss7.m3ua.parameter.ErrorCode; import org.mobicents.protocols.ss7.m3ua.parameter.ProtocolData; import org.mobicents.protocols.ss7.m3ua.parameter.RoutingContext; import org.mobicents.protocols.ss7.mtp.Mtp3TransferPrimitive; import org.mobicents.protocols.ss7.mtp.Mtp3TransferPrimitiveFactory; /** * * @author amit bhayani * */ public class TransferMessageHandler extends MessageHandler { private static final Logger logger = Logger.getLogger(TransferMessageHandler.class); private Mtp3TransferPrimitiveFactory mtp3TransferPrimitiveFactory = null; public TransferMessageHandler(AspFactoryImpl aspFactoryImpl) { super(aspFactoryImpl); } protected void setM3UAManagement(M3UAManagementImpl m3uaManagement) { this.mtp3TransferPrimitiveFactory = m3uaManagement.getMtp3TransferPrimitiveFactory(); } public void handlePayload(PayloadData payload) { RoutingContext rc = payload.getRoutingContext(); if (rc == null) { AspImpl aspImpl = this.getAspForNullRc(); if (aspImpl == null) { // Error condition logger.error(String .format("Rx : PayloadData=%s with null RC for Aspfactory=%s. But no ASP configured for null RC. Sending back Error", payload, this.aspFactoryImpl.getName())); return; } FSM fsm = getAspFSMForRxPayload(aspImpl); AspState aspState = AspState.getState(fsm.getState().getName()); if (aspState == AspState.ACTIVE) { ProtocolData protocolData = payload.getData(); Mtp3TransferPrimitive mtp3TransferPrimitive = this.mtp3TransferPrimitiveFactory.createMtp3TransferPrimitive( protocolData.getSI(), protocolData.getNI(), protocolData.getMP(), protocolData.getOpc(), protocolData.getDpc(), protocolData.getSLS(), protocolData.getData()); ((AsImpl) aspImpl.getAs()).getM3UAManagement().sendTransferMessageToLocalUser(mtp3TransferPrimitive, payload.getData().getSLS()); } else { logger.error(String.format( "Rx : PayloadData for Aspfactory=%s with null RoutingContext. But ASP State=%s. Message=%s", this.aspFactoryImpl.getName(), aspState, payload)); } } else { // Payload is always for single AS long rcl = payload.getRoutingContext().getRoutingContexts()[0]; AspImpl aspImpl = this.aspFactoryImpl.getAsp(rcl); if (aspImpl == null) { // this is error. Send back error RoutingContext rcObj = this.aspFactoryImpl.parameterFactory.createRoutingContext(new long[] { rcl }); ErrorCode errorCodeObj = this.aspFactoryImpl.parameterFactory .createErrorCode(ErrorCode.Invalid_Routing_Context); sendError(rcObj, errorCodeObj); logger.error(String.format( "Rx : Payload=%s with RC=%d for Aspfactory=%s. But no ASP configured for this RC. Sending back Error", payload, rcl, this.aspFactoryImpl.getName())); return; } FSM fsm = getAspFSMForRxPayload(aspImpl); AspState aspState = AspState.getState(fsm.getState().getName()); if (aspState == AspState.ACTIVE) { ProtocolData protocolData = payload.getData(); Mtp3TransferPrimitive mtp3TransferPrimitive = this.mtp3TransferPrimitiveFactory.createMtp3TransferPrimitive( protocolData.getSI(), protocolData.getNI(), protocolData.getMP(), protocolData.getOpc(), protocolData.getDpc(), protocolData.getSLS(), protocolData.getData()); ((AsImpl) aspImpl.getAs()).getM3UAManagement().sendTransferMessageToLocalUser(mtp3TransferPrimitive, payload.getData().getSLS()); } else { logger.error(String.format( "Rx : PayloadData for Aspfactory=%s for RoutingContext=%s. But ASP State=%s. Message=%s", this.aspFactoryImpl.getName(), rc, aspState, payload)); } } } }