/protocols/ss7/m3ua/impl/src/main/java/org/mobicents/protocols/ss7/m3ua/impl/fsm/State.java

http://mobicents.googlecode.com/ · Java · 154 lines · 86 code · 22 blank · 46 comment · 13 complexity · 7081da0f25d9e49f51ba0bba4b26ee68 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.fsm;
  23. import javolution.util.FastList;
  24. /**
  25. *
  26. * @author amit bhayani
  27. * @author kulikov
  28. *
  29. */
  30. public class State {
  31. private String name;
  32. private FSM fsm;
  33. private FastList<Transition> transitions = new FastList<Transition>();
  34. protected long timeout;
  35. // The time in ms when this sate was entered
  36. private long activated;
  37. // The time in ms when this states was entered. Its possible that
  38. // TransitionHandler cancels the transition in which case original activated
  39. // time is to be maintained
  40. private long oldActivated;
  41. private StateEventHandler enterEventHandler;
  42. private StateEventHandler exitEventHandler;
  43. private StateEventHandler timeOutEventHandler;
  44. protected State(FSM fsm, String name) {
  45. this.name = name;
  46. this.fsm = fsm;
  47. this.timeout = 0;
  48. }
  49. public State setOnEnter(StateEventHandler handler) {
  50. this.enterEventHandler = handler;
  51. return this;
  52. }
  53. public State setOnExit(StateEventHandler handler) {
  54. this.exitEventHandler = handler;
  55. return this;
  56. }
  57. public State setOnTimeOut(StateEventHandler handler, long timeout) {
  58. this.timeOutEventHandler = handler;
  59. this.timeout = timeout;
  60. return this;
  61. }
  62. protected void enter() {
  63. this.activated = System.currentTimeMillis();
  64. this.oldActivated = this.activated;
  65. if (this.enterEventHandler != null) {
  66. this.enterEventHandler.onEvent(this);
  67. }
  68. }
  69. protected void leave() {
  70. this.activated = 0;
  71. if (this.exitEventHandler != null) {
  72. this.exitEventHandler.onEvent(this);
  73. }
  74. }
  75. protected void cancelLeave() {
  76. this.activated = this.oldActivated;
  77. }
  78. protected void tick(long now) {
  79. if (this.timeout > 0 && this.activated > 0 && (now - this.activated) > this.timeout) {
  80. // Call Time Out Event Handler if defined
  81. if (this.timeOutEventHandler != null) {
  82. this.timeOutEventHandler.onEvent(this);
  83. }
  84. // Now do the Transition
  85. try {
  86. fsm.signal("timeout");
  87. } catch (UnknownTransitionException e) {
  88. }
  89. }
  90. }
  91. public String getName() {
  92. return name;
  93. }
  94. public FSM getFSM() {
  95. return fsm;
  96. }
  97. protected void add(Transition t) {
  98. transitions.add(t);
  99. }
  100. /**
  101. * Signals to leave this state over specified transition
  102. *
  103. * @param name
  104. * the name of the transition.
  105. */
  106. public State signal(String namem) throws UnknownTransitionException {
  107. Transition t = find(namem);
  108. if (t != null) {
  109. return t.process(this);
  110. }
  111. throw new UnknownTransitionException(String.format("Transition=%s. %s", namem, this.fsm.toString()));
  112. }
  113. /**
  114. * Searches transition with specified name.
  115. *
  116. * @param name
  117. * the name of the transition.
  118. * @return the transition or null if not found.
  119. */
  120. private Transition find(String name) {
  121. for (Transition t : transitions) {
  122. if (t.getName().matches(name)) {
  123. return t;
  124. }
  125. }
  126. return null;
  127. }
  128. @Override
  129. public String toString() {
  130. return name;
  131. }
  132. }