]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.modeling/src/org/simantics/modeling/adapters/CompositeCopyHandler.java
144448d9cff358a9e26a78126a278a04cf9b80a1
[simantics/platform.git] / bundles / org.simantics.modeling / src / org / simantics / modeling / adapters / CompositeCopyHandler.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.modeling.adapters;
13
14 import java.util.ArrayList;
15 import java.util.Collection;
16 import java.util.HashSet;
17 import java.util.List;
18 import java.util.Set;
19
20 import org.simantics.db.ReadGraph;
21 import org.simantics.db.Resource;
22 import org.simantics.db.common.request.ObjectsWithType;
23 import org.simantics.db.common.request.PossibleIndexRoot;
24 import org.simantics.db.exception.DatabaseException;
25 import org.simantics.db.layer0.adapter.SubgraphExtent.ExtentStatus;
26 import org.simantics.db.layer0.adapter.impl.DefaultCopyHandler;
27 import org.simantics.db.layer0.util.TransferableGraphConfiguration2;
28 import org.simantics.db.layer0.util.TransferableGraphConfiguration2.RootSpec;
29 import org.simantics.diagram.stubs.DiagramResource;
30 import org.simantics.layer0.Layer0;
31 import org.simantics.modeling.ModelingResources;
32 import org.simantics.modeling.ModelingUtils.CompositeInfo;
33 import org.simantics.modeling.ModelingUtils.DiagramComponentInfo;
34 import org.simantics.structural.stubs.StructuralResource2;
35
36 /**
37  * @author Tuukka Lehtonen
38  */
39 public class CompositeCopyHandler extends DefaultCopyHandler {
40
41     public CompositeCopyHandler(Resource composite) {
42         super(composite);
43     }
44
45     public CompositeCopyHandler(Collection<Resource> composites) {
46         super(composites);
47     }
48
49     @Override
50     protected TransferableGraphConfiguration2 createConfiguration(ReadGraph graph, boolean cut) throws DatabaseException {
51
52         Layer0 L0 = Layer0.getInstance(graph);
53         StructuralResource2 SR = StructuralResource2.getInstance(graph);
54         DiagramResource DIA = DiagramResource.getInstance(graph);
55         ModelingResources MOD = ModelingResources.getInstance(graph);
56
57         Set<Resource> resourceSet = (resources instanceof Set)
58                 ? (Set<Resource>) resources : new HashSet<>(resources);
59         Set<Resource> exclusions = new HashSet<>();
60         Set<Resource> externals = new HashSet<>();
61         List<RootSpec> roots = new ArrayList<>();
62
63         for(Resource resource : resources) {
64             // Process all connection joins.
65             // This is the only way to access all of them.
66             for (Resource diagram : graph.getObjects(resource, MOD.CompositeToDiagram)) {
67                 for (Resource flag : graph.syncRequest(new ObjectsWithType(diagram, L0.ConsistsOf, DIA.Flag))) {
68                     for (Resource join : graph.getObjects(flag, DIA.FlagIsJoinedBy)) {
69                         // Joins with external references are omitted
70                         for (Resource comp : graph.getObjects(join, SR.JoinsComposite)) {
71                             if (!resourceSet.contains(comp))
72                                 exclusions.add(join);
73                         }
74                         // This code excludes joins with flags to external
75                         // diagrams that are not connected (have no
76                         // configuration for the flag)
77                         for (Resource flag2 : graph.getObjects(join, DIA.JoinsFlag)) {
78                             Resource diagram2 = graph.getPossibleObject(flag2, L0.PartOf);
79                             if (diagram2 != null) {
80                                 Resource comp = graph.getPossibleObject(diagram2, MOD.DiagramToComposite);
81                                 if (!resourceSet.contains(comp))
82                                     exclusions.add(join); 
83                             }
84                         }
85                     }
86                 }
87
88                 // Check all diagram monitor elements.
89                 // Any components referenced that are external to the exported diagrams must be excluded from the export.
90                 // This will leave the monitors without a monitored component but export and import will work anyway.
91                 for (Resource ref : graph.syncRequest(new ObjectsWithType(diagram, L0.ConsistsOf, DIA.Monitor))) {
92                     for (Resource monitoredComponent : graph.getObjects(ref, DIA.HasMonitorComponent)) {
93                         Resource monitoredComponentComposite = graph.getPossibleObject(monitoredComponent, L0.PartOf);
94                         if (monitoredComponentComposite != null && !resourceSet.contains(monitoredComponentComposite)) {
95                             exclusions.add(monitoredComponent);
96                         }
97                     }
98                 }
99             }
100
101             // Leave any diagram monitors out of the export that are contained
102             // by diagrams that are not part of this export, when the monitored
103             // components happen to be a part of the exported composites.
104             for (Resource ref : graph.syncRequest(new ObjectsWithType(resource, L0.ConsistsOf, SR.Component))) {
105                 for (Resource monitor : graph.getObjects(ref, DIA.HasMonitorComponent_Inverse)) {
106                     Resource monitorDiagram = graph.getPossibleObject(monitor, L0.PartOf);
107                     if (monitorDiagram != null) {
108                         Resource monitorComposite = graph.getPossibleObject(monitorDiagram, MOD.DiagramToComposite);
109                         if (monitorComposite != null && !resourceSet.contains(monitorComposite))
110                             exclusions.add(monitor);
111                     }
112                 }
113             }
114
115             // Include resource as root
116 //            GUID rootId = graph.getRelatedValue(resource, L0.identifier, GUID.BINDING);
117 //            String rootName = graph.getRelatedValue(resource, L0.HasName, Bindings.STRING);
118 //            String escapedRootName = URIStringUtils.escape(rootName);
119 //            String escapedPath = ModelingUtils.getDiagramCompositePath(graph, resource);
120             CompositeInfo info = CompositeInfo.fromResource(graph, resource);
121             roots.add(new RootSpec(resource, info.getTGName(), true));
122                 Resource id = graph.getPossibleObject(resource, L0.identifier);
123                 if(id != null) exclusions.add(id);
124             // Include components as roots
125             for(Resource child : graph.sync(new ObjectsWithType(resource, L0.ConsistsOf, SR.Component))) {
126                 DiagramComponentInfo cinfo = DiagramComponentInfo.fromResource(graph, info, child);
127 //              GUID childId = graph.getRelatedValue(resource, L0.identifier, GUID.BINDING);
128 //                String childName = graph.getRelatedValue(child, L0.HasName, Bindings.STRING);
129                 id = graph.getPossibleObject(child, L0.identifier);
130                 if(id != null) exclusions.add(id);
131                 roots.add(new RootSpec(child, cinfo.getTGName(info), true));
132             }
133         }
134
135         Resource model = graph.syncRequest(new PossibleIndexRoot(resources.iterator().next()));
136         if(model == null) throw new DatabaseException("Composite is not part of any index root");
137         roots.add(new RootSpec(model, "%model", false));
138
139         TransferableGraphConfiguration2 config = TransferableGraphConfiguration2.createWithNames2(graph, roots, exclusions, true, false);
140         for (Resource external : externals)
141             config.preStatus.put(external, ExtentStatus.EXTERNAL);
142         return config;
143     }
144
145 }