]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.selectionview/src/org/simantics/selectionview/function/All.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.selectionview / src / org / simantics / selectionview / function / All.java
1 package org.simantics.selectionview.function;
2
3 import java.io.IOException;
4 import java.util.ArrayList;
5 import java.util.Map;
6 import java.util.function.Consumer;
7
8 import org.eclipse.swt.graphics.FontData;
9 import org.eclipse.swt.graphics.RGB;
10 import org.eclipse.swt.widgets.ColorDialog;
11 import org.eclipse.swt.widgets.Control;
12 import org.eclipse.swt.widgets.FontDialog;
13 import org.simantics.Simantics;
14 import org.simantics.browsing.ui.NodeContext;
15 import org.simantics.browsing.ui.content.Labeler.DialogModifier;
16 import org.simantics.common.format.Formatter;
17 import org.simantics.databoard.Bindings;
18 import org.simantics.databoard.Datatypes;
19 import org.simantics.databoard.adapter.AdaptException;
20 import org.simantics.databoard.binding.Binding;
21 import org.simantics.databoard.binding.NumberBinding;
22 import org.simantics.databoard.binding.StringBinding;
23 import org.simantics.databoard.binding.error.BindingConstructionException;
24 import org.simantics.databoard.binding.error.BindingException;
25 import org.simantics.databoard.binding.mutable.MutableStringBinding;
26 import org.simantics.databoard.binding.mutable.Variant;
27 import org.simantics.databoard.parser.DataValuePrinter;
28 import org.simantics.databoard.parser.repository.DataTypeSyntaxError;
29 import org.simantics.databoard.parser.repository.DataValueRepository;
30 import org.simantics.databoard.primitives.MutableString;
31 import org.simantics.databoard.type.Datatype;
32 import org.simantics.databoard.util.ObjectUtils;
33 import org.simantics.datatypes.literal.Font;
34 import org.simantics.db.ReadGraph;
35 import org.simantics.db.Resource;
36 import org.simantics.db.Statement;
37 import org.simantics.db.WriteGraph;
38 import org.simantics.db.common.CommentMetadata;
39 import org.simantics.db.common.request.EnumerationMap;
40 import org.simantics.db.common.request.InstanceEnumerationMap;
41 import org.simantics.db.common.request.IsEnumeratedValue;
42 import org.simantics.db.common.request.UniqueRead;
43 import org.simantics.db.common.request.WriteRequest;
44 import org.simantics.db.common.utils.NameUtils;
45 import org.simantics.db.exception.DatabaseException;
46 import org.simantics.db.layer0.util.Layer0Utils;
47 import org.simantics.db.layer0.variable.ValueAccessor;
48 import org.simantics.db.layer0.variable.Variable;
49 import org.simantics.db.layer0.variable.Variables;
50 import org.simantics.layer0.Layer0;
51 import org.simantics.modeling.ModelingResources;
52 import org.simantics.scl.compiler.types.TVar;
53 import org.simantics.scl.compiler.types.Type;
54 import org.simantics.scl.compiler.types.Types;
55 import org.simantics.scl.reflection.annotations.SCLValue;
56 import org.simantics.selectionview.SelectionInput;
57 import org.simantics.selectionview.StandardSelectionInput;
58 import org.simantics.ui.colors.Colors;
59 import org.simantics.ui.fonts.Fonts;
60 import org.simantics.ui.selection.WorkbenchSelectionElement;
61 import org.simantics.ui.selection.WorkbenchSelectionUtils;
62 import org.simantics.utils.datastructures.collections.CollectionUtils;
63 import org.simantics.utils.ui.AdaptionUtils;
64 import org.simantics.utils.ui.ErrorLogger;
65 import org.simantics.utils.ui.ISelectionUtils;
66
67 public class All {
68
69         final private static Binding datatype_binging = Bindings.getBindingUnchecked(Datatype.class);
70
71         @SCLValue(type = "ReadGraph -> Resource -> Variable -> b")
72         public static Object colorModifier(ReadGraph graph, Resource resource, final Variable context) throws DatabaseException {
73                 return new DialogModifier() {
74
75                         @Override
76                         public String getValue() {
77                                 return null;
78                         }
79
80                         @Override
81                         public String isValid(String label) {
82                                 return null;
83                         }
84
85                         @Override
86                         public void modify(final String label) {
87                                 Simantics.getSession().async(new WriteRequest() {
88
89                                         @Override
90                                         public void perform(WriteGraph graph) throws DatabaseException {
91                                                 Variable displayValue = context.getParent(graph);
92                                                 displayValue.setValue(graph, label, org.simantics.datatypes.literal.RGB.Integer.BINDING);
93                                         }
94
95                                 });
96                         }
97
98                         public String query(Object parentControl, Object controlItem, int columnIndex, NodeContext context, Consumer<String> applyCallback) {
99                                 Control ctrl = (Control) parentControl;
100
101                                 RGB initialValue = null;
102                                 final Variable v = AdaptionUtils.adaptToSingle(context, Variable.class);
103                                 if (v != null) {
104                                         try {
105                                                 org.simantics.datatypes.literal.RGB.Integer rgb = Simantics.getSession().syncRequest(new UniqueRead<org.simantics.datatypes.literal.RGB.Integer>() {
106                                                         @Override
107                                                         public org.simantics.datatypes.literal.RGB.Integer perform(ReadGraph graph) throws DatabaseException {
108                                                                 return v.getPossibleValue(graph, org.simantics.datatypes.literal.RGB.Integer.BINDING);
109                                                         }
110                                                 });
111                                                 if (rgb != null) {
112                                                         initialValue = Colors.rgb(rgb);
113                                                 }
114                                         } catch (DatabaseException e) {
115                                                 ErrorLogger.defaultLogError(e);
116                                         }
117                                 }
118
119                                 ColorDialog dialog = new ColorDialog(ctrl.getShell());
120                                 if (initialValue != null)
121                                         dialog.setRGB(initialValue);
122                                 RGB rgb = dialog.open();
123                                 if (rgb != null)
124                                         applyCallback.accept("(" + rgb.red + "," + rgb.green + "," + rgb.blue + ")");
125                                 return null;
126                         }
127
128                 };
129         }
130
131         @SCLValue(type = "ReadGraph -> Resource -> Variable -> b")
132         public static Object fontModifier(ReadGraph graph, Resource resource, final Variable context) throws DatabaseException {
133                 return new DialogModifier() {
134
135                         @Override
136                         public String getValue() {
137                                 return null;
138                         }
139
140                         @Override
141                         public String isValid(String label) {
142                                 return null;
143                         }
144
145                         @Override
146                         public void modify(final String label) {
147                                 Simantics.getSession().async(new WriteRequest() {
148
149                                         @Override
150                                         public void perform(WriteGraph graph) throws DatabaseException {
151                                                 Variable displayValue = context.getParent(graph);
152                                                 displayValue.setValue(graph, label, Font.BINDING);
153                                         }
154
155                                 });
156                         }
157
158                         public String query(Object parentControl, Object controlItem, int columnIndex, NodeContext context, Consumer<String> applyCallback) {
159                                 Control ctrl = (Control) parentControl;
160
161                                 FontData[] initialValue = null;
162                                 final Variable v = AdaptionUtils.adaptToSingle(context, Variable.class);
163                                 if (v != null) {
164                                         try {
165                                                 Font font = Simantics.getSession().syncRequest(new UniqueRead<Font>() {
166                                                         @Override
167                                                         public Font perform(ReadGraph graph) throws DatabaseException {
168                                                                 return v.getPossibleValue(graph, Font.BINDING);
169                                                         }
170                                                 });
171                                                 if (font != null) {
172                                                         initialValue = new FontData[] { Fonts.swtFontData(font) };
173                                                 }
174                                         } catch (DatabaseException e) {
175                                                 ErrorLogger.defaultLogError(e);
176                                         }
177                                 }
178
179                                 FontDialog dialog = new FontDialog(ctrl.getShell());
180                                 if (initialValue != null)
181                                         dialog.setFontList(initialValue);
182                                 FontData font = dialog.open();
183                                 if (font != null)
184                                         applyCallback.accept("(\"" + font.getName() + "\"," + font.getHeight() + ",\"" + Fonts.fromSwtStyle(font.getStyle()) + "\")");
185                                 return null;
186                         }
187
188                 };
189         }
190
191         @SCLValue(type = "ReadGraph -> Resource -> a -> b")
192         public static Object getEnumerationValues(ReadGraph graph, Resource resource, Object context) throws DatabaseException {
193                 if(context instanceof Variable) {
194                         Layer0 L0 = Layer0.getInstance(graph);
195                         Variable parameter = ((Variable)context).browse(graph, "..");
196                         Resource parameterResource = parameter.getRepresents(graph);
197                         if(graph.sync(new IsEnumeratedValue(parameterResource))) {
198                                 Map<String, Resource> map = graph.sync(new InstanceEnumerationMap(parameterResource));
199                                 return new ArrayList<String>(map.keySet());
200                         } else if(graph.isInstanceOf(parameterResource, L0.Boolean)) {
201                                 return CollectionUtils.toList("true", "false");
202                         }
203                 }
204                 return null;
205         }
206
207         @SCLValue(type = "ReadGraph -> Resource -> a -> b")
208         public static Object getPropertyChildName(ReadGraph graph, Resource resource, Object context) throws DatabaseException {
209                 if(context instanceof Variable) {
210                         Variable variable = (Variable)context;
211                         return variable.getParent(graph).getName(graph);
212                 }
213                 throw new DatabaseException("Unknown context " + context);
214         }
215         
216         @SCLValue(type = "WriteGraph -> Variable -> a -> b -> String")
217         public static String inputModifier(WriteGraph graph, Variable variable, Object value, Object _binding) throws DatabaseException {
218
219                 //      System.err.println("inputModifier " + variable.getURI(graph));
220                 Layer0 L0 = Layer0.getInstance(graph);
221
222                 Variable parent = variable.getParent(graph);
223                 Resource property = variable.getPredicateResource(graph);
224
225                 Resource container = parent.getRepresents(graph);
226                 if(container == null) return null;
227                 if(property == null) return null;
228
229                 Statement object = graph.getPossibleStatement(container, property);
230                 if(object == null) return null;
231
232                 Resource objectResource = object.getObject();
233                 if(graph.sync(new IsEnumeratedValue(objectResource))) {
234
235                         Resource type = graph.getSingleObject(objectResource, L0.PartOf);
236
237                         Map<String, Resource> enumMap = graph.syncRequest(new EnumerationMap(type));
238                         Resource newLiteral = enumMap.get(value);
239                         graph.deny(container, property, objectResource);
240                         graph.claim(container, property, newLiteral);
241
242                         return null;
243
244                 }
245
246                 Resource newType = Layer0Utils.getPossibleLiteralType(graph, variable);
247                 if(newType == null) {
248                         Type type = Layer0Utils.getSCLType(graph, variable);
249                         // This means that type is a wildcard e.g. "a"
250                         if(Types.canonical(type) instanceof TVar) {
251                                 newType = Layer0Utils.inferLiteralTypeFromString(graph, value.toString());
252                         } else {
253                                 throw new DatabaseException("Failed to find type for property " + NameUtils.getSafeName(graph, property));
254                         }
255                 }
256
257                 boolean correctType = graph.getPossibleType(objectResource, newType) != null;
258                 boolean asserted = object.isAsserted(container);
259                 if(asserted || !correctType) {
260
261                         if(correctType) {
262
263                                 Statement dt = graph.getPossibleStatement(objectResource, L0.HasDataType);
264                                 Datatype custom = dt.isAsserted(objectResource) ? null : (Datatype)graph.getValue(dt.getObject(), datatype_binging);
265
266                                 objectResource = graph.newResource();
267                                 graph.claim(objectResource, L0.InstanceOf, null, newType);
268                                 graph.claim(container, property, objectResource);
269                                 if(custom != null) {
270                                         // Only set HasValueType if the calculated new SCL type differs from the asserted value type
271                                         String newValueType = Layer0Utils.getSCLType(custom);
272                                         String currentValueType = graph.getPossibleRelatedValue(objectResource, L0.HasValueType, Bindings.STRING);
273                                         if (!newValueType.equals(currentValueType)) {
274                                                 graph.addLiteral(objectResource, L0.HasValueType, L0.HasValueType_Inverse, L0.String, newValueType, Bindings.STRING);
275                                         }
276                                         graph.addLiteral(objectResource, L0.HasDataType, L0.HasDataType_Inverse, L0.DataType, custom, datatype_binging);
277                                 }
278
279                         } else {
280
281                                 if(newType != null) {
282
283                                         if(!correctType && !asserted) // if not correct type and not asserted, remove the old value
284                                                 graph.deny(container, property, objectResource);
285
286                                         objectResource = graph.newResource();
287                                         graph.claim(objectResource, L0.InstanceOf, newType);
288                                         graph.claim(container, property, objectResource);
289
290                                 }
291
292                         }
293
294                 }
295
296                 Datatype datatype = variable.getDatatype(graph);
297                 Binding binding = (Binding)_binding;
298                 Layer0Utils.claimAdaptedValue(graph, objectResource, value, binding, datatype);
299
300                 return null;
301
302         }
303
304         @SCLValue(type = "ReadGraph -> a -> Resource")
305         public static Resource singleResourceTransformation(ReadGraph graph, Object input) throws DatabaseException {
306                 return WorkbenchSelectionUtils.getPossibleResource(graph, input);
307         }
308
309
310         @SCLValue(type = "ReadGraph -> a -> Variable")
311         public static Variable singleVariableTransformation(ReadGraph graph, Object input) throws DatabaseException {
312                 Variable single = WorkbenchSelectionUtils.getPossibleVariable(graph, input);
313                 if(single != null) return single;
314                 return ISelectionUtils.filterSingleSelection(input, Variable.class);
315         }
316
317         @SCLValue(type = "ReadGraph -> a -> Variable")
318         public static Variable singleResourceToVariableTransformation(ReadGraph graph, Object input) throws DatabaseException {
319                 Resource r = WorkbenchSelectionUtils.getPossibleResource(graph, input);
320                 if (r == null)
321                         return null;
322                 return Variables.getPossibleVariable(graph, r);
323         }
324
325         @SCLValue(type = "ReadGraph -> a -> SelectionInput")
326         public static SelectionInput standardSelectionInputTransformation(ReadGraph graph, Object input) throws DatabaseException {
327                 WorkbenchSelectionElement wse = WorkbenchSelectionUtils.getPossibleSelectionElement(input);
328                 if (wse == null)
329                         return null;
330                 return new StandardSelectionInput(wse);
331         }
332
333         @SCLValue(type = "ValueAccessor")
334         public static ValueAccessor displayUnitValueAccessor = new ValueAccessor() {
335
336                 @Override
337                 public Object getValue(ReadGraph graph, Variable context) throws DatabaseException {
338                         return Variables.getPossibleUnit(graph, context.getParent(graph));
339                 }
340
341                 @Override
342                 public Object getValue(ReadGraph graph, Variable context, Binding binding) throws DatabaseException {
343                         try {
344                                 Object value = Variables.getPossibleUnit(graph, context.getParent(graph));
345                                 if(value == null) return null;
346                                 Binding srcBinding = Bindings.OBJECT.getContentBinding(value);
347                                 return Bindings.adapt(value, srcBinding, binding);
348                         } catch (AdaptException e) {
349                                 throw new DatabaseException(e);
350                         } catch (BindingException e) {
351                                 throw new DatabaseException(e);
352                         }
353                 }
354
355                 @Override
356                 public void setValue(WriteGraph graph, Variable context, Object value) throws DatabaseException {
357                         throw new UnsupportedOperationException();
358                 }
359
360                 @Override
361                 public void setValue(WriteGraph graph, Variable context, Object value, Binding binding) throws DatabaseException {
362                         throw new UnsupportedOperationException();
363                 }
364
365                 @Override
366                 public Datatype getDatatype(ReadGraph graph, Variable context) throws DatabaseException {
367                         return org.simantics.db.layer0.function.All.getDatatypeFromValue(graph, context);
368                 }
369
370         };
371
372         @SCLValue(type = "ValueAccessor")
373         public static ValueAccessor displayPropertyValueAccessor = new ValueAccessor() {
374
375                 @Override
376                 public Object getValue(ReadGraph graph, Variable context) throws DatabaseException {
377                         return getValue(graph, context, Bindings.STRING);
378                 }
379
380                 @Override
381                 public Object getValue(ReadGraph graph, Variable context, Binding binding) throws DatabaseException {
382                         Layer0 L0 = Layer0.getInstance(graph);
383                         Variable property = context.getParent(graph);
384                         Resource predicate = property.getPossiblePredicateResource(graph);
385                         if(predicate == null) return property.getName(graph);
386                         String value = graph.getPossibleRelatedValue2(predicate, L0.HasLabel, Bindings.STRING);
387                         if(value == null)
388                             value = graph.getRelatedValue(predicate, L0.HasName, Bindings.STRING);
389                         try {
390                                 return Bindings.adapt(value, binding, Bindings.STRING);
391                         } catch (AdaptException e) {
392                                 throw new DatabaseException(e);
393                         }
394                 }
395
396                 @Override
397                 public void setValue(WriteGraph graph, Variable context, Object value) throws DatabaseException {
398                         throw new UnsupportedOperationException();
399                 }
400
401                 @Override
402                 public void setValue(WriteGraph graph, Variable context, Object value, Binding binding) throws DatabaseException {
403                         throw new UnsupportedOperationException();
404                 }
405
406                 @Override
407                 public Datatype getDatatype(ReadGraph graph, Variable context)
408                                 throws DatabaseException {
409                         return Datatypes.STRING;
410                 }
411
412         };      
413
414         @SCLValue(type = "ValueAccessor")
415         public static ValueAccessor displayValueValueAccessor = new ValueAccessor() {
416
417                 @Override
418                 public Object getValue(ReadGraph graph, Variable context) throws DatabaseException {
419                         return getValue(graph, context, Bindings.STRING);
420                 }
421
422                 public boolean isPrimitive(Datatype dt) {
423                         if(Datatypes.STRING.equals(dt)) return true;
424                         else return false;
425                 }
426
427                 private String possibleExpression(ReadGraph graph, Variable variable) throws DatabaseException {
428
429                         Layer0 L0 = Layer0.getInstance(graph);
430                         Resource object = variable.getPossibleRepresents(graph);
431                         if(object != null && graph.isInstanceOf(object, L0.SCLValue)) {
432                                 String expression = graph.getPossibleRelatedValue(object, L0.SCLValue_expression);
433                                 if (expression != null)
434                                         return "=" + expression;
435                         }
436                         return null;
437
438                 }
439
440                 @Override
441                 public Object getValue(ReadGraph graph, Variable context, Binding _binding) throws DatabaseException {
442
443                         Variable property = context.getParent(graph);
444
445                         String expression = possibleExpression(graph, property);
446                         if(expression != null) return expression;
447
448                         Object value = null;
449                         Resource formatter = property.getPossiblePropertyValue(graph, Variables.FORMATTER);
450                         if(formatter != null) {
451                                 
452                                 Formatter fmt = graph.adaptContextual(formatter, property, Variable.class, Formatter.class);
453                                 value = fmt.format(property.getValue(graph));
454                                 
455                         } else {
456
457                                 Variant variant = property.getVariantValue(graph);
458                                 value = variant.getValue();
459                                 
460                                 Binding binding = variant.getBinding();
461                                 if(binding != null) {
462                                         Datatype dt = binding.type();   
463                                         if(dt != null) {
464                                                 if(!isPrimitive(dt)) {
465                                                         try {
466                                                                 value = DataValuePrinter.writeValueSingleLine(binding, value);
467                                                         } catch (IOException e) {
468                                                                 e.printStackTrace();
469                                                         } catch (BindingException e) {
470                                                                 e.printStackTrace();
471                                                         }
472                                                 }
473                                         }
474                                 }
475
476                         }
477
478                         try {
479                                 return Bindings.adapt(value != null ? value.toString() : "null", _binding, Bindings.STRING);
480                         } catch (AdaptException e) {
481                                 throw new DatabaseException(e);
482                         }
483                 }
484
485                 @Override
486                 public void setValue(WriteGraph graph, Variable context, Object value) throws DatabaseException {
487                         try {
488                                 Binding binding = Bindings.getBinding(value.getClass());
489                                 setValue(graph, context, value, binding);
490                         } catch (BindingConstructionException e) {
491                                 throw new DatabaseException(e);
492                         }
493                 }
494
495                 @Override
496                 public void setValue(WriteGraph graph, Variable context, Object _value, Binding _binding) throws DatabaseException {
497                         try {
498
499                                 if(!(_value instanceof String)) throw new DatabaseException("setValue for HasDisplayValue only accepts String (got " + _value.getClass().getSimpleName() + ")");
500
501                                 String text = (String)_value;
502                                 if(text.startsWith("=")) {
503                                         Variable property = context.getParent(graph);
504                                         Layer0Utils.setExpression(graph, property, text, ModelingResources.getInstance(graph).SCLValue);
505                                         return;
506                                 }
507
508                                 String parsedLabel = (String)_value;
509                                 Object value = parsedLabel;
510
511                                 Datatype type = context.getParent(graph).getPossibleDatatype(graph);
512                                 if (type != null) {
513
514                                         Binding binding = Bindings.getBinding(type);
515
516                                         if (binding instanceof StringBinding) {
517
518                                                 if (binding instanceof MutableStringBinding)
519                                                         value = new MutableString(parsedLabel);
520                                                 else
521                                                         value = parsedLabel;
522
523                                         } else {
524
525                                                 if (binding instanceof NumberBinding) {
526                                                         parsedLabel = parsedLabel.replace(",", ".");
527                                                 }
528
529                                                 value = binding.parseValue(parsedLabel, new DataValueRepository());
530                                         }
531
532                                         //System.out.println("VariableWrite " + ObjectUtils.toString(value));
533                                         context.getParent(graph).setValue(graph, value, binding);
534
535                                 } else {
536
537                                         context.getParent(graph).setValue(graph, value);
538
539                                 }
540
541
542                                 // Add a comment to metadata.
543                                 CommentMetadata cm = graph.getMetadata(CommentMetadata.class);
544                                 graph.addMetadata(cm.add("Set value " + ObjectUtils.toString(value)));
545
546                         } catch (DataTypeSyntaxError e) {
547                                 throw new DatabaseException(e);
548                         } catch (BindingException e) {
549                                 throw new DatabaseException(e);
550                         }
551                 }
552
553                 @Override
554                 public Datatype getDatatype(ReadGraph graph, Variable context)
555                                 throws DatabaseException {
556                         return Datatypes.STRING;
557                 }
558
559         };              
560 }