Search in sources :

Example 1 with ExecutionRegion

use of org.yakindu.sct.model.sexec.ExecutionRegion in project statecharts by Yakindu.

the class ModelSequencerHistoryTest method testDeepHistorySave.

@Test
public void testDeepHistorySave() {
    Statechart sc = _createStatechart("sc");
    {
        InterfaceScope s_scope = _createInterfaceScope("Interface", sc);
        VariableDefinition v1 = _createVariableDefinition("v1", TYPE_INTEGER, s_scope);
        Region r = _createRegion("r", sc);
        {
            Entry r_entry = _createEntry(EntryKind.DEEP_HISTORY, null, r);
            State s1 = _createState("s1", r);
            State s2 = _createState("s2", r);
            {
                _createEntryAssignment(v1, s2, 3);
                Region r2 = _createRegion("r2", s2);
                {
                    Entry e = _createEntry(EntryKind.INITIAL, null, r2);
                    Entry history = _createEntry(EntryKind.SHALLOW_HISTORY, "history", r2);
                    State s3 = _createState("s3", r2);
                    {
                        _createEntryAssignment(v1, s3, 4);
                    }
                    State s4 = _createState("s4", r2);
                    {
                        Region r4 = _createRegion("r4", s4);
                        {
                            Entry e4 = _createEntry(EntryKind.INITIAL, null, r2);
                            State s5 = _createState("s5", r4);
                            _createTransition(e4, s5);
                            _createTransition(s5, s1);
                        }
                    }
                    _createTransition(e, s3);
                    _createTransition(history, s3);
                    _createTransition(s3, s4);
                    _createTransition(s1, history);
                }
            }
            _createTransition(r_entry, s1);
            _createTransition(s1, s2);
        }
    }
    ExecutionFlow flow = sequencer.transform(sc);
    ExecutionState _s1 = flow.getStates().get(0);
    assertEquals("sc.r.s1", _s1.getName());
    ExecutionState _s2 = flow.getStates().get(1);
    assertEquals("sc.r.s2", _s2.getName());
    ExecutionState _s3 = flow.getStates().get(2);
    assertEquals("sc.r.s2.r2.s3", _s3.getName());
    ExecutionState _s4 = flow.getStates().get(3);
    assertEquals("sc.r.s2.r2.s4", _s4.getName());
    ExecutionState _s5 = flow.getStates().get(4);
    assertEquals("sc.r.s2.r2.s4.r4.s5", _s5.getName());
    // get the transition effect from s5 to s1
    Step effect = _s5.getReactions().get(0).getEffect();
    assertedOrder(effect, Lists.newArrayList(_s5), Lists.newArrayList(// new StepSaveHistory((ExecutionRegion) _s5.getSuperScope()),
    new StepLeaf(_s5.getExitSequence().getSteps().get(0)), new StepLeaf(_s1.getEnterSequences().get(0).getSteps().get(0)), new StepSaveHistory((ExecutionRegion) _s1.getSuperScope())));
    // get the transition effect from s3 to s4(s5)
    effect = _s3.getReactions().get(0).getEffect();
    assertedOrder(effect, Lists.newArrayList(_s5), Lists.newArrayList(new StepLeaf(_s3.getExitSequence().getSteps().get(0)), new StepSaveHistory((ExecutionRegion) _s4.getSuperScope())));
}
Also used : ExecutionState(org.yakindu.sct.model.sexec.ExecutionState) Entry(org.yakindu.sct.model.sgraph.Entry) HistoryEntry(org.yakindu.sct.model.sexec.HistoryEntry) SGraphTestFactory._createEntry(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createEntry) VariableDefinition(org.yakindu.sct.model.stext.stext.VariableDefinition) StextTestFactory._createVariableDefinition(org.yakindu.sct.model.stext.test.util.StextTestFactory._createVariableDefinition) SGraphTestFactory._createState(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createState) ExecutionState(org.yakindu.sct.model.sexec.ExecutionState) State(org.yakindu.sct.model.sgraph.State) ExecutionFlow(org.yakindu.sct.model.sexec.ExecutionFlow) Statechart(org.yakindu.sct.model.sgraph.Statechart) SGraphTestFactory._createStatechart(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createStatechart) InterfaceScope(org.yakindu.sct.model.stext.stext.InterfaceScope) StextTestFactory._createInterfaceScope(org.yakindu.sct.model.stext.test.util.StextTestFactory._createInterfaceScope) Region(org.yakindu.sct.model.sgraph.Region) SGraphTestFactory._createRegion(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createRegion) ExecutionRegion(org.yakindu.sct.model.sexec.ExecutionRegion) Step(org.yakindu.sct.model.sexec.Step) Test(org.junit.Test)

