]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/RelationInfoQuery.java
DB query swapping to file system
[simantics/platform.git] / bundles / org.simantics.db.impl / src / org / simantics / db / impl / query / RelationInfoQuery.java
index 8127a4312928efc15d207155717c5811d0ed00c6..367e75f632c3cdd10e592286fb06cacdb13548b6 100644 (file)
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.db.impl.query;\r
-\r
-import java.util.ArrayList;\r
-import java.util.concurrent.Semaphore;\r
-import java.util.concurrent.atomic.AtomicBoolean;\r
-\r
-import org.simantics.db.RelationInfo;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.impl.graph.ReadGraphImpl;\r
-import org.simantics.db.impl.procedure.InternalProcedure;\r
-import org.simantics.db.procedure.ListenerBase;\r
-import org.simantics.db.request.RequestFlags;\r
-\r
-final public class RelationInfoQuery extends UnaryQuery<InternalProcedure<RelationInfo>> {\r
-    \r
-//     public ArrayList<InternalProcedure<RelationInfo>> procs = null;\r
-\r
-       private RelationInfoQuery(final int resource) {\r
-        super(resource);\r
-    }\r
-    \r
-    final static RelationInfo runner(ReadGraphImpl graph, final int r, final QueryProcessor provider, final CacheEntry parent, final ListenerBase listener, final InternalProcedure<RelationInfo> procedure) {\r
-\r
-       RelationInfoQuery entry = (RelationInfoQuery)provider.relationInfoMap.get(r);\r
-        if(entry == null) {\r
-               \r
-               entry = new RelationInfoQuery(r);\r
-               entry.setPending();\r
-               entry.clearResult(provider.querySupport);\r
-               entry.putEntry(provider);\r
-               \r
-            provider.performForEach(graph, entry, parent, listener, procedure);\r
-            \r
-            return entry.getResult();\r
-            \r
-        } else {\r
-               \r
-            if(!entry.isReady()) {\r
-               synchronized(entry) {\r
-                    if(!entry.isReady()) {\r
-                        throw new IllegalStateException();\r
-//                     if(entry.procs == null) entry.procs = new ArrayList<InternalProcedure<RelationInfo>>();\r
-//                                     entry.procs.add(procedure);\r
-//                        provider.registerDependencies(graph, entry, parent, listener, procedure, false);\r
-//                                     return entry.getResult();\r
-                    }\r
-               }\r
-            }\r
-            provider.performForEach(graph, entry, parent, listener, procedure);\r
-            \r
-            return entry.getResult();\r
-            \r
-        }\r
-\r
-    }\r
-    \r
-    final public static RelationInfo queryEach(ReadGraphImpl graph, final int r, final QueryProcessor provider, final CacheEntry parent, final ListenerBase listener, final InternalProcedure<RelationInfo> procedure) {\r
-        \r
-       RelationInfoQuery entry = (RelationInfoQuery)provider.relationInfoMap.get(r);\r
-       if(entry != null && entry.isReady()) {\r
-               entry.performFromCache(graph, provider, procedure);\r
-               return entry.getResult();\r
-       }\r
-\r
-        return runner(graph, r, provider, parent, listener, procedure);\r
-         \r
-    }\r
-     \r
-    final public static RelationInfoQuery probe(ReadGraphImpl graph, int resource) {\r
-        \r
-        final int thread = graph.thread(resource);\r
-       RelationInfoQuery entry = (RelationInfoQuery)graph.processor.relationInfoMap.get(resource);\r
-       if(entry != null && entry.isReady()) {\r
-               return entry;\r
-       } else {\r
-               return null;\r
-       }\r
-         \r
-    }\r
-\r
-    @Override\r
-       public UnaryQuery<InternalProcedure<RelationInfo>> getEntry(QueryProcessor provider) {\r
-        return provider.relationInfoMap.get(id);\r
-       }\r
-       \r
-       @Override\r
-       public void putEntry(QueryProcessor provider) {\r
-        provider.relationInfoMap.put(id, this);\r
-       }\r
-\r
-       @Override\r
-       final public void removeEntry(QueryProcessor provider) {\r
-               provider.relationInfoMap.remove(id);\r
-       }\r
-\r
-       private void computeAssertions(ReadGraphImpl graph, final boolean isFinal, final boolean isFunctional, final QueryProcessor queryProvider, final InternalProcedure<RelationInfo> proc) {\r
-\r
-           final int isUsedInAssertion = queryProvider.getHasPredicateInverse();\r
-        assert(isUsedInAssertion != 0);\r
-               \r
-        DirectObjects.queryEach(graph, id, isUsedInAssertion, queryProvider, this, null, new IntProcedure() {\r
-\r
-                       AtomicBoolean done = new AtomicBoolean(false);\r
-                       \r
-                       @Override\r
-                       public void execute(ReadGraphImpl graph, int i) {\r
-                               if(done.compareAndSet(false, true)) {\r
-//                                     System.err.println("Assertions for relation " + id);\r
-                                       RelationInfo result = new RelationInfo(id, isFunctional, isFinal, true);\r
-                                       addOrSet(graph, result, queryProvider);\r
-                                       proc.execute(graph, result);\r
-                               }\r
-                       }\r
-\r
-                       @Override\r
-                       public void finished(ReadGraphImpl graph) {\r
-                               if(done.compareAndSet(false, true)) {\r
-//                                     System.err.println("No assertions for relation " + id);\r
-                                       RelationInfo result = new RelationInfo(id, isFunctional, isFinal, false);\r
-                                       addOrSet(graph, result, queryProvider);\r
-                                       proc.execute(graph, result);\r
-                               }\r
-                       }\r
-\r
-                       @Override\r
-                       public void exception(ReadGraphImpl graph, Throwable throwable) {\r
-                               if(done.compareAndSet(false, true)) {\r
-                                       DatabaseException e = new DatabaseException("Internal error in RelationInfoQuery");\r
-                                       except(e);\r
-                                       proc.exception(graph, e);\r
-                               }\r
-                       }\r
-                       \r
-               });\r
-               \r
-//         Types.queryEach(callerThread, id, queryProvider, this, null, new InternalProcedure<IntSet>() {\r
-//             \r
-//          @Override\r
-//          public void execute(int callerThread, IntSet types) {\r
-//               computeAssertions(callerThread, isFinal, isFunctional, queryProvider, proc);\r
-////             \r
-////             \r
-//////              System.out.println("RelationInfoQuery: computeTypes execute " + types);\r
-////\r
-////              RelationInfo result = new RelationInfo(id, types.contains(queryProvider.getFunctionalRelation()), isFinal);\r
-////              \r
-////              addOrSet(callerThread, result, queryProvider);\r
-////              \r
-////              proc.execute(callerThread, result);\r
-////              \r
-//          }\r
-//                     \r
-//                     @Override\r
-//                     public void exception(int callerThread, Throwable t) {\r
-//                             proc.exception(callerThread, t);\r
-//          }\r
-//\r
-//      });\r
-\r
-       }\r
-       \r
-       private void computeTypes(ReadGraphImpl graph, final boolean isFinal, final QueryProcessor queryProvider, final InternalProcedure<RelationInfo> proc) {\r
-        \r
-//        System.out.println("RelationInfoQuery: computeTypes " + id);\r
-\r
-           Types.queryEach(graph, id, queryProvider, this, null, new InternalProcedure<IntSet>() {\r
-               \r
-            @Override\r
-            public void execute(ReadGraphImpl graph, IntSet types) {\r
-               computeAssertions(graph, isFinal, types.contains(queryProvider.getFunctionalRelation()), queryProvider, proc);\r
-//\r
-////                System.out.println("RelationInfoQuery: computeTypes execute " + types);\r
-//\r
-//                RelationInfo result = new RelationInfo(id, types.contains(queryProvider.getFunctionalRelation()), isFinal);\r
-//                \r
-//                addOrSet(callerThread, result, queryProvider);\r
-//                \r
-//                proc.execute(callerThread, result);\r
-//                \r
-            }\r
-                       \r
-                       @Override\r
-                       public void exception(ReadGraphImpl graph, Throwable t) {\r
-                               proc.exception(graph, t);\r
-            }\r
-\r
-        });\r
-\r
-       }\r
-       \r
-       @Override\r
-       public Object computeForEach(ReadGraphImpl graph, final QueryProcessor provider, final InternalProcedure<RelationInfo> procedure, boolean store) {\r
-           \r
-//        System.out.println("RelationInfoQuery computeForEach begin " + id + " " + getResult() + " " + statusOrException);\r
-\r
-           final int superRelationOf = provider.getSuperrelationOf();\r
-        assert(superRelationOf != 0);\r
-        \r
-        DirectPredicates.queryEach(graph, id, provider, this, null, new IntProcedure() {\r
-            \r
-            boolean found = false;\r
-\r
-            @Override\r
-            public void execute(ReadGraphImpl graph, int i) {\r
-//                System.out.println("RelationInfoQuery: execute " + i + " super = " + superRelationOf);\r
-                if(i == superRelationOf) {\r
-                    computeTypes(graph, false, provider, procedure);\r
-                    found = true;\r
-                }\r
-            }\r
-\r
-            @Override\r
-            public void finished(ReadGraphImpl graph) {\r
-//                System.out.println("RelationInfoQuery: finished");\r
-                if(!found) {\r
-                    computeTypes(graph, true, provider, procedure);\r
-                }\r
-            }\r
-            \r
-            @Override\r
-            public void exception(ReadGraphImpl graph, Throwable t) {\r
-//                System.out.println("RelationInfoQuery: exception");\r
-                procedure.exception(graph, t);\r
-            }\r
-\r
-        });\r
-        \r
-        return getResult();\r
-        \r
-    }\r
-    \r
-    @Override\r
-    public String toString() {\r
-       return "RelationInfoQuery[" + id + "]";\r
-    }\r
-\r
-    public void addOrSet(ReadGraphImpl graph, final RelationInfo result, final QueryProcessor provider) {\r
-        \r
-       assert(isPending());\r
-       \r
-//     ArrayList<InternalProcedure<RelationInfo>> p = null;\r
-       \r
-       synchronized(this) {\r
-\r
-           setResult(result);\r
-           setReady();\r
-        \r
-//             p = procs;\r
-//             procs = null;\r
-               \r
-       }\r
-       \r
-//     if(p != null) {\r
-//          for(InternalProcedure<RelationInfo> proc : p) \r
-//              proc.execute(graph, (RelationInfo)result);\r
-//     }\r
-        \r
-    }            \r
-\r
-    @Override\r
-    public Object performFromCache(ReadGraphImpl graph, QueryProcessor provider, InternalProcedure<RelationInfo> procedure) {\r
-\r
-        assert(isReady());\r
-        \r
-       if(handleException(graph, procedure)) return EXCEPTED;\r
-        \r
-       RelationInfo result = getResult();\r
-       \r
-        procedure.execute(graph, result);\r
-        \r
-        return result;\r
-\r
-    }\r
-    \r
-    @Override\r
-    public void recompute(ReadGraphImpl graph, QueryProcessor provider) {\r
-        \r
-        final Semaphore s = new Semaphore(0);\r
-        \r
-        computeForEach(graph, provider, new InternalProcedure<RelationInfo>() {\r
-\r
-            @Override\r
-            public void execute(ReadGraphImpl graph, RelationInfo result) {\r
-                s.release();\r
-            }\r
-            \r
-            @Override\r
-            public void exception(ReadGraphImpl graph, Throwable t) {\r
-                throw new Error("Error in recompute.", t);\r
-            }\r
-\r
-        }, true);\r
-        \r
-       while(!s.tryAcquire()) {\r
-               provider.resume(graph);\r
-       }\r
-//        try {\r
-//            s.acquire();\r
-//        } catch (InterruptedException e) {\r
-//            throw new Error(e);\r
-//        }\r
-\r
-    }\r
-    \r
-    @Override\r
-    public int type() {\r
-        return RequestFlags.IMMEDIATE_UPDATE;\r
-    }\r
-    \r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2018 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.db.impl.query;
+
+import org.simantics.db.RelationInfo;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.impl.graph.ReadGraphImpl;
+import org.simantics.db.impl.procedure.InternalProcedure;
+import org.simantics.db.request.RequestFlags;
+
+public final class RelationInfoQuery extends UnaryQueryP<RelationInfo> {
+
+       RelationInfoQuery(int resource) {
+               super(resource);
+       }
+
+       @Override
+       public final void removeEntry(QueryProcessor provider) {
+               provider.cache.remove(this);
+       }
+
+       private static void computeAssertions(ReadGraphImpl graph, int r, final boolean isFinal, final boolean isFunctional, RelationInfoQuery parent, final InternalProcedure<RelationInfo> procedure) throws DatabaseException {
+
+               QueryProcessor processor = graph.processor;
+
+               final int isUsedInAssertion = processor.getHasPredicateInverse();
+               assert(isUsedInAssertion != 0);
+
+               QueryCache.runnerDirectObjects(graph, r, isUsedInAssertion, parent, null, new IntProcedure() {
+
+                       boolean done = false;
+
+                       @Override
+                       public void execute(ReadGraphImpl graph, int i) throws DatabaseException {
+                               if(done) return;
+                               done = true;
+                               RelationInfo result = new RelationInfo(r, isFunctional, isFinal, true);
+                               procedure.execute(graph, result);
+                       }
+
+                       @Override
+                       public void finished(ReadGraphImpl graph) throws DatabaseException {
+                               if(done) return;
+                               done = true;
+                               RelationInfo result = new RelationInfo(r, isFunctional, isFinal, false);
+                               procedure.execute(graph, result);
+                       }
+
+                       @Override
+                       public void exception(ReadGraphImpl graph, Throwable throwable) throws DatabaseException {
+                               if(done) return;
+                               done = true;
+                               DatabaseException e = new DatabaseException("Internal error in RelationInfoQuery");
+                               procedure.exception(graph, e);
+                       }
+
+               });
+
+       }
+
+       public static void computeForEach(ReadGraphImpl graph, int r, RelationInfoQuery entry, InternalProcedure<RelationInfo> procedure_) throws DatabaseException {
+
+               InternalProcedure<RelationInfo> procedure = entry != null ? entry : procedure_;
+
+               QueryProcessor provider = graph.processor;
+
+               final int superRelationOf = provider.getSuperrelationOf();
+               assert(superRelationOf != 0);
+
+               IntSet direct = QueryCache.resultDirectPredicates(graph, r, entry, null);
+               IntSet types = QueryCache.resultTypes(graph, r, entry, null);
+
+               computeAssertions(graph, r, !direct.contains(superRelationOf), types.contains(graph.processor.getFunctionalRelation()), entry, procedure);
+
+               if(entry != null) entry.performFromCache(graph, procedure_);
+
+       }
+
+       @Override
+       public void compute(ReadGraphImpl graph, final InternalProcedure<RelationInfo> procedure) throws DatabaseException {
+               computeForEach(graph, id, this, procedure);
+       }
+
+       @Override
+       public String toString() {
+               return "RelationInfoQuery[" + id + "]";
+       }
+
+       @Override
+       public int type() {
+               return RequestFlags.IMMEDIATE_UPDATE;
+       }
+
+    @Override
+    public void serializeValue(QuerySerializer serializer) {
+        RelationInfo ri = getResult();
+        serializer.addResource(ri.predicate);
+        serializer.add(ri.isFunctional ? (byte)1 : 0);
+        serializer.add(ri.isFinal ? (byte)1 : 0);
+        serializer.add(ri.isAsserted ? (byte)1 : 0);
+    }
+
+}