]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/UnaryQueryHashMap.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db.impl / src / org / simantics / db / impl / query / UnaryQueryHashMap.java
diff --git a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/UnaryQueryHashMap.java b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/UnaryQueryHashMap.java
new file mode 100644 (file)
index 0000000..c964ad5
--- /dev/null
@@ -0,0 +1,161 @@
+/*******************************************************************************\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.lang.reflect.Array;\r
+import java.util.ArrayList;\r
+\r
+\r
+\r
+/**\r
+ * An implementation of the Map interface which uses an open addressed\r
+ * hash table to store its contents.\r
+ *\r
+ * Created: Sun Nov  4 08:52:45 2001\r
+ *\r
+ * @author Eric D. Friedman\r
+ * @version $Id: BinaryQueryHashMap.java,v 1.2 2008/03/14 11:38:53 tuoksk Exp $\r
+ */\r
+public class UnaryQueryHashMap<Procedure> extends UnaryQueryHash<Procedure> {\r
+\r
+    /**\r
+     * Creates a new <code>THashMap</code> instance with the default\r
+     * capacity and load factor.\r
+     */\r
+    public UnaryQueryHashMap() {\r
+        super();\r
+    }\r
+\r
+    /**\r
+     * initialize the value array of the map.\r
+     *\r
+     * @param initialCapacity an <code>int</code> value\r
+     * @return an <code>int</code> value\r
+     */\r
+    protected int setUp(int initialCapacity) {\r
+        int capacity;\r
+        \r
+        capacity = super.setUp(initialCapacity);\r
+//        _values = (Object[]) new Object[capacity];\r
+        return capacity;\r
+    }\r
+    \r
+    /**\r
+     * Inserts a key/value pair into the map.\r
+     *\r
+     * @param key an <code>Object</code> value\r
+     * @param value an <code>Object</code> value\r
+     * @return the previous value associated with <tt>key</tt>,\r
+     * or null if none was found.\r
+     */\r
+    @SuppressWarnings("unchecked")\r
+       public UnaryQuery put(final int id, final UnaryQuery value) {\r
+        UnaryQuery previous = null;\r
+        Object oldKey;\r
+        int index = insertionIndex(id);\r
+        boolean isNewMapping = true;\r
+        if (index < 0) {\r
+            index = -index -1;\r
+            previous = _set[index];\r
+            isNewMapping = false;\r
+        }\r
+        oldKey = _set[index];\r
+        _set[index] = value;\r
+        if (isNewMapping) {\r
+            postInsertHook(oldKey == null);\r
+        }\r
+\r
+        return previous;\r
+    }\r
+\r
+    /**\r
+     * rehashes the map to the new capacity.\r
+     *\r
+     * @param newCapacity an <code>int</code> value\r
+     */\r
+       protected void rehash(int newCapacity) {\r
+        \r
+        int oldCapacity = _set.length;\r
+        UnaryQuery<Procedure> oldKeys[] = _set;\r
+\r
+        UnaryQuery<Procedure> newKeys[]  = (UnaryQuery<Procedure>[])Array.newInstance(UnaryQuery.class, newCapacity);\r
+\r
+        for (int i = oldCapacity; i-- > 0;) {\r
+            if(oldKeys[i] != null && oldKeys[i] != REMOVED) {\r
+                UnaryQuery<Procedure> o = oldKeys[i];\r
+                int index = insertionIndex2(o.id, newKeys);\r
+                if (index < 0) {\r
+                    throwObjectContractViolation(newKeys[(-index -1)], o);\r
+                }\r
+                newKeys[index] = o;\r
+            }\r
+        }\r
+        \r
+        _set = newKeys;\r
+        \r
+    }\r
+\r
+    /**\r
+     * retrieves the value for <tt>key</tt>\r
+     *\r
+     * @param key an <code>Object</code> value\r
+     * @return the value of <tt>key</tt> or null if no such mapping exists.\r
+     */\r
+    final public UnaryQuery<Procedure> get(final int id) {\r
+//        int index = index(id);\r
+//        return index < 0 ? null : _set[index];\r
+       return index2(id);\r
+    }\r
+\r
+    /**\r
+     * Deletes a key/value pair from the map.\r
+     *\r
+     * @param key an <code>Object</code> value\r
+     * @return an <code>Object</code> value\r
+     */\r
+    public Object remove(final int id) {\r
+        Object prev = null;\r
+        int index = index(id);\r
+        if (index >= 0) {\r
+            prev = _set[index];\r
+            removeAt(index);    // clear key,state; adjust size\r
+        }\r
+        return prev;\r
+    }\r
+\r
+    final public void values(int level, CacheCollectionResult result) {\r
+\r
+        for (int i = _set.length; i-- > 0;) {\r
+               CacheEntryBase entry = _set[i];\r
+            if(entry != null && entry != REMOVED) {\r
+               if(entry.getLevel() <= level)\r
+                       result.add(entry);\r
+            }\r
+        }\r
+\r
+    }\r
+    \r
+    final public ArrayList<CacheEntry> values() {\r
+\r
+       ArrayList<CacheEntry> result = new ArrayList<CacheEntry>();\r
+       \r
+        for (int i = _set.length; i-- > 0;) {\r
+            if(_set[i] != null && _set[i] != REMOVED) {\r
+               result.add(_set[i]);\r
+            }\r
+        }\r
+    \r
+       return result;\r
+       \r
+    }\r
+\r
+} // THashMap\r