]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.interop.update/src/org/simantics/interop/update/model/PropertyChange.java
Use known literal type when applying value changes
[simantics/interop.git] / org.simantics.interop.update / src / org / simantics / interop / update / model / PropertyChange.java
1 package org.simantics.interop.update.model;
2
3 import org.simantics.db.Resource;
4 import org.simantics.db.Statement;
5 import org.simantics.db.WriteGraph;
6 import org.simantics.db.exception.DatabaseException;
7 import org.simantics.interop.test.GraphChanges;
8 import org.simantics.layer0.Layer0;
9 import org.simantics.utils.datastructures.Pair;
10
11 public class PropertyChange {
12         protected GraphChanges changes;
13         protected Resource leftSubject;
14         protected Resource rightSubject;
15         protected Pair<Statement, Statement> pair;
16         protected boolean applied = false;
17         protected boolean selected = false;
18         protected boolean visible = true;
19         protected boolean enabled = true;
20         protected Object customValue = null;
21         
22         
23         public PropertyChange(GraphChanges changes, Resource left, Statement first, Resource right, Statement second) {
24                 if (first == null && second == null)
25                         throw new IllegalArgumentException("At least one of the stamenents must be non null.");
26                 if (left == null || right == null)
27                         throw new IllegalArgumentException("Subject resources cannot be null.");
28                 this.pair = new Pair<Statement, Statement>(first, second);
29                 this.changes = changes;
30                 this.leftSubject = left;
31                 this.rightSubject = right;
32         }
33         
34         public PropertyChange(GraphChanges changes, Resource left, Resource right, Pair<Statement, Statement> change) {
35                 if (change == null || (change.first == null && change.second == null))
36                         throw new IllegalArgumentException("At least one of the stamenents must be non null.");
37                 if (left == null || right == null)
38                         throw new IllegalArgumentException("Subject resources cannot be null.");
39                 this.pair = change;
40                 this.changes = changes;
41                 this.leftSubject = left;
42                 this.rightSubject = right;
43         }
44         
45         
46         public Resource getFirstSubject() {
47                 return leftSubject;
48         }
49         
50         public Statement getFirst() {
51                 return pair.first;
52         }
53         
54         public Resource getSecondSubject() {
55                 return rightSubject;
56         }
57         
58         public Statement getSecond() {
59                 return pair.second;
60         }
61         
62         public Resource getPredicate() {
63             if (pair.first != null)
64                 return pair.first.getPredicate();
65             return pair.second.getPredicate();
66         }
67         
68         public GraphChanges getChanges() {
69                 return changes;
70         }
71         
72         @Override
73         public int hashCode() {
74                 return pair.hashCode();
75         }
76         
77         @Override
78         public boolean equals(Object obj) {
79                 if (obj == null)
80                         return false;
81                 if (obj.getClass() != this.getClass())
82                         return false;
83                 PropertyChange c = (PropertyChange)obj;
84                 if (!leftSubject.equals(c.leftSubject))
85                         return false;
86                 if (!rightSubject.equals(c.rightSubject))
87                         return false;
88                 if (pair.first != null && pair.first.equals(c.pair.first))
89                         return true;
90                 if (pair.second != null && pair.second.equals(c.pair.second))
91                         return true;
92                 return false;
93         }
94         
95         public void apply(WriteGraph graph) throws DatabaseException {
96                 if (applied)
97                         return;
98                 if (pair.second == null) {
99                         graph.deny(leftSubject, pair.first.getPredicate(),pair.first.getObject());
100                         return;
101                 } 
102                 Layer0 L0 = Layer0.getInstance(graph);
103                 Resource s = leftSubject;
104                 if (graph.isInstanceOf(pair.second.getObject(), L0.Literal)) {
105                         Object value = null;
106                         Resource type = null;
107                         if (customValue != null)
108                                 value = customValue;
109                         else if (graph.hasValue(pair.second.getObject())) {
110                                 value = graph.getValue(pair.second.getObject());
111                         }
112                         type = graph.getPossibleType(pair.second.getObject(), L0.Literal);
113                         Resource pred = pair.second.getPredicate();
114                         if (getChanges().getComparable().containsRight(pred))
115                                 pred = getChanges().getComparable().getLeft(pred);
116                         
117                         if (value != null) {
118                                 graph.deny(s, pred);
119                                 if (type != null) {
120                                         graph.claimLiteral(s, pred, type, value);
121                                 } else {
122                                         graph.claimLiteral(s, pred, value);
123                                 }
124                         } else {
125                                 graph.deny(s,pred);
126                         }
127                         applied = true;
128                 } else if (graph.isInstanceOf(pair.second.getObject(), L0.SCLValue)) {
129                         Resource pred = pair.second.getPredicate();
130                         graph.deny(s, pred);
131                         Resource valueResource = graph.newResource();
132                         graph.claim(valueResource, L0.InstanceOf, graph.getSingleObject(pair.second.getObject(), L0.InstanceOf));
133                         AddDeleteUpdateOp.copyProperties(graph, pair.second.getObject(), valueResource);
134                         graph.claim(s, pred, valueResource);
135                         applied = true;
136                 } else {
137                         Resource type = graph.getPossibleType(pair.second.getObject(), L0.Value);
138                         if (type != null && graph.hasStatement(type, L0.Enumeration, type)) {
139                                 Resource pred = pair.second.getPredicate();
140                                 graph.deny(s, pred);
141                                 graph.claim(s, pred, pair.second.getObject());
142                                 applied = true;
143                         }
144                         
145                 }
146                 
147         }
148         
149         /**
150          * Sets selected state. 
151          * @param select
152          * @return true if selection state was changed
153          */
154         public boolean select(boolean select) {
155             if (!enabled)
156                 return false;
157                 if (applied)
158                         return false;
159                 this.selected = select;
160                 return true;
161         }
162         
163         /**
164          * Is change selected.
165          * @return
166          */
167         public boolean selected() {
168                 return selected;
169         }
170         
171         /**
172          * Has change been applied
173          * @return
174          */
175         public boolean applied() {
176                 return applied;
177         }
178         
179         /**
180          * Is change visible
181          * @return
182          */
183         public boolean isVisible() {
184                 return visible;
185         }
186         
187         public void setVisible(boolean visible) {
188                 this.visible = visible;
189         }
190         
191         /**
192          * Is change enabled. Disabled changes do not allow changing selected state.
193          * @return
194          */
195         public boolean enabled() {
196         return enabled;
197     }
198         
199         public void setEnabled(boolean enabled) {
200         this.enabled = enabled;
201     }
202         
203         @Override
204         public String toString() {
205                 String s = "PropertyChange";
206                 if (pair.first != null)
207                         s += " L(" + (leftSubject) + " , " + pair.first.getPredicate() + " , " + pair.first.getObject() + ")";
208                 if (pair.second != null)
209                         s += " R(" + (rightSubject) + " , " + pair.second.getPredicate() + " , " + pair.second.getObject() + ")";
210                 if (selected)
211                     s += " selected";
212                 if (enabled)
213                     s += " enabled";
214                 if (visible)
215             s += " visible";
216                 if (applied)
217                     s += " applied";
218                 return s;
219         }
220         
221         public Object getCustomValue() {
222                 return customValue;
223         }
224         
225         public void setCustomValue(Object customValue) {
226                 if (applied) {
227                         throw new RuntimeException("Cannot change already applied value");
228                 }
229                 this.customValue = customValue;
230         }
231         
232 }