]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/sharedontology/wizard/SharedOntologyExportPage.java
Option for exporting tg and pgraph with sharedlibrary
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / sharedontology / wizard / SharedOntologyExportPage.java
index 1b211480f3e85bf2f14fd2d7e9ea63dc7c15a0df..26675fb33cd370eea845f3348b4da0b5c88865ad 100644 (file)
-/*******************************************************************************\r
- * Copyright (c) 2012 Association for Decentralized Information Management in\r
- * 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.modeling.ui.sharedontology.wizard;\r
-\r
-import java.io.File;\r
-import java.util.Collections;\r
-import java.util.List;\r
-\r
-import org.eclipse.jface.layout.GridDataFactory;\r
-import org.eclipse.jface.layout.GridLayoutFactory;\r
-import org.eclipse.jface.wizard.WizardPage;\r
-import org.eclipse.swt.SWT;\r
-import org.eclipse.swt.custom.CCombo;\r
-import org.eclipse.swt.events.ModifyEvent;\r
-import org.eclipse.swt.events.ModifyListener;\r
-import org.eclipse.swt.events.SelectionAdapter;\r
-import org.eclipse.swt.events.SelectionEvent;\r
-import org.eclipse.swt.layout.GridData;\r
-import org.eclipse.swt.layout.GridLayout;\r
-import org.eclipse.swt.widgets.Button;\r
-import org.eclipse.swt.widgets.Composite;\r
-import org.eclipse.swt.widgets.FileDialog;\r
-import org.eclipse.swt.widgets.Label;\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.common.primitiverequest.RelatedValue;\r
-import org.simantics.db.common.request.ResourceRead;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.layer0.SelectionHints;\r
-import org.simantics.db.layer0.util.DraftStatusBean;\r
-import org.simantics.db.layer0.util.Layer0Utils;\r
-import org.simantics.layer0.Layer0;\r
-import org.simantics.modeling.ModelingUtils.LibraryInfo;\r
-import org.simantics.utils.ui.ISelectionUtils;\r
-\r
-/**\r
- * @author Antti Villberg\r
- */\r
-public class SharedOntologyExportPage extends WizardPage {\r
-\r
-    ExportPlan          exportModel;\r
-    Composite           draft;\r
-    CCombo              model;\r
-    CCombo              exportLocation;\r
-\r
-    List<LibraryInfo> models = Collections.emptyList();\r
-    private Button      overwrite;\r
-\r
-    protected SharedOntologyExportPage(ExportPlan model) {\r
-        super("Export Shared Library", "Define Export Location", null);\r
-        this.exportModel = model;\r
-    }\r
-\r
-    @Override\r
-    public void createControl(Composite parent) {\r
-        Composite container = new Composite(parent, SWT.NONE);\r
-        {\r
-            GridLayout layout = new GridLayout();\r
-            layout.horizontalSpacing = 20;\r
-            layout.verticalSpacing = 10;\r
-            layout.numColumns = 3;\r
-            container.setLayout(layout);\r
-        }\r
-\r
-        draft = new Composite(container, SWT.NONE);\r
-        GridDataFactory.fillDefaults().grab(true, false).span(3, 1).applyTo(draft);\r
-        draft.setBackground(draft.getDisplay().getSystemColor(SWT.COLOR_RED));\r
-        GridLayoutFactory.swtDefaults().spacing(5, 5).applyTo(draft);\r
-        \r
-        Composite draft2 = new Composite(draft, SWT.NONE);\r
-        GridLayoutFactory.swtDefaults().applyTo(draft2);\r
-        GridDataFactory.fillDefaults().grab(true, false).span(1, 1).applyTo(draft2);\r
-        new Label(draft2, SWT.NONE).setText("The shared library has not been finished for publishing. The symbol can only be saved with draft status.");\r
-        \r
-        new Label(container, SWT.NONE).setText("Exported &shared library:");\r
-        model = new CCombo(container, SWT.BORDER);\r
-        {\r
-            model.setEditable(false);\r
-            model.setText("");\r
-            model.setToolTipText("Selects the shared library to export.");\r
-            GridDataFactory.fillDefaults().grab(true, false).span(2, 1).applyTo(model);\r
-            model.addModifyListener(new ModifyListener(){\r
-                @Override\r
-                public void modifyText(ModifyEvent e) {\r
-                    validatePage();\r
-                }\r
-            });\r
-        }\r
-\r
-        new Label(container, SWT.NONE).setText("&Target file:");\r
-        exportLocation = new CCombo(container, SWT.BORDER);\r
-        {\r
-            exportLocation.setText("");\r
-            GridDataFactory.fillDefaults().grab(true, false).span(1, 1).applyTo(exportLocation);\r
-            exportLocation.addModifyListener(new ModifyListener(){\r
-                @Override\r
-                public void modifyText(ModifyEvent e) {\r
-                    validatePage();\r
-                }\r
-            });\r
-        }\r
-        Button browseFileButton = new Button(container, SWT.PUSH);\r
-        {\r
-            browseFileButton.setText("Browse...");\r
-            browseFileButton.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false));\r
-            browseFileButton.addSelectionListener(new SelectionAdapter() {\r
-                @Override\r
-                public void widgetSelected(SelectionEvent e) {\r
-                    FileDialog dialog = new FileDialog(getShell(), SWT.SAVE);\r
-                    dialog.setText("Choose Export Target File");\r
-                    String loc = exportLocation.getText();\r
-                    dialog.setFilterPath(loc);\r
-                    dialog.setFilterExtensions(new String[] { "*.sharedLibrary" });\r
-                    dialog.setFilterNames(new String[] { "Shared Library (*.sharedLibrary)" });\r
-                    dialog.setOverwrite(false);\r
-                    String file = dialog.open();\r
-                    if (file == null)\r
-                        return;\r
-                    exportLocation.setText(file);\r
-                    validatePage();\r
-                }\r
-            });\r
-        }\r
-\r
-        Label horizRule = new Label(container, SWT.BORDER);\r
-        GridDataFactory.fillDefaults().hint(SWT.DEFAULT, 0).grab(true, false).span(3, 1).applyTo(horizRule);\r
-\r
-        overwrite = new Button(container, SWT.CHECK);\r
-        overwrite.setText("&Overwrite existing files without warning");\r
-        overwrite.setSelection(exportModel.overwrite);\r
-        GridDataFactory.fillDefaults().grab(true, false).span(3, 1).applyTo(overwrite);\r
-        overwrite.addSelectionListener(new SelectionAdapter() {\r
-            @Override\r
-            public void widgetSelected(SelectionEvent e) {\r
-                validatePage();\r
-            }\r
-        });\r
-\r
-        try {\r
-            initializeData();\r
-        } catch (DatabaseException e) {\r
-            e.printStackTrace();\r
-        }\r
-\r
-        setControl(container);\r
-        validatePage();\r
-    }\r
-\r
-    private void initializeData() throws DatabaseException {\r
-\r
-       List<Resource> libraries = ISelectionUtils.getPossibleKeys(exportModel.selection, SelectionHints.KEY_MAIN, Resource.class);\r
-        if(libraries.size() != 1) throw new RuntimeException();\r
-\r
-        Layer0 L0 = Layer0.getInstance(exportModel.sessionContext.getSession());\r
-        String name = exportModel.sessionContext.getSession().sync(new RelatedValue<String>(libraries.get(0), L0.HasName, Bindings.STRING));\r
-\r
-        DraftStatusBean draft = exportModel.sessionContext.getSession().syncRequest(new ResourceRead<DraftStatusBean>(libraries.get(0)) {\r
-\r
-                       @Override\r
-                       public DraftStatusBean perform(ReadGraph graph) throws DatabaseException {\r
-                boolean published = Layer0Utils.isPublished(graph, resource);\r
-                if(!published) return new DraftStatusBean(new String[0]);\r
-                               return null;\r
-                       }\r
-               \r
-        });\r
-        \r
-        // Load all states in the selected model\r
-        exportModel.model = new LibraryInfo(name, libraries.get(0), draft);\r
-        models = Collections.singletonList(exportModel.model);\r
-\r
-        // Populate combo boxes\r
-        int i = 0;\r
-        for (LibraryInfo m : models) {\r
-            model.add(m.library.getName());\r
-            model.setData(String.valueOf(i), m);\r
-            if (m.equals(exportModel.model))\r
-                model.select(i);\r
-            ++i;\r
-        }\r
-\r
-        for (String path : exportModel.recentLocations) {\r
-            exportLocation.add(path);\r
-        }\r
-        if (exportLocation.getItemCount() > 0)\r
-            exportLocation.select(0);\r
-    }\r
-\r
-    void validatePage() {\r
-        if (exportModel.model == null) {\r
-            setMessage("Select library to export from.");\r
-            setErrorMessage(null);\r
-            setPageComplete(false);\r
-            return;\r
-        }\r
-\r
-        if(exportModel.model.draft != null) {\r
-            GridLayoutFactory.swtDefaults().spacing(5, 5).applyTo(draft);\r
-               draft.getParent().layout(true);\r
-        } else {\r
-               GridLayoutFactory.swtDefaults().numColumns(0).margins(0, 0).applyTo(draft);\r
-               draft.getParent().layout(true);\r
-        }\r
-        \r
-        String exportLoc = exportLocation.getText();\r
-        if (exportLoc.isEmpty()) {\r
-            setMessage("Select target file.");\r
-            setErrorMessage(null);\r
-            setPageComplete(false);\r
-            return;\r
-        }\r
-        if (!exportLoc.endsWith(".sharedLibrary"))\r
-            exportLoc += exportLoc.endsWith(".") ? "sharedLibrary" : ".sharedLibrary";\r
-        File file = new File(exportLoc);\r
-        if (file.isDirectory()) {\r
-            setErrorMessage("The target is a directory.");\r
-            setPageComplete(false);\r
-            return;\r
-        }\r
-        File parent = file.getParentFile();\r
-        if (parent == null || !parent.isDirectory()) {\r
-            setErrorMessage("The target directory does not exist.");\r
-            setPageComplete(false);\r
-            return;\r
-        }\r
-        exportModel.exportLocation = file;\r
-        exportModel.overwrite = overwrite.getSelection();\r
-\r
-        setErrorMessage(null);\r
-        setMessage("Export shared library to " + exportLoc + ".");\r
-        setPageComplete(true);\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2012 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.modeling.ui.sharedontology.wizard;
+
+import java.io.File;
+import java.util.Collections;
+import java.util.List;
+
+import org.eclipse.core.runtime.Platform;
+import org.eclipse.jface.layout.GridDataFactory;
+import org.eclipse.jface.layout.GridLayoutFactory;
+import org.eclipse.jface.wizard.WizardPage;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.custom.CCombo;
+import org.eclipse.swt.events.ModifyEvent;
+import org.eclipse.swt.events.ModifyListener;
+import org.eclipse.swt.events.SelectionAdapter;
+import org.eclipse.swt.events.SelectionEvent;
+import org.eclipse.swt.layout.GridData;
+import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Button;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.FileDialog;
+import org.eclipse.swt.widgets.Label;
+import org.simantics.databoard.Bindings;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.common.primitiverequest.RelatedValue;
+import org.simantics.db.common.request.ResourceRead;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.SelectionHints;
+import org.simantics.db.layer0.util.DraftStatusBean;
+import org.simantics.db.layer0.util.Layer0Utils;
+import org.simantics.layer0.Layer0;
+import org.simantics.modeling.ModelingUtils.LibraryInfo;
+import org.simantics.utils.ui.ISelectionUtils;
+
+/**
+ * @author Antti Villberg
+ */
+public class SharedOntologyExportPage extends WizardPage {
+
+    ExportPlan          exportModel;
+    Composite           draft;
+    CCombo              model;
+    CCombo              exportLocation;
+
+    List<LibraryInfo> models = Collections.emptyList();
+    private Button      overwrite;
+
+    protected SharedOntologyExportPage(ExportPlan model) {
+        super("Export Shared Library", "Define Export Location", null);
+        this.exportModel = model;
+    }
+
+    @Override
+    public void createControl(Composite parent) {
+        Composite container = new Composite(parent, SWT.NONE);
+        {
+            GridLayout layout = new GridLayout();
+            layout.horizontalSpacing = 20;
+            layout.verticalSpacing = 10;
+            layout.numColumns = 3;
+            container.setLayout(layout);
+        }
+
+        draft = new Composite(container, SWT.NONE);
+        GridDataFactory.fillDefaults().grab(true, false).span(3, 1).applyTo(draft);
+        draft.setBackground(draft.getDisplay().getSystemColor(SWT.COLOR_RED));
+        GridLayoutFactory.swtDefaults().spacing(5, 5).applyTo(draft);
+        
+        Composite draft2 = new Composite(draft, SWT.NONE);
+        GridLayoutFactory.swtDefaults().applyTo(draft2);
+        GridDataFactory.fillDefaults().grab(true, false).span(1, 1).applyTo(draft2);
+        new Label(draft2, SWT.NONE).setText("The shared library has not been finished for publishing. The symbol can only be saved with draft status.");
+        
+        new Label(container, SWT.NONE).setText("Exported &shared library:");
+        model = new CCombo(container, SWT.BORDER);
+        {
+            model.setEditable(false);
+            model.setText("");
+            model.setToolTipText("Selects the shared library to export.");
+            GridDataFactory.fillDefaults().grab(true, false).span(2, 1).applyTo(model);
+            model.addModifyListener(new ModifyListener(){
+                @Override
+                public void modifyText(ModifyEvent e) {
+                    validatePage();
+                }
+            });
+        }
+
+        new Label(container, SWT.NONE).setText("&Target file:");
+        exportLocation = new CCombo(container, SWT.BORDER);
+        {
+            exportLocation.setText("");
+            GridDataFactory.fillDefaults().grab(true, false).span(1, 1).applyTo(exportLocation);
+            exportLocation.addModifyListener(new ModifyListener(){
+                @Override
+                public void modifyText(ModifyEvent e) {
+                    validatePage();
+                }
+            });
+        }
+        Button browseFileButton = new Button(container, SWT.PUSH);
+        {
+            browseFileButton.setText("Browse...");
+            browseFileButton.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false));
+            browseFileButton.addSelectionListener(new SelectionAdapter() {
+                @Override
+                public void widgetSelected(SelectionEvent e) {
+                    FileDialog dialog = new FileDialog(getShell(), SWT.SAVE);
+                    dialog.setText("Choose Export Target File");
+                    String loc = exportLocation.getText();
+                    dialog.setFilterPath(loc);
+                    dialog.setFilterExtensions(new String[] { "*.sharedLibrary" });
+                    dialog.setFilterNames(new String[] { "Shared Library (*.sharedLibrary)" });
+                    dialog.setOverwrite(false);
+                    String file = dialog.open();
+                    if (file == null)
+                        return;
+                    exportLocation.setText(file);
+                    validatePage();
+                }
+            });
+        }
+
+        Label horizRule = new Label(container, SWT.BORDER);
+        GridDataFactory.fillDefaults().hint(SWT.DEFAULT, 0).grab(true, false).span(3, 1).applyTo(horizRule);
+
+        overwrite = new Button(container, SWT.CHECK);
+        overwrite.setText("&Overwrite existing files without warning");
+        overwrite.setSelection(exportModel.overwrite);
+        GridDataFactory.fillDefaults().grab(true, false).span(3, 1).applyTo(overwrite);
+        overwrite.addSelectionListener(new SelectionAdapter() {
+            @Override
+            public void widgetSelected(SelectionEvent e) {
+                validatePage();
+            }
+        });
+        String prop = System.getProperty("org.simantics.modeling.exportTgAndPgraph");
+        if (prop != null || Platform.inDevelopmentMode()) {
+            Button tgAndPgraph = new Button(container, SWT.CHECK);
+            tgAndPgraph.setText("&Generate TG and Pgraph with export");
+            tgAndPgraph.setSelection(exportModel.tgAndPgraph);
+            GridDataFactory.fillDefaults().grab(true, false).span(3, 1).applyTo(tgAndPgraph);
+            tgAndPgraph.addSelectionListener(new SelectionAdapter() {
+                @Override
+                public void widgetSelected(SelectionEvent e) {
+                    exportModel.tgAndPgraph = tgAndPgraph.getSelection();
+                }
+            });
+        }
+
+        
+        try {
+            initializeData();
+        } catch (DatabaseException e) {
+            e.printStackTrace();
+        }
+
+        setControl(container);
+        validatePage();
+    }
+
+    private void initializeData() throws DatabaseException {
+
+       List<Resource> libraries = ISelectionUtils.getPossibleKeys(exportModel.selection, SelectionHints.KEY_MAIN, Resource.class);
+        if(libraries.size() != 1) throw new RuntimeException();
+
+        Layer0 L0 = Layer0.getInstance(exportModel.sessionContext.getSession());
+        String name = exportModel.sessionContext.getSession().sync(new RelatedValue<String>(libraries.get(0), L0.HasName, Bindings.STRING));
+
+        DraftStatusBean draft = exportModel.sessionContext.getSession().syncRequest(new ResourceRead<DraftStatusBean>(libraries.get(0)) {
+
+                       @Override
+                       public DraftStatusBean perform(ReadGraph graph) throws DatabaseException {
+                boolean published = Layer0Utils.isPublished(graph, resource);
+                if(!published) return new DraftStatusBean(new String[0]);
+                               return null;
+                       }
+               
+        });
+        
+        // Load all states in the selected model
+        exportModel.model = new LibraryInfo(name, libraries.get(0), draft);
+        models = Collections.singletonList(exportModel.model);
+
+        // Populate combo boxes
+        int i = 0;
+        for (LibraryInfo m : models) {
+            model.add(m.library.getName());
+            model.setData(String.valueOf(i), m);
+            if (m.equals(exportModel.model))
+                model.select(i);
+            ++i;
+        }
+
+        for (String path : exportModel.recentLocations) {
+            exportLocation.add(path);
+        }
+        if (exportLocation.getItemCount() > 0)
+            exportLocation.select(0);
+    }
+
+    void validatePage() {
+        if (exportModel.model == null) {
+            setMessage("Select library to export from.");
+            setErrorMessage(null);
+            setPageComplete(false);
+            return;
+        }
+
+        if(exportModel.model.draft != null) {
+            GridLayoutFactory.swtDefaults().spacing(5, 5).applyTo(draft);
+               draft.getParent().layout(true);
+        } else {
+               GridLayoutFactory.swtDefaults().numColumns(0).margins(0, 0).applyTo(draft);
+               draft.getParent().layout(true);
+        }
+        
+        String exportLoc = exportLocation.getText();
+        if (exportLoc.isEmpty()) {
+            setMessage("Select target file.");
+            setErrorMessage(null);
+            setPageComplete(false);
+            return;
+        }
+        if (!exportLoc.endsWith(".sharedLibrary"))
+            exportLoc += exportLoc.endsWith(".") ? "sharedLibrary" : ".sharedLibrary";
+        File file = new File(exportLoc);
+        if (file.isDirectory()) {
+            setErrorMessage("The target is a directory.");
+            setPageComplete(false);
+            return;
+        }
+        File parent = file.getParentFile();
+        if (parent == null || !parent.isDirectory()) {
+            setErrorMessage("The target directory does not exist.");
+            setPageComplete(false);
+            return;
+        }
+        exportModel.exportLocation = file;
+        exportModel.overwrite = overwrite.getSelection();
+
+        setErrorMessage(null);
+        setMessage("Export shared library to " + exportLoc + ".");
+        setPageComplete(true);
+    }
+
+}