]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/migration/OntologiesFromLibrary.java
Sync git svn branch with SVN repository r33303.
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / migration / OntologiesFromLibrary.java
1 /*******************************************************************************\r
2  * Copyright (c) 2012 Association for Decentralized Information Management in\r
3  * 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.db.layer0.migration;\r
13 \r
14 import java.util.ArrayList;\r
15 import java.util.List;\r
16 \r
17 import org.simantics.db.ReadGraph;\r
18 import org.simantics.db.Resource;\r
19 import org.simantics.db.common.request.ObjectsWithType;\r
20 import org.simantics.db.common.request.ResourceRead;\r
21 import org.simantics.db.exception.DatabaseException;\r
22 import org.simantics.layer0.Layer0;\r
23 \r
24 public class OntologiesFromLibrary extends ResourceRead<List<Resource>> {\r
25     \r
26     public OntologiesFromLibrary(Resource library) {\r
27         super(library);\r
28     }\r
29 \r
30     @Override\r
31     public List<Resource> perform(ReadGraph graph) throws DatabaseException {\r
32         Layer0 L0 = Layer0.getInstance(graph);\r
33         ArrayList<Resource> result = new ArrayList<Resource>();\r
34         for(Resource r : graph.syncRequest(new ObjectsWithType(resource, L0.ConsistsOf, L0.Library))) {\r
35             if(graph.isInstanceOf(r, L0.Ontology))\r
36                 result.add(r);\r
37             else\r
38                 result.addAll(graph.syncRequest(new OntologiesFromLibrary(r)));\r
39         }\r
40         return result;\r
41     }\r
42 \r
43 }\r