/* * 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.MAPParsingComponentException; import org.mobicents.protocols.ss7.map.api.MAPParsingComponentExceptionReason; import org.mobicents.protocols.ss7.map.api.primitives.DiameterIdentity; import org.mobicents.protocols.ss7.map.api.primitives.ISDNAddressString; import org.mobicents.protocols.ss7.map.api.primitives.LMSI; import org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer; import org.mobicents.protocols.ss7.map.api.service.lsm.AdditionalNumber; import org.mobicents.protocols.ss7.map.api.service.lsm.LCSLocationInfo; import org.mobicents.protocols.ss7.map.api.service.mobility.locationManagement.SupportedLCSCapabilitySets; import org.mobicents.protocols.ss7.map.primitives.DiameterIdentityImpl; import org.mobicents.protocols.ss7.map.primitives.ISDNAddressStringImpl; import org.mobicents.protocols.ss7.map.primitives.LMSIImpl; import org.mobicents.protocols.ss7.map.primitives.MAPExtensionContainerImpl; import org.mobicents.protocols.ss7.map.primitives.SequenceBase; import org.mobicents.protocols.ss7.map.service.mobility.locationManagement.SupportedLCSCapabilitySetsImpl; /** * * @author amit bhayani * */ public class LCSLocationInfoImpl extends SequenceBase implements LCSLocationInfo { private static final int _TAG_LMSI = 0; private static final int _TAG_EXTENSION_CONTAINER = 1; private static final int _TAG_GPRS_NODE_IND = 2; private static final int _TAG_ADDITIONAL_NUMBER = 3; private static final int _TAG_SUPPORTED_LCS_CAPBILITY_SET = 4; private static final int _TAG_ADDITIONAL_LCS_CAPBILITY_SET = 5; private static final int _TAG_mme_Name = 6; private static final int _TAG_aaa_Server_Name = 8; private ISDNAddressString networkNodeNumber; private LMSI lmsi; private MAPExtensionContainer extensionContainer; private boolean gprsNodeIndicator; private AdditionalNumber additionalNumber; private SupportedLCSCapabilitySets supportedLCSCapabilitySets; private SupportedLCSCapabilitySets additionalLCSCapabilitySets; private DiameterIdentity mmeName; private DiameterIdentity aaaServerName; /** * */ public LCSLocationInfoImpl() { super("LCSLocationInfo"); } /** * @param networkNodeNumber * @param lmsi * @param extensionContainer * @param gprsNodeIndicator * @param additionalNumber * @param supportedLCSCapabilitySets * @param additionalLCSCapabilitySets */ public LCSLocationInfoImpl(ISDNAddressString networkNodeNumber, LMSI lmsi, MAPExtensionContainer extensionContainer, boolean gprsNodeIndicator, AdditionalNumber additionalNumber, SupportedLCSCapabilitySets supportedLCSCapabilitySets, SupportedLCSCapabilitySets additionalLCSCapabilitySets, DiameterIdentity mmeName, DiameterIdentity aaaServerName) { super("LCSLocationInfo"); this.networkNodeNumber = networkNodeNumber; this.lmsi = lmsi; this.extensionContainer = extensionContainer; this.gprsNodeIndicator = gprsNodeIndicator; this.additionalNumber = additionalNumber; this.supportedLCSCapabilitySets = supportedLCSCapabilitySets; this.additionalLCSCapabilitySets = additionalLCSCapabilitySets; this.mmeName = mmeName; this.aaaServerName = aaaServerName; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.map.api.service.lsm.LCSLocationInfo# getNetworkNodeNumber() */ public ISDNAddressString getNetworkNodeNumber() { return this.networkNodeNumber; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.map.api.service.lsm.LCSLocationInfo#getLMSI() */ public LMSI getLMSI() { return this.lmsi; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.map.api.service.lsm.LCSLocationInfo# getExtensionContainer() */ public MAPExtensionContainer getExtensionContainer() { return this.extensionContainer; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.map.api.service.lsm.LCSLocationInfo# getGprsNodeIndicator() */ public boolean getGprsNodeIndicator() { return this.gprsNodeIndicator; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.map.api.service.lsm.LCSLocationInfo# getAdditionalNumber() */ public AdditionalNumber getAdditionalNumber() { return this.additionalNumber; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.map.api.service.lsm.LCSLocationInfo# getSupportedLCSCapabilitySets() */ public SupportedLCSCapabilitySets getSupportedLCSCapabilitySets() { return this.supportedLCSCapabilitySets; } /* * (non-Javadoc) * * @see org.mobicents.protocols.ss7.map.api.service.lsm.LCSLocationInfo# getadditionalLCSCapabilitySets() */ public SupportedLCSCapabilitySets getAdditionalLCSCapabilitySets() { return this.additionalLCSCapabilitySets; } public DiameterIdentity getMmeName() { return mmeName; } public DiameterIdentity getAaaServerName() { return aaaServerName; } protected void _decode(AsnInputStream asnIS, int length) throws MAPParsingComponentException, IOException, AsnException { this.networkNodeNumber = null; this.lmsi = null; this.extensionContainer = null; this.gprsNodeIndicator = false; this.additionalNumber = null; this.supportedLCSCapabilitySets = null; this.additionalLCSCapabilitySets = null; this.mmeName = null; this.aaaServerName = null; AsnInputStream ais = asnIS.readSequenceStreamData(length); int tag = ais.readTag(); if (ais.getTagClass() != Tag.CLASS_UNIVERSAL || !ais.isTagPrimitive() || tag != Tag.STRING_OCTET) { throw new MAPParsingComponentException("Error while decoding " + _PrimitiveName + ": Parameter [networkNode-Number ISDN-AddressString] bad tag class, tag or not primitive", MAPParsingComponentExceptionReason.MistypedParameter); } this.networkNodeNumber = new ISDNAddressStringImpl(); ((ISDNAddressStringImpl) this.networkNodeNumber).decodeAll(ais); while (true) { if (ais.available() == 0) break; tag = ais.readTag(); if (ais.getTagClass() == Tag.CLASS_CONTEXT_SPECIFIC) { switch (tag) { case _TAG_LMSI: // lmsi [0] LMSI OPTIONAL, if (!ais.isTagPrimitive()) { throw new MAPParsingComponentException("Error while decoding " + _PrimitiveName + ": Parameter [lmsi [0] LMSI ] bad tag class, tag or not primitive", MAPParsingComponentExceptionReason.MistypedParameter); } this.lmsi = new LMSIImpl(); ((LMSIImpl) this.lmsi).decodeAll(ais); break; case _TAG_EXTENSION_CONTAINER: // extensionContainer [1] ExtensionContainer if (ais.isTagPrimitive()) { throw new MAPParsingComponentException("Error while decoding " + _PrimitiveName + ": Parameter [extensionContainer [1] ExtensionContainer ] is primitive", MAPParsingComponentExceptionReason.MistypedParameter); } this.extensionContainer = new MAPExtensionContainerImpl(); ((MAPExtensionContainerImpl) this.extensionContainer).decodeAll(ais); break; case _TAG_GPRS_NODE_IND: // gprsNodeIndicator [2] NULL if (!ais.isTagPrimitive()) { throw new MAPParsingComponentException("Error while decoding " + _PrimitiveName + ": Parameter [gprsNodeIndicator [2] NULL ] is not primitive", MAPParsingComponentExceptionReason.MistypedParameter); } ais.readNull(); this.gprsNodeIndicator = true; break; case _TAG_ADDITIONAL_NUMBER: // additional-Number [3] Additional-Number OPTIONAL if (ais.isTagPrimitive()) { throw new MAPParsingComponentException("Error while decoding " + _PrimitiveName + ": Parameter [additional-Number [3] Additional-Number] is primitive", MAPParsingComponentExceptionReason.MistypedParameter); } this.additionalNumber = new AdditionalNumberImpl(); AsnInputStream ais2 = ais.readSequenceStream(); ais2.readTag(); ((AdditionalNumberImpl) this.additionalNumber).decodeAll(ais2); break; case _TAG_SUPPORTED_LCS_CAPBILITY_SET: // supportedLCS-CapabilitySets [4] // SupportedLCS-CapabilitySets if (!ais.isTagPrimitive()) { throw new MAPParsingComponentException( "Error while decoding " + _PrimitiveName + ": Parameter [supportedLCS-CapabilitySets [4] SupportedLCS-CapabilitySets] is not primitive", MAPParsingComponentExceptionReason.MistypedParameter); } this.supportedLCSCapabilitySets = new SupportedLCSCapabilitySetsImpl(); ((SupportedLCSCapabilitySetsImpl) this.supportedLCSCapabilitySets).decodeAll(ais); break; case _TAG_ADDITIONAL_LCS_CAPBILITY_SET: // additional-LCS-CapabilitySets [5] // SupportedLCS-CapabilitySets OPTIONAL if (!ais.isTagPrimitive()) { throw new MAPParsingComponentException( "Error while decoding " + _PrimitiveName + ": Parameter [additional-LCS-CapabilitySets [5] SupportedLCS-CapabilitySets] is not primitive", MAPParsingComponentExceptionReason.MistypedParameter); } this.additionalLCSCapabilitySets = new SupportedLCSCapabilitySetsImpl(); ((SupportedLCSCapabilitySetsImpl) this.additionalLCSCapabilitySets).decodeAll(ais); break; case _TAG_mme_Name: // mmeName if (!ais.isTagPrimitive()) { throw new MAPParsingComponentException("Error while decoding " + _PrimitiveName + ": Parameter mmeName is not primitive", MAPParsingComponentExceptionReason.MistypedParameter); } this.mmeName = new DiameterIdentityImpl(); ((DiameterIdentityImpl) this.mmeName).decodeAll(ais); break; case _TAG_aaa_Server_Name: // aaaServerName if (!ais.isTagPrimitive()) { throw new MAPParsingComponentException("Error while decoding " + _PrimitiveName + ": Parameter aaaServerName is not primitive", MAPParsingComponentExceptionReason.MistypedParameter); } this.aaaServerName = new DiameterIdentityImpl(); ((DiameterIdentityImpl) this.aaaServerName).decodeAll(ais); break; default: ais.advanceElement(); } } else { ais.advanceElement(); } } } /* * (non-Javadoc) * * @see * org.mobicents.protocols.ss7.map.api.primitives.MAPAsnPrimitive#encodeData(org.mobicents.protocols.asn.AsnOutputStream) */ public void encodeData(AsnOutputStream asnOs) throws MAPException { if (this.networkNodeNumber == null) { throw new MAPException( "Error while encoding LCSLocationInfo the mandatory parameter networkNode-Number ISDN-AddressString is not defined"); } ((ISDNAddressStringImpl) this.networkNodeNumber).encodeAll(asnOs); if (this.lmsi != null) { // lmsi [0] LMSI OPTIONAL, ((LMSIImpl) this.lmsi).encodeAll(asnOs, Tag.CLASS_CONTEXT_SPECIFIC, _TAG_LMSI); } if (this.extensionContainer != null) { // extensionContainer [1] ExtensionContainer OPTIONAL, ((MAPExtensionContainerImpl) this.extensionContainer).encodeAll(asnOs, Tag.CLASS_CONTEXT_SPECIFIC, _TAG_EXTENSION_CONTAINER); } if (this.gprsNodeIndicator) { // gprsNodeIndicator [2] NULL OPTIONAL, try { asnOs.writeNull(Tag.CLASS_CONTEXT_SPECIFIC, _TAG_GPRS_NODE_IND); } catch (IOException e) { throw new MAPException( "Error while encoding LCSLocationInfo the optional parameter gprsNodeIndicator encoding failed ", e); } catch (AsnException e) { throw new MAPException( "Error while encoding LCSLocationInfo the optional parameter gprsNodeIndicator encoding failed ", e); } } if (this.additionalNumber != null) { // additional-Number [3] Additional-Number OPTIONAL, try { asnOs.writeTag(Tag.CLASS_CONTEXT_SPECIFIC, false, _TAG_ADDITIONAL_NUMBER); } catch (AsnException e) { throw new MAPException("AsnException while encoding parameter additional-Number"); } int pos = asnOs.StartContentDefiniteLength(); ((AdditionalNumberImpl) this.additionalNumber).encodeAll(asnOs, Tag.CLASS_CONTEXT_SPECIFIC, ((AdditionalNumberImpl) this.additionalNumber).getTag()); asnOs.FinalizeContent(pos); } if (this.supportedLCSCapabilitySets != null) { // supportedLCS-CapabilitySets [4] SupportedLCS-CapabilitySets // OPTIONAL, ((SupportedLCSCapabilitySetsImpl) this.supportedLCSCapabilitySets).encodeAll(asnOs, Tag.CLASS_CONTEXT_SPECIFIC, _TAG_SUPPORTED_LCS_CAPBILITY_SET); } if (this.additionalLCSCapabilitySets != null) { // additional-LCS-CapabilitySets [5] SupportedLCS-CapabilitySets // OPTIONAL ((SupportedLCSCapabilitySetsImpl) this.additionalLCSCapabilitySets).encodeAll(asnOs, Tag.CLASS_CONTEXT_SPECIFIC, _TAG_ADDITIONAL_LCS_CAPBILITY_SET); } if (this.mmeName != null) { ((DiameterIdentityImpl) this.mmeName).encodeAll(asnOs, Tag.CLASS_CONTEXT_SPECIFIC, _TAG_mme_Name); } if (this.aaaServerName != null) { ((DiameterIdentityImpl) this.aaaServerName).encodeAll(asnOs, Tag.CLASS_CONTEXT_SPECIFIC, _TAG_aaa_Server_Name); } } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((additionalLCSCapabilitySets == null) ? 0 : additionalLCSCapabilitySets.hashCode()); result = prime * result + ((additionalNumber == null) ? 0 : additionalNumber.hashCode()); result = prime * result + ((extensionContainer == null) ? 0 : extensionContainer.hashCode()); result = prime * result + ((gprsNodeIndicator) ? 1 : 0); result = prime * result + ((lmsi == null) ? 0 : lmsi.hashCode()); result = prime * result + ((networkNodeNumber == null) ? 0 : networkNodeNumber.hashCode()); result = prime * result + ((supportedLCSCapabilitySets == null) ? 0 : supportedLCSCapabilitySets.hashCode()); result = prime * result + ((mmeName == null) ? 0 : mmeName.hashCode()); result = prime * result + ((aaaServerName == null) ? 0 : aaaServerName.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; LCSLocationInfoImpl other = (LCSLocationInfoImpl) obj; if (additionalLCSCapabilitySets == null) { if (other.additionalLCSCapabilitySets != null) return false; } else if (!additionalLCSCapabilitySets.equals(other.additionalLCSCapabilitySets)) return false; if (additionalNumber == null) { if (other.additionalNumber != null) return false; } else if (!additionalNumber.equals(other.additionalNumber)) return false; if (extensionContainer == null) { if (other.extensionContainer != null) return false; } else if (!extensionContainer.equals(other.extensionContainer)) return false; if (gprsNodeIndicator != other.gprsNodeIndicator) { return false; } if (lmsi == null) { if (other.lmsi != null) return false; } else if (!lmsi.equals(other.lmsi)) return false; if (networkNodeNumber == null) { if (other.networkNodeNumber != null) return false; } else if (!networkNodeNumber.equals(other.networkNodeNumber)) return false; if (supportedLCSCapabilitySets == null) { if (other.supportedLCSCapabilitySets != null) return false; } else if (!supportedLCSCapabilitySets.equals(other.supportedLCSCapabilitySets)) return false; if (mmeName == null) { if (other.mmeName != null) return false; } else if (!mmeName.equals(other.mmeName)) return false; if (aaaServerName == null) { if (other.aaaServerName != null) return false; } else if (!aaaServerName.equals(other.aaaServerName)) return false; return true; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(_PrimitiveName); sb.append(" ["); if (this.networkNodeNumber != null) { sb.append("networkNodeNumber="); sb.append(this.networkNodeNumber); } if (this.lmsi != null) { sb.append(", lmsi="); sb.append(this.lmsi); } if (this.extensionContainer != null) { sb.append(", extensionContainer="); sb.append(this.extensionContainer); } if (this.gprsNodeIndicator) { sb.append(", gprsNodeIndicator="); } if (this.additionalNumber != null) { sb.append(", additionalNumber="); sb.append(this.additionalNumber); } if (this.supportedLCSCapabilitySets != null) { sb.append(", supportedLCSCapabilitySets="); sb.append(this.supportedLCSCapabilitySets); } if (this.additionalLCSCapabilitySets != null) { sb.append(", additionalLCSCapabilitySets="); sb.append(this.additionalLCSCapabilitySets); } if (this.mmeName != null) { sb.append(", mmeName="); sb.append(this.mmeName); } if (this.aaaServerName != null) { sb.append(", aaaServerName="); sb.append(this.aaaServerName); } sb.append("]"); return sb.toString(); } }