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

http://mobicents.googlecode.com/ · Java · 73 lines · 35 code · 10 blank · 28 comment · 5 complexity · ffcc39a12b87424a1ed9cfd72bdf7c82 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.util.FastList;
  24. import org.apache.log4j.Logger;
  25. import org.mobicents.protocols.ss7.m3ua.impl.Asp;
  26. import org.mobicents.protocols.ss7.m3ua.impl.AspState;
  27. import org.mobicents.protocols.ss7.m3ua.impl.TransitionState;
  28. import org.mobicents.protocols.ss7.m3ua.impl.fsm.FSM;
  29. import org.mobicents.protocols.ss7.m3ua.impl.fsm.State;
  30. import org.mobicents.protocols.ss7.m3ua.impl.fsm.TransitionHandler;
  31. import org.mobicents.protocols.ss7.m3ua.impl.fsm.UnknownTransitionException;
  32. /**
  33. *
  34. * @author amit bhayani
  35. *
  36. */
  37. public class AsTransActToActNtfyInsAsp implements TransitionHandler {
  38. private static final Logger logger = Logger.getLogger(AsTransActToActNtfyInsAsp.class);
  39. private AsImpl as = null;
  40. private FSM fsm;
  41. public AsTransActToActNtfyInsAsp(AsImpl as, FSM fsm) {
  42. this.as = as;
  43. this.fsm = fsm;
  44. }
  45. public boolean process(State state) {
  46. // Iterate through all the ASP for this AS and activate if they are
  47. // inactive
  48. for (FastList.Node<Asp> n = this.as.getAspList().head(), end = this.as.getAspList().tail(); (n = n
  49. .getNext()) != end;) {
  50. Asp aspTemp = n.getValue();
  51. LocalAspFactory factory = (LocalAspFactory) aspTemp.getAspFactory();
  52. if (aspTemp.getState() == AspState.INACTIVE && factory.getStatus()) {
  53. factory.sendAspActive(this.as);
  54. try {
  55. aspTemp.getFSM().signal(TransitionState.ASP_ACTIVE_SENT);
  56. } catch (UnknownTransitionException e) {
  57. logger.error(e.getMessage(), e);
  58. }
  59. }
  60. }
  61. return true;
  62. }
  63. }