Example 2 with ExecutionRegion

use of org.yakindu.sct.model.sexec.ExecutionRegion in project statecharts by Yakindu.

the class HistoryTest method testEnterStatechart.

@Test
public void testEnterStatechart() {
    Statechart sc = _createStatechart("sc");
    {
        InterfaceScope s_scope = _createInterfaceScope("Interface", sc);
        VariableDefinition v1 = _createVariableDefinition("v1", TYPE_INTEGER, s_scope);
        Region r = _createRegion("r", sc);
        {
            Entry r_entry = _createEntry(EntryKind.INITIAL, null, r);
            State s1 = _createState("s1", r);
            State s2 = _createState("s2", r);
            {
                _createEntryAssignment(v1, s2, 3);
                Region r2 = _createRegion("r2", s2);
                {
                    Entry e = _createEntry(EntryKind.DEEP_HISTORY, null, r2);
                    State s3 = _createState("s3", r2);
                    {
                        _createEntryAssignment(v1, s3, 4);
                    }
                    State s4 = _createState("s4", r2);
                    {
                        _createEntryAssignment(v1, s4, 6);
                    }
                    _createTransition(e, s3);
                    _createTransition(s3, s4);
                    _createTransition(s4, s3);
                }
            }
            _createTransition(r_entry, s2);
            _createTransition(s1, s2);
            _createTransition(s2, s1);
        }
    }
    ExecutionFlow flow = sequencer.transform(sc);
    ExecutionState _s1 = flow.getStates().get(0);
    assertEquals("sc.r.s1", _s1.getName());
    Sequence enterSequence = flow.getEnterSequences().get(0);
    ExecutionRegion _r = (ExecutionRegion) _s1.getSuperScope();
    assertCall(enterSequence, 0, flow.getEntryAction());
    assertCall(enterSequence, 1, _r.getEnterSequences().get(0));
}
Also used : ExecutionState(org.yakindu.sct.model.sexec.ExecutionState) Entry(org.yakindu.sct.model.sgraph.Entry) ExecutionEntry(org.yakindu.sct.model.sexec.ExecutionEntry) HistoryEntry(org.yakindu.sct.model.sexec.HistoryEntry) SGraphTestFactory._createEntry(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createEntry) VariableDefinition(org.yakindu.sct.model.stext.stext.VariableDefinition) StextTestFactory._createVariableDefinition(org.yakindu.sct.model.stext.test.util.StextTestFactory._createVariableDefinition) SGraphTestFactory._createState(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createState) ExecutionState(org.yakindu.sct.model.sexec.ExecutionState) State(org.yakindu.sct.model.sgraph.State) ExecutionRegion(org.yakindu.sct.model.sexec.ExecutionRegion) ExecutionFlow(org.yakindu.sct.model.sexec.ExecutionFlow) Statechart(org.yakindu.sct.model.sgraph.Statechart) SGraphTestFactory._createStatechart(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createStatechart) InterfaceScope(org.yakindu.sct.model.stext.stext.InterfaceScope) StextTestFactory._createInterfaceScope(org.yakindu.sct.model.stext.test.util.StextTestFactory._createInterfaceScope) Region(org.yakindu.sct.model.sgraph.Region) SGraphTestFactory._createRegion(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createRegion) ExecutionRegion(org.yakindu.sct.model.sexec.ExecutionRegion) Sequence(org.yakindu.sct.model.sexec.Sequence) Test(org.junit.Test)

