]> gerrit.simantics Code Review - simantics/platform.git/commitdiff
(refs #7535) Allow only selecting models in the model export 88/1088/1
authorHannu Niemistö <hannu.niemisto@semantum.fi>
Mon, 9 Oct 2017 20:14:39 +0000 (23:14 +0300)
committerHannu Niemistö <hannu.niemisto@semantum.fi>
Mon, 9 Oct 2017 20:14:39 +0000 (23:14 +0300)
Change-Id: I5bf76ab83e9556b9eed580bee3f68dadcdc5f0f0

bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/sharedontology/wizard/ModelExportPage.java

index 7bdfecd60efb51d994f64f8b7e130bd94669f190..8dc11477e9db3474b83e3033506f8efbc37bb999 100644 (file)
@@ -35,6 +35,7 @@ import org.eclipse.swt.widgets.Label;
 import org.simantics.databoard.Bindings;
 import org.simantics.db.ReadGraph;
 import org.simantics.db.Resource;
 import org.simantics.databoard.Bindings;
 import org.simantics.db.ReadGraph;
 import org.simantics.db.Resource;
+import org.simantics.db.common.request.IndexRoot;
 import org.simantics.db.common.request.UniqueRead;
 import org.simantics.db.exception.DatabaseException;
 import org.simantics.db.layer0.SelectionHints;
 import org.simantics.db.common.request.UniqueRead;
 import org.simantics.db.exception.DatabaseException;
 import org.simantics.db.layer0.SelectionHints;
@@ -42,6 +43,7 @@ import org.simantics.db.layer0.util.DraftStatusBean;
 import org.simantics.layer0.Layer0;
 import org.simantics.modeling.ModelingUtils;
 import org.simantics.modeling.ModelingUtils.LibraryInfo;
 import org.simantics.layer0.Layer0;
 import org.simantics.modeling.ModelingUtils;
 import org.simantics.modeling.ModelingUtils.LibraryInfo;
+import org.simantics.simulation.ontology.SimulationResource;
 import org.simantics.utils.strings.AlphanumComparator;
 import org.simantics.utils.ui.ISelectionUtils;
 
 import org.simantics.utils.strings.AlphanumComparator;
 import org.simantics.utils.ui.ISelectionUtils;
 
@@ -172,10 +174,17 @@ public class ModelExportPage extends WizardPage {
             public List<LibraryInfo> perform(ReadGraph graph) throws DatabaseException {
                 List<LibraryInfo> result = new ArrayList<>();
                 Layer0 L0 = Layer0.getInstance(graph);
             public List<LibraryInfo> perform(ReadGraph graph) throws DatabaseException {
                 List<LibraryInfo> result = new ArrayList<>();
                 Layer0 L0 = Layer0.getInstance(graph);
+                SimulationResource SIMU = SimulationResource.getInstance(graph);
                 for (Resource r : selected) {
                 for (Resource r : selected) {
-                    String name = graph.getRelatedValue(r, L0.HasName, Bindings.STRING);
-                    DraftStatusBean draft = ModelingUtils.getDependencyDraftStatus(graph, r);
-                    result.add(new LibraryInfo(name, r, draft));
+                    Resource model = r;
+                    if(!graph.isInstanceOf(model, SIMU.Model)) {
+                        model = graph.syncRequest(new IndexRoot(r));
+                        if(!graph.isInstanceOf(model, SIMU.Model))
+                            continue;
+                    }
+                    String name = graph.getRelatedValue(model, L0.HasName, Bindings.STRING);
+                    DraftStatusBean draft = ModelingUtils.getDependencyDraftStatus(graph, model);
+                    result.add(new LibraryInfo(name, model, draft));
                 }
                 Collections.sort(result, new Comparator<LibraryInfo>() {
                     @Override
                 }
                 Collections.sort(result, new Comparator<LibraryInfo>() {
                     @Override