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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217 | // ******************************************************************************
// * Interface definitions for the TTCN-3 Control Interfaces
// ******************************************************************************
module tciInterface {
/* Forward declaration */
interface Value;
interface Type;
// ******************************************************************************
// * Data types taken from the TRI definitions
// ******************************************************************************
// Connection
native TriPortIdType ;
native TriPortIdListType;
native TriComponentIdType ;
native TriComponentIdListType;
// Communications
native TriMessageType;
native TriParameterType;
native TriParameterListType;
native TriAddressType;
native TriAddressListType;
native TriExceptionType;
native TriSignatureIdType;
// Miscellaneous
native TriStatusType;
native TriTimerIdType;
native TriTimerDurationType;
native TciStatusType;
// *******************************************************************************
// * General Abstract Data Types
// *******************************************************************************
// Basic definitions
native TBoolean;
native TFloat;
native TChar;
native TInteger;
native TString;
native TUniversalChar;
typedef sequence <TString> TStringSeq;
struct QualifiedName {
TString moduleName;
TString baseName;
};
// General TCI abstract data types
typedef QualifiedName TciBehaviourIdType;
typedef QualifiedName TciModuleIdType;
typedef QualifiedName TciModuleParameterIdType;
typedef QualifiedName TciTestCaseIdType;
enum TciParameterPassingModeType {
IN_MODE,
OUT_MODE,
INOUT_MODE
};
struct TciParameterType {
TciModuleParameterIdType parameterName;
Value parameterValue;
TciParameterPassingModeType mode;
};
typedef sequence <TciParameterType> TciParameterListType;
struct TciParameterTypeType {
Type parameterType;
TciParameterPassingModeType mode;
};
typedef sequence <TciParameterTypeType> TciParameterTypeListType;
struct TciModuleParameterType {
TciModuleParameterIdType parameterName;
Value defaultValue;
};
typedef sequence <TciModuleIdType> TciModuleIdListType ;
typedef sequence <TciModuleParameterType> TciModuleParameterListType;
typedef sequence <TciTestCaseIdType> TciTestCaseIdListType;
enum TciTestComponentKindType {
CONTROL,
MTC,
PTC,
SYSTEM,
PTC_ALIVE
};
enum ComponentStatusType{
inactiveC,
runningC,
stoppedC,
killedC,
nullC
};
enum TimerStatusType{
runningT,
inactiveT,
expiredT,
nullT
};
enum PortStatusType{
startedP,
haltedP,
stoppedP
};
enum TciTypeClassType {
ADDRESS_CLASS,
ANYTYPE_CLASS,
BITSTRING_CLASS,
BOOLEAN_CLASS,
CHARSTRING_CLASS,
COMPONENT_CLASS,
ENUMERATED_CLASS,
FLOAT_CLASS,
HEXSTRING_CLASS,
INTEGER_CLASS,
OCTETSTRING_CLASS,
RECORD_CLASS,
RECORDOF_CLASS,
ARRAY_CLASS,
SET_CLASS,
SETOF_CLASS,
UNION_CLASS,
UNIVERSALCHARSTRING_CLASS,
VERDICT_CLASS
};
// **************************************************************************
// * Abstract TTCN-3 Data Types And Values
// **************************************************************************
// Abstract data type "Type"
interface Type {
TciModuleIdType getDefiningModule ();
TString getName ();
TciTypeClassType getTypeClass ();
Value newInstance ();
TString getTypeEncoding ();
TString getTypeEncodingVariant ();
TStringSeq getTypextension ();
};
// Abstract TTCN-3 Values
interface Value {
TString getValueEncoding ();
TString getValueEncodingVariant ();
Type getType ();
TBoolean notPresent ();
};
interface RecordOfValue : Value {
Value getField (in TInteger position);
void setField (
in TInteger position,
in Value value
);
void appendField (in Value value);
Type getElementType ();
TInteger getLength ();
void setLength (in TInteger len);
TInteger getOffset ();
};
interface RecordValue : Value {
Value getField (in TString fieldName);
void setField (
in TString fieldName,
in Value value
);
TStringSeq getFieldNames ();
void setFieldOmitted (in TString fieldName);
};
interface VerdictValue : Value {
TInteger getVerdict ();
void setVerdict (in TInteger verdict);
};
interface BitstringValue : Value {
TString getString ();
void setString (in TString value);
TInteger getBit (in TInteger position);
void setBit (
in TInteger position,
in TInteger value
);
TInteger getLength ();
void setLength (in TInteger len);
};
interface OctetstringValue : Value {
TString getString ();
void setString (in TString value);
TInteger getOctet (in TInteger position);
void setOctet (
in TInteger position,
in TInteger value
);
TInteger getLength ();
void setLength (in TInteger len);
};
interface FloatValue : Value {
TFloat getFloat ();
void setFloat (in TFloat value);
};
interface HexstringValue : Value {
TString getString ();
void setString (in TString value);
TInteger getHex (in TInteger position);
void setHex (
in TInteger position,
in TInteger value
);
TInteger getLength ();
void setLength (in TInteger len);
};
interface EnumeratedValue : Value {
void setEnum (in TString enumValue);
TString getEnum ();
};
interface IntegerValue : Value {
TInteger getInt ();
void setInt (in TInteger value);
};
interface CharValue : Value {
TChar getChar ();
void setChar (in TChar value);
};
interface CharstringValue : Value {
TString getString ();
void setString (in TString value);
TChar getChar (in TInteger position);
void setChar (
in TInteger position,
in TChar value
);
TInteger getLength ();
void setLength (in TInteger len);
};
interface BooleanValue : Value {
TBoolean getBoolean ();
void setBoolean (in TBoolean value);
};
interface UniversalCharValue : Value {
TUniversalChar getUniversalChar ();
void setUniversalChar (in TUniversalChar value);
};
interface UniversalCharstringValue : Value {
TString getString ();
void setString (in TString value);
TUniversalChar getChar (in TInteger position);
void setChar (
in TInteger position,
in TUniversalChar value
);
TInteger getLength ();
void setLength (in TInteger len);
};
interface UnionValue : Value {
Value getVariant (in TString variantName);
void setVariant (
in TString variantName,
in Value value
);
TString getPresentVariantName ();
TStringSeq getVariantNames ();
};
// **************************************************************************
// * Abstract Logging Types
// **************************************************************************
interface TciValueTemplate : Value {
TBoolean isOmit ();
TBoolean isAny();
TBoolean isAnyOrOmit();
TString getTemplateDef();
};
interface TciNonValueTemplate {
TBoolean isAny();
TBoolean isAll();
TString getTemplateDef();
};
typedef sequence <Value> TciValueListType;
struct TciValueDifferenceType
{
TString desc;
Value val;
TciValueTemplate tmpl;
};
typedef sequence <TciValueDifferenceType> TciValueDifferenceListType;
interface TciValueList {
attribute TciValueListType inst;
TInteger size();
TBoolean isEmpty();
Value get(in TInteger index);
};
interface TciValueDifference {
attribute TciValueDifferenceType inst;
Value getValue();
TciValueTemplate getTciValueTemplate();
TString getDescription();
};
interface TciValueDifferenceList {
attribute TciValueDifferenceListType inst;
TInteger size();
TBoolean isEmpty();
TciValueDifference get(in TInteger index);
};
// *******************************************************************************
// Coding Decoding Interface
// � Required
// *******************************************************************************
interface TCI_CD_Required {
Type getTypeForName (in TString typeName);
Type getInteger ();
Type getFloat ();
Type getBoolean ();
Type getChar ();
Type getUniversalChar ();
Type getCharstring ();
Type getUniversalCharstring ();
Type getHexstring ();
Type getBitstring ();
Type getOctetstring ();
Type getVerdict ();
void tciErrorReq (in TString message);
};
// *******************************************************************************
// Coding Decoding interface
// � Provided
// *******************************************************************************
interface TCI_CD_Provided {
Value decode (
in TriMessageType message,
in Type decodingHypothesis
);
TriMessageType encode (in Value value);
};
// *******************************************************************************
// Test Management Interface
// � Required
// *******************************************************************************
interface TCI_TM_Required : TCI_CD_Required {
void tciRootModule (in TciModuleIdType moduleName);
TciModuleIdListType tciGetImportedModules();
TciModuleParameterListType tciGetModuleParameters (in TciModuleIdType moduleName);
TciTestCaseIdListType tciGetTestCases ();
TciParameterTypeListType tciGetTestCaseParameters (
in TciTestCaseIdType testCaseId
);
TriPortIdListType tciGetTestCaseTSI (
in TciTestCaseIdType testCaseId
);
void tciStartTestCase (
in TciTestCaseIdType testCaseId,
in TciParameterListType parameterList
);
void tciStopTestCase ();
TriComponentIdType tciStartControl ();
void tciStopControl ();
};
// *******************************************************************************
// Test Management Interface
// � Provided
// *******************************************************************************
interface TCI_TM_Provided {
void tciTestCaseStarted (
in TciTestCaseIdType testCaseId,
in TciParameterListType parameterList,
in TFloat timer
);
void tciTestCaseTerminated (
in VerdictValue verdict,
in TciParameterListType parameterList
);
void tciControlTerminated ();
Value tciGetModulePar (
in TciModuleParameterIdType parameterId
);
void tciLog (
in TriComponentIdType testComponentId,
in TString message
);
void tciError (in TString message);
};
// *******************************************************************************
// Component Handling Interface
// � Required
// *******************************************************************************
interface TCI_CH_Required : TCI_CD_Required {
void tciEnqueueMsgConnected (
in TriPortIdType sender,
in TriComponentIdType receiver,
in Value receivedMessage
);
void tciEnqueueCallConnected (
in TriPortIdType sender,
in TriComponentIdType receiver,
in TriSignatureIdType signature,
in TciParameterListType parameterList
);
void tciEnqueueReplyConnected (
in TriPortIdType sender,
in TriComponentIdType receiver,
in TriSignatureIdType signature,
in TciParameterListType parameterList,
in Value returnValue
);
void tciEnqueueRaiseConnected (
in TriPortIdType sender,
in TriComponentIdType receiver,
in TriSignatureIdType signature,
in Value except
);
TriComponentIdType tciCreateTestComponent (
in TciTestComponentKindType kind,
in Type componentType,
in TString name,
in Value hostId
);
void tciStartTestComponent (
in TriComponentIdType comp,
in TciBehaviourIdType behavior,
in TciParameterListType parameterList
);
void tciStopTestComponent (
in TriComponentIdType comp
);
void tciConnect (
in TriPortIdType fromPort,
in TriPortIdType toPort
);
void tciDisconnect (
in TriPortIdType fromPort,
in TriPortIdType toPort
);
void tciTestComponentTerminated (
in TriComponentIdType comp,
in VerdictValue verdict
);
TBoolean tciTestComponentRunning (
in TriComponentIdType comp
);
TriComponentIdType tciGetMTC ();
void tciMap (
in TriPortIdType fromPort,
in TriPortIdType toPort
);
void tciUnmap (
in TriPortIdType fromPort,
in TriPortIdType toPort
);
void tciExecuteTestCase (
in TciTestCaseIdType testCaseId,
in TriPortIdListType tsiPortList
);
TBoolean tciTestComponentDone (
in TriComponentIdType comp
);
void tciReset ();
};
// *******************************************************************************
// Component Handling Interface
// � Provided
// *******************************************************************************
interface TCI_CH_Provided {
void tciSendConnected (
in TriPortIdType sender,
in TriComponentIdType receiver,
in Value sendMessage
);
void tciSendConnectedBC (
in TriPortIdType sender,
in Value sendMessage
);
void tciSendConnectedMC (
in TriPortIdType sender,
in TriComponentIdListType receivers,
in Value sendMessage
);
void tciCallConnected (
in TriPortIdType sender,
in TriComponentIdType receiver,
in TriSignatureIdType signature,
in TciParameterListType parameterList
);
void tciCallConnectedBC (
in TriPortIdType sender,
in TriSignatureIdType signature,
in TciParameterListType parameterList
);
void tciCallConnectedMC (
in TriPortIdType sender,
in TriComponentIdListType receivers,
in TriSignatureIdType signature,
in TciParameterListType parameterList
);
void tciReplyConnected (
in TriPortIdType sender,
in TriComponentIdType receiver,
in TriSignatureIdType signature,
in TciParameterListType parameterList,
in Value returnValue
);
void tciReplyConnectedBC (
in TriPortIdType sender,
in TriSignatureIdType signature,
in TciParameterListType parameterList,
in Value returnValue
);
void tciReplyConnectedMC (
in TriPortIdType sender,
in TriComponentIdListType receivers,
in TriSignatureIdType signature,
in TciParameterListType parameterList,
in Value returnValue
);
void tciRaiseConnected (
in TriPortIdType sender,
in TriComponentIdType receiver,
in TriSignatureIdType signature,
in Value except
);
void tciRaiseConnectedBC (
in TriPortIdType sender,
in TriSignatureIdType signature,
in Value except
);
void tciRaiseConnectedMC (
in TriPortIdType sender,
in TriComponentIdListType receivers,
in TriSignatureIdType signature,
in Value except
);
TriComponentIdType tciCreateTestComponentReq (
in TciTestComponentKindType kind,
in Type componentType,
in TString name
);
void tciStartTestComponentReq (
in TriComponentIdType comp,
in TciBehaviourIdType behavior,
in TciParameterListType parameterList
);
void tciStopTestComponentReq (
in TriComponentIdType comp
);
void tciConnectReq (
in TriPortIdType fromPort,
in TriPortIdType toPort
);
void tciDisconnectReq (
in TriPortIdType fromPort,
in TriPortIdType toPort
);
void tciTestComponentTerminatedReq (
in TriComponentIdType comp,
in VerdictValue verdict
);
TBoolean tciTestComponentRunningReq (
in TriComponentIdType comp
);
TriComponentIdType tciGetMTCReq ();
void tciMapReq (
in TriPortIdType fromPort,
in TriPortIdType toPort
);
void tciUnmapReq (
in TriPortIdType fromPort,
in TriPortIdType toPort
);
void tciExecuteTestCaseReq (
in TciTestCaseIdType testCaseId,
in TriPortIdListType tsiPortList
);
void tciResetReq ();
TBoolean tciTestComponentDoneReq (
in TriComponentIdType comp
);
};
// *******************************************************************************
// Test Logging Interface
// � Provided
// *******************************************************************************
interface TCI_TL_Provided {
void tliTcExecute(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TciTestCaseIdType tcId,
in TciParameterListType tciPars, in TriTimerDurationType dur
);
void tliTcStart(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TciTestCaseIdType tcId,
in TciParameterListType tciPars, in TriTimerDurationType dur
);
void tliTcStop(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TString reason
);
void tliTcStarted(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TciTestCaseIdType tcId,
in TciParameterListType tciPars, in TriTimerDurationType dur
);
void tliTcTerminated(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TciTestCaseIdType tcId,
in TciParameterListType tciPars, in VerdictValue verdict, in TString reason);
void tliCtrlStart(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c
);
void tliCtrlStop(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c
);
void tliCtrlTerminated(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c);
void tliMSend_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to, in Value msgValue,
in Value addrValue, in TciStatusType encoderFailure,
in TriMessageType msg, in TriAddressType address, in TriStatusType transmissionFailure
);
void tliMSend_m_BC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to, in Value msgValue,
in TciStatusType encoderFailure, in TriMessageType msg,
in TriStatusType transmissionFailure
);
void tliMSend_m_MC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to, in Value msgValue,
in TciValueList addrValues, in TciStatusType encoderFailure,
in TriMessageType msg, in TriAddressListType addresses,
in TriStatusType transmissionFailure
);
void tliMSend_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to, in Value msgValue,
in TriStatusType transmissionFailure
);
void tliMSend_c_BC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdListType to, in Value msgValue,
in TriStatusType transmissionFailure
);
void tliMSend_c_MC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdListType to, in Value msgValue,
in TriStatusType transmissionFailure);
void tliMDetected_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType from,
in TriMessageType msg,
in TriAddressType address
);
void tliMDetected_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType from, in Value msgValue
);
void tliMMismatch_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in Value msgValue,
in TciValueTemplate msgTmpl, in TciValueDifferenceList diffs,
in Value addrValue, in TciValueTemplate addressTmpl
);
void tliMMismatch_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in Value msgValue,
in TciValueTemplate msgTmpl, in TciValueDifferenceList diffs,
in TriComponentIdType from, in TciNonValueTemplate fromTmpl
);
void tliMReceive_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in Value msgValue,
in TciValueTemplate msgTmpl, in Value addrValue,
in TciValueTemplate addressTmpl
);
void tliMReceive_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in Value msgValue,
in TciValueTemplate msgTmpl, in TriComponentIdType from,
in TciNonValueTemplate fromTmpl
);
void tliPrCall_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in Value addrValue, in TciStatusType encoderFailure,
in TriParameterListType triPars, in TriAddressType address,
in TriStatusType transmissionFailure
);
void tliPrCall_m_BC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in TciStatusType encoderFailure, in TriParameterListType triPars,
in TriStatusType transmissionFailure
);
void tliPrCall_m_MC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in TciValueList addrValues, in TciStatusType encoderFailure,
in TriParameterListType triPars, in TriAddressListType addresses,
in TriStatusType transmissionFailure
);
void tliPrCall_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in TriStatusType transmissionFailure
);
void tliPrCall_c_BC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdListType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in TriStatusType transmissionFailure
);
void tliPrCall_c_MC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdListType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in TriStatusType transmissionFailure
);
void tliPrGetCallDetected_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType from,
in TriSignatureIdType signature, in TriParameterListType triPars,
in TriAddressType address
);
void tliPrGetCallDetected_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType from,
in TriSignatureIdType signature, in TciParameterListType tciPars
);
void tliPrGetCallMismatch_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in TciValueTemplate parsTmpl, in TciValueDifferenceList diffs,
in Value addrValue, in TciValueTemplate addressTmpl
);
void tliPrGetCallMismatch_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in TciValueTemplate parsTmpl, in TciValueDifferenceList diffs,
in TriComponentIdType from, in TciNonValueTemplate fromTmpl
);
void tliPrGetCall_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in TciValueTemplate parsTmpl, in Value addrValue,
in TciValueTemplate addressTmpl
);
void tliPrGetCall_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in TciValueTemplate parsTmpl, in TriComponentIdType from,
in TciNonValueTemplate fromTmpl
);
void tliPrReply_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in Value replValue, in Value addrValue,
in TciStatusType encoderFailure, in TriParameterListType triPars,
in TriParameterType repl, in TriAddressType address, in TriStatusType transmissionFailure
);
void tliPrReply_m_BC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to,
in TriSignatureIdType signature, in TciParameterListType tciPars, in Value replValue,
in TciStatusType encoderFailure, in TriParameterListType triPars,
in TriParameterType repl, in TriStatusType transmissionFailure
);
void tliPrReply_m_MC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to,
in TriSignatureIdType signature, in TciParameterListType tciPars, in Value replValue,
in TciValueListType addrValues, in TciStatusType encoderFailure,
in TriParameterListType triPars, in TriParameterType repl,
in TriAddressListType addresses, in TriStatusType transmissionFailure
);
void tliPrReply_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in Value replValue, in TriStatusType transmissionFailure
);
void tliPrReply_c_BC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdListType to,
in TriSignatureIdType signature, in Value parsValue, in Value replValue,
in TriStatusType transmissionFailure
);
void tliPrReply_c_MC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdListType to,
in TriSignatureIdType signature, in Value parsValue, in Value replValue,
in TriStatusType transmissionFailure
);
void tliPrGetReplyDetected_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType from,
in TriSignatureIdType signature, in TriParameterListType triPars,
in TriParameterType repl, in TriAddressType address
);
void tliPrGetReplyDetected_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType from,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in Value replValue
);
void tliPrGetReplyMismatch_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature,
in TciParameterListType tciPars, in TciValueTemplate parsTmpl,
in Value replValue, in TciValueTemplate replyTmpl,
in TciValueDifferenceList diffs, in Value addrValue,
in TciValueTemplate addressTmpl
);
void tliPrGetReplyMismatch_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature,
in TciParameterListType tciPars, in TciValueTemplate parsTmpl,
in Value replValue, in TciValueTemplate replyTmpl,
in TciValueDifferenceList diffs, in TriComponentIdType from,
in TciNonValueTemplate fromTmpl
);
void tliPrGetReply_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature,
in TciParameterListType tciPars, in TciValueTemplate parsTmpl,
in Value replValue, in TciValueTemplate replyTmpl,
in Value addrValue, in TciValueTemplate addressTmpl
);
void tliPrGetReply_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature,
in TciParameterListType tciPars, in TciValueTemplate parsTmpl,
in Value replValue, in TciValueTemplate replyTmpl,
in TriComponentIdType from, in TciNonValueTemplate fromTmpl
);
void tliPrRaise_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in Value excValue, in Value addrValue, in TciStatusType encoderFailure,
in TriExceptionType exc, in TriAddressType address, in TriStatusType transmissionFailure
);
void tliPrRaise_m_BC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in Value excValue, in TciStatusType encoderFailure, in TriExceptionType exc,
in TriStatusType transmissionFailure
);
void tliPrRaise_m_MC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in Value excValue, in TciValueListType addrValues,
in TciStatusType encoderFailure, in TriExceptionType exc,
in TriAddressListType addresses, in TriStatusType transmissionFailure
);
void tliPrRaise_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in Value excValue, in TriStatusType transmissionFailure
);
void tliPrRaise_c_BC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdListType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in Value excValue, in TriStatusType transmissionFailure
);
void tliPrRaise_c_MC(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdListType to,
in TriSignatureIdType signature, in TciParameterListType tciPars,
in Value excValue, in TriStatusType transmissionFailure
);
void tliPrCatchDetected_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType from,
in TriSignatureIdType signature,
in TriExceptionType exc, in TriAddressType address
);
void tliPrCatchDetected_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at, in TriPortIdType from,
in TriSignatureIdType signature, in Value excValue
);
void tliPrCatchMismatch_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature,
in Value excValue, in TciValueTemplate excTmpl,
in TciValueDifferenceList diffs, in Value addrValue,
in TciValueTemplate addressTmpl
);
void tliPrCatchMismatch_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature,
in Value excValue, in TciValueTemplate excTmpl,
in TciValueDifferenceList diffs, in TriComponentIdType from,
in TciNonValueTemplate fromTmpl
);
void tliPrCatch_m(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature,
in Value excValue, in TciValueTemplate excTmpl,
in Value addrValue, in TciValueTemplate addressTmpl);
void tliPrCatch_c(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature,
in Value excValue, in TciValueTemplate excTmpl,
in TriComponentIdType from, in TciNonValueTemplate fromTmpl
);
void tliPrCatchTimeoutDetected(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature
);
void tliPrCatchTimeout(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType at,
in TriSignatureIdType signature
);
void tliCCreate(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriComponentIdType comp,
in TString name, in TBoolean alive
);
void tliCStart(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriComponentIdType comp,
in TciBehaviourIdType name, in TciParameterListType tciPars
);
void tliCRunning(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriComponentIdType comp, in ComponentStatusType status
);
void tliCAlive(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c,
in TriComponentIdType comp, in ComponentStatusType status
);
void tliCStop(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriComponentIdType comp
);
void tliCKill(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriComponentIdType comp
);
void tliCDoneMismatch(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriComponentIdType comp, in TciNonValueTemplate compTmpl
);
void tliCKilledMismatch(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriComponentIdType comp, in TciNonValueTemplate compTmpl
);
void tliCDone(in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TciNonValueTemplate compTmpl
);
void tliCKilled(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TciNonValueTemplate compTmpl
);
void tliCTerminated(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in VerdictValue verdict, in TString reason
);
void tliPConnect(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType port1, in TriPortIdType port2
);
void tliPDisconnect(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType port1,
in TriPortIdType port2
);
void tliPMap(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType port1, in TriPortIdType port2
);
void tliPUnmap(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType port1,
in TriPortIdType port2
);
void tliPClear(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType port
);
void tliPStart(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType port
);
void tliPStop(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType port
);
void tliPHalt(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriPortIdType port
);
void tliEncode(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in Value val, in TciStatusType encoderFailure,
in TriMessageType msg, in TString codec
);
void tliDecode(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriMessageType msg,
in TciStatusType decoderFailure, in Value val, in TString codec
);
void tliTTimeoutDetected(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriTimerIdType timer
);
void tliTTimeoutMismatch(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriTimerIdType timer, in TciNonValueTemplate timerTmpl
);
void tliTTimeout(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriTimerIdType timer, in TciNonValueTemplate timerTmpl
);
void tliTStart(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriTimerIdType timer,
in TriTimerDurationType dur
);
void tliTStop(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriTimerIdType timer, in TriTimerDurationType dur
);
void tliTRead(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriTimerIdType timer,
in TriTimerDurationType elapsed
);
void tliTRunning(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TriTimerIdType timer, in TimerStatusType status
);
void tliSEnter(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in QualifiedName name, in TciParameterListType tciPars,
in TString kind
);
void tliSLeave(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in QualifiedName name, in TciParameterListType tciPars,
in Value returnValue, in TString kind
);
void tliVar(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in QualifiedName name, in Value varValue
);
void tliModulePar(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in QualifiedName name, in Value parValue
);
void tliGetVerdict(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in VerdictValue verdict
);
void tliSetVerdict(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in VerdictValue verdict, in TString reason
);
void tliLog(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TString log
);
void tliAEnter(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c
);
void tliALeave(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c
);
void tliADefaults(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c
);
void tliAActivate(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in QualifiedName name, in TciParameterListType tciPars,
in Value ref
);
void tliADeactivate(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in Value ref
);
void tliANomatch(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c
);
void tliARepeat(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c
);
void tliAWait(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c
);
void tliAction(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in TString action
);
void tliMatch(
in TString am, in TInteger ts, in TString src, in TInteger line,
in TriComponentIdType c, in Value expr, in TciValueTemplate tmpl
);
void tliMatchMismatch(
in TString am, in TInteger ts, in TString src,
in TInteger line, in TriComponentIdType c, in Value expr,
in TciValueTemplate tmpl, in TciValueDifferenceList diffs
);
void tliInfo(
in TString am, in TInteger ts, in TString src,
in TInteger line, in TriComponentIdType c,
in TInteger level, in TString info
);
};
};
|