/protocols/ss7/map/map-impl/src/main/java/org/mobicents/protocols/ss7/map/errors/MAPErrorMessageAbsentSubscriberSMImpl.java

http://mobicents.googlecode.com/ · Java · 263 lines · 187 code · 50 blank · 26 comment · 29 complexity · b82878c175b6bcd63f16fe9aa0206cc3 MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright 2011, Red Hat, Inc. and individual contributors
  4. * by the @authors tag. See the copyright.txt in the distribution for a
  5. * full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. package org.mobicents.protocols.ss7.map.errors;
  23. import java.io.IOException;
  24. import org.mobicents.protocols.asn.AsnException;
  25. import org.mobicents.protocols.asn.AsnInputStream;
  26. import org.mobicents.protocols.asn.AsnOutputStream;
  27. import org.mobicents.protocols.asn.Tag;
  28. import org.mobicents.protocols.ss7.map.api.MAPException;
  29. import org.mobicents.protocols.ss7.map.api.MAPParsingComponentException;
  30. import org.mobicents.protocols.ss7.map.api.MAPParsingComponentExceptionReason;
  31. import org.mobicents.protocols.ss7.map.api.errors.MAPErrorCode;
  32. import org.mobicents.protocols.ss7.map.api.errors.MAPErrorMessageAbsentSubscriberSM;
  33. import org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer;
  34. import org.mobicents.protocols.ss7.map.primitives.MAPExtensionContainerImpl;
  35. /**
  36. *
  37. * @author sergey vetyutnev
  38. *
  39. */
  40. public class MAPErrorMessageAbsentSubscriberSMImpl extends MAPErrorMessageImpl implements MAPErrorMessageAbsentSubscriberSM {
  41. public static final int additionalAbsentSubscriberDiagnosticSM_TAG = 0x00;
  42. private Integer absentSubscriberDiagnosticSM;
  43. private MAPExtensionContainer extensionContainer;
  44. private Integer additionalAbsentSubscriberDiagnosticSM;
  45. public MAPErrorMessageAbsentSubscriberSMImpl(Integer absentSubscriberDiagnosticSM, MAPExtensionContainer extensionContainer,
  46. Integer additionalAbsentSubscriberDiagnosticSM) {
  47. super((long) MAPErrorCode.absentSubscriberSM);
  48. this.absentSubscriberDiagnosticSM = absentSubscriberDiagnosticSM;
  49. this.extensionContainer = extensionContainer;
  50. this.additionalAbsentSubscriberDiagnosticSM = additionalAbsentSubscriberDiagnosticSM;
  51. }
  52. protected MAPErrorMessageAbsentSubscriberSMImpl() {
  53. super((long) MAPErrorCode.absentSubscriberSM);
  54. }
  55. @Override
  56. public Integer getAbsentSubscriberDiagnosticSM() {
  57. return this.absentSubscriberDiagnosticSM;
  58. }
  59. @Override
  60. public MAPExtensionContainer getExtensionContainer() {
  61. return this.extensionContainer;
  62. }
  63. @Override
  64. public Integer getAdditionalAbsentSubscriberDiagnosticSM() {
  65. return this.additionalAbsentSubscriberDiagnosticSM;
  66. }
  67. @Override
  68. public void setAbsentSubscriberDiagnosticSM(Integer absentSubscriberDiagnosticSM) {
  69. this.absentSubscriberDiagnosticSM = absentSubscriberDiagnosticSM;
  70. }
  71. @Override
  72. public void setExtensionContainer(MAPExtensionContainer extensionContainer) {
  73. this.extensionContainer = extensionContainer;
  74. }
  75. @Override
  76. public void setAdditionalAbsentSubscriberDiagnosticSM(Integer additionalAbsentSubscriberDiagnosticSM) {
  77. this.additionalAbsentSubscriberDiagnosticSM = additionalAbsentSubscriberDiagnosticSM;
  78. }
  79. @Override
  80. public boolean isEmAbsentSubscriberSM() {
  81. return true;
  82. }
  83. @Override
  84. public MAPErrorMessageAbsentSubscriberSM getEmAbsentSubscriberSM() {
  85. return this;
  86. }
  87. @Override
  88. public int getTag() throws MAPException {
  89. return Tag.SEQUENCE;
  90. }
  91. @Override
  92. public int getTagClass() {
  93. return Tag.CLASS_UNIVERSAL;
  94. }
  95. @Override
  96. public boolean getIsPrimitive() {
  97. return false;
  98. }
  99. @Override
  100. public void decodeAll(AsnInputStream ansIS) throws MAPParsingComponentException {
  101. try {
  102. int length = ansIS.readLength();
  103. this._decode(ansIS, length);
  104. } catch (IOException e) {
  105. throw new MAPParsingComponentException("IOException when decoding MAPErrorMessageAbsentSubscriberSM: " + e.getMessage(), e,
  106. MAPParsingComponentExceptionReason.MistypedParameter);
  107. } catch (AsnException e) {
  108. throw new MAPParsingComponentException("AsnException when decoding MAPErrorMessageAbsentSubscriberSM: " + e.getMessage(), e,
  109. MAPParsingComponentExceptionReason.MistypedParameter);
  110. }
  111. }
  112. @Override
  113. public void decodeData(AsnInputStream ansIS, int length) throws MAPParsingComponentException {
  114. try {
  115. this._decode(ansIS, length);
  116. } catch (IOException e) {
  117. throw new MAPParsingComponentException("IOException when decoding MAPErrorMessageAbsentSubscriberSM: " + e.getMessage(), e,
  118. MAPParsingComponentExceptionReason.MistypedParameter);
  119. } catch (AsnException e) {
  120. throw new MAPParsingComponentException("AsnException when decoding MAPErrorMessageAbsentSubscriberSM: " + e.getMessage(), e,
  121. MAPParsingComponentExceptionReason.MistypedParameter);
  122. }
  123. }
  124. private void _decode(AsnInputStream localAis, int length) throws MAPParsingComponentException, IOException, AsnException {
  125. this.absentSubscriberDiagnosticSM = null;
  126. this.additionalAbsentSubscriberDiagnosticSM = null;
  127. this.extensionContainer = null;
  128. if (localAis.getTagClass() != Tag.CLASS_UNIVERSAL || localAis.getTag() != Tag.SEQUENCE || localAis.isTagPrimitive())
  129. throw new MAPParsingComponentException(
  130. "Error decoding MAPErrorMessageAbsentSubscriberSM: bad tag class or tag or parameter is primitive",
  131. MAPParsingComponentExceptionReason.MistypedParameter);
  132. AsnInputStream ais = localAis.readSequenceStreamData(length);
  133. while (true) {
  134. if (ais.available() == 0)
  135. break;
  136. int tag = ais.readTag();
  137. switch (ais.getTagClass()) {
  138. case Tag.CLASS_UNIVERSAL:
  139. switch (tag) {
  140. case Tag.INTEGER:
  141. this.absentSubscriberDiagnosticSM = (int)ais.readInteger();
  142. break;
  143. case Tag.SEQUENCE:
  144. this.extensionContainer = new MAPExtensionContainerImpl();
  145. ((MAPExtensionContainerImpl)this.extensionContainer).decodeAll(ais);
  146. break;
  147. default:
  148. ais.advanceElement();
  149. break;
  150. }
  151. break;
  152. case Tag.CLASS_CONTEXT_SPECIFIC:
  153. switch (tag) {
  154. case additionalAbsentSubscriberDiagnosticSM_TAG:
  155. this.additionalAbsentSubscriberDiagnosticSM = (int)ais.readInteger();
  156. break;
  157. default:
  158. ais.advanceElement();
  159. break;
  160. }
  161. break;
  162. default:
  163. ais.advanceElement();
  164. break;
  165. }
  166. }
  167. }
  168. @Override
  169. public void encodeAll(AsnOutputStream asnOs) throws MAPException {
  170. this.encodeAll(asnOs, Tag.CLASS_UNIVERSAL, Tag.SEQUENCE);
  171. }
  172. @Override
  173. public void encodeAll(AsnOutputStream asnOs, int tagClass, int tag) throws MAPException {
  174. try {
  175. asnOs.writeTag(tagClass, false, tag);
  176. int pos = asnOs.StartContentDefiniteLength();
  177. this.encodeData(asnOs);
  178. asnOs.FinalizeContent(pos);
  179. } catch (AsnException e) {
  180. throw new MAPException("AsnException when encoding MAPErrorMessageAbsentSubscriberSM: " + e.getMessage(), e);
  181. }
  182. }
  183. @Override
  184. public void encodeData(AsnOutputStream aos) throws MAPException {
  185. if (this.absentSubscriberDiagnosticSM == null && this.additionalAbsentSubscriberDiagnosticSM == null && this.extensionContainer == null)
  186. return;
  187. try {
  188. if (this.absentSubscriberDiagnosticSM != null)
  189. aos.writeInteger(this.absentSubscriberDiagnosticSM);
  190. if (this.extensionContainer != null)
  191. ((MAPExtensionContainerImpl)this.extensionContainer).encodeAll(aos);
  192. if (this.additionalAbsentSubscriberDiagnosticSM != null)
  193. aos.writeInteger(Tag.CLASS_CONTEXT_SPECIFIC, additionalAbsentSubscriberDiagnosticSM_TAG, this.additionalAbsentSubscriberDiagnosticSM);
  194. } catch (IOException e) {
  195. throw new MAPException("IOException when encoding MAPErrorMessageAbsentSubscriberSM: " + e.getMessage(), e);
  196. } catch (AsnException e) {
  197. throw new MAPException("AsnException when encoding MAPErrorMessageAbsentSubscriberSM: " + e.getMessage(), e);
  198. }
  199. }
  200. @Override
  201. public String toString() {
  202. StringBuilder sb = new StringBuilder();
  203. sb.append("MAPErrorMessageAbsentSubscriberSM [");
  204. if (this.absentSubscriberDiagnosticSM != null)
  205. sb.append("absentSubscriberDiagnosticSM=" + this.absentSubscriberDiagnosticSM.toString());
  206. if (this.extensionContainer != null)
  207. sb.append(", extensionContainer=" + this.extensionContainer.toString());
  208. if (this.additionalAbsentSubscriberDiagnosticSM != null)
  209. sb.append(", additionalAbsentSubscriberDiagnosticSM=" + this.additionalAbsentSubscriberDiagnosticSM.toString());
  210. sb.append("]");
  211. return sb.toString();
  212. }
  213. }