]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.interop.update/src/org/simantics/interop/update/model/UpdateTree.java
Base classes for model updates
[simantics/interop.git] / org.simantics.interop.update / src / org / simantics / interop / update / model / UpdateTree.java
1 package  org.simantics.interop.update.model;
2
3 import java.util.HashMap;
4 import java.util.Map;
5
6 import org.simantics.db.ReadGraph;
7 import org.simantics.db.Resource;
8 import org.simantics.db.exception.DatabaseException;
9 import org.simantics.interop.test.GraphChanges;
10 import org.simantics.interop.update.model.UpdateNode.Status;
11
12
13 public abstract class UpdateTree {
14         
15         private UpdateNode rootNode;
16         private Map<Resource,UpdateNode> nodes;
17         private GraphChanges changes;
18         private UpdateOperations updateOps;
19         
20         
21         public UpdateTree(ReadGraph g, GraphChanges changes, UpdateOperations updateOps) throws DatabaseException {
22                 this.changes = changes;
23                 this.nodes = new HashMap<Resource, UpdateNode>();
24                 this.rootNode = createNode(Status.EXIST, changes.getResource1());
25                 nodes.put(changes.getResource1(), rootNode);
26                 nodes.put(changes.getResource2(), rootNode);
27                 this.updateOps = updateOps;
28                 this.updateOps.populate(g);
29                 populate(g);
30         }
31         
32         public UpdateOperations getUpdateOps() {
33                 return updateOps;
34         }
35         
36         public UpdateNode getRootNode() {
37                 return rootNode;
38         }
39         
40         protected abstract UpdateNode createNode(Status staus, Resource r);
41         protected abstract UpdateNode createNode(Status staus, UpdateOp op);
42         
43         private UpdateNode createNode(Resource r1, Resource r2) {
44                 UpdateNode node = null;
45                 if (r1 != null && r2 != null) {
46                         node =  createNode(Status.EXIST, r1);
47                         nodes.put(r1, node);
48                         nodes.put(r2, node);
49                 } else if (r1 != null) {
50                         node = createNode(Status.DELETED ,updateOps.getUpdateOp(r1));
51                         nodes.put(r1, node);
52                 } else if (r2 != null) {
53                         node = createNode(Status.NEW, updateOps.getUpdateOp(r2));
54                         nodes.put(r2, node);
55                 }
56                 return node;
57         }
58         
59         public UpdateNode addNode(ReadGraph g, Resource r1, Resource r2) throws DatabaseException {
60                 if (r1 != null && r2 != null) {
61                         return null;
62                 }
63                 if (nodes.containsKey(r1))
64                         return nodes.get(r1);
65                 if (nodes.containsKey(r2))
66                         return nodes.get(r2);
67                 
68                 UpdateNode node = createNode(r1, r2);
69                 connectParent(g,node);
70                 return node;
71                 
72         }
73         
74         private boolean connectParent(ReadGraph g, UpdateNode node) throws DatabaseException {
75                 UpdateNode parent = null;
76                 while (true) {
77                         Resource parentResource = node.getParentResource(g);
78                         parent = nodes.get(parentResource);
79                         if (parent == null) {
80                                 if (changes.getComparable().containsLeft(parentResource)) {
81                                         parent = createNode(parentResource, changes.getComparable().getRight(parentResource));
82                                 } else if (changes.getComparable().containsRight(parentResource)) {
83                                         parent = createNode(changes.getComparable().getLeft(parentResource) ,parentResource);
84                                 } else {
85                                         return false;
86                                 }
87                                 //parent.setStatus(Status.CONTAINS);
88                                 parent.addChild(node);
89                                 node = parent;
90                                 parent = null;
91                         } else {
92                                 parent.addChild(node);
93                                 return true;
94                         }
95                         
96                 }
97         }
98         
99         protected abstract boolean handleCustom(ReadGraph g, UpdateOp op) throws DatabaseException;
100         
101         private void populate(ReadGraph g) throws DatabaseException{
102
103                 for (UpdateOp op : updateOps.getOperations()) {
104                         if (!handleCustom(g, op)) {
105                                 if (op.isAdd()) {
106                                         addNode(g, null,op.getResource());
107                                 } else {
108                                         addNode(g, op.getResource(), null);
109                                 }
110                         }
111                 }
112                 
113         }
114
115 }