Example 3 with ExecutionRegion

use of org.yakindu.sct.model.sexec.ExecutionRegion in project statecharts by Yakindu.

the class HistoryTest method testHistoryAsEntry.

@Test
public void testHistoryAsEntry() {
    Statechart sc = _createStatechart("sc");
    {
        InterfaceScope s_scope = _createInterfaceScope("Interface", sc);
        VariableDefinition v1 = _createVariableDefinition("v1", TYPE_INTEGER, s_scope);
        Region r = _createRegion("r", sc);
        {
            Entry r_entry = _createEntry(EntryKind.INITIAL, null, r);
            State s1 = _createState("s1", r);
            State s2 = _createState("s2", r);
            {
                _createEntryAssignment(v1, s2, 3);
                Region r2 = _createRegion("r2", s2);
                {
                    Entry e = _createEntry(EntryKind.DEEP_HISTORY, null, r2);
                    State s3 = _createState("s3", r2);
                    {
                        _createEntryAssignment(v1, s3, 4);
                    }
                    State s4 = _createState("s4", r2);
                    {
                        _createEntryAssignment(v1, s4, 6);
                    }
                    _createTransition(e, s3);
                    _createTransition(s3, s4);
                    _createTransition(s4, s3);
                }
            }
            _createTransition(r_entry, s2);
            _createTransition(s1, s2);
            _createTransition(s2, s1);
        }
    }
    ExecutionFlow flow = sequencer.transform(sc);
    ExecutionState _s2 = flow.getStates().get(1);
    assertEquals("sc.r.s2", _s2.getName());
    ExecutionState _s3 = flow.getStates().get(2);
    assertEquals("sc.r.s2.r2.s3", _s3.getName());
    ExecutionNode e = flow.getNodes().get(1);
    assertTrue(e.eClass().getName(), e instanceof ExecutionEntry);
    Sequence reactSequence = e.getReactSequence();
    assertEquals("Default react sequence for deep history entry ", reactSequence.getComment());
    Step historyEntryStep = reactSequence.getSteps().get(0);
    assertTrue(historyEntryStep.eClass().getName(), historyEntryStep instanceof HistoryEntry);
    HistoryEntry historyEntry = (HistoryEntry) historyEntryStep;
    Sequence initialStep = (Sequence) historyEntry.getInitialStep();
    assertCall(((Sequence) initialStep.getSteps().get(0)).getSteps().get(0), _s3.getEnterSequences().get(0));
    ExecutionRegion _r2 = (ExecutionRegion) _s3.getSuperScope();
    assertCall(historyEntry.getHistoryStep(), _r2.getDeepEnterSequence());
    Step _s3EnterStep = assertedStateCase(_r2.getDeepEnterSequence().getSteps().get(0), _s3).getStep();
    Step _s3EnterCall = assertedSequence(_s3EnterStep).getSteps().get(0);
    assertCall(_s3EnterCall, _s3.getEnterSequences().get(0));
}
Also used : ExecutionState(org.yakindu.sct.model.sexec.ExecutionState) VariableDefinition(org.yakindu.sct.model.stext.stext.VariableDefinition) StextTestFactory._createVariableDefinition(org.yakindu.sct.model.stext.test.util.StextTestFactory._createVariableDefinition) ExecutionFlow(org.yakindu.sct.model.sexec.ExecutionFlow) ExecutionNode(org.yakindu.sct.model.sexec.ExecutionNode) InterfaceScope(org.yakindu.sct.model.stext.stext.InterfaceScope) StextTestFactory._createInterfaceScope(org.yakindu.sct.model.stext.test.util.StextTestFactory._createInterfaceScope) ExecutionEntry(org.yakindu.sct.model.sexec.ExecutionEntry) Sequence(org.yakindu.sct.model.sexec.Sequence) Step(org.yakindu.sct.model.sexec.Step) Entry(org.yakindu.sct.model.sgraph.Entry) ExecutionEntry(org.yakindu.sct.model.sexec.ExecutionEntry) HistoryEntry(org.yakindu.sct.model.sexec.HistoryEntry) SGraphTestFactory._createEntry(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createEntry) SGraphTestFactory._createState(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createState) ExecutionState(org.yakindu.sct.model.sexec.ExecutionState) State(org.yakindu.sct.model.sgraph.State) ExecutionRegion(org.yakindu.sct.model.sexec.ExecutionRegion) Statechart(org.yakindu.sct.model.sgraph.Statechart) SGraphTestFactory._createStatechart(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createStatechart) Region(org.yakindu.sct.model.sgraph.Region) SGraphTestFactory._createRegion(org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createRegion) ExecutionRegion(org.yakindu.sct.model.sexec.ExecutionRegion) HistoryEntry(org.yakindu.sct.model.sexec.HistoryEntry) Test(org.junit.Test)

