/* * 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.tcap.asn; import java.io.IOException; import org.mobicents.protocols.asn.AsnException; import org.mobicents.protocols.asn.AsnInputStream; import org.mobicents.protocols.asn.AsnOutputStream; import org.mobicents.protocols.asn.Tag; import org.mobicents.protocols.ss7.tcap.asn.comp.PAbortCauseType; /** * @author baranowb * @author sergey vetyutnev * */ public class DialogResponseAPDUImpl implements DialogResponseAPDU { // mandatory private ApplicationContextName acn; private Result result; private ResultSourceDiagnostic diagnostic; private ProtocolVersion protocolVersion = new ProtocolVersionImpl(); private boolean doNotSendProtocolVersion = false; public DialogResponseAPDUImpl() { } public void setDoNotSendProtocolVersion(boolean val) { doNotSendProtocolVersion = val; } // optional private UserInformation ui; /* * (non-Javadoc) * * @seeorg.mobicents.protocols.ss7.tcap.asn.DialogRequestAPDU# getApplicationContextName() */ public ApplicationContextName getApplicationContextName() { return acn; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.tcap.asn.DialogRequestAPDU#getProtocolVersion () */ public ProtocolVersion getProtocolVersion() { return protocolVersion; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.tcap.asn.DialogRequestAPDU#getUserInformation () */ public UserInformation getUserInformation() { return this.ui; } /* * (non-Javadoc) * * @seeorg.mobicents.protocols.ss7.tcap.asn.DialogRequestAPDU# setApplicationContextName * (org.mobicents.protocols.ss7.tcap.asn.ApplicationContextName) */ public void setApplicationContextName(ApplicationContextName acn) { this.acn = acn; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.tcap.asn.DialogRequestAPDU#setUserInformation * (org.mobicents.protocols.ss7.tcap.asn.UserInformation[]) */ public void setUserInformation(UserInformation ui) { this.ui = ui; } public Result getResult() { return this.result; } public ResultSourceDiagnostic getResultSourceDiagnostic() { return this.diagnostic; } public void setResult(Result acn) { this.result = acn; } public void setResultSourceDiagnostic(ResultSourceDiagnostic acn) { this.diagnostic = acn; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.tcap.asn.DialogAPDU#getType() */ public DialogAPDUType getType() { return DialogAPDUType.Response; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.tcap.asn.DialogAPDU#isUniDirectional() */ public boolean isUniDirectional() { return false; } public String toString() { return "DialogResponseAPDU[acn=" + acn + ", result=" + result + ", diagnostic=" + diagnostic + ", ui=" + ui + "]"; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.tcap.asn.Encodable#decode(org.mobicents.protocols .asn.AsnInputStream) */ public void decode(AsnInputStream ais) throws ParseException { try { AsnInputStream localAis = ais.readSequenceStream(); int tag = localAis.readTag(); // optional protocol version if (tag == ProtocolVersion._TAG_PROTOCOL_VERSION && localAis.getTagClass() == Tag.CLASS_CONTEXT_SPECIFIC) { // we have protocol version on a // decode it this.protocolVersion = TcapFactory.createProtocolVersion(localAis); tag = localAis.readTag(); } // mandatory if (tag != ApplicationContextName._TAG || localAis.getTagClass() != Tag.CLASS_CONTEXT_SPECIFIC) throw new ParseException(PAbortCauseType.IncorrectTxPortion, null, "Error decoding DialogResponseAPDU.application-context-name: bad tag or tagClass, found tag=" + tag + ", tagClass=" + localAis.getTagClass()); this.acn = TcapFactory.createApplicationContextName(localAis); tag = localAis.readTag(); if (tag != Result._TAG) { throw new ParseException(PAbortCauseType.IncorrectTxPortion, null, "Expected Result tag, found: " + tag); } this.result = TcapFactory.createResult(localAis); tag = localAis.readTag(); if (tag != ResultSourceDiagnostic._TAG) { throw new ParseException(PAbortCauseType.IncorrectTxPortion, null, "Expected Result Source Diagnotstic tag, found: " + tag); } this.diagnostic = TcapFactory.createResultSourceDiagnostic(localAis); // optional sequence. if (localAis.available() > 0) { tag = localAis.readTag(); if (tag != UserInformation._TAG || localAis.getTagClass() != Tag.CLASS_CONTEXT_SPECIFIC) throw new ParseException(PAbortCauseType.IncorrectTxPortion, null, "Error decoding DialogResponseAPDU.user-information: bad tag or tagClass, found tag=" + tag + ", tagClass=" + localAis.getTagClass()); this.ui = TcapFactory.createUserInformation(localAis); } } catch (IOException e) { throw new ParseException(PAbortCauseType.BadlyFormattedTxPortion, null, "IOException while decoding DialogResponseAPDU: " + e.getMessage(), e); } catch (AsnException e) { throw new ParseException(PAbortCauseType.BadlyFormattedTxPortion, null, "AsnException while decoding DialogResponseAPDU: " + e.getMessage(), e); } } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.tcap.asn.Encodable#encode(org.mobicents.protocols .asn.AsnOutputStream) */ public void encode(AsnOutputStream aos) throws EncodeException { if (acn == null) throw new EncodeException("Error encoding DialogResponseAPDU: Application Context Name must not be null"); if (result == null) throw new EncodeException("Error encoding DialogResponseAPDU: Result must not be null"); if (diagnostic == null) throw new EncodeException("Error encoding DialogResponseAPDU: Result-source-diagnostic must not be null"); try { aos.writeTag(Tag.CLASS_APPLICATION, false, _TAG_RESPONSE); int pos = aos.StartContentDefiniteLength(); if (!doNotSendProtocolVersion) this.protocolVersion.encode(aos); this.acn.encode(aos); this.result.encode(aos); this.diagnostic.encode(aos); if (ui != null) ui.encode(aos); aos.FinalizeContent(pos); } catch (AsnException e) { throw new EncodeException("AsnException while encoding DialogResponseAPDU: " + e.getMessage(), e); } } }