]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.issues.ui/src/org/simantics/issues/ui/handler/ExportIssuesAsCsv.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.issues.ui / src / org / simantics / issues / ui / handler / ExportIssuesAsCsv.java
diff --git a/bundles/org.simantics.issues.ui/src/org/simantics/issues/ui/handler/ExportIssuesAsCsv.java b/bundles/org.simantics.issues.ui/src/org/simantics/issues/ui/handler/ExportIssuesAsCsv.java
new file mode 100644 (file)
index 0000000..9e114af
--- /dev/null
@@ -0,0 +1,169 @@
+/*******************************************************************************\r
+ * Copyright (c) 2007, 2011 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.issues.ui.handler;\r
+\r
+import java.io.File;\r
+import java.io.PrintStream;\r
+import java.lang.reflect.InvocationTargetException;\r
+import java.util.Collection;\r
+\r
+import org.eclipse.core.commands.AbstractHandler;\r
+import org.eclipse.core.commands.ExecutionEvent;\r
+import org.eclipse.core.commands.ExecutionException;\r
+import org.eclipse.core.runtime.IProgressMonitor;\r
+import org.eclipse.core.runtime.SubMonitor;\r
+import org.eclipse.core.runtime.preferences.InstanceScope;\r
+import org.eclipse.jface.operation.IRunnableWithProgress;\r
+import org.eclipse.swt.SWT;\r
+import org.eclipse.swt.widgets.FileDialog;\r
+import org.eclipse.swt.widgets.Shell;\r
+import org.eclipse.ui.IWorkbenchWindow;\r
+import org.eclipse.ui.handlers.HandlerUtil;\r
+import org.osgi.service.prefs.BackingStoreException;\r
+import org.osgi.service.prefs.Preferences;\r
+import org.simantics.Simantics;\r
+import org.simantics.browsing.ui.common.ErrorLogger;\r
+import org.simantics.databoard.Bindings;\r
+import org.simantics.db.ReadGraph;\r
+import org.simantics.db.Resource;\r
+import org.simantics.db.common.request.ObjectsWithType;\r
+import org.simantics.db.common.request.ReadRequest;\r
+import org.simantics.db.common.utils.NameUtils;\r
+import org.simantics.db.exception.DatabaseException;\r
+import org.simantics.db.layer0.variable.Variable;\r
+import org.simantics.db.request.Read;\r
+import org.simantics.issues.common.AllVisibleIssues;\r
+import org.simantics.issues.ui.internal.Activator;\r
+import org.simantics.operation.Layer0X;\r
+import org.simantics.simulation.ontology.SimulationResource;\r
+import org.simantics.utils.DataContainer;\r
+import org.simantics.utils.FileUtils;\r
+import org.simantics.utils.strings.StringUtils;\r
+import org.simantics.utils.ui.ExceptionUtils;\r
+\r
+/**\r
+ * @author Tuukka Lehtonen\r
+ */\r
+public class ExportIssuesAsCsv extends AbstractHandler {\r
+\r
+    private static final String PROP_LAST_VALIDATION_REPORT_PATH= "validation.report.path";\r
+\r
+    @Override\r
+    public Object execute(ExecutionEvent event) throws ExecutionException {\r
+        IWorkbenchWindow window = HandlerUtil.getActiveWorkbenchWindow(event);\r
+\r
+        try {\r
+            String fileName = generateFileName();\r
+            validate(window, fileName);\r
+        } catch (DatabaseException e) {\r
+            ErrorLogger.defaultLogError(e);\r
+        }\r
+\r
+        return null;\r
+    }\r
+\r
+    private String generateFileName() throws DatabaseException {\r
+        String generatedName = Simantics.getSession().syncRequest(new Read<String>() {\r
+            @Override\r
+            public String perform(ReadGraph graph) throws DatabaseException {\r
+                Layer0X L0X = Layer0X.getInstance(graph);\r
+                SimulationResource SIMU = SimulationResource.getInstance(graph);\r
+                for (Resource model : graph.syncRequest(new ObjectsWithType(Simantics.getProjectResource(), L0X.Activates, SIMU.Model))) {\r
+                    return NameUtils.getSafeName(graph, model) + ".txt";\r
+                }\r
+                return "issues.txt";\r
+            }\r
+        });\r
+\r
+        if (!FileUtils.isValidFileName(generatedName))\r
+            generatedName = (String) Bindings.STR_VARIANT.createUnchecked(Bindings.STRING, generatedName);\r
+\r
+        return generatedName;\r
+    }\r
+\r
+    public void validate(IWorkbenchWindow window, String fileName) {\r
+        Preferences prefs = InstanceScope.INSTANCE.getNode(Activator.PLUGIN_ID);\r
+        String lastReportPath = prefs.get(PROP_LAST_VALIDATION_REPORT_PATH, null);\r
+\r
+        // Query for output path\r
+        Shell parentShell = null;\r
+        if (window != null)\r
+            parentShell = window.getShell();\r
+\r
+        final DataContainer<PrintStream> externalOutput = new DataContainer<PrintStream>();\r
+\r
+        FileDialog fd = new FileDialog(parentShell, SWT.SAVE);\r
+        fd.setText("Select Validation Output");\r
+        fd.setFilterExtensions(new String[] { "*.txt", "*.*" });\r
+        fd.setFilterNames(new String[] { "Comma-Separated Values (*.txt)", "All Files (*.*)" });\r
+        if (lastReportPath != null)\r
+            fd.setFilterPath(lastReportPath);\r
+        fd.setFileName(fileName);\r
+        final String path = fd.open();\r
+        if (path != null) {\r
+            prefs.put(PROP_LAST_VALIDATION_REPORT_PATH, path);\r
+            try {\r
+                prefs.flush();\r
+            } catch (BackingStoreException e) {\r
+                ExceptionUtils.logError(e);\r
+            }\r
+        } else {\r
+//            boolean result = MessageDialog.openQuestion(parentShell, "Print to stdout?", "Would you like to perform model validation and print the results into stdout?");\r
+//            if (!result)\r
+//                return;\r
+//            externalOutput.set(System.out);\r
+            return;\r
+        }\r
+\r
+        try {\r
+            window.getWorkbench().getProgressService().busyCursorWhile(new IRunnableWithProgress() {\r
+                @Override\r
+                public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {\r
+                    try {\r
+                        if (externalOutput.get() == null)\r
+                            externalOutput.set(new PrintStream(new File(path)));\r
+\r
+                        final SubMonitor progress = SubMonitor.convert(monitor, "Export issues", IProgressMonitor.UNKNOWN);\r
+                        Simantics.getSession().syncRequest(new ReadRequest() {\r
+                            @Override\r
+                            public void run(ReadGraph graph) throws DatabaseException {\r
+                                PrintStream out = externalOutput.get();\r
+\r
+                                Collection<Variable> activeIssues = graph.syncRequest(new AllVisibleIssues(Simantics.getProjectResource()));\r
+                                out.println("# Exported issues (" + activeIssues.size() + ")");\r
+                                for (Variable issue : activeIssues) {\r
+                                    String description = StringUtils.safeString( (String) issue.getPossiblePropertyValue(graph, "HasDescription") );\r
+                                    String severity = StringUtils.safeString( (String) issue.getPossiblePropertyValue(graph, "severity") );\r
+                                    String resource = StringUtils.safeString( (String) issue.getPossiblePropertyValue(graph, "resource") );\r
+                                    String path = StringUtils.safeString( (String) issue.getPossiblePropertyValue(graph, "path") );\r
+                                    out.println(description + ";" + severity + ";" + resource + ";" + path);\r
+                                    progress.worked(1);\r
+                                }\r
+                            }\r
+                        });\r
+                    } catch (Exception e) {\r
+                        throw new InvocationTargetException(e);\r
+                    } finally {\r
+                        monitor.done();\r
+                        if (externalOutput.get() != System.out)\r
+                            FileUtils.uncheckedClose(externalOutput.get());\r
+                    }\r
+                }\r
+            });\r
+        } catch (InvocationTargetException e) {\r
+            ExceptionUtils.logAndShowError(e.getTargetException());\r
+        } catch (InterruptedException e) {\r
+            // Operation cancelled, ignore.\r
+        }\r
+    }\r
+\r
+}
\ No newline at end of file