Example 4 with ExecutionRegion

use of org.yakindu.sct.model.sexec.ExecutionRegion in project statecharts by Yakindu.

the class StateSwitchImpl method setHistoryRegion.

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public void setHistoryRegion(ExecutionRegion newHistoryRegion) {
    ExecutionRegion oldHistoryRegion = historyRegion;
    historyRegion = newHistoryRegion;
    if (eNotificationRequired())
        eNotify(new ENotificationImpl(this, Notification.SET, SexecPackage.STATE_SWITCH__HISTORY_REGION, oldHistoryRegion, historyRegion));
}
Also used : ExecutionRegion(org.yakindu.sct.model.sexec.ExecutionRegion) ENotificationImpl(org.eclipse.emf.ecore.impl.ENotificationImpl)

Example 5 with ExecutionRegion

use of org.yakindu.sct.model.sexec.ExecutionRegion in project statecharts by Yakindu.

the class SaveHistoryImpl method setRegion.

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public void setRegion(ExecutionRegion newRegion) {
    ExecutionRegion oldRegion = region;
    region = newRegion;
    if (eNotificationRequired())
        eNotify(new ENotificationImpl(this, Notification.SET, SexecPackage.SAVE_HISTORY__REGION, oldRegion, region));
}
Also used : ExecutionRegion(org.yakindu.sct.model.sexec.ExecutionRegion) ENotificationImpl(org.eclipse.emf.ecore.impl.ENotificationImpl)

Aggregations

ExecutionRegion (org.yakindu.sct.model.sexec.ExecutionRegion)7 Test (org.junit.Test)4 ExecutionFlow (org.yakindu.sct.model.sexec.ExecutionFlow)4 Entry (org.yakindu.sct.model.sgraph.Entry)4 Region (org.yakindu.sct.model.sgraph.Region)4 State (org.yakindu.sct.model.sgraph.State)4 Statechart (org.yakindu.sct.model.sgraph.Statechart)4 SGraphTestFactory._createEntry (org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createEntry)4 SGraphTestFactory._createRegion (org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createRegion)4 SGraphTestFactory._createState (org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createState)4 SGraphTestFactory._createStatechart (org.yakindu.sct.model.sgraph.test.util.SGraphTestFactory._createStatechart)4 VariableDefinition (org.yakindu.sct.model.stext.stext.VariableDefinition)4 StextTestFactory._createVariableDefinition (org.yakindu.sct.model.stext.test.util.StextTestFactory._createVariableDefinition)4 ENotificationImpl (org.eclipse.emf.ecore.impl.ENotificationImpl)3 ExecutionState (org.yakindu.sct.model.sexec.ExecutionState)3 HistoryEntry (org.yakindu.sct.model.sexec.HistoryEntry)3 InterfaceScope (org.yakindu.sct.model.stext.stext.InterfaceScope)3 StextTestFactory._createInterfaceScope (org.yakindu.sct.model.stext.test.util.StextTestFactory._createInterfaceScope)3 ExecutionEntry (org.yakindu.sct.model.sexec.ExecutionEntry)2 Sequence (org.yakindu.sct.model.sexec.Sequence)2