/protocols/ss7/isup/isup-impl/src/main/java/org/mobicents/protocols/ss7/isup/impl/message/CircuitGroupUnblockingAckMessageImpl.java

http://mobicents.googlecode.com/ · Java · 178 lines · 78 code · 31 blank · 69 comment · 6 complexity · 7c27a379b273ae672934b4d177ce7290 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. /**
  23. * Start time:00:08:48 2009-09-07<br>
  24. * Project: mobicents-isup-stack<br>
  25. *
  26. * @author <a href="mailto:baranowb@gmail.com">Bartosz Baranowski </a>
  27. */
  28. package org.mobicents.protocols.ss7.isup.impl.message;
  29. import java.util.Map;
  30. import java.util.Set;
  31. import org.mobicents.protocols.ss7.isup.ISUPParameterFactory;
  32. import org.mobicents.protocols.ss7.isup.ParameterException;
  33. import org.mobicents.protocols.ss7.isup.impl.message.parameter.AbstractISUPParameter;
  34. import org.mobicents.protocols.ss7.isup.impl.message.parameter.MessageTypeImpl;
  35. import org.mobicents.protocols.ss7.isup.message.CircuitGroupUnblockingAckMessage;
  36. import org.mobicents.protocols.ss7.isup.message.parameter.CircuitGroupSuperVisionMessageType;
  37. import org.mobicents.protocols.ss7.isup.message.parameter.MessageType;
  38. import org.mobicents.protocols.ss7.isup.message.parameter.RangeAndStatus;
  39. /**
  40. * Start time:00:08:48 2009-09-07<br>
  41. * Project: mobicents-isup-stack<br>
  42. *
  43. * @author <a href="mailto:baranowb@gmail.com">Bartosz Baranowski </a>
  44. */
  45. public class CircuitGroupUnblockingAckMessageImpl extends ISUPMessageImpl implements CircuitGroupUnblockingAckMessage {
  46. public static final MessageType _MESSAGE_TYPE = new MessageTypeImpl(MESSAGE_CODE);
  47. private static final int _MANDATORY_VAR_COUNT = 1;
  48. static final int _INDEX_F_MessageType = 0;
  49. static final int _INDEX_F_CircuitGroupSuperVisionMessageType = 1;
  50. static final int _INDEX_V_RangeAndStatus = 0;
  51. CircuitGroupUnblockingAckMessageImpl(Set<Integer> mandatoryCodes, Set<Integer> mandatoryVariableCodes, Set<Integer> optionalCodes, Map<Integer, Integer> mandatoryCode2Index,
  52. Map<Integer, Integer> mandatoryVariableCode2Index, Map<Integer, Integer> optionalCode2Index) {
  53. super(mandatoryCodes, mandatoryVariableCodes, optionalCodes, mandatoryCode2Index, mandatoryVariableCode2Index, optionalCode2Index);
  54. super.f_Parameters.put(_INDEX_F_MessageType, this.getMessageType());
  55. }
  56. public void setSupervisionType(CircuitGroupSuperVisionMessageType ras)
  57. {
  58. super.f_Parameters.put(_INDEX_F_CircuitGroupSuperVisionMessageType,ras);
  59. }
  60. public CircuitGroupSuperVisionMessageType getSupervisionType()
  61. {
  62. return (CircuitGroupSuperVisionMessageType) super.f_Parameters.get(_INDEX_F_CircuitGroupSuperVisionMessageType);
  63. }
  64. public void setRangeAndStatus(RangeAndStatus ras)
  65. {
  66. super.v_Parameters.put(_INDEX_V_RangeAndStatus, ras);
  67. }
  68. public RangeAndStatus getRangeAndStatus()
  69. {
  70. return (RangeAndStatus) super.v_Parameters.get(_INDEX_V_RangeAndStatus);
  71. }
  72. /*
  73. * (non-Javadoc)
  74. *
  75. * @see
  76. * org.mobicents.protocols.ss7.isup.ISUPMessageImpl#decodeMandatoryParameters(byte[],
  77. * int)
  78. */
  79. protected int decodeMandatoryParameters(ISUPParameterFactory parameterFactory,byte[] b, int index) throws ParameterException {
  80. int localIndex = index;
  81. index+=super.decodeMandatoryParameters(parameterFactory,b, index);
  82. if (b.length - index > 1) {
  83. CircuitGroupSuperVisionMessageType cgsvmt = parameterFactory.createCircuitGroupSuperVisionMessageType();
  84. ((AbstractISUPParameter)cgsvmt).decode(new byte[]{b[index]});
  85. this.setSupervisionType(cgsvmt);
  86. index++;
  87. return index - localIndex;
  88. } else {
  89. throw new IllegalArgumentException("byte[] must have atleast four octets");
  90. }
  91. }
  92. /*
  93. * (non-Javadoc)
  94. *
  95. * @see
  96. * org.mobicents.protocols.ss7.isup.ISUPMessageImpl#decodeMandatoryVariableBody(byte
  97. * [], int)
  98. */
  99. protected void decodeMandatoryVariableBody(ISUPParameterFactory parameterFactory,byte[] parameterBody, int parameterIndex) throws ParameterException {
  100. switch (parameterIndex) {
  101. case _INDEX_V_RangeAndStatus:
  102. RangeAndStatus ras = parameterFactory.createRangeAndStatus();
  103. ((AbstractISUPParameter)ras).decode(parameterBody);
  104. this.setRangeAndStatus(ras);
  105. break;
  106. default:
  107. throw new ParameterException("Unrecognized parameter index for mandatory variable part, index: " + parameterIndex);
  108. }
  109. }
  110. /*
  111. * (non-Javadoc)
  112. *
  113. * @see org.mobicents.protocols.ss7.isup.ISUPMessageImpl#decodeOptionalBody(byte[],
  114. * byte)
  115. */
  116. protected void decodeOptionalBody(ISUPParameterFactory parameterFactory,byte[] parameterBody, byte parameterCode) throws ParameterException {
  117. throw new ParameterException("This message does not support optional parameters");
  118. }
  119. /*
  120. * (non-Javadoc)
  121. *
  122. * @see org.mobicents.protocols.ss7.isup.ISUPMessageImpl#getMessageType()
  123. */
  124. public MessageType getMessageType() {
  125. return this._MESSAGE_TYPE;
  126. }
  127. /*
  128. * (non-Javadoc)
  129. *
  130. * @seeorg.mobicents.protocols.ss7.isup.ISUPMessageImpl#
  131. * getNumberOfMandatoryVariableLengthParameters()
  132. */
  133. protected int getNumberOfMandatoryVariableLengthParameters() {
  134. return _MANDATORY_VAR_COUNT;
  135. }
  136. /*
  137. * (non-Javadoc)
  138. *
  139. * @see org.mobicents.protocols.ss7.isup.ISUPMessageImpl#hasAllMandatoryParameters()
  140. */
  141. public boolean hasAllMandatoryParameters() {
  142. return super.f_Parameters.get(_INDEX_F_CircuitGroupSuperVisionMessageType) != null && super.v_Parameters.get(_INDEX_V_RangeAndStatus) != null;
  143. }
  144. protected boolean optionalPartIsPossible() {
  145. return false;
  146. }
  147. }