Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 84cf22e123c33131ab262061eb8cb9d72e785f40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
RoomModel DynamicActorTest7 {

	import room.basic.etunit.* from "Tests.room"
	import room.basic.types.* from "Types.room"

	LogicalSystem JavaGenTests {
		SubSystemRef da7Test : SubSystem_DynamicActorTest7
	}
	
	SubSystemClass SubSystem_DynamicActorTest7 {
		ActorRef main : Appl
	
		LogicalThread defaultThread
	}

	ActorClass Appl {
		Structure {
			ActorRef cont: Container
		}
		Behavior { }
	}

	ActorClass Container {
		Structure {
			usercode1 {
				"import java.io.File;"
			}
			usercode2 {
				"private static final String FIRST_OPT_OBJ = \"firstOpt.obj\";"
				"private static final String SECOND_OPT_OBJ = \"secondOpt.obj\";"
			}
			conjugated Port op: PStep
			conjugated Port opa [*]: PStep
			
			Attribute caseId: int32
			
			optional ActorRef opt: Optional
			optional ActorRef optarr [*]: Optional
			
			Binding op and opt.fct
			Binding opa and optarr.fct
		}
		Behavior {
			ctor {
				"caseId = etUnit_openAll(\"log/testlog\", \"DynamicActorTest7\", \"org.eclipse.etrice.generator.common.tests.DynamicActorTest7\", \"DynamicActorTest7_case\");"
			}
			dtor {
				"etUnit_closeAll(caseId);"
			}
			Operation clean() {
				"File f = new File(FIRST_OPT_OBJ);"
				"if (f.exists())"
				"\tf.delete();"
			}
			StateMachine {
				Transition init: initial -> Init { }
				Transition tr0: Init -> DestroyAndCreate {
					triggers {
						<hello: op>
					}
					action {
						"System.out.println(\"received \"+transitionData);"
					}
				}
				Transition tr1: DestroyAndCreate -> DestroyAndRestore {
					triggers {
						<hello: op>
					}
					action {
						"System.out.println(\"received \"+transitionData);"
					}
				}
				Transition tr2: DestroyAndRestore -> LoadInArray {
					triggers {
						<hello: op>
					}
					action {
						"System.out.println(\"received \"+transitionData);"
					}
				}
				Transition tr3: LoadInArray -> ReceivedHello {
					triggers {
						<hello: opa>
					}
					action {
						"System.out.println(\"received \"+transitionData);"
					}
				}
				Transition tr4: ReceivedHello -> Done {
					triggers {
						<hello: opa>
					}
					action {
						"System.out.println(\"received \"+transitionData);"
					}
				}
				State Init {
					entry {
						"clean();"
						"FilePersistor.createAndLoad(opt, getThread(), FIRST_OPT_OBJ, \"Optional1\");"
						"op.step();"
						"op.step();"
						"op.sayHello();"
					}
				}
				State DestroyAndCreate {
					entry {
						"FilePersistor.saveAndDestroy(opt, FIRST_OPT_OBJ);"
						"FilePersistor.createAndLoad(opt, getThread(), SECOND_OPT_OBJ, \"Optional2\");"
						"op.step();"
						"op.step();"
						"op.sayHello();"
					}
				}
				State DestroyAndRestore {
					entry {
						"FilePersistor.saveAndDestroy(opt, SECOND_OPT_OBJ);"
						"FilePersistor.createAndLoad(opt, getThread(), FIRST_OPT_OBJ, \"Optional1\");"
						"op.sayHello();"
					}
				}
				State Done {
					entry {
						"IRTObject object = getObject(\"/JavaGenTests/da7Test/main/cont/optarr/optarr:0/sub\");"
						"EXPECT_TRUE(caseId, \"object 0 of optarr is an instance of actor class Sub1\", object instanceof Sub1);"
						""
						"Sub1 inst = (Sub1) object;"
						"EXPECT_EQUAL_INT32(caseId, \"state\", Sub1.STATE_Step3_StepA, inst.getState());"
						"EXPECT_EQUAL_INT32(caseId, \"current value of ival\", 123, inst.getIval());"
						"EXPECT_EQUAL_INT16(caseId, \"current value of sval\", (short)456, inst.getSval());"
						"EXPECT_EQUAL_INT8(caseId, \"current value of bval\", (byte)3, inst.getBval());"
						"EXPECT_TRUE(caseId, \"changed string\", \"changed\".equals(inst.getSome()[1].getStr()));"
						"EXPECT_EQUAL_FLOAT32(caseId, \"current vaue of\", 3.14159f, inst.getDerived().getSome().getFval()[2], 0.001f);"
						"EXPECT_EQUAL_UINT8(caseId, \"current value of cval\", 'x', inst.getCval());"
						""
						"etUnit_testFinished(caseId);"
					}
				}
				State LoadInArray {
					entry {
						"FilePersistor.createAndLoad(optarr, getThread(), FIRST_OPT_OBJ, \"Optional1\");"
						"FilePersistor.createAndLoad(optarr, getThread(), SECOND_OPT_OBJ, \"Optional2\");"
						"opa.sayHello();"
					}
				}
				State ReceivedHello
			}
		}
	}

	abstract ActorClass Optional {
		Interface {
			Port fct: PStep
		}
		Structure { }
		Behavior { }
	}

	ActorClass Optional1 extends Optional {
		Structure {
			ActorRef ^sub: Sub1
			Binding fct and ^sub.fct
		}
		Behavior { }
	}

	ActorClass Optional2 extends Optional {
		Structure {
			ActorRef ^sub: Sub2
			Binding fct and ^sub.fct
		}
		Behavior { }
	}

	ActorClass Sub1Base {
		Structure {
			Attribute cval: char
		}
	}
	
	ActorClass Sub1 extends Sub1Base {
		Interface {
			Port fct: PStep
		}
		Structure {
			external Port fct
			conjugated Port dp: PStep
			
			Attribute ival: int32
			Attribute sval: int16
			Attribute bval: int8
			Attribute some[3]: SomeData
			Attribute other: OtherData
			Attribute derived: DerivedData
			
			ActorRef deep: DeepSub1
			Binding dp and deep.fct
		}
		Behavior {
			StateMachine {
				Transition init: initial -> Step1 { }
				Transition tr0: Step1 -> Step2 {
					triggers {
						<step: fct>
					}
					action {
						"dp.step();"
					}
				}
				Transition tr1: Step2 -> Step3 {
					triggers {
						<step: fct>
					}
					action {
						"dp.step();"
					}
				}
				Transition tr2: my tp0 -> my tp0 {
					triggers {
						<sayHello: fct>
					}
					action {
						"fct.hello(getClassName()+\", state=\"+stateStrings[getState()]+\", path= \"+getInstancePath());"
					}
				}
				handler TransitionPoint tp0
				State Step1 {
					entry {
						"ival = 1;"
						"sval = 2;"
						"bval = 3;"
						"cval = 'x';"
					}
				}
				State Step2 {
					entry {
						"ival = 123;"
						"some[1].str = \"changed\";"
						"derived.some.fval[2] = 3.14159f;"
					}
				}
				State Step3 {
					subgraph {
						Transition init: initial -> StepA { }
						Transition tr0: StepA -> StepB {
							triggers {
								<step: fct>
							}
							action {
								"dp.step();"
							}
						}
						Transition tr1: StepB -> StepC {
							triggers {
								<step: fct>
							}
							action {
								"dp.step();"
							}
						}
						State StepA {
							entry {
								"sval = 456;"
							}
						}
						State StepB {
							entry {
								"bval = 13;"
							}
						}
						State StepC
					}
				}
			}
		}
	}

	ActorClass DeepSub1 {
		Interface {
			Port fct: PStep
		}
		Structure {
			external Port fct
		}
		Behavior {
			StateMachine {
				Transition init: initial -> Step1 { }
				Transition tr0: Step1 -> Step2 {
					triggers {
						<step: fct>
					}
				}
				Transition tr1: Step2 -> Step3 {
					triggers {
						<step: fct>
					}
				}
				Transition tr2: Step3 -> Step5 {
					triggers {
						<step: fct>
					}
				}
				Transition tr3: Step5 -> Step6 {
					triggers {
						<step: fct>
					}
				}
				Transition tr4: Step6 -> Step7 {
					triggers {
						<step: fct>
					}
				}
				State Step1
				State Step2
				State Step3
				State Step5
				State Step6
				State Step7
			}
		}
	}

	ActorClass Sub2 {
		Interface {
			Port fct: PStep
		}
		Structure {
			external Port fct
		}
		Behavior {
			StateMachine {
				Transition init: initial -> Ready { }
				Transition tr0: Ready -> Ready {
					triggers {
						<step: fct>
					}
				}
				Transition tr1: Ready -> Ready {
					triggers {
						<sayHello: fct>
					}
					action {
						"fct.hello(getClassName()+\", state=\"+stateStrings[getState()]+\", path= \"+getInstancePath());"
					}
				}
				State Ready
			}
		}
	}

	ProtocolClass PStep {
		incoming {
			Message step()
			Message sayHello()
		}
		outgoing {
			Message hello(txt: string)
		}
	}

	DataClass SomeData {
		Attribute fval[3]: float32 = "1.0"
		Attribute dval: float64 = "123.4"
		Attribute str: string = "\"Text\""
	}
	
	DataClass OtherData {
		Attribute some: SomeData
		Attribute bval: boolean = "false"
	}
	
	DataClass DerivedData extends OtherData {
		Attribute cval[3]: char = "{'a', 'b', 'c'}"
	}
}

Back to the top