]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/BaseRequest2.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / adapter / BaseRequest2.java
diff --git a/bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/BaseRequest2.java b/bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/BaseRequest2.java
new file mode 100644 (file)
index 0000000..69d1c12
--- /dev/null
@@ -0,0 +1,65 @@
+/*******************************************************************************\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.diagram.adapter;\r
+\r
+import org.simantics.db.request.AsyncRead;\r
+import org.simantics.g2d.canvas.ICanvasContext;\r
+\r
+public abstract class BaseRequest2<T, Result> implements AsyncRead<Result> {\r
+\r
+    final protected T    data;\r
+\r
+    final int            hash;\r
+\r
+    final ICanvasContext canvas;\r
+\r
+    //String               debug;\r
+\r
+    public BaseRequest2(ICanvasContext canvas, T data) {\r
+        this.canvas = canvas;\r
+        assert canvas != null;\r
+        assert data != null;\r
+        this.data = data;\r
+        this.hash = data.hashCode() + 31 * canvas.hashCode();\r
+    }\r
+\r
+    @Override\r
+    public int hashCode() {\r
+        return hash;\r
+    }\r
+\r
+    public int threadHash() {\r
+       return hash;\r
+    }\r
+    \r
+    @Override\r
+    public boolean equals(Object other) {\r
+        if (this == other)\r
+            return true;\r
+        if (other == null || getClass() != other.getClass())\r
+            return false;\r
+        BaseRequest2<?, ?> o = (BaseRequest2<?, ?>) other;\r
+        return data.equals(o.data) && canvas.equals(o.canvas);\r
+    }\r
+\r
+    @Override\r
+    public int getFlags() {\r
+        return 0;\r
+    }\r
+\r
+    @Override\r
+    public String toString() {\r
+        return getClass().getSimpleName() + "[" + data + " - " + canvas.hashCode() + /*" " + debug +*/ "]";\r
+    }\r
+\r
+}\r
+\r