]> gerrit.simantics Code Review - simantics/platform.git/blob - graph/Components.pgraph
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / graph / Components.pgraph
1 L0 = <http://www.simantics.org/Layer0-1.1>
2 STR = <http://www.simantics.org/Structural-1.2>
3 DOC = <http://www.simantics.org/Documentation-1.2>
4 RELATIONS = <http://www.simantics.org/Documentation-1.2/Relations>
5 PROPERTIES = <http://www.simantics.org/Documentation-1.2/Properties>
6 FUNCTIONS = <http://www.simantics.org/Documentation-1.2/Functions>
7
8 COMPONENTS = DOC.Components : L0.Library
9
10 attribute = COMPONENTS.attribute : L0.Template
11     @template %subject %relation %default
12         %subject
13             >-- %relation
14             L0.Asserts _ : L0.Assertion
15                 L0.HasPredicate %relation
16                 L0.HasObject %default
17
18 connectionPoint = COMPONENTS.connectionPoint : L0.Template
19     @template %subject %relation
20         %subject
21             >-- %relation    
22
23 sclAttribute = COMPONENTS.sclAttribute : L0.Template
24     @template %subject %relation %command %valueType
25         %subject
26             >-- %relation
27             L0.Asserts _ : L0.Assertion
28                 L0.HasPredicate %relation
29                 L0.HasObject _ : DOC.SCLValue
30                   L0.HasValueType %valueType
31                   L0.SCLValue.expression %command
32                   L0.default false
33
34 //DOC.SCL : L0.SCLModule
35 //    L0.SCLModule.definition _ : L0.String
36 //        @L0.loadString "scl/Code.scl"
37
38 DOC.scl : L0.Template
39     @template %subject %property %expression %valueType
40         %subject
41             %property _ : DOC.SCLValue
42               L0.SCLValue.expression %expression
43               L0.HasValueType %valueType
44
45 DOC.sclValue : L0.Template
46     @template %subject %expression %valueType
47         %subject : DOC.SCLValue
48             L0.SCLValue.expression %expression
49             L0.HasValueType %valueType
50
51 DOC.SCLValue <T L0.SCLValue
52   @L0.assert L0.ConvertsToValueWith
53     DOC.Functions.sclValue : L0.ExternalValue
54
55 DOC.HandlerSCLValue <T L0.SCLValue
56   @L0.assert L0.ConvertsToValueWith
57     DOC.Functions.sclHandlerValue : L0.ExternalValue
58
59 /* Basic component types */
60 COMPONENTS.Component <T STR.Component
61     >-- COMPONENTS.Component.manualOrdinal --> L0.Integer <R L0.HasProperty
62     @attribute PROPERTIES.input FUNCTIONS.input
63     @attribute PROPERTIES.session FUNCTIONS.session
64     @attribute PROPERTIES.state FUNCTIONS.state
65     @attribute PROPERTIES.icstate FUNCTIONS.icstate
66     @sclAttribute PROPERTIES.commands "commandList self" "[Command]"
67
68 COMPONENTS.PrimitiveComponent <T COMPONENTS.Component
69     @L0.sclAssertion PROPERTIES.primitiveProperties "primitiveProperties" "DocumentProperties"
70
71 COMPONENTS.ParentlessComponent <T COMPONENTS.PrimitiveComponent /* Component without a parent, e.g. Root, DialogBox */
72
73 COMPONENTS.Composite <T STR.Composite <T COMPONENTS.Component
74
75 COMPONENTS.DummyContainer <T COMPONENTS.Component /* Dummy single component container which is not instantiated */
76     @attribute PROPERTIES.exists true
77     @attribute PROPERTIES.pathExists FUNCTIONS.pathExists
78
79 /* Root */
80 COMPONENTS.Root <T COMPONENTS.ParentlessComponent   
81     @connectionPoint RELATIONS.part1
82
83 COMPONENTS.Event <T COMPONENTS.ParentlessComponent
84     @connectionPoint RELATIONS.event
85  
86 COMPONENTS.CommandEvent <T COMPONENTS.Event
87    @connectionPoint RELATIONS.data1
88    @sclAttribute PROPERTIES.dataDefinitions "computeDataDefinitions self" "[DataDefinition]"
89    @sclAttribute PROPERTIES.SCLFunction "emptyOnClick ()" "String"
90
91 DOC.commandEvent : L0.Template
92     @template %instance %expression %valueType
93         %instance : COMPONENTS.CommandEvent
94             PROPERTIES.SCLFunction _ : %valueType
95                 L0.HasValueType "AbstractEventHandler"
96                 L0.SCLValue.expression %expression
97
98 COMPONENTS.DefVar <T COMPONENTS.ParentlessComponent
99    @connectionPoint RELATIONS.dataDefinition
100    @connectionPoint RELATIONS.dataIn
101    @attribute PROPERTIES.target ""
102    @attribute PROPERTIES.source ""
103    
104 COMPONENTS.DefVars <T COMPONENTS.ParentlessComponent
105    @connectionPoint RELATIONS.dataDefinition
106    @connectionPoint RELATIONS.dataIn
107    @attribute PROPERTIES.targets 
108      [] : L0.StringArray
109    @attribute PROPERTIES.sources
110      [] : L0.StringArray