]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.mapping/src/org/simantics/mapping/constraint/instructions/Instruction3.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.mapping / src / org / simantics / mapping / constraint / instructions / Instruction3.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.mapping.constraint.instructions;\r
13 \r
14 import gnu.trove.map.hash.TIntIntHashMap;\r
15 import gnu.trove.set.hash.TIntHashSet;\r
16 \r
17 import org.simantics.db.WriteGraph;\r
18 import org.simantics.db.exception.DatabaseException;\r
19 \r
20 public abstract class Instruction3 implements IInstruction {\r
21         protected int variable0;\r
22         protected int variable1;        \r
23         protected int variable2;\r
24 \r
25         public Instruction3(int variable0, int variable1, int variable2) {\r
26                 this.variable0 = variable0;\r
27                 this.variable1 = variable1;\r
28                 this.variable2 = variable2;\r
29         }\r
30 \r
31         @Override\r
32         public void mapVariables(TIntIntHashMap map) {\r
33                 variable0 = map.get(variable0);\r
34                 variable1 = map.get(variable1);\r
35                 variable2 = map.get(variable2);\r
36         }\r
37         \r
38         @Override\r
39         public void collectVariables(TIntHashSet reads, TIntHashSet writes) {\r
40                 reads.add(variable0);\r
41                 reads.add(variable1);\r
42                 reads.add(variable2);\r
43         }\r
44         \r
45         @Override\r
46         public void doClaim(WriteGraph g, Object[] bindings) throws DatabaseException {\r
47                 claim(g, bindings).perform(g, bindings);\r
48         }\r
49         \r
50         @Override\r
51         public void doDeny(WriteGraph g, Object[] bindings) throws DatabaseException {\r
52                 deny(g, bindings).perform(g, bindings);\r
53         }\r
54 }\r