]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.team.ui/src/org/simantics/team/ui/handlers/DumpToSelectedRevisionHandler.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.team.ui / src / org / simantics / team / ui / handlers / DumpToSelectedRevisionHandler.java
diff --git a/bundles/org.simantics.team.ui/src/org/simantics/team/ui/handlers/DumpToSelectedRevisionHandler.java b/bundles/org.simantics.team.ui/src/org/simantics/team/ui/handlers/DumpToSelectedRevisionHandler.java
new file mode 100644 (file)
index 0000000..6fd74c7
--- /dev/null
@@ -0,0 +1,64 @@
+/*******************************************************************************\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.team.ui.handlers;\r
+\r
+import java.io.File;\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.Platform;\r
+import org.eclipse.jface.viewers.ISelection;\r
+import org.eclipse.jface.viewers.IStructuredSelection;\r
+import org.eclipse.ui.handlers.HandlerUtil;\r
+import org.simantics.db.ChangeSetIdentifier;\r
+import org.simantics.db.Session;\r
+import org.simantics.db.common.utils.Logger;\r
+import org.simantics.db.service.ManagementSupport;\r
+import org.simantics.db.service.TeamSupport;\r
+import org.simantics.team.ui.Command;\r
+import org.simantics.ui.SimanticsUI;\r
+\r
+public class DumpToSelectedRevisionHandler extends AbstractHandler {\r
+    public DumpToSelectedRevisionHandler() {\r
+    }\r
+    @Override\r
+    public Object execute(ExecutionEvent event) throws ExecutionException {\r
+        ISelection sel = HandlerUtil.getCurrentSelection(event);\r
+        if (sel instanceof IStructuredSelection) {\r
+            IStructuredSelection ss = (IStructuredSelection)sel;\r
+            try {\r
+                Object o = ss.getFirstElement();\r
+                if (null == o || !(o instanceof Command))\r
+                    return null;\r
+                Command command = (Command)o;\r
+                ChangeSetIdentifier csi = command.getChangeSetIdentifier();\r
+                if (null == csi)\r
+                    return null;\r
+                long csid = csi.getId();\r
+                Session session = SimanticsUI.getSession();\r
+                ManagementSupport ms = session.getService(ManagementSupport.class);\r
+                ms.dumpRevision(csid);\r
+                File wsFolder = new File(Platform.getInstanceLocation().getURL().getFile());\r
+                File frFolder = new File(wsFolder, "db");\r
+                File toFolder = new File(wsFolder, "Dump-ws");\r
+                TeamSupport ts = session.getService(TeamSupport.class);\r
+                ts.dump(frFolder, toFolder, csid);\r
+                SynchroniseAllHandler.show(session, null, toFolder);\r
+          } catch (Exception e) {\r
+              Logger.defaultLogError(e);\r
+          }\r
+            \r
+        }\r
+        return null;\r
+    }\r
+}\r