/protocols/ss7/map/map-impl/src/main/java/org/mobicents/protocols/ss7/map/service/lsm/SubscriberLocationReportResponseIndicationImpl.java
http://mobicents.googlecode.com/ · Java · 308 lines · 164 code · 30 blank · 114 comment · 21 complexity · 1d07ab4212dc5b6afb31c61649d1445e MD5 · raw file
- /*
- * JBoss, Home of Professional Open Source
- * Copyright 2011, Red Hat, Inc. 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.map.service.lsm;
- 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.map.api.MAPException;
- import org.mobicents.protocols.ss7.map.api.MAPMessageType;
- import org.mobicents.protocols.ss7.map.api.MAPOperationCode;
- import org.mobicents.protocols.ss7.map.api.MAPParsingComponentException;
- import org.mobicents.protocols.ss7.map.api.MAPParsingComponentExceptionReason;
- import org.mobicents.protocols.ss7.map.api.primitives.AddressString;
- import org.mobicents.protocols.ss7.map.api.primitives.ISDNAddressString;
- import org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer;
- import org.mobicents.protocols.ss7.map.api.service.lsm.SubscriberLocationReportResponseIndication;
- import org.mobicents.protocols.ss7.map.primitives.ISDNAddressStringImpl;
- import org.mobicents.protocols.ss7.map.primitives.MAPExtensionContainerImpl;
- /**
- * TODO : Add unit test
- *
- * @author amit bhayani
- *
- */
- public class SubscriberLocationReportResponseIndicationImpl extends LsmMessageImpl implements SubscriberLocationReportResponseIndication {
- private static final int _TAG_NA_ESRK = 0;
- private static final int _TAG_NA_ESRD = 1;
- private ISDNAddressString naEsrd = null;
- private ISDNAddressString naEsrk = null;
- private MAPExtensionContainer extensionContainer = null;
- /**
- *
- */
- public SubscriberLocationReportResponseIndicationImpl() {
- super();
- }
- /**
- * @param naEsrd
- * @param naEsrk
- * @param extensionContainer
- */
- public SubscriberLocationReportResponseIndicationImpl(ISDNAddressString naEsrd, ISDNAddressString naEsrk, MAPExtensionContainer extensionContainer) {
- super();
- this.naEsrd = naEsrd;
- this.naEsrk = naEsrk;
- this.extensionContainer = extensionContainer;
- }
- @Override
- public MAPMessageType getMessageType() {
- return MAPMessageType.subscriberLocationReport_Response;
- }
- @Override
- public int getOperationCode() {
- return MAPOperationCode.subscriberLocationReport;
- }
- /*
- * (non-Javadoc)
- *
- * @see org.mobicents.protocols.ss7.map.api.service.lsm.
- * SubscriberLocationReportResponseIndication#getExtensionContainer()
- */
- @Override
- public MAPExtensionContainer getExtensionContainer() {
- return this.extensionContainer;
- }
- /*
- * (non-Javadoc)
- *
- * @see org.mobicents.protocols.ss7.map.api.service.lsm.
- * SubscriberLocationReportResponseIndication#getNaESRK()
- */
- @Override
- public AddressString getNaESRK() {
- return this.naEsrk;
- }
- /*
- * (non-Javadoc)
- *
- * @see org.mobicents.protocols.ss7.map.api.service.lsm.
- * SubscriberLocationReportResponseIndication#getNaESRD()
- */
- @Override
- public AddressString getNaESRD() {
- return this.naEsrd;
- }
- /*
- * (non-Javadoc)
- *
- * @see
- * org.mobicents.protocols.ss7.map.api.primitives.MAPAsnPrimitive#getTag()
- */
- @Override
- public int getTag() throws MAPException {
- return Tag.SEQUENCE;
- }
- /*
- * (non-Javadoc)
- *
- * @see
- * org.mobicents.protocols.ss7.map.api.primitives.MAPAsnPrimitive#getTagClass
- * ()
- */
- @Override
- public int getTagClass() {
- return Tag.CLASS_UNIVERSAL;
- }
- /*
- * (non-Javadoc)
- *
- * @see
- * org.mobicents.protocols.ss7.map.api.primitives.MAPAsnPrimitive#getIsPrimitive
- * ()
- */
- @Override
- public boolean getIsPrimitive() {
- return false;
- }
- /*
- * (non-Javadoc)
- *
- * @see
- * org.mobicents.protocols.ss7.map.api.primitives.MAPAsnPrimitive#decodeAll
- * (org.mobicents.protocols.asn.AsnInputStream)
- */
- @Override
- public void decodeAll(AsnInputStream ansIS) throws MAPParsingComponentException {
- try {
- int length = ansIS.readLength();
- this._decode(ansIS, length);
- } catch (IOException e) {
- throw new MAPParsingComponentException("IOException when decoding ProvideSubscriberLocationRequestIndication: ", e,
- MAPParsingComponentExceptionReason.MistypedParameter);
- } catch (AsnException e) {
- throw new MAPParsingComponentException("AsnException when decoding ProvideSubscriberLocationRequestIndication: ", e,
- MAPParsingComponentExceptionReason.MistypedParameter);
- }
- }
- /*
- * (non-Javadoc)
- *
- * @see
- * org.mobicents.protocols.ss7.map.api.primitives.MAPAsnPrimitive#decodeData
- * (org.mobicents.protocols.asn.AsnInputStream, int)
- */
- @Override
- public void decodeData(AsnInputStream ansIS, int length) throws MAPParsingComponentException {
- try {
- this._decode(ansIS, length);
- } catch (IOException e) {
- throw new MAPParsingComponentException("IOException when decoding ProvideSubscriberLocationRequestIndication: ", e,
- MAPParsingComponentExceptionReason.MistypedParameter);
- } catch (AsnException e) {
- throw new MAPParsingComponentException("AsnException when decoding ProvideSubscriberLocationRequestIndication: ", e,
- MAPParsingComponentExceptionReason.MistypedParameter);
- }
- }
- private void _decode(AsnInputStream ansIS, int length) throws MAPParsingComponentException, IOException, AsnException {
- AsnInputStream ais = ansIS.readSequenceStreamData(length);
- while (true) {
- if (ais.available() == 0)
- break;
- int tag = ais.readTag();
- if (ais.getTagClass() == Tag.CLASS_UNIVERSAL) {
- switch (tag) {
- case Tag.SEQUENCE:
- // ExtensionContainer
- if (ais.isTagPrimitive())
- throw new MAPParsingComponentException(
- "Error while decoding ReportSMDeliveryStatusResponse: Parameter extensionContainer is primitive",
- MAPParsingComponentExceptionReason.MistypedParameter);
- this.extensionContainer = new MAPExtensionContainerImpl();
- ((MAPExtensionContainerImpl)this.extensionContainer).decodeAll(ais);
- break;
- default:
- ais.advanceElement();
- break;
- }// switch
- } else {
- switch (tag) {
- case _TAG_NA_ESRK:
- // na-ESRK [0] ISDN-AddressString OPTIONAL
- if (ais.getTagClass() != Tag.CLASS_CONTEXT_SPECIFIC || !ais.isTagPrimitive()) {
- throw new MAPParsingComponentException(
- "Error while decoding SubscriberLocationReportResponseIndication: Parameter [na-ESRK [0] ISDN-AddressString] bad tag class or not primitive or not Sequence",
- MAPParsingComponentExceptionReason.MistypedParameter);
- }
- this.naEsrk = new ISDNAddressStringImpl();
- ((ISDNAddressStringImpl)this.naEsrk).decodeAll(ais);
- break;
- case _TAG_NA_ESRD:
- // na-ESRD [1] ISDN-AddressString OPTIONAL,
- if (ais.getTagClass() != Tag.CLASS_CONTEXT_SPECIFIC || !ais.isTagPrimitive()) {
- throw new MAPParsingComponentException(
- "Error while decoding SubscriberLocationReportResponseIndication: Parameter [na-ESRD [1] ISDN-AddressString] bad tag class or not primitive or not Sequence",
- MAPParsingComponentExceptionReason.MistypedParameter);
- }
- this.naEsrd = new ISDNAddressStringImpl();
- ((ISDNAddressStringImpl)this.naEsrd).decodeAll(ais);
- break;
- default:
- ais.advanceElement();
- break;
- }
- }
- }// while
- }
- /*
- * (non-Javadoc)
- *
- * @see
- * org.mobicents.protocols.ss7.map.api.primitives.MAPAsnPrimitive#encodeAll
- * (org.mobicents.protocols.asn.AsnOutputStream)
- */
- @Override
- public void encodeAll(AsnOutputStream asnOs) throws MAPException {
- this.encodeAll(asnOs, Tag.CLASS_UNIVERSAL, Tag.SEQUENCE);
- }
- /*
- * (non-Javadoc)
- *
- * @see
- * org.mobicents.protocols.ss7.map.api.primitives.MAPAsnPrimitive#encodeAll
- * (org.mobicents.protocols.asn.AsnOutputStream, int, int)
- */
- @Override
- public void encodeAll(AsnOutputStream asnOs, int tagClass, int tag) throws MAPException {
- try {
- asnOs.writeTag(tagClass, false, tag);
- int pos = asnOs.StartContentDefiniteLength();
- this.encodeData(asnOs);
- asnOs.FinalizeContent(pos);
- } catch (AsnException e) {
- throw new MAPException("AsnException when encoding ReportSMDeliveryStatusResponse: " + e.getMessage(), e);
- }
- }
- /*
- * (non-Javadoc)
- *
- * @see
- * org.mobicents.protocols.ss7.map.api.primitives.MAPAsnPrimitive#encodeData
- * (org.mobicents.protocols.asn.AsnOutputStream)
- */
- @Override
- public void encodeData(AsnOutputStream asnOs) throws MAPException {
- if (this.extensionContainer != null) {
- // extensionContainer ExtensionContainer OPTIONAL
- ((MAPExtensionContainerImpl)this.extensionContainer).encodeAll(asnOs);
- }
- if (this.naEsrk != null) {
- // na-ESRK [0] ISDN-AddressString OPTIONAL
- ((ISDNAddressStringImpl)this.naEsrk).encodeAll(asnOs, Tag.CLASS_CONTEXT_SPECIFIC, _TAG_NA_ESRK);
- }
- if (this.naEsrd != null) {
- // na-ESRD [1] ISDN-AddressString OPTIONAL ,
- ((ISDNAddressStringImpl)this.naEsrd).encodeAll(asnOs, Tag.CLASS_CONTEXT_SPECIFIC, _TAG_NA_ESRD);
- }
- }
- }