/* * 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.cap.service.gprs.primitive; 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.cap.api.CAPException; import org.mobicents.protocols.ss7.cap.api.CAPParsingComponentException; import org.mobicents.protocols.ss7.cap.api.CAPParsingComponentExceptionReason; import org.mobicents.protocols.ss7.cap.api.service.gprs.primitive.EndUserAddress; import org.mobicents.protocols.ss7.cap.api.service.gprs.primitive.PDPAddress; import org.mobicents.protocols.ss7.cap.api.service.gprs.primitive.PDPTypeNumber; import org.mobicents.protocols.ss7.cap.api.service.gprs.primitive.PDPTypeOrganization; import org.mobicents.protocols.ss7.cap.primitives.SequenceBase; /** * * @author Lasith Waruna Perera * */ public class EndUserAddressImpl extends SequenceBase implements EndUserAddress { public static final int _ID_pdpTypeOrganization = 0; public static final int _ID_pdpTypeNumber = 1; public static final int _ID_pdpAddress = 2; private PDPTypeOrganization pdpTypeOrganization; private PDPTypeNumber pdpTypeNumber; private PDPAddress pdpAddress; public EndUserAddressImpl() { super("EndUserAddress"); } public EndUserAddressImpl(PDPTypeOrganization pdpTypeOrganization, PDPTypeNumber pdpTypeNumber, PDPAddress pdpAddress) { super("EndUserAddress"); this.pdpTypeOrganization = pdpTypeOrganization; this.pdpTypeNumber = pdpTypeNumber; this.pdpAddress = pdpAddress; } @Override public PDPTypeOrganization getPDPTypeOrganization() { return this.pdpTypeOrganization; } @Override public PDPTypeNumber getPDPTypeNumber() { return this.pdpTypeNumber; } @Override public PDPAddress getPDPAddress() { return this.pdpAddress; } @Override protected void _decode(AsnInputStream asnIS, int length) throws CAPParsingComponentException, IOException, AsnException { this.pdpTypeOrganization = null; this.pdpTypeNumber = null; this.pdpAddress = null; AsnInputStream ais = asnIS.readSequenceStreamData(length); while (true) { if (ais.available() == 0) break; int tag = ais.readTag(); if (ais.getTagClass() == Tag.CLASS_CONTEXT_SPECIFIC) { switch (tag) { case _ID_pdpTypeOrganization: if (!ais.isTagPrimitive()) throw new CAPParsingComponentException("Error while decoding " + _PrimitiveName + ".pdpTypeOrganization: Parameter is primitive", CAPParsingComponentExceptionReason.MistypedParameter); this.pdpTypeOrganization = new PDPTypeOrganizationImpl(); ((PDPTypeOrganizationImpl) this.pdpTypeOrganization).decodeAll(ais); break; case _ID_pdpTypeNumber: if (!ais.isTagPrimitive()) throw new CAPParsingComponentException("Error while decoding " + _PrimitiveName + ".pdpTypeNumber: Parameter is primitive", CAPParsingComponentExceptionReason.MistypedParameter); this.pdpTypeNumber = new PDPTypeNumberImpl(); ((PDPTypeNumberImpl) this.pdpTypeNumber).decodeAll(ais); break; case _ID_pdpAddress: if (!ais.isTagPrimitive()) throw new CAPParsingComponentException("Error while decoding " + _PrimitiveName + ".pdpAddress: Parameter is primitive", CAPParsingComponentExceptionReason.MistypedParameter); this.pdpAddress = new PDPAddressImpl(); ((PDPAddressImpl) this.pdpAddress).decodeAll(ais); break; default: ais.advanceElement(); break; } } else { ais.advanceElement(); } } if (this.pdpTypeOrganization == null) throw new CAPParsingComponentException("Error while decoding " + _PrimitiveName + ": pdpTypeOrganization is mandatory but not found", CAPParsingComponentExceptionReason.MistypedParameter); if (this.pdpTypeNumber == null) throw new CAPParsingComponentException("Error while decoding " + _PrimitiveName + ": pdpTypeNumber is mandatory but not found", CAPParsingComponentExceptionReason.MistypedParameter); } @Override public void encodeData(AsnOutputStream asnOs) throws CAPException { if (this.pdpTypeOrganization == null) throw new CAPException("Error while encoding " + _PrimitiveName + ": pdpTypeOrganization must not be null"); if (this.pdpTypeNumber == null) throw new CAPException("Error while encoding " + _PrimitiveName + ": pdpTypeNumber must not be null"); ((PDPTypeOrganizationImpl) this.pdpTypeOrganization).encodeAll(asnOs, Tag.CLASS_CONTEXT_SPECIFIC, _ID_pdpTypeOrganization); ((PDPTypeNumberImpl) this.pdpTypeNumber).encodeAll(asnOs, Tag.CLASS_CONTEXT_SPECIFIC, _ID_pdpTypeNumber); if (this.pdpAddress != null) ((PDPAddressImpl) this.pdpAddress).encodeAll(asnOs, Tag.CLASS_CONTEXT_SPECIFIC, _ID_pdpAddress); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(_PrimitiveName + " ["); if (this.pdpTypeOrganization != null) { sb.append("pdpTypeOrganization="); sb.append(this.pdpTypeOrganization.toString()); sb.append(", "); } if (this.pdpTypeNumber != null) { sb.append("pdpTypeNumber="); sb.append(this.pdpTypeNumber.toString()); sb.append(", "); } if (this.pdpAddress != null) { sb.append("pdpAddress="); sb.append(this.pdpAddress.toString()); } sb.append("]"); return sb.toString(); } }