123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- /* Generated by Statechart compiler by Glenn De Jonghe, Joeri Exelmans, Simon Van Mierlo, and Yentl Van Tendeloo (for the inspiration)
- Date: Tue Aug 09 09:35:50 2016
- Model author: Herr Joeri Exelmans
- Model name: take_many
- Model description:
- Take Many-semantics: A big step doesn't end until there are no more enabled transitions.*/
- // package "take_many"
- var take_many = {};
- (function() {
- var c = function(controller) {
- RuntimeClassBase.call(this, controller);
-
- this.semantics.big_step_maximality = StatechartSemantics.TakeMany;
- this.semantics.internal_event_lifeline = StatechartSemantics.Queue;
- this.semantics.input_event_lifeline = StatechartSemantics.FirstComboStep;
- this.semantics.priority = StatechartSemantics.SourceParent;
- this.semantics.concurrency = StatechartSemantics.Single;
-
- // build Statechart structure
- this.build_statechart_structure();
-
- // call user defined constructor
- c.prototype.user_defined_constructor.call(this);
- };
- c.prototype = new Object();
- (function() {
- var proto = new RuntimeClassBase();
- for (prop in proto) {
- c.prototype[prop] = proto[prop];
- }
- })();
- c.prototype.user_defined_constructor = function() {
- };
- c.prototype.user_defined_destructor = function() {
- };
- // builds Statechart structure
- c.prototype.build_statechart_structure = function() {
-
- // state <root>
- this.states[""] = new State(0, this);
-
- // state /a
- this.states["/a"] = new State(1, this);
- this.states["/a"].setEnter(this._a_enter);
-
- // state /b
- this.states["/b"] = new State(2, this);
- this.states["/b"].setEnter(this._b_enter);
-
- // state /c
- this.states["/c"] = new State(3, this);
- this.states["/c"].setEnter(this._c_enter);
-
- // add children
- this.states[""].addChild(this.states["/a"]);
- this.states[""].addChild(this.states["/b"]);
- this.states[""].addChild(this.states["/c"]);
- this.states[""].fixTree();
- this.states[""].default_state = this.states["/a"];
-
- // transition /a
- var _a_0 = new Transition(this, this.states["/a"], [this.states["/b"]]);
- _a_0.setTrigger(null);
- this.states["/a"].addTransition(_a_0);
-
- // transition /b
- var _b_0 = new Transition(this, this.states["/b"], [this.states["/c"]]);
- _b_0.setTrigger(null);
- this.states["/b"].addTransition(_b_0);
- };
- c.prototype._a_enter = function() {
- this.big_step.outputEvent(new Event("entered_a", "out", new Array()));
- };
- c.prototype._b_enter = function() {
- this.big_step.outputEvent(new Event("entered_b", "out", new Array()));
- };
- c.prototype._c_enter = function() {
- this.big_step.outputEvent(new Event("entered_c", "out", new Array()));
- };
- c.prototype.initializeStatechart = function() {
- // enter default state
- this.default_targets = this.states["/a"].getEffectiveTargetStates();
- RuntimeClassBase.prototype.initializeStatechart.call(this);
- };
- // add symbol 'c' to package 'take_many'
- take_many.c = c;
- var ObjectManager = function(controller) {
- ObjectManagerBase.call(this, controller);
- };
- ObjectManager.prototype = new Object();
- (function() {
- var proto = new ObjectManagerBase();
- for (prop in proto) {
- ObjectManager.prototype[prop] = proto[prop];
- }
- })();
- ObjectManager.prototype.instantiate = function(class_name, construct_params) {
- if (class_name === "c") {
- var instance = new c(this.controller);
- instance.associations = new Object();
- } else {
- throw new Error("Cannot instantiate class " + class_name);
- }
- return instance;
- };
- // add symbol 'ObjectManager' to package 'take_many'
- take_many.ObjectManager = ObjectManager;
- var Controller = function(event_loop_callbacks, finished_callback, behind_schedule_callback) {
- if (finished_callback === undefined) finished_callback = null;
- if (behind_schedule_callback === undefined) behind_schedule_callback = null;
- EventLoopControllerBase.call(this, new ObjectManager(this), event_loop_callbacks, finished_callback, behind_schedule_callback);
- this.addInputPort("in");
- this.addOutputPort("out");
- this.object_manager.createInstance("c", new Array());
- };
- Controller.prototype = new Object();
- (function() {
- var proto = new EventLoopControllerBase();
- for (prop in proto) {
- Controller.prototype[prop] = proto[prop];
- }
- })();
- // add symbol 'Controller' to package 'take_many'
- take_many.Controller = Controller;
- var InputEvent = function(name, port, parameters, time_offset) {
- this.name = name;
- this.port = port;
- this.parameters = parameters;
- this.time_offset = time_offset;
- };
- // add symbol 'InputEvent' to package 'take_many'
- take_many.InputEvent = InputEvent;
- var Test = function() {
- };
- Test.prototype.input_events = new Array();
- Test.prototype.expected_events = [[new Event("entered_a", "out", new Array())], [new Event("entered_b", "out", new Array()), new Event("entered_c", "out", new Array())]];
- // add symbol 'Test' to package 'take_many'
- take_many.Test = Test;
- })();
|