/* Generated by Statechart compiler by Glenn De Jonghe, Joeri Exelmans, Simon Van Mierlo, and Yentl Van Tendeloo (for the inspiration) Date: Wed Aug 03 16:10:17 2016 Model author: Herr Joeri Exelmans Model name: take_many_queue Model description: Internal event lifeline - Queue-semantics: Internally raised events are treated like external events and are added to the object's event queue. They become present in another big step later on.*/ // package "take_many_queue" var take_many_queue = {}; (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 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.setAction(this._a_0_exec); _a_0.trigger = new Event("e", "in"); this.states["/a"].addTransition(_a_0); // transition /b var _b_0 = new Transition(this, this.states["/b"], [this.states["/c"]]); _b_0.trigger = new Event("f", 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._a_0_exec = function(parameters) { this.raiseInternalEvent(new Event("f", null, new Array())); }; c.prototype.initializeStatechart = function() { // enter default state var states = this.states["/a"].getEffectiveTargetStates(); this.updateConfiguration(states); for (var state_idx in states) { if (!states.hasOwnProperty(state_idx)) continue; var state = states[state_idx] if (state.enter) { state.enter(); } } }; // add symbol 'c' to package 'take_many_queue' take_many_queue.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(); } return instance; }; // add symbol 'ObjectManager' to package 'take_many_queue' take_many_queue.ObjectManager = ObjectManager; var Controller = function(event_loop_callbacks, finished_callback) { if (finished_callback === undefined) finished_callback = null; EventLoopControllerBase.call(this, new ObjectManager(this), event_loop_callbacks, finished_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_queue' take_many_queue.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_queue' take_many_queue.InputEvent = InputEvent; var Test = function() { }; Test.prototype.input_events = [new InputEvent("e", "in", new Array(), 0.0)]; 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_queue' take_many_queue.Test = Test; })();