]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/TypeGroup.java
Multiple reader thread support for db client
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / adapter / TypeGroup.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.diagram.adapter;
13
14 import java.util.Arrays;
15 import java.util.Collection;
16 import java.util.Collections;
17 import java.util.HashSet;
18 import java.util.Set;
19
20 import org.simantics.databoard.Bindings;
21 import org.simantics.db.ReadGraph;
22 import org.simantics.db.RequestProcessor;
23 import org.simantics.db.Resource;
24 import org.simantics.db.common.primitiverequest.OrderedSet;
25 import org.simantics.db.common.procedure.wrapper.SetListenerToSingleSetListener;
26 import org.simantics.db.common.request.BinaryRead;
27 import org.simantics.db.exception.DatabaseException;
28 import org.simantics.db.procedure.SetListener;
29 import org.simantics.diagram.stubs.DiagramResource;
30 import org.simantics.layer0.Layer0;
31 import org.simantics.scenegraph.profile.Group;
32
33 /**
34  * @author Tuukka Lehtonen
35  */
36 public class TypeGroup implements Group {
37
38     private final Collection<Resource> types;
39     private final String               name;
40
41     public TypeGroup(String name, Resource type) {
42         this(name);
43     }
44
45     public TypeGroup(String name, Resource... types) {
46         this.types = Arrays.asList(types);
47         this.name = name;
48     }
49
50     /**
51      * Initialize TypeGroup from a DIAGRAM.Group instance.
52      * 
53      * @param graph
54      * @param group
55      * @throws DatabaseException
56      */
57     public TypeGroup(ReadGraph graph, final Resource group) throws DatabaseException {
58         Layer0 L0 = Layer0.getInstance(graph);
59         DiagramResource DIA = DiagramResource.getInstance(graph);
60
61         this.name = graph.getPossibleRelatedValue(group, L0.HasName, Bindings.STRING);
62         this.types = graph.getObjects(group, DIA.TypeGroup_HasType);
63     }
64
65     @Override
66     public void trackItems(RequestProcessor processor, final Resource runtimeDiagram, final SetListener<Resource> listener) throws DatabaseException {
67         if (types.isEmpty()) {
68             System.out.println("TypeGroup has no types!");
69             return;
70         }
71
72         processor.syncRequest(new BinaryRead<Resource, Collection<Resource>, Collection<Resource>>(runtimeDiagram, types) {
73
74             @Override
75             public Set<Resource> perform(ReadGraph graph) throws DatabaseException {
76                 HashSet<Resource> result = new HashSet<Resource>();
77
78                 Resource realDiagram = graph.getPossibleObject(runtimeDiagram, DiagramResource.getInstance(graph).RuntimeDiagram_HasConfiguration);
79                 if (realDiagram == null)
80                     return result;
81
82 //                System.out.println("looking for diagram elements of type:");
83 //                for (Resource t : types)
84 //                    System.out.println("\t" + NameUtils.getSafeName(graph, t, true));
85
86                 Collection<Resource> elements = graph.syncRequest(new OrderedSet(realDiagram));
87                 for (Resource element : elements) {
88 //                    System.out.println("checking element " + NameUtils.getSafeName(graph, element, true));
89                     Collection<Resource> elementTypes = graph.getTypes(element);
90                     if (!Collections.disjoint(types, elementTypes))
91                         result.add(element);
92                 }
93
94                 return result;
95             }
96
97         }, new SetListenerToSingleSetListener<Resource>(listener));
98     }
99
100     @Override
101     public String toString() {
102         return "every '" + name + "'";
103     }
104
105 }