Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4c6fc6e886ea5c71508d409bb5e5d5bedec1f86e (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
--------------------------------------------------------------------------------
-- Copyright (c) 2008 Tata Consultancy Services and others.
-- 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:
--     S.Reddy - Section 10.3 of the OMG MOF-QVT 1.0 specification
--     E.D.Willink - contributions to drafts of the above
--     E.D.Willink - adaptation to comply with QVT specification
--     H. Hoyos - adaptation to comply with QVT 1.2 and bug fixes
--------------------------------------------------------------------------------
import pivotocl     :   'platform:/resource/org.eclipse.ocl.pivot/model/Pivot.ecore'::pivot;                            -- HHR Use Pivot metamodels
import qvtbase      :   'platform:/resource/org.eclipse.qvtd.pivot.qvtbase/model/QVTbase.ecore'::qvtbase;               -- HHR Use Pivot metamodels
import qvttemplate  :   'platform:/resource/org.eclipse.qvtd.pivot.qvttemplate/model/QVTtemplate.ecore'::qvttemplate;   -- HHR Use Pivot metamodels
import qvtrelation  :   'platform:/resource/org.eclipse.qvtd.pivot.qvtrelation/model/QVTrelation.ecore'::qvtrelation;   -- HHR Use Pivot metamodels
import qvtcorebase  :   'platform:/resource/org.eclipse.qvtd.pivot.qvtcorebase/model/QVTcoreBase.ecore'::qvtcorebase;   -- HHR Use Pivot metamodels
import qvtcore      :   'platform:/resource/org.eclipse.qvtd.pivot.qvtcore/model/QVTcore.ecore'::qvtcore;               -- HHR Use Pivot metamodels



transformation org::eclipse::qvtd::xtext::qvtrelation2::tests::rel2core::relToCore(relations:{qvtrelation,qvttemplate,qvtbase,pivotocl}, core:{qvtcore,qvtcorebase,qvtbase,pivotocl}) -- HHR Use Pivot metamodels
{    
    -- Rule 1: Corresponding to each relation there exists a trace class in core.
    -- The trace class contains a property corresponding to each object node in the
    -- pattern of each domain of the relation.
    --
    top relation ModelToTraceModel
    {
        modelName:String;
        modelURI:String;
        domain relations
            relationsModel:RelationModel {
                name = modelName,
                externalURI = modelURI
            };
        enforce domain core
        	traceModel:Model {
                name = modelName,
                externalURI = modelURI
            };
    }
    
    top relation PackageToTracePackage
    {
        packageName:String;
        domain relations
            relationsPackage:Package {
                name = packageName
            };
        enforce domain core
        	tracePackage:Package {
                name = packageName
            };
    }
    
    top relation PackageToTraceModelOwnership
    {
        domain relations
            relationsParent:RelationModel {
                ownedPackages = relationsChild:Package {}
            };
        enforce domain core
        	traceParent:Model {
                ownedPackages = traceChild:Package {}
            };
        when {
           ModelToTraceModel(relationsParent, traceParent);
           PackageToTracePackage(relationsChild, traceChild);
        }
    }
    
    top relation PackageToTracePackageOwnership
    {
        domain relations
            relationsParent:Package {
                ownedPackages = relationsChild:Package {}
            };
        enforce domain core
        	traceParent:Package {
                ownedPackages = traceChild:Package {}
            };
        when {
           PackageToTracePackage(relationsParent, traceParent);
           PackageToTracePackage(relationsChild, traceChild);
        }
    }
    
    top relation TransformationToTracePackage
    {
        domain relations
            rTransformation:RelationalTransformation {
                name = transformationName:String{}
            };
        enforce domain core
        	tracePackage:Package {
                name = 'T'+transformationName
            };
    }
    
    top relation TransformationToTracePackageOwnership
    {
        domain relations
            relationsParent:Package {
                ownedClasses = relationsChild:RelationalTransformation {}
            };
        enforce domain core
        	traceParent:Package {
                ownedPackages = traceChild:Package {}
            };
        when {
           PackageToTracePackage(relationsParent, traceParent);
           TransformationToTracePackage(relationsChild, traceChild);
        }
    }
    
    top relation RelationToTraceClass
    {
        domain relations
            rRelation: Relation {
                name = relationName:String{},
                _'transformation' = rParent:RelationalTransformation{}
            };
        enforce domain
            core traceClass:Class {
                name = 'T'+relationName,
                owningPackage = traceParent:Package{}
            };
        when {
            TransformationToTracePackage(rParent, traceParent);
        }
    }
    
/*    relation RootVariableToTraceClassProperty
    {
        domain relations
            rRelation: Relation {
                domain = relationDomain:RelationDomain {
                    pattern = relationDomainPattern:DomainPattern {
                        templateExpression = rootTemplateExp:TemplateExp {
                            bindsTo = rootVariable:Variable {
                                name = rootVariableName:String{},
                                type = rootVariableType:Class {}
                            }
                        }
                    }
                }
            };
        enforce domain core
            traceProperty:Property {
            	owningClass = traceClass:Class{},
                name = rootVariableName,
                type = rootVariableType
            };
        when {
            RelationToTraceClass(rRelation, traceClass);
        }
        where {
--            CollectionTemplateToTraceClassProps(rootTemplateExp, traceClass);
--            ObjectTemplateToTraceClassProps(rootTemplateExp, traceClass);
        }
    } */
    
/*    relation CollectionTemplateToTraceClassProps
    {
        variableName: String;   
        domain relations
            collectionTemplateExp:CollectionTemplateExp {
                member = members:Set(OCLExpression) {
                	templateExp:TemplateExp {
	                    bindsTo = templateVariable:Variable {
	                        name = variableName,
	                        type = variableType:Class {}
	                    }
                	} 
                 ++ _ }
            };
        enforce domain
            core traceClass:Class {
                ownedProperties = traceClassProperty:pivotocl::Property {
                    name=variableName,
                    type=variableType
                }
            };
        where {
            CollectionTemplateToTraceClassProps(templateExp, traceClass);
            ObjectTemplateToTraceClassProps(templateExp, traceClass);
        }
    } */
    
/*    relation ObjectTemplateToTraceClassProps
    {
        variableName: String;     
        domain relations
            objectTemplateExp:ObjectTemplateExp {
                part = propertyTemplateItem:PropertyTemplateItem {
                    value = templateExp:TemplateExp {
                        bindsTo = templateVariable:Variable {
                            name = variableName,
                            type = variableType:Class {}
                        }
                    }
                }
            };
        enforce domain
            core traceClass:Class {
                ownedProperties = traceClassProperty:pivotocl::Property {
                    name=variableName,
                    type=variableType
                }
            };
        where {
--            CollectionTemplateToTraceClassProps(templateExp, traceClass);
--            ObjectTemplateToTraceClassProps(templateExp, traceClass);
        }
    } */
}

Back to the top