1 /*******************************************************************************
2 * Copyright (c) 2012 Association for Decentralized Information Management in
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.db.layer0.util;
14 import java.io.IOException;
15 import java.util.ArrayList;
16 import java.util.Collection;
17 import java.util.Collections;
18 import java.util.Comparator;
19 import java.util.HashSet;
20 import java.util.List;
23 import java.util.TreeSet;
25 import org.eclipse.core.runtime.IProgressMonitor;
26 import org.eclipse.core.runtime.NullProgressMonitor;
27 import org.eclipse.core.runtime.SubMonitor;
28 import org.simantics.databoard.Bindings;
29 import org.simantics.databoard.Datatypes;
30 import org.simantics.databoard.adapter.AdaptException;
31 import org.simantics.databoard.adapter.Adapter;
32 import org.simantics.databoard.adapter.AdapterConstructionException;
33 import org.simantics.databoard.binding.Binding;
34 import org.simantics.databoard.binding.NumberBinding;
35 import org.simantics.databoard.binding.StringBinding;
36 import org.simantics.databoard.binding.error.BindingException;
37 import org.simantics.databoard.binding.mutable.MutableStringBinding;
38 import org.simantics.databoard.parser.repository.DataTypeSyntaxError;
39 import org.simantics.databoard.parser.repository.DataValueRepository;
40 import org.simantics.databoard.primitives.MutableString;
41 import org.simantics.databoard.type.ArrayType;
42 import org.simantics.databoard.type.BooleanType;
43 import org.simantics.databoard.type.ByteType;
44 import org.simantics.databoard.type.Datatype;
45 import org.simantics.databoard.type.DoubleType;
46 import org.simantics.databoard.type.FloatType;
47 import org.simantics.databoard.type.IntegerType;
48 import org.simantics.databoard.type.LongType;
49 import org.simantics.databoard.type.MapType;
50 import org.simantics.databoard.type.NumberType;
51 import org.simantics.databoard.type.OptionalType;
52 import org.simantics.databoard.type.RecordType;
53 import org.simantics.databoard.type.StringType;
54 import org.simantics.databoard.type.UnionType;
55 import org.simantics.databoard.type.VariantType;
56 import org.simantics.databoard.util.ObjectUtils;
57 import org.simantics.datatypes.literal.GUID;
58 import org.simantics.db.ChangeSetIdentifier;
59 import org.simantics.db.Operation;
60 import org.simantics.db.ReadGraph;
61 import org.simantics.db.RelationContext;
62 import org.simantics.db.Resource;
63 import org.simantics.db.Session;
64 import org.simantics.db.Statement;
65 import org.simantics.db.WriteGraph;
66 import org.simantics.db.WriteOnlyGraph;
67 import org.simantics.db.common.CommentMetadata;
68 import org.simantics.db.common.Indexing;
69 import org.simantics.db.common.StandardStatement;
70 import org.simantics.db.common.primitiverequest.PossibleRelatedValue;
71 import org.simantics.db.common.procedure.adapter.TransientCacheAsyncListener;
72 import org.simantics.db.common.request.DelayedWriteRequest;
73 import org.simantics.db.common.request.ObjectsWithType;
74 import org.simantics.db.common.request.PossibleChild;
75 import org.simantics.db.common.request.PossibleIndexRoot;
76 import org.simantics.db.common.request.WriteRequest;
77 import org.simantics.db.common.utils.NameUtils;
78 import org.simantics.db.event.ChangeListener;
79 import org.simantics.db.exception.CancelTransactionException;
80 import org.simantics.db.exception.DatabaseException;
81 import org.simantics.db.exception.ServiceException;
82 import org.simantics.db.layer0.adapter.CopyHandler;
83 import org.simantics.db.layer0.adapter.CopyHandler2;
84 import org.simantics.db.layer0.adapter.GenericRelationIndex;
85 import org.simantics.db.layer0.adapter.PasteHandler;
86 import org.simantics.db.layer0.adapter.impl.DefaultPasteHandler;
87 import org.simantics.db.layer0.adapter.impl.EntityRemover;
88 import org.simantics.db.layer0.adapter.impl.TGRemover;
89 import org.simantics.db.layer0.genericrelation.IndexedRelations;
90 import org.simantics.db.layer0.internal.SimanticsInternal;
91 import org.simantics.db.layer0.migration.OntologiesFromLibrary;
92 import org.simantics.db.layer0.property.OrderedResource;
93 import org.simantics.db.layer0.request.GlobalOntologies;
94 import org.simantics.db.layer0.request.PossibleVariableIndexRoot;
95 import org.simantics.db.layer0.request.PropertyInfo;
96 import org.simantics.db.layer0.request.PropertyInfoRequest;
97 import org.simantics.db.layer0.util.SimanticsClipboard.Representation;
98 import org.simantics.db.layer0.variable.StandardGraphPropertyVariable;
99 import org.simantics.db.layer0.variable.Variable;
100 import org.simantics.db.service.ClusterCollectorPolicy;
101 import org.simantics.db.service.ClusterControl;
102 import org.simantics.db.service.ClusteringSupport;
103 import org.simantics.db.service.CollectionSupport;
104 import org.simantics.db.service.DebugSupport;
105 import org.simantics.db.service.GraphChangeListenerSupport;
106 import org.simantics.db.service.ManagementSupport;
107 import org.simantics.db.service.UndoRedoSupport;
108 import org.simantics.db.service.XSupport;
109 import org.simantics.graph.db.TransferableGraphSource;
110 import org.simantics.graph.db.TransferableGraphs;
111 import org.simantics.graph.diff.Diff;
112 import org.simantics.graph.diff.TransferableGraphDelta1;
113 import org.simantics.graph.refactoring.GraphRefactoringUtils;
114 import org.simantics.graph.representation.PrettyPrintTG;
115 import org.simantics.graph.representation.TransferableGraph1;
116 import org.simantics.layer0.Layer0;
117 import org.simantics.operation.Layer0X;
118 import org.simantics.scl.compiler.environment.Environments;
119 import org.simantics.scl.compiler.runtime.RuntimeEnvironment;
120 import org.simantics.scl.compiler.top.SCLExpressionCompilationException;
121 import org.simantics.scl.compiler.types.Type;
122 import org.simantics.scl.osgi.SCLOsgi;
123 import org.simantics.scl.runtime.function.Function;
124 import org.simantics.scl.runtime.function.Function1;
125 import org.simantics.scl.runtime.function.FunctionImpl1;
127 public class Layer0Utils {
129 @SuppressWarnings("rawtypes")
130 public static final ThreadLocal SCL_GRAPH = new ThreadLocal();
132 final public static Binding datatype_binging = Bindings.getBindingUnchecked(Datatype.class);
134 public static Resource literal(WriteGraph g, String value) throws DatabaseException {
135 Layer0 L0 = Layer0.getInstance(g);
136 Resource r = g.newResource();
137 g.claimValue(r, value, Bindings.STRING);
138 g.claim(r, L0.InstanceOf, L0.String);
142 public static Resource literal(WriteGraph g, double value) throws DatabaseException {
143 Layer0 L0 = Layer0.getInstance(g);
144 Resource r = g.newResource();
145 g.claimValue(r, value, Bindings.DOUBLE);
146 g.claim(r, L0.InstanceOf, L0.Double);
150 public static Resource literal(WriteGraph g, int value) throws DatabaseException {
151 Layer0 L0 = Layer0.getInstance(g);
152 Resource r = g.newResource();
153 g.claimValue(r, value, Bindings.INTEGER);
154 g.claim(r, L0.InstanceOf, L0.Integer);
158 public static void assert_(WriteGraph g, Resource type, Resource predicate, Resource object) throws DatabaseException {
159 Layer0 L0 = Layer0.getInstance(g);
160 Resource assertion = g.newResource();
161 g.claim(type, L0.Asserts, assertion);
162 g.claim(assertion, L0.InstanceOf, L0.Assertion);
163 g.claim(assertion, L0.HasPredicate, predicate);
164 g.claim(assertion, L0.HasObject, object);
167 public static Resource relation(WriteGraph g, Resource parent, String name, Resource superrelation) throws DatabaseException {
168 Layer0 L0 = Layer0.getInstance(g);
169 Resource relation = g.newResource();
170 g.claim(relation, L0.SubrelationOf, superrelation);
171 g.claim(relation, L0.HasName, literal(g, name));
172 g.claim(parent, L0.ConsistsOf, relation);
174 Resource superrelationInverse = g.getInverse(superrelation);
175 if(superrelationInverse != null) {
176 Resource inverse = g.newResource();
177 g.claim(inverse, L0.SubrelationOf, superrelationInverse);
178 g.claim(relation, L0.ConsistsOf, inverse);
179 g.claim(inverse, L0.HasName, literal(g, "Inverse"));
184 private static Resource getLiteralType(ReadGraph graph, Datatype type) throws DatabaseException {
185 Layer0 L0 = Layer0.getInstance(graph);
186 if(type instanceof DoubleType) return L0.Double;
187 else if(type instanceof StringType) return L0.String;
188 else if(type instanceof IntegerType) return L0.Integer;
189 else if(type instanceof LongType) return L0.Long;
190 else if(type instanceof FloatType) return L0.Float;
191 else if(type instanceof ByteType) return L0.Byte;
192 else if(type instanceof BooleanType) return L0.Boolean;
193 else if(type instanceof ArrayType) {
194 ArrayType at = (ArrayType)type;
195 if(at.componentType instanceof DoubleType) return L0.DoubleArray;
196 else if(at.componentType instanceof StringType) return L0.StringArray;
197 else if(at.componentType instanceof IntegerType) return L0.IntegerArray;
198 else if(at.componentType instanceof LongType) return L0.LongArray;
199 else if(at.componentType instanceof FloatType) return L0.FloatArray;
200 else if(at.componentType instanceof ByteType) return L0.ByteArray;
201 else if(at.componentType instanceof BooleanType) return L0.BooleanArray;
202 else if(at.componentType instanceof VariantType) return L0.VariantArray;
204 throw new DatabaseException("Unidentified literal type for datatype " + type);
207 private static Resource getPossibleLiteralType(ReadGraph graph, String type) throws DatabaseException {
209 Layer0 L0 = Layer0.getInstance(graph);
210 if("Double".equals(type)) return L0.Double;
211 else if("String".equals(type)) return L0.String;
212 else if("Integer".equals(type)) return L0.Integer;
213 else if("Long".equals(type)) return L0.Long;
214 else if("Float".equals(type)) return L0.Float;
215 else if("Byte".equals(type)) return L0.Byte;
216 else if("Boolean".equals(type)) return L0.Boolean;
217 else if("[Double]".equals(type)) return L0.DoubleArray;
218 else if("[String]".equals(type)) return L0.StringArray;
219 else if("[Integer]".equals(type)) return L0.IntegerArray;
220 else if("[Long]".equals(type)) return L0.LongArray;
221 else if("[Float]".equals(type)) return L0.FloatArray;
222 else if("[Byte]".equals(type)) return L0.ByteArray;
223 else if("[Boolean]".equals(type)) return L0.BooleanArray;
224 else if("[Variant]".equals(type)) return L0.VariantArray;
225 else if("Array Double".equals(type)) return L0.DoubleArray;
226 else if("Array String".equals(type)) return L0.StringArray;
227 else if("Array Integer".equals(type)) return L0.IntegerArray;
228 else if("Array Long".equals(type)) return L0.LongArray;
229 else if("Array Float".equals(type)) return L0.FloatArray;
230 else if("Array Byte".equals(type)) return L0.ByteArray;
231 else if("Array Boolean".equals(type)) return L0.BooleanArray;
232 else if("Array Variant".equals(type)) return L0.VariantArray;
233 else if("Vector Double".equals(type)) return L0.DoubleArray;
234 else if("Vector String".equals(type)) return L0.StringArray;
235 else if("Vector Integer".equals(type)) return L0.IntegerArray;
236 else if("Vector Long".equals(type)) return L0.LongArray;
237 else if("Vector Float".equals(type)) return L0.FloatArray;
238 else if("Vector Byte".equals(type)) return L0.ByteArray;
239 else if("Vector Boolean".equals(type)) return L0.BooleanArray;
240 else if("Vector Variant".equals(type)) return L0.VariantArray;
241 else if("Datatype".equals(type)) return L0.DataType;
242 else if("Variant".equals(type)) return L0.Variant;
246 public static Resource getPossibleLiteralType(ReadGraph graph, Variable variable) throws DatabaseException {
247 Resource predicate = variable.getPossiblePredicateResource(graph);
248 if(predicate == null) return null;
249 return getPossibleLiteralType(graph, predicate);
252 public static Resource getLiteralType(ReadGraph graph, Variable variable) throws DatabaseException {
253 Resource result = getPossibleLiteralType(graph, variable);
254 if(result == null) throw new DatabaseException("Unidentified literal type for variable " + variable.getURI(graph));
258 public static Resource getLiteralType(ReadGraph graph, Resource property) throws DatabaseException {
259 Resource result = getPossibleLiteralType(graph, property);
260 if(result == null) throw new DatabaseException("Unidentified literal type for property " + graph.getURI(property));
264 public static Resource getPossibleLiteralType(ReadGraph graph, Resource property) throws DatabaseException {
266 Layer0 L0 = Layer0.getInstance(graph);
267 Layer0X L0X = Layer0X.getInstance(graph);
269 Resource defaultLiteralType = graph.getPossibleObject(property, L0.HasDefaultLiteralType);
270 if(defaultLiteralType != null) return defaultLiteralType;
272 Resource range = graph.getPossibleObject(property, L0.HasRange);
273 if(range != null && !L0.Value.equals(range)) return range;
275 Datatype requiredDataType = graph.getPossibleRelatedValue(property, L0X.RequiresDataType, datatype_binging);
276 if(requiredDataType != null) return getLiteralType(graph, requiredDataType);
278 String requiredValueType = graph.getPossibleRelatedValue(property, L0.RequiresValueType, Bindings.STRING);
279 if(requiredValueType == null) return null;
281 return getPossibleLiteralType(graph, requiredValueType);
286 * @param type any data type definition
287 * @return SCL type that matches the specified data type on a basic level.
288 * Data type metadata is/cannot be converted into SCL types.
289 * @throws IllegalArgumentException
290 * if the input datatype can't be converted into an SCL type
292 public static String getSCLType(Datatype type) throws IllegalArgumentException {
293 return buildSCLType(type, null).toString();
297 * Only used internally by {@link #buildSCLType(Datatype, StringBuilder)}
301 * @see #buildSCLType(Datatype, StringBuilder)
303 private static StringBuilder append(StringBuilder toBuilder, String s) {
304 return toBuilder != null ? toBuilder.append(s) : new StringBuilder(s);
307 private static CharSequence append(CharSequence to, String s) {
308 if (to instanceof StringBuilder)
309 return ((StringBuilder) to).append(s);
310 return new StringBuilder(to.length() + s.length()).append(to).append(s);
313 private static CharSequence stringOrBuilder(StringBuilder toBuilder, String s) {
314 return toBuilder != null ? toBuilder.append(s) : s;
318 * @param type any data type definition
319 * @return SCL type that matches the specified data type on a basic level.
320 * Data type metadata is/cannot be converted into SCL types.
321 * @throws IllegalArgumentException
322 * if the input datatype can't be converted into an SCL type
324 private static CharSequence buildSCLType(Datatype type, StringBuilder result) throws IllegalArgumentException {
325 if(type instanceof DoubleType) return stringOrBuilder(result, "Double");
326 else if(type instanceof StringType) return stringOrBuilder(result, "String");
327 else if(type instanceof IntegerType) return stringOrBuilder(result, "Integer");
328 else if(type instanceof FloatType) return stringOrBuilder(result, "Float");
329 else if(type instanceof BooleanType) return stringOrBuilder(result, "Boolean");
330 else if(type instanceof ByteType) return stringOrBuilder(result, "Byte");
331 else if(type instanceof LongType) return stringOrBuilder(result, "Long");
332 else if(type instanceof VariantType) return stringOrBuilder(result, "Variant");
333 else if(type instanceof ArrayType) {
334 ArrayType at = (ArrayType) type;
335 // Optimization to prevent allocations in the most basic array cases
336 if(at.componentType instanceof DoubleType) return stringOrBuilder(result, "Vector Double");
337 else if(at.componentType instanceof StringType) return stringOrBuilder(result, "Vector String");
338 else if(at.componentType instanceof IntegerType) return stringOrBuilder(result, "Vector Integer");
339 else if(at.componentType instanceof FloatType) return stringOrBuilder(result, "Vector Float");
340 else if(at.componentType instanceof BooleanType) return stringOrBuilder(result, "Vector Boolean");
341 else if(at.componentType instanceof ByteType) return stringOrBuilder(result, "Vector Byte");
342 else if(at.componentType instanceof LongType) return stringOrBuilder(result, "Vector Long");
343 else if(at.componentType instanceof VariantType) return stringOrBuilder(result, "Vector Variant");
344 else return buildSCLType(at.componentType, append(result, "Vector "));
345 } else if(type instanceof OptionalType) {
346 OptionalType ot = (OptionalType) type;
347 return append(buildSCLType(ot.componentType, append(result, "Maybe (")), ")");
348 } else if (type instanceof RecordType) {
349 throw new IllegalArgumentException("Unable to convert datatype into SCL type: " + type);
350 } else if (type instanceof MapType) {
351 throw new IllegalArgumentException("Unable to convert datatype into SCL type: " + type);
352 } else if (type instanceof UnionType) {
353 throw new IllegalArgumentException("Unable to convert datatype into SCL type: " + type);
355 throw new IllegalArgumentException("Unable to convert datatype into SCL type: " + type);
359 public static Type getSCLType(ReadGraph graph, RuntimeEnvironment runtimeEnvironment, String typeText) throws DatabaseException {
361 return Environments.getType(runtimeEnvironment.getEnvironment(), typeText);
362 } catch (SCLExpressionCompilationException e) {
363 throw new DatabaseException(e);
367 public static Type getSCLType(ReadGraph graph, Variable property) throws DatabaseException {
369 RuntimeEnvironment runtimeEnvironment = graph.syncRequest(new RuntimeEnvironmentRequest(property.getIndexRoot(graph)));
370 return getSCLType(graph, runtimeEnvironment, getSCLTypeString(graph, property));
375 public static String getSCLTypeString(ReadGraph graph, Variable context) throws DatabaseException {
376 return getSCLTypeString(graph, context.getPossiblePredicateResource(graph), context.getRepresents(graph));
380 public static String getSCLTypeString(ReadGraph graph, Resource predicate, Resource value) throws DatabaseException {
382 if(predicate != null) {
383 String requiredValueTypes = graph.getPossibleRelatedValue(predicate, Layer0.getInstance(graph).RequiresValueType, Bindings.STRING);
384 if(requiredValueTypes != null)
385 return requiredValueTypes;
388 Layer0 L0 = Layer0.getInstance(graph);
389 Layer0X L0X = Layer0X.getInstance(graph);
391 Datatype literalDatatype = graph.getPossibleRelatedValue(value, L0.HasDataType, datatype_binging);
392 if(literalDatatype != null) return getSCLType(literalDatatype);
394 String literalValueType = graph.getPossibleRelatedValue(value, L0.HasValueType, Bindings.STRING);
395 if(literalValueType != null) return literalValueType;
397 if(predicate != null) {
399 Datatype requiredDataType = graph.getPossibleRelatedValue(predicate, L0X.RequiresDataType, datatype_binging);
400 if(requiredDataType != null) return getSCLType(requiredDataType);
402 throw new DatabaseException("Unidentified literal data type for property " + NameUtils.getURIOrSafeNameInternal(graph, predicate));
406 throw new DatabaseException("Unidentified literal data type");
410 public static Datatype getDatatype(ReadGraph graph, Variable variable) throws DatabaseException {
411 Datatype result = getPossibleDatatype(graph, variable);
412 if(result != null) return result;
413 throw new DatabaseException("Unidentified literal data type for property " + variable.getURI(graph));
416 public static Datatype getPossibleDatatype(ReadGraph graph, Variable variable) throws DatabaseException {
418 Layer0 L0 = Layer0.getInstance(graph);
419 Layer0X L0X = Layer0X.getInstance(graph);
421 Resource property = variable.getPossiblePredicateResource(graph);
422 if(property != null) {
423 // Datatype requiredDataType = graph.getPossibleRelatedValue(property, L0X.RequiresDataType, datatype_binging);
424 Datatype requiredDataType = graph.syncRequest(new PossibleRelatedValue<Datatype>(property, L0X.RequiresDataType, datatype_binging));
425 if(requiredDataType != null) return requiredDataType;
428 Resource literal = variable.getPossibleRepresents(graph);
429 if(literal != null) {
430 Datatype literalDatatype = graph.getPossibleRelatedValue2(literal, L0.HasDataType, new StandardGraphPropertyVariable(graph, variable, null, literal, L0.HasDataType), datatype_binging);
431 if(literalDatatype != null) return literalDatatype;
434 if(property != null) {
436 String requiredValueType = graph.getPossibleRelatedValue(property, L0.RequiresValueType, Bindings.STRING);
437 if(requiredValueType != null) {
438 Datatype datatype = getPossibleDatatypeForValueType(requiredValueType);
439 if(datatype != null) return datatype;
442 Resource subject = variable.getParent(graph).getPossibleRepresents(graph);
443 if(subject != null) {
444 Set<Resource> asses = new HashSet<Resource>();
445 for(Resource type : graph.getTypes(subject)) {
446 asses.addAll(graph.getAssertedObjects(type, property));
448 if(asses.size() == 1) {
449 Resource ass = asses.iterator().next();
450 Datatype dt = graph.getPossibleRelatedValue(ass, L0.HasDataType, Bindings.getBindingUnchecked(Datatype.class));
451 if(dt != null) return dt;
461 private static Datatype getPossibleDatatypeForValueType(String requiredValueType) throws DatabaseException {
463 String[] split = requiredValueType.split(" ");
464 String arrayType = null;
465 if(split.length == 2 && "Array".equals(split[0])) {
466 arrayType = split[1];
467 } else if(requiredValueType.startsWith("[") && requiredValueType.endsWith("]")) {
468 arrayType = requiredValueType.substring(1, requiredValueType.length()-1);
471 if(arrayType != null) {
472 Datatype arrayDataType = getArrayDataTypeForType(arrayType);
473 if(arrayDataType != null)
474 return arrayDataType;
477 Datatype dt = Datatypes.getDatatype(requiredValueType);
478 if(dt != null) return dt;
481 return Datatypes.translate(requiredValueType);
482 } catch (DataTypeSyntaxError e) {
489 private static Datatype getArrayDataTypeForType(String type) {
490 if("Double".equals(type)) return Datatypes.DOUBLE_ARRAY;
491 else if("String".equals(type)) return Datatypes.STRING_ARRAY;
492 else if("Integer".equals(type)) return Datatypes.INTEGER_ARRAY;
493 else if("Long".equals(type)) return Datatypes.LONG_ARRAY;
494 else if("Float".equals(type)) return Datatypes.FLOAT_ARRAY;
495 else if("Byte".equals(type)) return Datatypes.BYTE_ARRAY;
496 else if("Boolean".equals(type)) return Datatypes.BOOLEAN_ARRAY;
497 else if("Variant".equals(type)) return Datatypes.VARIANT_ARRAY;
501 public static Binding getDefaultBinding(ReadGraph graph, Variable variable) throws DatabaseException {
503 Resource property = variable.getPossiblePredicateResource(graph);
504 if(property != null) {
505 PropertyInfo info = graph.syncRequest(new PropertyInfoRequest(property), TransientCacheAsyncListener.<PropertyInfo>instance());
506 if(info.defaultBinding != null) return info.defaultBinding;
509 Datatype type = getDatatype(graph, variable);
511 throw new DatabaseException("No datatype available for variable " + variable.getURI(graph));
512 return Bindings.getBinding(type);
516 public static Binding getPossibleDefaultBinding(ReadGraph graph, Variable variable) throws DatabaseException {
518 Resource property = variable.getPossiblePredicateResource(graph);
519 if(property != null) {
520 PropertyInfo info = graph.syncRequest(new PropertyInfoRequest(property), TransientCacheAsyncListener.<PropertyInfo>instance());
521 if(info.defaultBinding != null) return info.defaultBinding;
524 Datatype type = getPossibleDatatype(graph, variable);
525 if (type == null) return null;
527 return Bindings.getBinding(type);
531 public static String getPossibleUnit(Datatype dt) {
534 else if (dt instanceof NumberType) {
535 return ((NumberType) dt).getUnit();
536 } else if (dt instanceof ArrayType) {
537 ArrayType at = (ArrayType) dt;
538 Datatype cdt = at.componentType();
539 if (cdt instanceof NumberType) {
540 return ((NumberType) cdt).getUnit();
547 public static String getUnit(ReadGraph graph, Variable variable) throws DatabaseException {
549 Layer0 L0 = Layer0.getInstance(graph);
550 Layer0X L0X = Layer0X.getInstance(graph);
552 Resource literal = variable.getPossibleRepresents(graph);
556 Datatype literalDatatype = graph.getPossibleRelatedValue2(literal, L0.HasDataType, new StandardGraphPropertyVariable(graph, variable, null, literal, L0.HasDataType), datatype_binging);
557 if(literalDatatype != null) {
558 String unit = getPossibleUnit(literalDatatype);
559 if(unit != null) return unit;
562 Resource property = variable.getPossiblePredicateResource(graph);
563 if(property != null) {
565 Datatype requiredDataType = graph.getPossibleRelatedValue(property, L0X.RequiresDataType, datatype_binging);
566 if(requiredDataType != null) {
567 String unit = getPossibleUnit(requiredDataType);
568 if(unit != null) return unit;
577 public static void claimAdaptedValue(WriteGraph graph, Resource objectResource, Object value, Binding binding, Datatype targetDatatype) throws DatabaseException {
581 Datatype sourceDatatype = binding.type();
582 if(sourceDatatype.equals(targetDatatype)) {
583 graph.claimValue(objectResource, value, binding);
585 Binding target = Bindings.getBinding(targetDatatype);
586 Adapter adapter = Bindings.getTypeAdapter(binding, target);
587 graph.claimValue(objectResource, adapter.adapt(value), target);
590 } catch (AdapterConstructionException e) {
591 throw new DatabaseException(e);
592 } catch (AdaptException e) {
593 throw new DatabaseException(e);
598 public static String toString(Object value, Binding binding) throws DatabaseException {
600 if(value instanceof String) return (String)value;
601 StringBuilder sb = new StringBuilder();
602 DataValueRepository rep = new DataValueRepository();
603 binding.printValue(value, sb, rep, false);
604 return sb.toString();
605 } catch (BindingException e) {
606 throw new DatabaseException(e);
607 } catch (IOException e) {
608 throw new DatabaseException(e);
612 public static Object parseValue(String text, Binding binding) throws DatabaseException {
614 if(binding.isInstance(text)) return text;
615 DataValueRepository rep = new DataValueRepository();
616 return binding.parseValue(text, rep);
617 } catch (BindingException e) {
618 throw new DatabaseException(e);
619 } catch (DataTypeSyntaxError e) {
620 throw new DatabaseException(e);
624 @SuppressWarnings("unchecked")
625 public static <T> T getValueAdaptedToBinding(ReadGraph graph, Resource literal, Binding targetBinding) throws DatabaseException {
626 Datatype sourceDatatype = graph.getDataType(literal);
627 Datatype targetDatatype = targetBinding.type();
628 if (sourceDatatype.equals(targetDatatype))
629 return graph.getValue(literal, targetBinding);
631 Binding sourceBinding = Bindings.getBinding(sourceDatatype);
633 Adapter adapter = Bindings.adapterFactory.getAdapter(Bindings.getBinding(sourceDatatype), targetBinding, true, false);
634 Object value = graph.getValue(literal, sourceBinding);
635 return (T) adapter.adaptUnchecked(value);
636 } catch (AdapterConstructionException e) {
637 throw new DatabaseException(e);
641 public static Statement getStatementInLocal(Resource subject, Statement statement) {
642 if(statement.isAsserted(subject)) return new StandardStatement(subject, statement.getPredicate(), statement.getObject());
643 else return statement;
646 public static Resource browsePossible(ReadGraph graph, Resource root, String suffix) throws DatabaseException {
647 return graph.getPossibleResource(graph.getURI(root) + suffix);
650 public static Resource getPossibleChild(ReadGraph graph, Resource resource, String name) throws DatabaseException {
651 return graph.sync(new PossibleChild(resource, name));
654 public static Resource getPossibleChild(ReadGraph graph, Resource resource, Resource type, String name) throws DatabaseException {
655 Resource child = graph.sync(new PossibleChild(resource, name));
656 if(child == null) return null;
657 if(!graph.isInstanceOf(child, type)) return null;
661 public static RelationContext relationContext(ReadGraph graph, Resource subject, Resource predicate) throws DatabaseException {
662 Statement stm = graph.getSingleStatement(subject, predicate);
663 return new RelationContextImpl(subject, stm);
666 public static RelationContext relationContext(Statement stm) throws DatabaseException {
667 return new RelationContextImpl(stm.getSubject(), stm);
670 public static <T> T valueInRelationContext(ReadGraph graph, Resource subject, Statement stm) throws DatabaseException {
671 return graph.getValue2(subject, Layer0Utils.relationContext(stm));
674 public static <T> T valueInRelationContext(ReadGraph graph, Resource subject, Statement stm, Binding binding) throws DatabaseException {
675 return graph.getValue2(subject, Layer0Utils.relationContext(stm), binding);
678 public static <T> T relatedValueInRelationContext(ReadGraph graph, Resource subject, Resource relation) throws DatabaseException {
679 Statement stm = getStatementInLocal(subject, graph.getSingleStatement(subject, relation));
680 return valueInRelationContext(graph, stm.getObject(), stm);
683 public static <T> T relatedValueInRelationContext(ReadGraph graph, Resource subject, Resource relation, Binding binding) throws DatabaseException {
684 Statement stm = getStatementInLocal(subject, graph.getSingleStatement(subject, relation));
685 return valueInRelationContext(graph, stm.getObject(), stm, binding);
688 public static Statement possibleObtainedStatementInternal(ReadGraph graph, Resource subject, Resource relation) throws DatabaseException {
690 Layer0X L0X = Layer0X.getInstance(graph);
692 for(Resource ob : graph.getObjects(subject, L0X.DefinesObtainedStatement)) {
693 Resource pred = graph.getSingleObject(ob, L0X.ObtainedStatement_predicate);
694 if(graph.isSubrelationOf(pred, relation)) {
695 Resource object = graph.getSingleObject(ob, L0X.ObtainedStatement_object);
696 return new StandardStatement(subject, pred, object);
700 ArrayList<OrderedResource> order = new ArrayList<OrderedResource>();
701 for(Statement stm : graph.getStatements(subject, L0X.ObtainsProperty)) {
702 Integer position = graph.getRelatedValue(stm.getPredicate(), L0X.NaturalNumberOrderRelation, Bindings.INTEGER);
703 order.add(new OrderedResource(position, stm.getObject()));
706 for(OrderedResource or : order) {
707 Statement stm = possibleObtainedStatementInternal(graph, or.r, relation);
708 if(stm != null) return stm;
715 public static <T> T possibleObtainedValue(ReadGraph graph, RelationContext ctx, Binding binding) throws DatabaseException {
717 Statement stm = ctx.getStatement();
718 Statement obj = Layer0Utils.possibleObtainedStatementInternal(graph, stm.getSubject(), stm.getPredicate());
721 return Layer0Utils.valueInRelationContext(graph, obj.getObject(), obj, binding);
728 public static void addObtainedStatement(WriteGraph graph, Resource subject, Resource predicate, Resource object) throws DatabaseException {
729 Layer0 L0 = Layer0.getInstance(graph);
730 Layer0X L0X = Layer0X.getInstance(graph);
731 Resource ob = graph.newResource();
732 graph.claim(ob, L0.InstanceOf, null, L0X.ObtainedStatement);
733 graph.claim(ob, L0X.ObtainedStatement_predicate, null, predicate);
734 graph.claim(ob, L0X.ObtainedStatement_object, null, object);
735 graph.claim(subject, L0X.DefinesObtainedStatement, null, ob);
738 public static void addObtainedValue(WriteGraph graph, Resource subject, Resource predicate, Resource type, Object value, Binding binding) throws DatabaseException {
739 Layer0 L0 = Layer0.getInstance(graph);
740 Resource object = graph.newResource();
741 graph.claim(object, L0.InstanceOf, type);
742 graph.claimValue(object, value, binding);
743 Layer0Utils.addObtainedStatement(graph, subject, predicate, object);
746 //-------------------------------------------------------------------------
747 // Indexing state query utilities idle handling utilities
748 //-------------------------------------------------------------------------
751 * This method waits until the indexing engine becomes idle.
754 public static void waitIndexPending() {
755 Indexing.waitIndexPending();
759 * @param graph an active database write handle to prove one is in a write
760 * transaction and wants to disable dependencies indexing for this
762 * @return previous value
765 public static boolean setDependenciesIndexingDisabled(WriteOnlyGraph graph, boolean disabled) {
766 return Indexing.setDependenciesIndexingDisabled(graph, disabled);
769 public static String undo() throws DatabaseException {
771 Session session = SimanticsInternal.getSession();
773 UndoRedoSupport support = session.getService(UndoRedoSupport.class);
775 List<Operation> ops = support.undoAndReturnOperations(session, 1);
777 return "Undo history is empty.";
779 Operation mainOperation = ops.get(0);
781 long csId = mainOperation.getCSId();
783 ManagementSupport management = session.getService(ManagementSupport.class);
784 Collection<ChangeSetIdentifier> ids = management.getChangeSetIdentifiers(csId, csId);
786 return "Undo reverted " + ids.size() + " change sets.";
790 public static String undoOperations(int amountOfOperations) throws DatabaseException {
792 Session session = SimanticsInternal.getSession();
794 UndoRedoSupport support = session.getService(UndoRedoSupport.class);
796 List<Operation> ops = support.undoAndReturnOperations(session, amountOfOperations);
798 return "Undo history is empty.";
800 Operation mainOperation = ops.get(0);
802 long csId = mainOperation.getCSId();
804 ManagementSupport management = session.getService(ManagementSupport.class);
805 Collection<ChangeSetIdentifier> ids = management.getChangeSetIdentifiers(csId, csId);
807 return "Undo reverted " + ids.size() + " change sets.";
811 public static String redo() throws DatabaseException {
813 Session session = SimanticsInternal.getSession();
815 UndoRedoSupport support = session.getService(UndoRedoSupport.class);
817 List<Operation> ops = support.redo(session, 1);
819 return "Redo history is empty.";
821 Operation mainOperation = ops.get(0);
823 long csId = mainOperation.getCSId();
825 ManagementSupport management = session.getService(ManagementSupport.class);
826 Collection<ChangeSetIdentifier> ids = management.getChangeSetIdentifiers(csId, csId);
828 return "Redo redid " + ids.size() + " change sets.";
832 public static String getComment(Session session, ChangeSetIdentifier id) {
833 byte[] data = id.getMetadata().get(CommentMetadata.class.getName());
835 return "Undescribed operation.";
836 String comment = CommentMetadata.deserialise(session, data).toString().trim();
837 if(comment.isEmpty())
838 return "Undescribed operation.";
843 * This method adds CommentMetadata for write transaction. CommentMetadata is used e.g. in Undo view.
848 * @throws ServiceException
850 public static void addCommentMetadata(WriteOnlyGraph graph, String string) throws ServiceException {
851 // Add a comment to metadata.
852 CommentMetadata cm = graph.getMetadata(CommentMetadata.class);
853 graph.addMetadata(cm.add(ObjectUtils.toString(string)));
856 //-------------------------------------------------------------------------
859 * Copy the specified source resource into the specified container using the
860 * specified write transaction handle.
862 * @param graph write transaction handle
863 * @param targetContainer target container resource of the created copy. The
864 * exact logic of how the copy will be contained by the target
865 * container is up to the PasteHandler to decide
866 * @param source the source resource to copy
867 * @throws DatabaseException
870 public static Collection<Resource> copyTo(WriteGraph graph, Resource targetContainer, Resource source) throws DatabaseException {
871 return copyTo(graph, targetContainer, source, null, null, null);
874 public static Collection<Resource> copyTo(WriteGraph graph, Resource targetContainer, Resource source, PasteEventHandler handler) throws DatabaseException {
875 return copyTo(graph, targetContainer, source, handler, null, null);
878 public static Collection<Resource> copyTo(WriteGraph graph, Resource targetContainer, Resource source, PasteEventHandler handler, CopyHandler copyHandler, PasteHandler pasteHandler) throws DatabaseException {
879 if(copyHandler == null) copyHandler = graph.adapt(source, CopyHandler.class);
880 return copyTo(graph, targetContainer, handler, copyHandler, pasteHandler);
883 public static Collection<Resource> copyTo(WriteGraph graph, Resource targetContainer, PasteEventHandler handler, CopyHandler copyHandler, PasteHandler pasteHandler) throws DatabaseException {
884 SimanticsClipboardImpl clipboard = new SimanticsClipboardImpl();
885 copyHandler.copyToClipboard(graph, clipboard);
886 if(targetContainer != null) {
887 if(pasteHandler == null) pasteHandler = graph.adapt(targetContainer, PasteHandler.class);
888 return pasteHandler.pasteFromClipboard(graph, clipboard, handler);
890 DefaultPasteHandler ph = new DefaultPasteHandler(null);
891 return ph.pasteFromClipboard(graph, clipboard, handler);
895 public static CopyHandler2 getPossibleCopyHandler(ReadGraph graph, Collection<Resource> rs) throws DatabaseException {
896 CopyHandler2 ch = null;
897 for(Resource r : rs) {
899 CopyHandler ch2_ = graph.adapt(r, CopyHandler.class);
900 if(ch2_ instanceof CopyHandler2) {
901 ch = (CopyHandler2)ch2_;
904 CopyHandler ch2_ = graph.adapt(r, CopyHandler.class);
905 if(ch2_ instanceof CopyHandler2) {
906 CopyHandler2 ch2 = (CopyHandler2)ch2_;
907 ch = ch.combine(ch2);
914 public static ClusterCollectorPolicy setClusterCollectorPolicy(ClusterCollectorPolicy policy) {
915 Session session = SimanticsInternal.getSession();
916 ClusterControl cc = session.getService(ClusterControl.class);
917 return cc.setPolicy(policy);
920 private static String decodeType(ReadGraph graph, Variable variable) throws DatabaseException {
921 Datatype dt = getDatatype(graph, variable);
922 return dt.toSingleLineString();
925 private static boolean isAsserted(ReadGraph graph, Resource subject, Resource predicate) throws DatabaseException {
926 Statement stm = graph.getPossibleStatement(subject, predicate);
927 return stm != null && stm.isAsserted(subject);
930 public static void setExpression(WriteGraph graph, Variable context, String text, Resource expressionValueType) throws DatabaseException {
932 Resource value = context.getRepresents(graph);
933 Resource predicateResource = context.getPredicateResource(graph);
934 Variable parent = context.getParent(graph);
935 Resource parentResource = parent.getRepresents(graph);
936 setExpression(graph, parentResource, predicateResource, value, text, expressionValueType);
940 public static void setExpression(WriteGraph graph, Resource parentResource, Resource predicateResource, Resource value, String text, Resource expressionValueType) throws DatabaseException {
942 Layer0 L0 = Layer0.getInstance(graph);
943 boolean hasExpression = graph.isInstanceOf(value, expressionValueType);
944 String t = getSCLTypeString(graph, predicateResource, value);
945 String expression = text.substring(1).trim();
946 if(isAsserted(graph, parentResource, predicateResource)) {
947 Resource newValue = graph.newResource();
948 graph.claim(newValue, L0.InstanceOf, expressionValueType);
949 graph.claimLiteral(newValue, L0.HasValueType, t, Bindings.STRING);
950 graph.claimLiteral(newValue, L0.SCLValue_expression, expression, Bindings.STRING);
951 graph.claim(parentResource, predicateResource, newValue);
954 graph.claimLiteral(value, L0.SCLValue_expression, expression, Bindings.STRING);
956 Resource newValue = graph.newResource();
957 graph.claim(newValue, L0.InstanceOf, expressionValueType);
958 graph.claimLiteral(newValue, L0.HasValueType, t, Bindings.STRING);
959 graph.claimLiteral(newValue, L0.SCLValue_expression, expression, Bindings.STRING);
960 graph.deny(parentResource, predicateResource);
961 graph.claim(parentResource, predicateResource, newValue);
967 public static void clearExpression(WriteGraph graph, Variable property, Resource expressionValueType) throws DatabaseException {
969 Resource object = property.getPossibleRepresents(graph);
971 boolean hasExpression = graph.isInstanceOf(object, expressionValueType);
973 // There was an expression and now we go back to a value
974 Resource subject = property.getParent(graph).getPossibleRepresents(graph);
975 if(subject != null) {
976 Resource predicate = property.getPossiblePredicateResource(graph);
977 if(predicate != null) {
978 graph.deny(subject, predicate, object);
979 RemoverUtil.remove(graph, object);
987 public static boolean setOrClearExpression(WriteGraph graph, Variable property, String text, Resource expressionValueType) throws DatabaseException {
989 if(text.startsWith("=")) {
990 setExpression(graph, property, text, expressionValueType);
994 clearExpression(graph, property, expressionValueType);
1000 public static void setValueAsString(WriteGraph graph, Variable property, String text, Resource expressionValueType) throws DatabaseException {
1004 if (setOrClearExpression(graph, property, text, expressionValueType))
1007 Object value = text;
1008 Datatype type = property.getPossibleDatatype(graph);
1011 Binding binding = Bindings.getBinding(type);
1013 if (binding instanceof StringBinding) {
1015 if (binding instanceof MutableStringBinding)
1016 value = new MutableString(text);
1022 if (binding instanceof NumberBinding) {
1023 text = text.replace(",", ".");
1026 value = binding.parseValue(text, new DataValueRepository());
1030 property.setValue(graph, value, binding);
1034 property.setValue(graph, value);
1038 // Add a comment to metadata.
1039 CommentMetadata cm = graph.getMetadata(CommentMetadata.class);
1040 graph.addMetadata(cm.add("Set value " + ObjectUtils.toString(value)));
1042 } catch (DataTypeSyntaxError e) {
1043 throw new DatabaseException(e);
1044 } catch (BindingException e) {
1045 throw new DatabaseException(e);
1051 public static String queryDebugSupport(String query) {
1052 Session session = SimanticsInternal.getSession();
1053 DebugSupport ds = session.getService(DebugSupport.class);
1054 return ds.query(session, "exec " + query);
1057 public static String queryListSupport (String query) {
1058 Session session = SimanticsInternal.getSession();
1059 DebugSupport ds = session.getService(DebugSupport.class);
1060 return ds.query(session, "list " + query);
1063 final public static Function1<Resource,Resource> resourceCluster = new FunctionImpl1<Resource, Resource>() {
1065 public Resource apply(Resource p0) {
1070 public static void sort(ReadGraph graph, List<Resource> collection) {
1071 CollectionSupport cos = graph.getService(CollectionSupport.class);
1072 cos.sort(collection);
1075 public static List<Resource> sortByCluster(ReadGraph graph, Collection<Resource> collection) {
1076 CollectionSupport cos = graph.getService(CollectionSupport.class);
1077 return cos.asSortedList(collection);
1080 public static List<Object> sortByCluster(final ReadGraph graph, List<Object> list, final Function1<Object,Resource> fn) {
1081 final ClusteringSupport cs = graph.getService(ClusteringSupport.class);
1082 ArrayList<Object> result = new ArrayList<Object>(list);
1083 Collections.sort(result, new Comparator<Object>() {
1086 public int compare(Object o1, Object o2) {
1087 Resource r1 = fn.apply(o1);
1088 Resource r2 = fn.apply(o2);
1089 long l1 = cs.getCluster(r1);
1090 long l2 = cs.getCluster(r2);
1091 if(l1 < l2) return -1;
1092 else if (l1 > l2) return 1;
1100 public static <T> List<T> sortByClusterT(final ReadGraph graph, Collection<T> list, final Function1<T,Resource> fn) {
1101 final ClusteringSupport cs = graph.getService(ClusteringSupport.class);
1102 ArrayList<T> result = new ArrayList<T>(list);
1103 Collections.sort(result, new Comparator<Object>() {
1106 public int compare(Object o1, Object o2) {
1107 Resource r1 = fn.apply((T)o1);
1108 Resource r2 = fn.apply((T)o2);
1109 long l1 = cs.getCluster(r1);
1110 long l2 = cs.getCluster(r2);
1111 if(l1 < l2) return -1;
1112 else if (l1 > l2) return 1;
1120 public static void makeSynchronous(ReadGraph graph, boolean value) throws DatabaseException {
1121 graph.setSynchronous(value);
1124 public static Set<Resource> listIndexRoots(ReadGraph graph) throws DatabaseException {
1126 Layer0 L0 = Layer0.getInstance(graph);
1128 Set<Resource> indexRoots = new TreeSet<Resource>();
1129 indexRoots.addAll(Layer0Utils.listOntologies(graph));
1130 indexRoots.addAll(graph.syncRequest(new ObjectsWithType(SimanticsInternal.getProject(), L0.ConsistsOf, L0.IndexRoot)));
1135 public static List<Resource> listOntologies(ReadGraph graph) throws DatabaseException {
1136 return graph.syncRequest(new OntologiesFromLibrary(graph.getRootLibrary()));
1139 public static List<Resource> listGlobalOntologies(ReadGraph graph) throws DatabaseException {
1140 return graph.syncRequest(new GlobalOntologies(graph.getRootLibrary()));
1143 public static <T> T applySCL(String module, String function, ReadGraph graph, Object ... args) throws DatabaseException {
1146 SCL_GRAPH.set(graph);
1147 T t = (T)((Function)SCLOsgi.MODULE_REPOSITORY.getValue(module + "/" + function)).applyArray(args);
1148 SCL_GRAPH.set(null);
1150 } catch (Throwable t) {
1151 throw new DatabaseException(t);
1156 public static boolean isContainerPublished(ReadGraph graph, Variable variable) throws DatabaseException {
1158 Resource indexRoot = graph.syncRequest(new PossibleVariableIndexRoot(variable));
1159 if(indexRoot == null) return false;
1160 if(variable.equals(indexRoot)) return false;
1161 return isPublished(graph, indexRoot);
1165 public static boolean isContainerPublished(ReadGraph graph, Resource resource) throws DatabaseException {
1167 Resource indexRoot = graph.syncRequest(new PossibleIndexRoot(resource));
1168 if(indexRoot == null) return false;
1169 if(resource.equals(indexRoot)) return false;
1170 return isPublished(graph, indexRoot);
1174 public static boolean isPublished(ReadGraph graph, Resource resource) throws DatabaseException {
1176 Layer0 L0 = Layer0.getInstance(graph);
1177 Boolean value = graph.getPossibleRelatedValue(resource, L0.Entity_published, Bindings.BOOLEAN);
1178 if(value != null && value) return true;
1180 // This is safety - root should not be published it child is not
1181 Resource root = graph.syncRequest(new PossibleIndexRoot(resource));
1183 value = graph.getPossibleRelatedValue(root, L0.Entity_published, Bindings.BOOLEAN);
1184 if(value != null && value) return true;
1191 private static TransferableGraph1 makeTG(ReadGraph graph, Resource r) throws DatabaseException {
1193 SimanticsClipboardImpl cp = new SimanticsClipboardImpl();
1194 CopyHandler c1 = graph.adapt(r, CopyHandler.class);
1195 c1.copyToClipboard(graph, cp);
1196 Collection<Set<Representation>> reps = cp.getContents();
1197 if(reps.size() != 1) return null;
1198 return ClipboardUtils.accept(graph, reps.iterator().next(), SimanticsKeys.KEY_TRANSFERABLE_GRAPH);
1202 public static TransferableGraphSource makeTGSource(ReadGraph graph, Resource r) throws DatabaseException {
1204 SimanticsClipboardImpl cp = new SimanticsClipboardImpl();
1205 CopyHandler c1 = graph.adapt(r, CopyHandler.class);
1206 c1.copyToClipboard(graph, cp);
1207 Collection<Set<Representation>> reps = cp.getContents();
1208 if(reps.size() != 1) return null;
1209 return ClipboardUtils.accept(graph, reps.iterator().next(), SimanticsKeys.KEY_TRANSFERABLE_GRAPH_SOURCE);
1214 * Modifies target to resemble source.
1216 public static boolean merge(WriteGraph graph, Resource source, Resource target) throws DatabaseException {
1218 TransferableGraphSource tgs1 = makeTGSource(graph, target);
1219 TransferableGraph1 tg1 = TransferableGraphs.create(graph, tgs1);
1220 TransferableGraph1 tg2 = makeTG(graph, source);
1222 GraphRefactoringUtils.fixIncorrectRoot(tg1.identities);
1223 GraphRefactoringUtils.fixIncorrectRoot(tg2.identities);
1225 ModelTransferableGraphSource mtgs = (ModelTransferableGraphSource)tgs1;
1227 Diff diff = new Diff(tg1, tg2);
1228 TransferableGraphDelta1 delta = diff.diff();
1230 long[] oldResources = mtgs.getResourceArray(graph);
1231 if(TransferableGraphs.hasChanges(graph, oldResources, delta)) {
1232 TransferableGraphs.applyDelta(graph, mtgs.getResourceArray(graph), delta);
1240 public static Resource inferLiteralTypeFromString(ReadGraph graph, String text) {
1241 return Layer0.getInstance(graph).String;
1244 public static void emptyTrashBin() throws ServiceException {
1245 emptyTrashBin(new NullProgressMonitor());
1248 public static void emptyTrashBin(IProgressMonitor monitor) throws ServiceException {
1249 emptyTrashBin(monitor, SimanticsInternal.getSession(), SimanticsInternal.getProject());
1252 public static void emptyTrashBin(final IProgressMonitor monitor, Session session, final Resource project)
1253 throws ServiceException {
1254 final SubMonitor mon = SubMonitor.convert(monitor, "Emptying Trash Bin...", 10000);
1256 ArrayList<Resource> unhandled = new ArrayList<Resource>();
1257 session.syncRequest(new DelayedWriteRequest() {
1259 public void perform(WriteGraph graph) throws DatabaseException {
1260 Layer0Utils.setDependenciesIndexingDisabled(graph, true);
1261 Layer0 L0 = Layer0.getInstance(graph);
1262 Layer0X L0X = Layer0X.getInstance(graph);
1263 Resource parent = graph.getSingleObject(project, L0.PartOf);
1264 Resource trashBin = Layer0Utils.getPossibleChild(graph, parent, "TrashBin");
1265 Collection<Resource> trashes = trashBin != null ? graph.getObjects(trashBin, L0.ConsistsOf)
1266 : Collections.<Resource> emptyList();
1267 if (trashes.isEmpty())
1268 throw new CancelTransactionException();
1269 mon.setWorkRemaining((2 + trashes.size()) * 1000);
1270 for (Resource trash : trashes) {
1271 if (mon.isCanceled())
1272 throw new CancelTransactionException();
1273 mon.subTask(NameUtils.getSafeName(graph, trash));
1274 boolean isIndexRoot = graph.isInstanceOf(trash, L0.IndexRoot);
1275 TGRemover remo = new TGRemover(mon.newChild(1000, SubMonitor.SUPPRESS_ALL_LABELS), trash);
1278 unhandled.addAll(remo.getRoots());
1279 } catch (DatabaseException e) {
1280 // Something went wrong - try to remove this later
1281 // with EntityRemover
1282 unhandled.add(trash);
1285 // TODO: this should be an utility
1286 GenericRelationIndex index = graph.adapt(L0X.DependenciesRelation,
1287 GenericRelationIndex.class);
1288 IndexedRelations ir = graph.getService(IndexedRelations.class);
1289 // Deletes index files
1290 ir.reset(null, graph, L0X.DependenciesRelation, trash);
1291 // Notifies DB listeners
1292 index.reset(graph, trash);
1295 if (mon.isCanceled())
1296 throw new CancelTransactionException();
1297 mon.subTask("Committing Changes");
1302 session.syncRequest(new WriteRequest() {
1304 public void perform(WriteGraph graph) throws DatabaseException {
1305 for (Resource r : unhandled)
1306 EntityRemover.remove(graph, r);
1310 if (mon.isCanceled())
1312 mon.subTask("Purging Database");
1314 purgeDatabase(monitor, session);
1315 } catch (CancelTransactionException e) {
1317 } catch (DatabaseException e) {
1318 throw new ServiceException(e);
1322 public static void purgeDatabase() throws ServiceException {
1323 purgeDatabase(new NullProgressMonitor());
1326 public static void purgeDatabase(final IProgressMonitor monitor) throws ServiceException {
1327 purgeDatabase(monitor, SimanticsInternal.getSession());
1330 public static void purgeDatabase(final IProgressMonitor monitor, Session session) throws ServiceException {
1332 XSupport xs = session.getService(XSupport.class);
1334 } catch (DatabaseException e) {
1335 throw new ServiceException(e);
1339 public static Resource getSingleDomainOf(ReadGraph graph, Resource type, Resource target) throws DatabaseException {
1340 Resource result = null;
1341 for(Resource candidate : getDomainOf(graph, type).values()) {
1342 if(graph.isInstanceOf(candidate, target)) {
1343 if(result != null) throw new DatabaseException("Multiple relations found for target " + graph.getURI(target) + " in type " + graph.getURI(type));
1344 else result = candidate;
1347 if(result == null) throw new DatabaseException("Multiple relations found for target " + graph.getURI(target) + " in type " + graph.getURI(type));
1351 public static Map<String, Resource> getDomainOf(ReadGraph graph, Resource type) throws DatabaseException {
1352 CollectionSupport cs = graph.getService(CollectionSupport.class);
1353 Map<String, Resource> result = cs.createObjectResourceMap(String.class);
1354 Layer0 L0 = Layer0.getInstance(graph);
1355 for(Resource r : graph.getObjects(type, L0.DomainOf)) {
1356 String name = graph.getPossibleRelatedValue(r, L0.HasName, Bindings.STRING);
1357 if(name != null) result.put(name, r);
1359 for(Resource t : graph.getSupertypes(type)) {
1360 for(Resource r : graph.getObjects(t, L0.DomainOf)) {
1361 String name = graph.getPossibleRelatedValue(r, L0.HasName, Bindings.STRING);
1362 if(name != null) result.put(name, r);
1368 public static Resource getPossiblePredicateByNameFromType(ReadGraph graph, Resource type, String name) throws DatabaseException {
1369 Map<String,Resource> domain = getDomainOf(graph, type);
1370 return domain.get(name);
1373 public static Resource getPossiblePredicateByName(ReadGraph graph, Resource instance, String predicateName) throws DatabaseException {
1374 for(Resource type : graph.getPrincipalTypes(instance)) {
1375 Map<String, Resource> domainOf = getDomainOf(graph, type);
1376 Resource predicate = domainOf.get(predicateName);
1377 if(predicate != null) return predicate;
1382 public static Resource getPossiblePredicateByLabel(ReadGraph graph, Resource instance, String predicateName) throws DatabaseException {
1383 Layer0 L0 = Layer0.getInstance(graph);
1384 for(Resource type : graph.getPrincipalTypes(instance)) {
1385 Map<String, Resource> domainOf = getDomainOf(graph, type);
1386 for(Resource r : domainOf.values()) {
1387 String label = graph.getPossibleRelatedValue(r, L0.HasLabel, Bindings.STRING);
1388 if(predicateName.equals(label))
1395 public static void claimLiteralDataboard(WriteGraph graph, Resource container, Resource property, String valueText) throws DatabaseException {
1398 PropertyInfo pi = graph.syncRequest(new PropertyInfoRequest(property));
1399 if(pi.literalRange == null) throw new DatabaseException("No suitable literal type defined as range for property.");
1400 if(pi.defaultBinding == null) throw new DatabaseException("No suitable default binding for property.");
1401 Object value = pi.defaultBinding.parseValue(valueText, new DataValueRepository());
1402 graph.claimLiteral(container, property, pi.literalRange, value, pi.defaultBinding);
1403 } catch (DataTypeSyntaxError e) {
1404 throw new DatabaseException(e);
1405 } catch (BindingException e) {
1406 throw new DatabaseException(e);
1411 public static String prettyPrintResource(ReadGraph graph, Resource resource, boolean ignoreIdentifiers) throws Exception {
1412 TransferableGraphSource source = makeTGSource(graph, resource);
1413 TransferableGraph1 tg = TransferableGraphs.create(graph, source);
1414 GraphRefactoringUtils.fixOntologyExport(tg);
1415 System.out.println("Printing resoure " + graph.getURI(resource));
1416 return PrettyPrintTG.print(tg, ignoreIdentifiers);
1420 * Adds a random {@link GUID} as a value for <code>L0.identifier</code>
1424 * for which the identifier is added
1426 * <code>true</code> to invoke addLiteral, <code>false</code> to
1427 * invoke claimLiteral
1428 * @throws DatabaseException
1430 public static void claimNewIdentifier(WriteGraph graph, Resource component, boolean add) throws DatabaseException {
1431 Layer0 L0 = Layer0.getInstance(graph);
1432 GUID guid = GUID.random();
1434 graph.addLiteral(component, L0.identifier, L0.identifier_Inverse, L0.GUID, guid, GUID.BINDING);
1436 graph.claimLiteral(component, L0.identifier, L0.identifier_Inverse, L0.GUID, guid, GUID.BINDING);
1440 * Sets a new random unique identifier for the specified entity if it already
1441 * has an identifier. If the entity does not have a previous identifier, nothing
1446 * for which the identifier is added
1447 * @return <code>true</code> if the identifier was renewed, <code>false</code>
1449 * @throws DatabaseException
1450 * @see {@link #claimNewIdentifier(WriteGraph, Resource, boolean)}
1452 public static boolean renewIdentifier(WriteGraph graph, Resource entity) throws DatabaseException {
1453 Layer0 L0 = Layer0.getInstance(graph);
1454 Statement stm = graph.getPossibleStatement(entity, L0.identifier);
1456 graph.claimValue(stm.getObject(), GUID.random(), GUID.BINDING);
1462 public static void addMetadataListener(ChangeListener listener) {
1463 SimanticsInternal.getSession().getService(GraphChangeListenerSupport.class).addMetadataListener(listener);
1466 public static void removeMetadataListener(ChangeListener listener) {
1467 SimanticsInternal.getSession().getService(GraphChangeListenerSupport.class).removeMetadataListener(listener);