/protocols/ss7/m3ua/impl/src/main/java/org/mobicents/protocols/ss7/m3ua/impl/as/AsImpl.java

http://mobicents.googlecode.com/ · Java · 140 lines · 63 code · 25 blank · 52 comment · 0 complexity · 60aef4f783f37e37f81c63543a941bf4 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.m3ua.impl.as;
  23. import javolution.xml.XMLFormat;
  24. import javolution.xml.stream.XMLStreamException;
  25. import org.mobicents.protocols.ss7.m3ua.M3UAProvider;
  26. import org.mobicents.protocols.ss7.m3ua.impl.As;
  27. import org.mobicents.protocols.ss7.m3ua.impl.AsState;
  28. import org.mobicents.protocols.ss7.m3ua.impl.TransitionState;
  29. import org.mobicents.protocols.ss7.m3ua.impl.fsm.FSM;
  30. import org.mobicents.protocols.ss7.m3ua.parameter.RoutingContext;
  31. import org.mobicents.protocols.ss7.m3ua.parameter.RoutingKey;
  32. import org.mobicents.protocols.ss7.m3ua.parameter.TrafficModeType;
  33. /**
  34. * @author amit bhayani
  35. */
  36. public class AsImpl extends As {
  37. public AsImpl() {
  38. super();
  39. }
  40. public AsImpl(String name, RoutingContext rc, RoutingKey rk, TrafficModeType trMode, M3UAProvider provider) {
  41. super(name, rc, rk, trMode, provider);
  42. }
  43. /*
  44. * (non-Javadoc)
  45. *
  46. * @see org.mobicents.protocols.ss7.m3ua.impl.As#init()
  47. */
  48. @Override
  49. public void init() {
  50. fsm = new FSM(this.name);
  51. // Define states
  52. fsm.createState(AsState.DOWN.toString());
  53. fsm.createState(AsState.ACTIVE.toString());
  54. fsm.createState(AsState.INACTIVE.toString());
  55. fsm.createState(AsState.PENDING.toString()).setOnTimeOut(new AsStatePenTimeout(this, this.fsm), 2000)
  56. .setOnEnter(new AsStateEnterPen(this, this.fsm));
  57. fsm.setStart(AsState.DOWN.toString());
  58. fsm.setEnd(AsState.DOWN.toString());
  59. // Define Transitions
  60. // ******************************************************************/
  61. // STATE DOWN /
  62. // ******************************************************************/
  63. fsm.createTransition(TransitionState.AS_STATE_CHANGE_INACTIVE, AsState.DOWN.toString(),
  64. AsState.INACTIVE.toString());
  65. fsm.createTransition(TransitionState.ASP_DOWN, AsState.DOWN.toString(), AsState.DOWN.toString());
  66. // ******************************************************************/
  67. // STATE INACTIVE /
  68. // ******************************************************************/
  69. fsm.createTransition(TransitionState.AS_STATE_CHANGE_INACTIVE, AsState.INACTIVE.toString(),
  70. AsState.INACTIVE.toString());
  71. fsm.createTransition(TransitionState.AS_STATE_CHANGE_ACTIVE, AsState.INACTIVE.toString(),
  72. AsState.ACTIVE.toString());
  73. // ******************************************************************/
  74. // STATE ACTIVE /
  75. // ******************************************************************/
  76. fsm.createTransition(TransitionState.AS_STATE_CHANGE_ACTIVE, AsState.ACTIVE.toString(),
  77. AsState.ACTIVE.toString());
  78. fsm.createTransition(TransitionState.OTHER_ALTERNATE_ASP_ACTIVE, AsState.ACTIVE.toString(),
  79. AsState.ACTIVE.toString()).setHandler(new AsTransActToActNtfyAltAspAct(this, this.fsm));
  80. fsm.createTransition(TransitionState.OTHER_INSUFFICIENT_ASP, AsState.ACTIVE.toString(),
  81. AsState.ACTIVE.toString()).setHandler(new AsTransActToActNtfyInsAsp(this, this.fsm));
  82. fsm.createTransition(TransitionState.AS_STATE_CHANGE_PENDING, AsState.ACTIVE.toString(),
  83. AsState.PENDING.toString());
  84. fsm.createTransition(TransitionState.ASP_DOWN, AsState.ACTIVE.toString(), AsState.PENDING.toString())
  85. .setHandler(new AsTransActToPen(this, this.fsm));
  86. // ******************************************************************/
  87. // STATE PENDING /
  88. // ******************************************************************/
  89. // As transitions to DOWN from PENDING when Pending Timer timesout
  90. fsm.createTransition(TransitionState.AS_DOWN, AsState.PENDING.toString(), AsState.DOWN.toString());
  91. // As transitions to INACTIVE from PENDING when Pending Timer timesout
  92. fsm.createTransition(TransitionState.AS_INACTIVE, AsState.PENDING.toString(), AsState.INACTIVE.toString());
  93. // If in PENDING and one of the ASP is ACTIVE again
  94. fsm.createTransition(TransitionState.AS_STATE_CHANGE_ACTIVE, AsState.PENDING.toString(),
  95. AsState.ACTIVE.toString()).setHandler(new AsTransPendToAct(this, this.fsm));
  96. // If As is PENDING and far end sends INACTIVE we still remain PENDING
  97. // as that message from pending queue can be sent once As becomes ACTIVE
  98. // before T(r) expires
  99. fsm.createTransition(TransitionState.AS_STATE_CHANGE_INACTIVE, AsState.PENDING.toString(),
  100. AsState.INACTIVE.toString()).setHandler(new AsNoTrans());
  101. }
  102. /**
  103. * XML Serialization/Deserialization
  104. */
  105. protected static final XMLFormat<AsImpl> AS_IMPL_XML = new XMLFormat<AsImpl>(AsImpl.class) {
  106. @Override
  107. public void read(javolution.xml.XMLFormat.InputElement xml, AsImpl asImpl) throws XMLStreamException {
  108. AS_XML.read(xml, asImpl);
  109. }
  110. @Override
  111. public void write(AsImpl asImpl, javolution.xml.XMLFormat.OutputElement xml) throws XMLStreamException {
  112. AS_XML.write(asImpl, xml);
  113. }
  114. };
  115. }