Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fe44b8e75e9f576e3fd9e6b97a5026d4cd750ee2 (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
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
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
/*****************************************************************************
 * Copyright (c) 2013-2015 CEA LIST.
 *    
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   Ed Seidewitz
 * 
 *****************************************************************************/
import org.eclipse.papyrus.uml.alf.to.fuml.qvt.QVTLibrary;
import AlfStatement2UML;
import UML2AlfLibrary;

modeltype Alf uses "http://www.omg.org/spec/ALF/20120827";
modeltype UML uses "http://www.eclipse.org/uml2/5.0.0/UML";

transformation Alf2UML(in alf : Alf, inout uml : UML)
	extends transformation AlfStatement2UML(in Alf, inout UML)
	access library UML2AlfLibrary;

// blackbox query SyntaxElement::serialize() : String;

main() {
  var model := uml.rootObjects()![Model];
  if (model = null) then {
    model := object Model {
      name := "Model";
    };
  } endif;
  UML2AlfLibrary::setModel(model);
  alf.rootObjects()![UnitDefinition].map toNamespace();
  model.packagedElement := uml.rootObjects()[PackageableElement]->excluding(model);
  applyStereotypes();
  applyDefinitions();
}

// STEREOTYPES

intermediate class StereotypedElement {
  target : Element;
  stereotypeNames : Set(String);
}

property stereotypedElements : Set(StereotypedElement) = Set{}; 

helper addAsStereotyped(inout element : Element, names : Set(String)) {
  stereotypedElements += object StereotypedElement {
    target := element;
    stereotypeNames := names;
  };
  var text := "target=" + element.toString() + "\nstereotypeNames=";
  names->forEach(name) {
  	text := text + name + " ";
  };
  return;
}

query Element::isToBeStereotyped(stereotypeName : String) : Boolean {
	return stereotypedElements->exists(
		target = self and stereotypeNames->includes(stereotypeName)
	);
}

query Element::hasStereotype(stereotypeName : String) : Boolean {
	return self.isStereotypeApplied(self.getStereotype(stereotypeName)) or 
			   self.isToBeStereotyped(stereotypeName);
}

helper applyStereotypes() {
  if stereotypedElements->notEmpty() then {
    stereotypedElements.applyStereotypes();
  } endif;
}

helper StereotypedElement::applyStereotypes() {
//  log("[applyStereotypes] target=" + self.target.toString());
  self.stereotypeNames->forEach(stereotypeName) {
    self.target.applyStereotype(stereotypeName)
  }
}

// Note: The application of stereotypes presumes that a root UML model is passed
// in with the appropriate profile(s) already applied.
helper Element::applyStereotype(name : String) {
  var stereotype := self.getStereotype(name);
//  log("  stereotypeName=" + stereotypeName);
//  log("  stereotype=" + stereotype.toString());
  if stereotype <> null then
    self.applyStereotype(stereotype)
  endif
}

query Element::getStereotype(name : String) : Stereotype {
  var stereotypeName := name;
  var stereotype : Stereotype := null;
  if stereotypeName.indexOf("::") = 0 then {
    var applicableStereotypes := self.getApplicableStereotypes()[name = stereotypeName];
    if applicableStereotypes->size() = 1 then
      stereotype := applicableStereotypes![true]
    else
      stereotypeName := "StandardProfile::" + stereotypeName
    endif
  } endif;
  if (stereotype = null) then
    stereotype := self.getApplicableStereotype(stereotypeName)
  endif;
  return stereotype;
}

// ALF DEFINITIONS OF ACTIVITIES

intermediate class AlfDefinition {
	target : Activity;
	source : SyntaxElement;
}

property alfDefinitions : Set(AlfDefinition) = Set{};

helper addDefinition(activity : Activity, definition : SyntaxElement) {
	var currentDefinitions := alfDefinitions[target = activity];
	if currentDefinitions->notEmpty() then {
		currentDefinitions![true].source := definition;
	} else {
		alfDefinitions += object AlfDefinition {
			target := activity;
			source := definition;
		};
	} endif;
	return;
}

helper applyDefinitions() {
  if alfDefinitions->notEmpty() then {
  	alfDefinitions->forEach(alfDefinition) {
  		var representation = alfDefinition.source.serialize();
  		if alfDefinition.source.oclIsKindOf(Expression) then {
  			if representation.startsWith("=") then {
  				representation := representation.substring(3, representation.length());
  			} endif;
  			representation := "{\n  return " + representation + ";\n}";
  		} endif;
  		if not alfDefinition.source.oclIsKindOf(Activity) then {
  			representation := activityDeclarationFor(alfDefinition.target) + " " + representation;
  		} endif;
  		addTextualRepresentation(alfDefinition.target, representation);
  	};
  } endif;
	return;
}

helper addTextualRepresentation(inout element : Element, representation : String) {
  var comment := object Comment {
  	body := representation;
  	annotatedElement := element;
  };
  element.ownedComment += comment;
  var stereotype := 
    comment.getApplicableStereotype("ActionLanguage::TextualRepresentation");
  if stereotype <> null then {
    comment.applyStereotype(stereotype);
    comment.setValue(stereotype, "language", "Alf");
  } endif;
}

query activityDeclarationFor(activity : Activity) : String {
	var text := "activity " + activity.alfName();
	
	if activity.ownedTemplateSignature <> null then {
		text := text + "<";
		var notFirstParameter := false;
		activity.ownedTemplateSignature.ownedParameter.oclAsType(uml::ClassifierTemplateParameter)->
  		forEach(parameter) {
  			if notFirstParameter then
  			 text := text + ", "
  			endif;
  			text := text + parameter.parameteredElement.oclAsType(Classifier).alfName();
  			if parameter.constrainingClassifier->notEmpty() then {
  				text := text + " specializes " + parameter.constrainingClassifier![true].alfName();
  			} endif;
  			notFirstParameter := true;
  		};
    text := text + ">";
	} endif;
	
	text := text + "(";
	
	var returnParameter : Parameter := null;
	var notFirstParameter := false;
  activity.ownedParameter->forEach(parameter) {
  	if parameter.direction = ParameterDirectionKind::_return then
  	  returnParameter := parameter
  	else {
  		if notFirstParameter then
  		  text := text + ", "
  		endif;
  		text := text + parameter.direction.toString() + " " + 
  			parameter.alfName() + parameter.typePart(activity);
  		notFirstParameter := true;
  	} endif;
  };
  
  text := text + ")";
  
  if returnParameter <> null then
    text := text + returnParameter.typePart(activity)
  endif;
  
  return text;
}

query Parameter::typePart(context : NamedElement) : String {
	return ": " +
	  ( let type = self.type.oclAsType(Classifier) in
	    if type = null then "any" else type.alfPathName(context) endif
	  ) + self.multiplicity();    
}

query MultiplicityElement::multiplicity() : String {
  return
  	if self.lower = 1 and self.upper = 1 then ""
  	else
    	"[" + self.lower.toString() + ".." +
      ( let upper = self.upper in
          if upper < 0 then "*" else upper.toString() endif
      ) + "]"
    endif +
    if self.isOrdered and not self.isUnique then " sequence"
    else if self.isOrdered then " ordered"
    else if not self.isUnique then " nonunique" 
    else "" endif endif endif
}

/*
query NamedElement::alfName() : String {
  return
  	if self.name = null then null
  	else self.name.toName()
  	endif;
}

query String::toName() : String {
  return
   if self.isIdentifier() then self
   else self.toRestrictedName()
   endif;     
}

query String::isIdentifier() : Boolean {
  return self.matches("[a-zA-z_][a-zA-z_0-9]*");
}

query String::toRestrictedName() : String {
  return "'" + self.
   replace("\\", "\\\\").
   replace("\b", "\\b").
   replace("\t", "\\t").
   replace("\n", "\\n").
   replace("\f", "\\f").
   replace("\r", "\\r").
   replace("'", "\\'") +
   "'";
}
*/
// COMMON

// Syntax Elements

mapping SyntaxElement::toUml() : Element
  disjuncts MemberDefinition::memberToNamedElement, Expression::toActivity;
  
// Element References

helper InternalElementReference::toUml() : Element {
  return self.asAlf().map toUml();
}

// UNITS

// Unit Definitions

mapping UnitDefinition::toNamespace() : Namespace 
  inherits DocumentedElement::toElement {
init {
	result := self.definition.map toNamespace();
}
  // TODO: Handle namespace declarations.
  /*
  if self.namespace <> null then
    let namespace =
      if self.namespace.isUml() then
        self.namespace.asUml().oclAsType(Namespace)
      else
        self.namespace.asAlf().oclAsType(NamespaceDefinition).map toNamespace()
      endif 
    in
      if namespace.oclIsKindOf(Package) and result.oclIsKindOf(PackageableElement) then
        namespace.oclAsType(Package).packagedElement += result.oclAsType(PackageableElement)
      else if namespace.oclIsKindOf(Class) and result.oclIsKindOf(Classifier) then
        namespace.oclAsType(Class).nestedClassifier += result.oclAsType(Classifier)
      endif endif
  endif;
  */
  elementImport := self._import[ElementImportReference]->map toElementImport();
  packageImport := self._import[PackageImportReference]->map toPackageImport();
  if self.annotation->notEmpty() then
    addAsStereotyped(result, self.annotation.stereotypeName.pathName->asSet())
  endif;
}

mapping ElementImportReference::toElementImport() : ElementImport
  when { self.referent <> null and self.referent.isPackageableElement() } {
  visibility := toVisibilityKind(self.visibility);
	alias := self.alias;
	importedElement := self.referent.toUml().oclAsType(PackageableElement)
}

mapping PackageImportReference::toPackageImport() : PackageImport
  when { self.referent <> null and self.referent.isPackage() } {
	visibility := toVisibilityKind(self.visibility);
	importedPackage := self.referent.toUml().oclAsType(Package)
}

query toVisibilityKind(visibility : String) : VisibilityKind {
  return 
    if visibility = null then VisibilityKind::package
    else if visibility = "private" then VisibilityKind::private
    else if visibility = "protected" then VisibilityKind::protected
    else if visibility = "public" then VisibilityKind::public
    endif endif endif endif
}

// Members

mapping Member::toNamedElement() : NamedElement
  inherits DocumentedElement::toElement
  when { not self.definition.oclIsKindOf(ClassifierTemplateParameter) } {
init {
  result := self.definition.map memberToNamedElement();
}
  visibility := toVisibilityKind(self.visibility);
  if self.annotation->notEmpty() then
    addAsStereotyped(result, self.annotation.stereotypeName.pathName->asSet())
  endif;
}

abstract mapping MemberDefinition::toNamedElement() : NamedElement {
  name := self.actualName();
}

mapping MemberDefinition::memberToNamedElement() : NamedElement
  disjuncts 
    PropertyDefinition::toProperty, 
    OperationDefinition::toOperation, 
    ReceptionDefinition::toReception, 
    EnumerationLiteralName::toEnumerationLiteral,
    NamespaceDefinition::toNamespace;

mapping MemberDefinition::toFeature() : Feature
  disjuncts PropertyDefinition::toProperty, OperationDefinition::toOperation, ReceptionDefinition::toReception;
  
// Namespace Definitions

mapping NamespaceDefinition::toNamespace() : Namespace
  disjuncts ClassifierDefinition::toNamespace, PackageDefinition::toPackage;
  
// Package Definitions

mapping PackageDefinition::toPackage() : Package
  inherits MemberDefinition::toNamedElement {
  if self.isStub then {
  	name := name + "$stub";
  } else {
  	packagedElement := self.ownedMember->map toNamedElement()[PackageableElement];
  } endif;
}

// Classifier Definitions

abstract mapping ClassifierDefinition::toClassifier() : Classifier
  inherits MemberDefinition::toNamedElement
  when { not self.isPrimitive and not self.isExternal } {
//  log("[toClassifier] classifier=" + self.name.toString());
  if self.isStub then {
  	name := name + "$stub";
  } endif;
  isAbstract := self.isAbstract;
	generalization := self.specializationReferent->map toGeneralization();
	var templateParameters := self.ownedMember.definition[ClassifierTemplateParameter];
	if templateParameters->notEmpty() then
	  ownedTemplateSignature := object RedefinableTemplateSignature {
	  	ownedParameter := templateParameters->map toTemplateParameter();
	  }
	endif;
//	end {
//		log("result=" + result.toString());
//	}
}

mapping ElementReference::toGeneralization() : Generalization
  when { self.isClassifier() } {
  general := self.toUml().oclAsType(Classifier);
}

mapping ClassifierDefinition::toNamespace() : Namespace 
  disjuncts 
    ClassifierTemplateParameter::toClassifier,
    BoundClassifier::toClassifier,
    ActiveClassDefinition::toClass,
    ClassDefinition::toClass, 
    DataTypeDefinition::toDataType,
    AssociationDefinition::toAssociation,
    EnumerationDefinition::toEnumeration,
    SignalDefinition::toSignal,
    ActivityDefinition::toActivity;
    
// Classifier Template Parameters

mapping ClassifierTemplateParameter::toTemplateParameter() : uml::ClassifierTemplateParameter {
  var constraint : Classifier := null;
  if self.specializationReferent->notEmpty() then {
    var referent := self.specializationReferent![true];
    if referent <> null and referent.isClassifier() then
      constraint := referent.toUml().oclAsType(Classifier)
    endif
  } endif;
  ownedParameteredElement := 
    if constraint = null then
      object DataType{ }
    else 
      constraint.newInstance()
    endif;
  ownedParameteredElement.oclAsType(Classifier).name := self.actualName();
  ownedParameteredElement.oclAsType(Classifier).isAbstract := true;
  if constraint <> null then
    constrainingClassifier += constraint
  endif;
  allowSubstitutable := false;
}

mapping ClassifierTemplateParameter::toClassifier() : uml::Classifier {
init {
	result := self.map toTemplateParameter().ownedParameteredElement.oclAsType(uml::Classifier);
}
}
  
// Bound Classifiers

mapping BoundClassifier::toClassifier() : Classifier
  inherits MemberDefinition::toNamedElement {
init {
  var template := self.template.toUml().oclAsType(Classifier);
  // log("[toClassifier] bound classifier=" + self.name);
  // log("template=" + template.toString());
  result := template.newInstance();
}
  isAbstract := self.isAbstract;
  var templateSignature := template.ownedTemplateSignature;
  log("signature=" + templateSignature.toString());
  if templateSignature <> null then
    templateBinding := object uml::TemplateBinding {
      signature := templateSignature;
      parameterSubstitution := 
        Sequence{1..self.actual->size().min(signature.parameter->size())}->collect(i |
          object uml::TemplateParameterSubstitution {
            formal := signature.parameter->at(i);
            actual := self.actual->at(i).toUml().oclAsType(ParameterableElement);
          }
      );
    }
  endif;
}

abstract helper Classifier::newInstance() : Classifier;
helper Class::newInstance() : Classifier { return object Class { isActive := self.isActive } }
helper DataType::newInstance() : Classifier { return object DataType {} }
helper Enumeration::newInstance() : Classifier { return object Enumeration {} }
helper Association::newInstance() : Classifier { return object Association {} }
helper Signal::newInstance() : Classifier { return object Signal {} }
helper Activity::newInstance() : Classifier { return object Activity {} }

// Class Definitions

mapping ClassDefinition::toClass() : Class
  inherits ClassifierDefinition::toClassifier {
	  if not self.isStub then {
		  var members = self.ownedMember->map toNamedElement();
		  
		  ownedAttribute := members[Property];
		  ownedOperation := members[Operation];
		  ownedBehavior := result.ownedOperation.method;
		  nestedClassifier := members[Classifier];
		  
		  ownedAttribute[defaultValue <> null]->forEach(p) {
		    var behavior := p.defaultValue.oclAsType(OpaqueExpression).behavior;
		    behavior.name := uniqueName(p.name + "$defaultValue", result);
		    ownedBehavior += behavior;
		  };
		  ownedOperation.method->forEach(m) {
				m.name := uniqueName(m.specification.name + "$method", result);
				if m.specification.invresolveone(OperationDefinition).isStub then {
					m.name := m.name + "$stub";
				} endif;
		  };
		  
		  // Create initialization flag.
		  var initializationFlagName := uniqueName(self.actualName() + "$initializationFlag", result);
		  var initializationFlag := object Property {
		  	name := initializationFlagName;
		  	lower := 0;
		  	upper := 1;
		  	visibility := VisibilityKind::protected;
		  };
		  ownedAttribute += initializationFlag;
		  
		  // Create initialization operation.
		  var initializationOperationName := uniqueName(self.actualName() + "$initialization", result);
		  var initializationMethod := self.createInitializationMethod(result, initializationFlag, initializationOperationName);
		  var initializationOperation := object Operation {
		  	name := initializationOperationName;
		  	visibility := VisibilityKind::protected;
		  	method := initializationMethod;
		  };
		  ownedOperation += initializationOperation;
		  ownedBehavior += initializationMethod;
		  
		  self.ownedMember.definition[OperationDefinition]->select(not isAbstract and isConstructor)->
		    mapConstructor(initializationFlag, initializationOperation);
		    
		  if not self.ownedMember.definition[OperationDefinition]->exists(isConstructor) then {
		  
		    // Add default constructor.
		  	var activity = object Activity {
		  		name := uniqueName(self.actualName() + "$method", result);
		      ownedParameter := object Parameter {
		        type := result;
		        lower := 1;
		        upper := 1;
		        direction := ParameterDirectionKind::_'return';
		      };
		  	};
		    ownedBehavior += activity;
		    var operation := object Operation {
		      name := self.actualName();
		      method := activity;
		      ownedParameter := object Parameter {
		      	type := result;
		      	lower := 1;
		      	upper := 1;
		      	direction := ParameterDirectionKind::_return;
		      };
		    };
		  	ownedOperation += operation;
		  	addAsStereotyped(operation, Set{"Create"});
		  	mapDefaultConstructor(activity, result, initializationOperation);
		  	
			} endif;
			
		  if not self.ownedMember.definition[OperationDefinition]->exists(isDestructor) then {
		  
		    // Add default destructor.
		    var activity = object Activity {
		      name := uniqueName("destroy$method", result);
		    };
		    ownedBehavior += activity;
		    var operation := object Operation {
		      name := "destroy";
		      method := activity;
		    };
		    ownedOperation += operation;
		    addAsStereotyped(operation, Set{"Destroy"});
		    self.mapDefaultDestructor(activity, result);
		    
	  } endif;    
  } endif;
}

query uniqueName(name : String, namespace : Namespace) : String {
  var i := 1;
  return while (uniqueName := name + "$1"; namespace.ownedMember.name->exists(n | n = uniqueName)) {
    i := i + 1;
    uniqueName := name + "$" + i.toString();
  };
}

helper ClassDefinition::createInitializationMethod(class_ : Class, initializationFlag : Property, operationName: String) : Activity {
	var method = object Activity {
	  name := operationName;
	  visibility := VisibilityKind::protected;
	};
	
	var readSelfAction := object ReadSelfAction {
		activity := method;
		name := "ReadSelf";
		_'result' := object OutputPin {
			name := "ReadSelf.result";
			type := class_;
			lower := 1;
			upper := 1;
		};
	};
	var selfFork := object ForkNode {
		activity := method;
		name := "Fork(" + readSelfAction._'result'.name + ")";
	};
	object ObjectFlow {
		activity := method;
		source := readSelfAction.result;
		target := selfFork;
	};
	
	var initializationNode := object StructuredActivityNode {
		activity := method;
		name := "Initialization";
	};
	
	var previousNode : ActivityNode := null;
	
  // Add initialization of superclass properties.
  // Note: Using the specialization referents ensures that initializations are done
  // in the order in which superclasses are given in the text.
  self.specializationReferent->forEach(referent) {
  	var superclass := referent.resolveone(Generalization).general.oclAsType(Class);
  	var initializationOperation := superclass.initializationOperation();
  	if initializationOperation <> null then {
  		var callActionName := "Call(" + initializationOperation.name + ")";
  		var callAction := object CallOperationAction {
  			inStructuredNode := initializationNode;
  			name := callActionName;
  			operation := initializationOperation;
  			target := object InputPin {
  				name := callActionName + ".target";
  				type := superclass;
  				lower := 1;
  				upper := 1;
  			};
  		};
  		object ObjectFlow {
  			activity := method;
  			source := selfFork;
  			target := callAction.target;
  		};
  		if previousNode <> null then {
  			object ControlFlow {
  				inStructuredNode := initializationNode;
  				source := previousNode;
  				target := callAction;
  			};
  		} endif;
  		previousNode := callAction;
  	} endif;
  };
  
  // Add initialization of each property that has an initializer.
  class_.ownedAttribute->forEach(attribute) {
  	if attribute.defaultValue <> null then {
  	  var defaultBehavior := attribute.defaultValue.oclAsType(OpaqueExpression).behavior;
  	  var callActionName := "Call(" + defaultBehavior.name + ")";
  	  var callAction := object CallBehaviorAction {
  	  	inStructuredNode := initializationNode;
  	  	name := callActionName;
  	  	behavior := defaultBehavior;
  	  	_'result' += object OutputPin {
  	  		name := callActionName + ".result";
  	  		type := attribute.type;
  	  		lower := attribute.lower;
  	  		upper := attribute.upper;
  	  	};
  	  };
  	  var graph := self.mapPropertyAssignment(attribute, selfFork, callAction._'result'->at(1));
  	  var node := object StructuredActivityNode {
  	  	inStructuredNode := initializationNode;
  	  	name := "Initialization(" + attribute.name + ")";
  	  	node := graph.nodes;
  	  };
  	  initializationNode.edge += graph.edges;
  	  if previousNode <> null then {
  	  	object ObjectFlow {
  	  		inStructuredNode := initializationNode;
  	  		source := previousNode;
  	  		target := node;
  	  	}
  	  } endif;
  	  previousNode := node;
  	} endif;
  };
  
  // Add action to set initialization to true.
  var valueAction := object ValueSpecificationAction {
  	inStructuredNode := initializationNode;
  	name := "Value(true)";
  	value := object LiteralBoolean {
  		value := true;
  	};
  	_'result' := object OutputPin {
  		name := "Value(true).result";
  		type := initializationFlag.type;
  		lower := 1;
  		upper := 1;
  	};
  };
  var writeActionName := "Write(" + initializationFlag.name + ")";
  var writeAction := object AddStructuralFeatureValueAction {
  	inStructuredNode := initializationNode;
  	name := writeActionName;
  	structuralFeature := initializationFlag;
  	isReplaceAll := true;
  	_'object' := object InputPin {
  		name := writeActionName + ".object";
  		type := class_;
  		lower := 1;
  		upper := 1;
  	};
  	value := object InputPin {
  		name := writeActionName + ".value";
  		type := initializationFlag.type;
  		lower := 1;
  		upper := 1;
  	}
  };
  object ObjectFlow {
  	activity := method;
  	source := selfFork;
  	target := writeAction._'object';
  };
  object ObjectFlow {
  	inStructuredNode := initializationNode;
  	source := valueAction._'result';
  	target := writeAction.value;
  };
  if previousNode <> null then {
  	object ControlFlow {
  		inStructuredNode := initializationNode;
  		source := previousNode;
  		target := valueAction;
  	};
  } endif;
  
  // Add decision to skip initialization if this object is already initialized.
	var readActionName := "Read(" + initializationFlag.name + ")";
  var readAction := object ReadStructuralFeatureAction {
  	activity := method;
  	name := readActionName;
  	structuralFeature := initializationFlag;
  	_'object' := object InputPin {
  		name := readActionName + ".object";
  		type := class_;
  		lower := 1;
  		upper := 1;
  	};
  	_'result' := object OutputPin {
  		name := readActionName + ".result";
  		type := initializationFlag.type;
  		lower := 0;
  		upper := 1;
  	};
  };
  object ObjectFlow {
  	activity := method;
  	source := selfFork;
  	target := readAction._'object';
  };
  
  var sizeAction := object CallBehaviorAction {
  	activity := method;
  	name := "Call(Size)";
  	behavior := self.functionSize();
  	argument += object InputPin {
  		name := "Call(Size).argument";
  		lower := 0;
  		upper := -1;
  	};
  	_'result' += object OutputPin {
  		name := "Call(Size).result";
  		type := self.integerType().toUml().oclAsType(Type);
  		lower := 1;
  		upper := 1;
  	};
  };
  object ObjectFlow {
  	activity := method;
  	source := readAction._'result';
  	target := sizeAction.argument->at(1);
  };

  valueAction := object ValueSpecificationAction {
  	activity := method;
  	name := "Value(0)";
  	value := object LiteralInteger {
  		value := 0;
  	};
  	_'result' := object OutputPin {
  		name := "Value(0).result";
  		type := sizeAction._'result'->at(1).type;
  		lower := 1;
  		upper := 1;
  	};
  };
  
  var testAction := object TestIdentityAction {
  	activity := method;
  	name := "Test(Size==0)";
  	first := object InputPin {
  		name := "Test(Size==0).first";
  		lower := 0;
  		upper := 1;
  	};
  	second := object InputPin {
  		name := "Test(Size==0).second";
  		lower := 0;
  		upper := 1;
  	};
  	_'result' := object OutputPin {
  		name := "Test(Size==0).result";
  		type := self.booleanType().toUml().oclAsType(Type);
  		lower := 1;
  		upper := 1;
  	};
  };
  object ObjectFlow {
  	activity := method;
  	source := sizeAction._'result'->at(1);
  	target := testAction.first;
  };
  object ObjectFlow {
  	activity := method;
  	source := valueAction._'result';
  	target := testAction.second;
  };
  
  var initialNode := object InitialNode {
  	activity := method;
  	name := "InitialNode";
  };
  var graph := createObjectDecisionGraph(
  	"Test(" + initializationFlag.name + ")",
  	initialNode, testAction.result,
  	initializationNode, null
  );
  method.ownedNode += graph.nodes;
  method.edge += graph.edges;
  
	return method;
}

/*
helper adjustName(qualifiedName : String) : String {
  return qualifiedName.tokenize("::")->iterate(name; adjustedName : String = "" |
    if adjustedName = "" then name.toName()
    else adjustedName + "::" + name.toName()
    endif
  )
}
*/

query Class::initializationOperation() : Operation {
	var operation : Operation := null;
  var initializerName := self.name + "$initialization$";
  var n = initializerName.size();
	self.ownedOperation->forEach(ownedOperation) {
		var operationName := ownedOperation.name;
		var m := operationName.size();
		if operationName <> null and m > n and
		   operationName.substring(1, n) = initializerName and
		   operationName.substring(n+1, m).matches("[0-9]+") then {
		   operation := ownedOperation;
		} endif;
	};
	return operation;
}

// Active Class Definitions

mapping ActiveClassDefinition::toClass() : Class
  inherits ClassDefinition::toClass {
  isActive := true;
  if not self.isStub then {
	  ownedReception := self.ownedMember->map toNamedElement()[Reception];
	  ownedReception += self.ownedMember[definition.oclIsKindOf(SignalReceptionDefinition)]->map toReception();
	  if self.classifierBehavior <> null then {
	  	// NOTE: The Xtext grammar currently does not set isStub = true for a stub classifierBehavior.
	  	if self.classifierBehavior.isStub or self.classifierBehavior.body = null then {
	  		classifierBehavior := new Activity(Sequence{});
	  		classifierBehavior.name := self.classifierBehavior.actualName() + "$stub";
	  	} else {
			  classifierBehavior := self.classifierBehavior.map toActivity();
			  classifierBehavior.name := uniqueName(result.name + "$behavior", result);
			  classifierBehavior.visibility := VisibilityKind::private;
			  ownedBehavior += classifierBehavior; // Because classifierBehavior is not a member in the Ecore metamodel.
			  // addDefinition(classifierBehavior.oclAsType(Activity), self.classifierBehavior.body);
		  } endif;
	  } endif;
  } endif;
}

// Data Type Definitions

mapping DataTypeDefinition::toDataType() : DataType
  inherits ClassifierDefinition::toClassifier
  when { not self.isPrimitive } {
  if not self.isStub then {
  	ownedAttribute := self.ownedMember->map toNamedElement()[Property];
  } endif;
}

mapping DataTypeDefinition::toPrimitive() : PrimitiveType
  inherits ClassifierDefinition::toNamespace
  when { self.isPrimitive } {	
}
  
// Association Definitions

mapping AssociationDefinition::toAssociation() : Association
  inherits ClassifierDefinition::toClassifier {
  if not self.isStub then {
		ownedEnd := self.ownedMember->map toNamedElement()[Property];
  } endif;
}

// Enumeration Definitions

mapping EnumerationDefinition::toEnumeration() : Enumeration
  inherits ClassifierDefinition::toClassifier {
  if not self.isStub then {
  	ownedLiteral := self.ownedMember->map toNamedElement()[EnumerationLiteral];
  } endif;
}

mapping EnumerationLiteralName::toEnumerationLiteral() : EnumerationLiteral
  inherits MemberDefinition::toNamedElement;

// Signal Definitions and Signal Reception Definitions

mapping SignalDefinition::toSignal() : Signal
  inherits ClassifierDefinition::toClassifier {
  if not self.isStub then {
  	ownedAttribute := self.ownedMember->map toNamedElement()[Property];
  } endif;
}

mapping Member::toReception() : Reception
  when { self.definition.oclIsKindOf(SignalReceptionDefinition) } {
  visibility := toVisibilityKind(self.visibility);
  signal := self.definition.resolveone(Signal);
  name := result.signal.name;
}

// Activity Definitions

mapping ActivityDefinition::toActivity() : Activity
  inherits ClassifierDefinition::toClassifier {
init {
  var parameters := self.parameters();
  var returnParameter := self.returnParameter();
  if returnParameter <> null then
    parameters += returnParameter
  endif;
  result := new Activity(parameters->map toParameter());
}
	isActive := self.toReference().isActiveBehavior();
	if not self.isStub then {
	  var stub := self.stub();
	  if stub <> null and stub.isOperation() then {
	  	specification := stub.toUml().oclAsType(Operation);
	  } endif;
		self.body.map toActivity(result);
	  if self.unit->isEmpty() then {
	  	addDefinition(result, self.body);	
	  } endif;
  } endif;
}

query Activity::inputParameterForkFor(parameter : Parameter) : ForkNode {
	var nodes := self.node[
		oclIsKindOf(ActivityParameterNode) and 
		oclAsType(ActivityParameterNode).parameter = parameter and 
		outgoing->notEmpty()];
	return
		if nodes->isEmpty() then null
		else nodes![true].outgoing![true].target.oclAsType(ForkNode)
		endif;
}

// Typed Element Definitions

abstract mapping TypedElementDefinition::toTypedElement() : TypedElement {
  type := 
   if self.type = null or not self.type.isClassifier() then null
   else self.type.toUml().oclAsType(Classifier)
   endif;
}

abstract mapping TypedElementDefinition::toMultiplicityElement() : MultiplicityElement {
	lower := self.lower;
	upper := self.upper;
	
	if self.isSequence then {
		isOrdered := true;
		isUnique := false;
	} else {
		isOrdered := self.isOrdered;
		isUnique := not self.isNonunique;
	} endif;
}

mapping TypedElementDefinition::toParameter() : Parameter
  merges TypedElementDefinition::toTypedElement, TypedElementDefinition::toMultiplicityElement;
  
// Formal Parameters

mapping FormalParameter::toParameter() : Parameter
  inherits MemberDefinition::toNamedElement {
init {
	result := self.typePart.map toParameter();
}
	direction := toParameterDirectionKind(self.direction);
}

query toParameterDirectionKind(direction : String) : ParameterDirectionKind {
  return
   if direction = "in" then ParameterDirectionKind::_in
   else if direction = "out" then ParameterDirectionKind::_out
   else if direction = "inout" then ParameterDirectionKind::_inout
   else if direction = "return" then ParameterDirectionKind::_return
   endif endif endif endif;
}

mapping TypedElementDefinition::toProperty() : Property
  merges TypedElementDefinition::toTypedElement, TypedElementDefinition::toMultiplicityElement;
  
query FormalParameter::assignedValueSource(assignedName : String) : ActivityNode {
	var activity : Activity;
	var parameter : Parameter;
	var context := self.containingMember().namespace;
	var stub := context.stub();
	var element :=
		if stub = null then context.map toUml()
		else stub.toUml() endif;
		
	if element.oclIsKindOf(Operation) then {
		var operation := element.oclAsType(Operation);
		activity := operation.method![true].oclAsType(Activity);
		var i =
			if stub = null then operation.ownedParameter->indexOf(self.map toParameter())
			else context.oclAsType(ActivityDefinition).parameters()->indexOf(self) endif;
		parameter := activity.ownedParameter->at(i);
	} else {
		activity := element.oclAsType(Activity);
		parameter := self.map toParameter();
	} endif;
	
	return activity.inputParameterForkFor(parameter);
	
	/*
	var activityNode = activity.inputParameterForkFor(parameter);
	
	var comment := object Comment {
		annotatedElement += element;
		body :=
			"element = " + nameOf(element) +
			"\nactivity = " + nameOf(activity) +
			"\nparameter = " + nameOf(parameter) +
			"\nactivityNode = " + nameOf(activityNode);
	};
	if element <> null then {
		element.ownedComment += comment;
	} endif;
	
	return activityNode;
	*/
}

// Property Definitions

mapping PropertyDefinition::toProperty() : Property
  inherits MemberDefinition::toNamedElement {
	init {
		result := self.typePart.map toProperty();
	}
	aggregation := 
		if self.isComposite then AggregationKind::composite
		else AggregationKind::none endif;
  if self.initializer <> null then {
  	 var expression := self.initializer.map toOpaqueExpression();
  	 defaultValue := expression;
  } endif;
}

mapping Expression::toOpaqueExpression() : OpaqueExpression {
  behavior := self.map toActivity();
  addDefinition(behavior.oclAsType(Activity), self);
}

// Operation Definitions

mapping OperationDefinition::toOperation() : Operation
  inherits MemberDefinition::toNamedElement {
  isAbstract := self.isAbstract;
  ownedParameter := self.parameters()->map toParameter();
  var returnParameter := self.returnParameter();
  if returnParameter <> null then
    ownedParameter += returnParameter.map toParameter()
  endif;
  if not self.isAbstract then {
  	var activity := new Activity(result.ownedParameter->deepclone()->oclAsType(Parameter));
  	method += activity;
  	if not self.isStub then {
	  	self.body.map toActivity(activity);
	  	addDefinition(activity, self.body);
	  /*
	    if self.isConstructor then
	    	// Defer mapping of constructor body until later, after the initialization infrastructure
	    	// is set up for the owning class.
	      method := object Activity {
	      	ownedParameter := result.ownedParameter->deepclone()->oclAsType(Parameter);
	      	visibility := VisibilityKind::protected;
	      }
	    else
	      method := self.body.map toActivity(result.ownedParameter->deepclone()->oclAsType(Parameter))
	    endif
	  */
  	} endif;
  } endif;
}

helper mapDefaultConstructor(inout method : Activity, class_ : Class, initializationOperation : Operation) {

  // Add an output parameter node.
	var returnParameter := method.ownedParameter->at(1);
	var outputNode := object ActivityParameterNode {
		activity := method;
		name := "Return";
		parameter := returnParameter;
	};	

  // Return context object as the constructor result.
	var readSelfAction := object ReadSelfAction {
		activity := method;
		name := "ReadSelf";
		_'result' := object OutputPin {
			name := "ReadSelf.result";
			type := class_;
			lower := 1;
			upper := 1;
		}
	};	
	var fork := object ForkNode {
		activity := method;
		name := "Fork(" + readSelfAction._'result'.name + ")";
	};	
	object ObjectFlow {
		activity := method;
		source := readSelfAction._'result';
		target := fork;
	};
	object ObjectFlow {
		activity := method;
		source := fork;
		target := outputNode;
	};
	
	// Add call to local initialization operation.	
	var callActionName := "Call(" + initializationOperation.name + ")";
	var callAction := object CallOperationAction {
		activity := method;
		name := callActionName;
    target := object InputPin {
    	name := callActionName + ".target";
    	type := readSelfAction._'result'.type;
    	lower := 1;
    	upper := 1;
    }
	};	
	object ObjectFlow {
		activity := method;
		source := fork;
		target := callAction.target;
	};
	
}

helper ClassDefinition::mapDefaultDestructor(inout method : Activity, class_ : Class) {
	var previousNode : ActivityNode := null;
	
	// Add calls to superclass destructors.
	self.specializationReferent->forEach(referent) {
		var superclass := referent.resolveone(Generalization).general.oclAsType(Class);
		var destructorOperation := superclass.destructorOperation();
		if destructorOperation <> null and destructorOperation.method->notEmpty() then {
			var destructorMethod := destructorOperation.method![true];
			var callAction := object CallBehaviorAction {
				activity := method;
				name := "Call(" + superclass.name + "::destroy)";
				behavior := destructorMethod;
			};
			if previousNode <> null then {
				object ControlFlow {
					activity := method;
					source := previousNode;
					target := callAction;
				};
			} endif;
			previousNode := callAction;
		} endif;	
	};
	
	// Add calls to destructors for composite attributes.
	class_.ownedAttribute->select(isComposite)->forEach(attribute) {
		var structuredNode := class_.mapDestructionOf(attribute);
		if structuredNode <> null then {
			structuredNode.activity := method;
			if previousNode <> null then {
				object ControlFlow {
					activity := method;
					source := previousNode;
					target := structuredNode;
				}
			} endif;
			previousNode := structuredNode;
		} endif;
	};
	
	// Add calls to destructors for opposite ends of composite associations.
	var additionalNodes : Set(StructuredActivityNode) := Set{};
	self.member.toReference().toUml()->
		select(oclIsKindOf(Association)).oclAsType(Association).ownedEnd->
		select(isComposite and opposite().type.conformsTo(class_))->forEach(associationEnd) {
			var structuredNode := class_.mapDestructionOf(associationEnd);
			if structuredNode <> null then {
				structuredNode.activity := method;
				additionalNodes += structuredNode;
			} endif;
		};
	if additionalNodes->size() = 1 then {
		var structuredNode = additionalNodes![true];
		structuredNode.activity := method;
		if previousNode <> null then {
			object ControlFlow {
				activity := method;
				source := previousNode;
				target := structuredNode;
			}
		} endif;
	} else if additionalNodes->size() > 1 then {
		var enclosingNode := object StructuredActivityNode {
			activity := method;
			name := "DestroyEnds";
			node := additionalNodes;
		};
		if previousNode <> null then {
			object ControlFlow {
				activity := method;
				source := previousNode;
				target := enclosingNode;
			}
		} endif;
	} endif endif;
	
}

// NOTE: This is necessary because the Property::opposite derived property
// does not seem to be computed properly.
query Property::opposite() : Property {
	// Precondition: self.association <> null.
	return self.association.memberEnd![e | e <> self];
}

helper Class::mapDestructionOf(property_ : Property) : StructuredActivityNode {
	var structuredNode : StructuredActivityNode := null;
	var propertyType :=  property_.type;	
	if propertyType<>null and propertyType.oclIsKindOf(Class) then {
		var targetClass := propertyType.oclAsType(Class);
		var destructorOperation := targetClass.destructorOperation();
		if destructorOperation <> null then {
			structuredNode := object StructuredActivityNode {
				name := "Destroy(" + property_.name + ")";
			};
		  var readSelfAction := object ReadSelfAction {
		  	inStructuredNode := structuredNode;
				name := "ReadSelf";
				_'result' := object OutputPin {
					name := "ReadSelf.result";
					type := self;
					lower := 1;
					upper := 1;
				}
			};
			var readActionName := "Read(" + property_.name + ")";
			var readAction := object ReadStructuralFeatureAction {
				inStructuredNode := structuredNode;
				name := readActionName;
				structuralFeature := property_;
				_'object' := object InputPin {
					name := readActionName + ".object";
					type := self;
					lower := 1;
					upper := 1;
				};
				_'result' := object OutputPin {
					name := readActionName + ".result";
					type := targetClass;
					lower := property_.lower;
					upper := property_.upper;
				}
			};
			object ObjectFlow {
				inStructuredNode := structuredNode;
				source := readSelfAction._'result';
				target := readAction._'object';
			};
			var callActionName := "Call(" + targetClass.name + "::destroy)";
			var callAction := object CallOperationAction {
				inStructuredNode := structuredNode;
				name := callActionName;
				target := object InputPin {
					name := callActionName + ".target";
					type := targetClass;
					lower := 1;
					upper := 1;
				}
			};
			if property_.upper = 1 then {
				object ObjectFlow {
					inStructuredNode := structuredNode;
					source := readAction._'result';
					target := callAction.target;
				}
			} else {
				var regionName := "DestroyAll(" + property_.name + ")";
				var region := object ExpansionRegion {
					inStructuredNode := structuredNode;
					mode := ExpansionKind::iterative;
					name := regionName;
					node := callAction;
				};
				object ControlFlow {
					inStructuredNode := structuredNode;
					source := readAction;
					target := region;
				};
				var inputNode := object ExpansionNode {
					inStructuredNode := structuredNode;
					regionAsInput := region;
					name := regionName + ".inputNode";
					type := targetClass;
				};
				object ObjectFlow {
					inStructuredNode := structuredNode;
					source := readAction._'result';
					target := inputNode;
				};
				object ObjectFlow {
					inStructuredNode := structuredNode;
					source := inputNode;
					target := callAction.target;
				};
			} endif;
		} endif;
	} endif;
	return structuredNode;
}

query Class::destructorOperation() : Operation {
	var destructors := self.ownedOperation->select(
		name = "destroy" and ownedParameter->isEmpty() and
		hasStereotype("Destroy")
	);
	return
		if destructors->isEmpty() then null
		else destructors![true] endif;
}

helper OperationDefinition::mapConstructor(initializationFlag : Property, initializationOperation : Operation) {
  var operation := self.resolveone(Operation);
  var method := operation.method![true].oclAsType(Activity);
  var structuredNodes := method.node->select(oclIsKindOf(StructuredActivityNode));
  var firstNode := 
  	if structuredNodes->isEmpty() then null
  	else structuredNodes![incoming->isEmpty()] endif;
  var bodyNode := self.firstBodyNode(firstNode);
  
  // Return context object as the constructor result.
  var readSelfAction := object ReadSelfAction {
  	activity := method;
		name := "ReadSelf";
		_'result' := object OutputPin {
			name := "ReadSelf.result";
			type := operation._'class';
			lower := 1;
			upper := 1;
		}
	};
	var selfFork := object ForkNode {
		name := "Fork(" + readSelfAction._'result'.name + ")";
  	activity := method;
	};
	object ObjectFlow {
  	activity := method;
		source := readSelfAction._'result';
		target := selfFork;
	};
	
	var returnParameter := method.ownedParameter![direction = ParameterDirectionKind::_'return'];
	var outputNode := method.node[ActivityParameterNode]![parameter = returnParameter];
	object ObjectFlow {
  	activity := method;
		source := selfFork;
		target := outputNode;
	};
	
	if not self.hasAlternativeConstructorCall() then {
		
		// Insert call to local initialization operation.
		var callActionName := "Call(" + initializationOperation.name + ")";
		var callAction := object CallOperationAction {
	  	activity := method;
			name := callActionName;
	    target := object InputPin {
	    	name := callActionName + ".target";
	    	type := readSelfAction._'result'.type;
	    	lower := 1;
	    	upper := 1;
	    }
		};
		object ObjectFlow {
	  	activity := method;
			source := selfFork;
			target := callAction.target;
		};
		if firstNode = null then {
			firstNode := callAction;
		} else if bodyNode = null then {
			object ControlFlow {
				activity := method;
				source := firstNode;
				target := callAction;
			}
		} else {
			if bodyNode.incoming->isEmpty() then {
				firstNode := callAction;
		  } else {
				var incoming := bodyNode.incoming![true];
				object ControlFlow {
			  	activity := method;
					source := incoming.source;
					target := callAction;
				};
				incoming.source := callAction;
			} endif;
			object ControlFlow {
	  		activity := method;
				source := callAction;
				target := bodyNode;
			};
		} endif endif;
		
		// Add decision to skip constructor behavior if this object is already initialized.
		var readActionName := "Read(" + initializationFlag.name + ")";
		var readAction := object ReadStructuralFeatureAction {
	  	activity := method;
			name := readActionName;
			structuralFeature := initializationFlag;
			_'object' := object InputPin {
				name := readActionName + ".object";
				type := operation._'class';
				lower := 1;
				upper := 1;
			};
			_'result' := object OutputPin {
				name := readActionName + ".result";
				type := initializationFlag.type;
				lower := 0;
				upper := 1;
			};
		};
		object ObjectFlow {
	  	activity := method;
			source := selfFork;
			target := readAction._'object';
		};
		
		var functionSize := self.functionSize();
		var sizeActionName := "Call(" + functionSize.name + ")";
		var sizeAction := object CallBehaviorAction {
	  	activity := method;
			name := sizeActionName;
			argument += object InputPin {
				name := sizeActionName + ".argument";
				lower := 0;
				upper := -1;
			};
			_'result' += object OutputPin {
				name := sizeActionName + ".result";
				type := self.integerType().toUml().oclAsType(Type);
				lower := 1;
				upper := 1;
			};
		};
		object ObjectFlow {
	  	activity := method;
			source := readAction._'result';
			target := sizeAction.argument->at(1);
		};
		
		var valueAction := object ValueSpecificationAction {
	  	activity := method;
			name := "Value(0)";
			_'result' := object OutputPin {
				name := "Value(0).result";
				type := self.integerType().toUml().oclAsType(Type);
				lower := 1;
				upper := 1;
			}
		};
		
		var testAction := object TestIdentityAction {
	  	activity := method;
			name := "Test(Size==0)";
			first := object InputPin {
				name := "Test(Size==0).first";
				lower := 0;
				upper := 1;
			};
			second := object InputPin {
				name := "Test(Size==0).second";
				lower := 0;
				upper := 1;
			};
			_'result' := object OutputPin {
				name := "Test(Size==0).result";
				type := self.booleanType().toUml().oclAsType(Type);
				lower := 1;
				upper := 1;
			}
		};
		object ObjectFlow {
	  	activity := method;
			source := sizeAction._'result'->at(1);
			target := testAction.first;
		};
		object ObjectFlow {
	  	activity := method;
			source := valueAction._'result';
			target := testAction.second;
		};
		
		var initialNode := object InitialNode {
	  	activity := method;
			name := "InitialNode";
		};
		
		var decisionGraph := createControlDecisionGraph(
			"Test(" + initializationFlag.name + ")",
			initialNode, testAction._'result', firstNode, null
		);
		method.ownedNode += decisionGraph.nodes;
		method.edge += decisionGraph.edges;
		
	} endif;
  
}

/*
helper AnnotatedStatement::serializeMethodCall() : String {
  var expression := self.statement.oclAsType(ExpressionStatement).
    expression.oclAsType(SuperInvocationExpression);
  // log("[serializeMethodCall] expression=" + expression.serialize());
  // log(" expression.referent=" + expression.referent.name());
  return
    concat(self.statement.annotation().serialize()->asSequence()) +
    adjustName(expression.referent.toUml().oclAsType(Operation).method![true].qualifiedName) + 
        expression.tuple.serialize() + "; "
}


helper concat(strings : Sequence(String)) : String {
	return strings->iterate(string; s : String = "" | s + string + " ");
}
*/

helper OperationDefinition::hasAlternativeConstructorCall() : Boolean {
	return self.body <> null and self.body.statement->notEmpty() and
	let statement = self.body.statement->at(1).statement in
	  statement.oclIsKindOf(ExpressionStatement) and
	  let expression = statement.oclAsType(ExpressionStatement).expression in
	    expression.oclIsKindOf(FeatureInvocationExpression) and
	    expression.oclAsType(FeatureInvocationExpression).referent.isConstructor();
}

query OperationDefinition::firstBodyNode(firstNode : ActivityNode) : ActivityNode {
	var i := self.indexOfBodyStatement();
	return
		if i > self.body.statement->size() then null
		else
			while (node := firstNode; i > 1) {
				node := node.outgoing![true].target;
				i := i - 1;
			}
		endif;
}

query OperationDefinition::indexOfBodyStatement() : Integer {
  // log("[indexOfBodyStatement] operation=" + self.name);
	return 
    while (i := 1; i <= self.body.statement->size() and 
	        self.body.statement->at(i).statement.isSuperConstructorInvocation()) {
	    // log("  i=" + i.toString() + ",  statement=" + self.body.statement->at(i).statement.serialize());
		  i := i + 1;
	  }
}

query Statement::isSuperConstructorInvocation() : Boolean {
  // log("[isSuperConstructorInvocation] statement=" + self.serialize());
	return false;
}

query ExpressionStatement::isSuperConstructorInvocation() : Boolean {
  // log("[isSuperConstructorInvocation] expressionStatement=" + self.serialize());
  // log(" isSuperInvocationExpresion=" + self.expression.oclIsKindOf(SuperInvocationExpression).toString());
	var is := let expression = self.expression in
	  expression.oclIsKindOf(SuperInvocationExpression) and
	  let referent = expression.oclAsType(SuperInvocationExpression).referent() in
	   referent<>null and referent.isConstructor();
	// log("  isSuperConstructorInvocation=" + is.toString());
	return is;
}

// Reception Definitions

mapping ReceptionDefinition::toReception() : Reception
  inherits MemberDefinition::toNamedElement {
  name := self.signalName.unqualifiedName.toName();
  if self.signal <> null then
  	let sig = self.signal.toUml() in
    	if sig.oclIsKindOf(Signal) then 
    	  signal := sig.oclAsType(Signal) 
    	endif
	endif
}

Back to the top