]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/util/TGRepresentationUtils.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / util / TGRepresentationUtils.java
1 /*******************************************************************************
2  * Copyright (c) 2016 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  *     Semantum Oy - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.layer0.util;
13
14 import java.util.Collections;
15 import java.util.List;
16 import java.util.Map;
17
18 import org.simantics.datatypes.literal.GUID;
19 import org.simantics.db.ReadGraph;
20 import org.simantics.db.Resource;
21 import org.simantics.db.Statement;
22 import org.simantics.db.common.request.PossibleIndexRoot;
23 import org.simantics.db.exception.DatabaseException;
24 import org.simantics.db.layer0.adapter.impl.EntityInstances.QueryIndex;
25 import org.simantics.db.layer0.util.DomainProcessor3.ExclusionDecision;
26 import org.simantics.layer0.Layer0;
27 import org.simantics.scl.runtime.function.Function1;
28
29 /**
30  * @author Antti Villberg
31  * @author Tuukka Lehtonen
32  * @since 1.22
33  */
34 public class TGRepresentationUtils {
35
36     public static boolean findByIdentifier(ReadGraph graph, Resource targetIndex, Resource source) throws DatabaseException {
37         Layer0 L0 = Layer0.getInstance(graph);
38         GUID guid = graph.getPossibleRelatedValue(source, L0.identifier, GUID.BINDING);
39         if(guid != null) {
40             List<Resource> exist = graph.syncRequest(new QueryIndex(targetIndex, L0.Entity, "GUID:" + guid.indexString()));
41             return !exist.isEmpty();
42         }
43         return false;
44     }
45
46     public static Function1<Statement, ExclusionDecision> computeExclusionFunction(ReadGraph graph, Resource[] resources, Map<String,Object> hints) throws DatabaseException {
47         Resource targetResource = (Resource)hints.get(ClipboardUtils.HINT_TARGET_RESOURCE);
48         if(targetResource != null) {
49             Resource targetRoot = graph.syncRequest(new PossibleIndexRoot(targetResource));
50             if(targetRoot != null) {
51                 for(Resource r : resources) {
52                     Resource sourceRoot = graph.syncRequest(new PossibleIndexRoot(r));
53                     // We are copying a complete index root => no need to change guids
54                     if(r.equals(sourceRoot))
55                         continue;
56                     if(targetRoot.equals(sourceRoot)) {
57                         // Copy into same index root => guid rewrite is needed
58                         return new GUIDExclusionFunction(graph);
59                     }
60                     // First try the root GUID
61                     if(findByIdentifier(graph, targetRoot, r))
62                         return new GUIDExclusionFunction(graph);
63
64                     // The root is OK - check everything beneath
65                     for(Resource part : ConsistsOfProcess.walk(graph, Collections.singleton(r), Collections.emptySet(), true)) {
66                         if(findByIdentifier(graph, targetRoot, part))
67                             return new GUIDExclusionFunction(graph);
68                     }
69                 }
70             }
71         }
72
73         return null;
74     }
75
76 }