alc_io.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. """
  2. Generated by Statechart compiler by Glenn De Jonghe, Joeri Exelmans, Simon Van Mierlo, and Yentl Van Tendeloo (for the inspiration)
  3. Date: Wed Apr 4 23:27:30 2018
  4. Model author: Lucas Heer
  5. Model name: ALC_IO
  6. Model description:
  7. I/O Statechart for passing data to ALC
  8. """
  9. from sccd.runtime.statecharts_core import *
  10. # package "ALC_IO"
  11. class ALC_IO(RuntimeClassBase):
  12. def __init__(self, controller):
  13. RuntimeClassBase.__init__(self, controller)
  14. self.semantics.big_step_maximality = StatechartSemantics.TakeMany
  15. self.semantics.internal_event_lifeline = StatechartSemantics.Queue
  16. self.semantics.input_event_lifeline = StatechartSemantics.FirstComboStep
  17. self.semantics.priority = StatechartSemantics.SourceParent
  18. self.semantics.concurrency = StatechartSemantics.Single
  19. # build Statechart structure
  20. self.build_statechart_structure()
  21. # call user defined constructor
  22. ALC_IO.user_defined_constructor(self)
  23. def user_defined_constructor(self):
  24. pass
  25. def user_defined_destructor(self):
  26. pass
  27. # builds Statechart structure
  28. def build_statechart_structure(self):
  29. # state <root>
  30. self.states[""] = State(0, "", self)
  31. # state /init
  32. self.states["/init"] = State(1, "/init", self)
  33. # state /finished
  34. self.states["/finished"] = State(2, "/finished", self)
  35. # add children
  36. self.states[""].addChild(self.states["/init"])
  37. self.states[""].addChild(self.states["/finished"])
  38. self.states[""].fixTree()
  39. self.states[""].default_state = self.states["/init"]
  40. # transition /init
  41. _init_0 = Transition(self, self.states["/init"], [self.states["/init"]])
  42. _init_0.setAction(self._init_0_exec)
  43. _init_0.setTrigger(Event("input", "inp"))
  44. self.states["/init"].addTransition(_init_0)
  45. _init_1 = Transition(self, self.states["/init"], [self.states["/finished"]])
  46. _init_1.setTrigger(Event("terminate", "inp"))
  47. self.states["/init"].addTransition(_init_1)
  48. _init_2 = Transition(self, self.states["/init"], [self.states["/init"]])
  49. _init_2.setAction(self._init_2_exec)
  50. _init_2.setTrigger(Event("data_inp", "datap"))
  51. self.states["/init"].addTransition(_init_2)
  52. def _init_0_exec(self, parameters):
  53. value = parameters[0]
  54. print(value)
  55. def _init_2_exec(self, parameters):
  56. value = parameters[0]
  57. print("SC: Got data {}".format(value))
  58. self.big_step.outputEvent(Event("output", "outp", [value]))
  59. def initializeStatechart(self):
  60. # enter default state
  61. self.default_targets = self.states["/init"].getEffectiveTargetStates()
  62. RuntimeClassBase.initializeStatechart(self)
  63. class ObjectManager(ObjectManagerBase):
  64. def __init__(self, controller):
  65. ObjectManagerBase.__init__(self, controller)
  66. def instantiate(self, class_name, construct_params):
  67. if class_name == "ALC_IO":
  68. instance = ALC_IO(self.controller)
  69. instance.associations = {}
  70. else:
  71. raise Exception("Cannot instantiate class " + class_name)
  72. return instance
  73. class Controller(ThreadsControllerBase):
  74. def __init__(self, keep_running = None, behind_schedule_callback = None):
  75. if keep_running == None: keep_running = True
  76. if behind_schedule_callback == None: behind_schedule_callback = None
  77. ThreadsControllerBase.__init__(self, ObjectManager(self), keep_running, behind_schedule_callback)
  78. self.addInputPort("datap")
  79. self.addInputPort("inp")
  80. self.addOutputPort("outp")
  81. self.object_manager.createInstance("ALC_IO", [])