]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.procore/src/org/simantics/db/procore/cluster/TableIntSet.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db.procore / src / org / simantics / db / procore / cluster / TableIntSet.java
diff --git a/bundles/org.simantics.db.procore/src/org/simantics/db/procore/cluster/TableIntSet.java b/bundles/org.simantics.db.procore/src/org/simantics/db/procore/cluster/TableIntSet.java
new file mode 100644 (file)
index 0000000..35fd627
--- /dev/null
@@ -0,0 +1,73 @@
+/*******************************************************************************\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.procore.cluster;\r
+\r
+import org.simantics.db.Resource;\r
+import org.simantics.db.exception.DatabaseException;\r
+import org.simantics.db.impl.ClusterI;\r
+import org.simantics.db.impl.IntAllocatorI;\r
+import org.simantics.db.impl.Modifier;\r
+import org.simantics.db.impl.graph.ReadGraphImpl;\r
+import org.simantics.db.impl.query.QueryProcessor;\r
+import org.simantics.db.procedure.AsyncMultiProcedure;\r
+\r
+final class TableIntSet {\r
+    public static final int HeaderSize = IntHash.HeaderSize;\r
+//    static int create(int initialSize, IntAllocatorI allocator) {\r
+//        return IntHash.create(initialSize, allocator);\r
+//    }\r
+    static int create(int[] ints, IntAllocatorI allocator) {\r
+        return IntHash.create(ints, allocator);\r
+    }\r
+\r
+    /**\r
+     * @param table\r
+     * @param base\r
+     * @param object\r
+     * @param allocator\r
+     * @return true if object was actually added.\r
+     */\r
+    static int addInt(int[] table, int base, int object, IntAllocatorI allocator) {\r
+        return IntHash.add(table, base, object, allocator);\r
+    }\r
+    \r
+    static boolean removeInt(int[] table, int base, int object) {\r
+        return IntHash.remove(table, base, object);\r
+    }\r
+\r
+    static int removeIntLast(int[] table, int base)\r
+    throws DatabaseException {\r
+        return IntHash.removeLast(table, base);\r
+    }\r
+\r
+    static int getSize(int[] table, int base) {\r
+        return IntHash.getUsedSize(table, base);\r
+    }\r
+    \r
+    static int getAllocatedSize(int[] table, int base) {\r
+        return IntHash.getAllocatedSize(table, base);\r
+    }\r
+    \r
+    static void foreachInt(int[] table, int base, QueryProcessor processor, ReadGraphImpl graph, AsyncMultiProcedure<Resource> procedure, Modifier modifier) throws DatabaseException {\r
+        IntHash.foreachInt(graph, table, base, procedure, modifier);\r
+    }\r
+\r
+    static <Context> boolean foreachInt(int[] table, int base\r
+               , ClusterI.ObjectProcedure<Context> procedure, Context context, Modifier modifier) throws DatabaseException {\r
+        return IntHash.foreachInt(table, base, procedure, context, modifier);\r
+    }\r
+    \r
+    static boolean contains(int[] table, int base, int a) {\r
+        return IntHash.contains(table, base, a);\r
+    }\r
+}\r
+\r