]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/BaseRequest2.java
Logger fixes after merge commit:fdbe8762
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / adapter / BaseRequest2.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.diagram.adapter;\r
13 \r
14 import org.simantics.db.request.AsyncRead;\r
15 import org.simantics.g2d.canvas.ICanvasContext;\r
16 \r
17 public abstract class BaseRequest2<T, Result> implements AsyncRead<Result> {\r
18 \r
19     final protected T    data;\r
20 \r
21     final int            hash;\r
22 \r
23     final ICanvasContext canvas;\r
24 \r
25     //String               debug;\r
26 \r
27     public BaseRequest2(ICanvasContext canvas, T data) {\r
28         this.canvas = canvas;\r
29         assert canvas != null;\r
30         assert data != null;\r
31         this.data = data;\r
32         this.hash = data.hashCode() + 31 * canvas.hashCode();\r
33     }\r
34 \r
35     @Override\r
36     public int hashCode() {\r
37         return hash;\r
38     }\r
39 \r
40     public int threadHash() {\r
41         return hash;\r
42     }\r
43     \r
44     @Override\r
45     public boolean equals(Object other) {\r
46         if (this == other)\r
47             return true;\r
48         if (other == null || getClass() != other.getClass())\r
49             return false;\r
50         BaseRequest2<?, ?> o = (BaseRequest2<?, ?>) other;\r
51         return data.equals(o.data) && canvas.equals(o.canvas);\r
52     }\r
53 \r
54     @Override\r
55     public int getFlags() {\r
56         return 0;\r
57     }\r
58 \r
59     @Override\r
60     public String toString() {\r
61         return getClass().getSimpleName() + "[" + data + " - " + canvas.hashCode() + /*" " + debug +*/ "]";\r
62     }\r
63 \r
64 }\r
65 \r