]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics/src/org/simantics/OntologyImportAdvisor.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics / src / org / simantics / OntologyImportAdvisor.java
index 37d20c9cfd6e62bf734fd55fad426340bd8b56fb..aa528a652204234ec7358bf57bfaa0b9a03dedd0 100644 (file)
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.WriteOnlyGraph;\r
-import org.simantics.db.common.WriteBindings;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.exception.RuntimeDatabaseException;\r
-import org.simantics.db.service.SerialisationSupport;\r
-import org.simantics.graph.db.AbstractImportAdvisor2;\r
-import org.simantics.graph.db.TransferableGraphImporter;\r
-import org.simantics.graph.representation.Root;\r
-import org.simantics.layer0.Layer0;\r
-import org.simantics.project.management.DatabaseManagement;\r
-import org.simantics.project.management.GraphBundle;\r
-\r
-public class OntologyImportAdvisor extends AbstractImportAdvisor2 {\r
-\r
-       final private GraphBundle tg;\r
-       final private DatabaseManagement mgmt;\r
-       final private String rootName;\r
-       private Resource ontology;\r
-       private Resource ontologyName;\r
-       \r
-       public OntologyImportAdvisor(GraphBundle tg, DatabaseManagement mgmt) {\r
-           this.tg = tg;\r
-           this.mgmt = mgmt;\r
-           if(tg.getName().contains("@")) {\r
-                   rootName = tg.getName().substring(tg.getName().lastIndexOf("/")+1);\r
-           } else {\r
-                   rootName = tg.getName().substring(tg.getName().lastIndexOf("/")+1) + "-" + tg.getMajor() + "." + tg.getMinor();\r
-           }\r
-       }\r
-       \r
-       @Override\r
-       public Resource getTarget() {\r
-               return null;\r
-       }\r
-       \r
-       @Override\r
-       public Resource analyzeRoot(ReadGraph graph, Root root) throws DatabaseException {\r
-               return null;\r
-       }\r
-       \r
-       @Override\r
-       public Resource createRoot(WriteOnlyGraph graph, Root root) throws DatabaseException {\r
-               return createRoot(graph, root, null); \r
-       }\r
-\r
-       @Override\r
-       public Resource createRoot(WriteOnlyGraph graph, Root root, Resource resource) throws DatabaseException {\r
-               if(resource == null) resource = graph.newResource();\r
-               addRootInfo(root, root.name, resource);\r
-               return resource;\r
-       }\r
-\r
-    @Override\r
-    public void beforeWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException {\r
-        ontology = graph.newResource(graph.getRootLibrary());\r
-        ontologyName = graph.newResource(graph.getRootLibrary());\r
-        graph.newClusterSet(ontology);\r
-        graph.setClusterSet4NewResource(ontology);\r
-    }\r
-\r
-    @Override\r
-    public void afterWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException {\r
-        \r
-        try {\r
-            long[] ids = process.getResourceIds(graph.getService(SerialisationSupport.class));\r
-            tg.setResourceArray(ids);\r
-            mgmt.createGraphBundle(graph, tg);\r
-            //graph.flushCluster();\r
-        } catch (DatabaseException e) {\r
-            throw new RuntimeDatabaseException(e);\r
-        }\r
-        \r
-    }\r
-\r
-    @Override\r
-    public boolean allowImmutableModifications() {\r
-        return true;\r
-    }\r
-\r
-    @Override\r
-    public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent,\r
-            String name) throws DatabaseException {\r
-        if(rootName.equals(name)) {\r
-               \r
-               Layer0 L0 = graph.getService(Layer0.class);\r
-               graph.claim(ontologyName, L0.InstanceOf, null, L0.String);\r
-               graph.claimValue(ontologyName, name, WriteBindings.STRING);\r
-               graph.claim(ontology, L0.HasName, L0.NameOf, ontologyName);\r
-               return ontology;\r
-\r
-        } else {\r
-               \r
-            return process.createChild(graph, parent, null, name);\r
-            \r
-        }\r
-    }\r
-\r
-    @Override\r
-    public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent, Resource child,\r
-            String name) throws DatabaseException {\r
-\r
-       if(rootName.equals(name)) {\r
-               \r
-               Layer0 L0 = graph.getService(Layer0.class);\r
-               graph.claim(ontologyName, L0.InstanceOf, null, L0.String);\r
-               graph.claimValue(ontologyName, name, WriteBindings.STRING);\r
-               graph.claim(ontology, L0.HasName, L0.NameOf, ontologyName);\r
-               return ontology;\r
-               \r
-        } else {\r
-               \r
-            return process.createChild(graph, parent, null, name);\r
-            \r
-        }\r
-    }\r
-    \r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.WriteOnlyGraph;
+import org.simantics.db.common.WriteBindings;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.exception.RuntimeDatabaseException;
+import org.simantics.db.service.SerialisationSupport;
+import org.simantics.graph.db.AbstractImportAdvisor2;
+import org.simantics.graph.db.TransferableGraphImporter;
+import org.simantics.graph.representation.Root;
+import org.simantics.layer0.Layer0;
+import org.simantics.project.management.DatabaseManagement;
+import org.simantics.project.management.GraphBundle;
+
+public class OntologyImportAdvisor extends AbstractImportAdvisor2 {
+
+       final private GraphBundle tg;
+       final private DatabaseManagement mgmt;
+       final private String rootName;
+       private Resource ontology;
+       private Resource ontologyName;
+       
+       public OntologyImportAdvisor(GraphBundle tg, DatabaseManagement mgmt) {
+           this.tg = tg;
+           this.mgmt = mgmt;
+           if(tg.getName().contains("@")) {
+                   rootName = tg.getName().substring(tg.getName().lastIndexOf("/")+1);
+           } else {
+                   rootName = tg.getName().substring(tg.getName().lastIndexOf("/")+1) + "-" + tg.getMajor() + "." + tg.getMinor();
+           }
+       }
+       
+       @Override
+       public Resource getTarget() {
+               return null;
+       }
+       
+       @Override
+       public Resource analyzeRoot(ReadGraph graph, Root root) throws DatabaseException {
+               return null;
+       }
+       
+       @Override
+       public Resource createRoot(WriteOnlyGraph graph, Root root) throws DatabaseException {
+               return createRoot(graph, root, null); 
+       }
+
+       @Override
+       public Resource createRoot(WriteOnlyGraph graph, Root root, Resource resource) throws DatabaseException {
+               if(resource == null) resource = graph.newResource();
+               addRootInfo(root, root.name, resource);
+               return resource;
+       }
+
+    @Override
+    public void beforeWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException {
+        ontology = graph.newResource(graph.getRootLibrary());
+        ontologyName = graph.newResource(graph.getRootLibrary());
+        graph.newClusterSet(ontology);
+        graph.setClusterSet4NewResource(ontology);
+    }
+
+    @Override
+    public void afterWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException {
+        
+        try {
+            long[] ids = process.getResourceIds(graph.getService(SerialisationSupport.class));
+            tg.setResourceArray(ids);
+            mgmt.createGraphBundle(graph, tg);
+            //graph.flushCluster();
+        } catch (DatabaseException e) {
+            throw new RuntimeDatabaseException(e);
+        }
+        
+    }
+
+    @Override
+    public boolean allowImmutableModifications() {
+        return true;
+    }
+
+    @Override
+    public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent,
+            String name) throws DatabaseException {
+        if(rootName.equals(name)) {
+               
+               Layer0 L0 = graph.getService(Layer0.class);
+               graph.claim(ontologyName, L0.InstanceOf, null, L0.String);
+               graph.claimValue(ontologyName, name, WriteBindings.STRING);
+               graph.claim(ontology, L0.HasName, L0.NameOf, ontologyName);
+               return ontology;
+
+        } else {
+               
+            return process.createChild(graph, parent, null, name);
+            
+        }
+    }
+
+    @Override
+    public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent, Resource child,
+            String name) throws DatabaseException {
+
+       if(rootName.equals(name)) {
+               
+               Layer0 L0 = graph.getService(Layer0.class);
+               graph.claim(ontologyName, L0.InstanceOf, null, L0.String);
+               graph.claimValue(ontologyName, name, WriteBindings.STRING);
+               graph.claim(ontology, L0.HasName, L0.NameOf, ontologyName);
+               return ontology;
+               
+        } else {
+               
+            return process.createChild(graph, parent, null, name);
+            
+        }
+    }
+    
+}