]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.team.ui/src/org/simantics/team/ui/handlers/StagingOutHandler.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.team.ui / src / org / simantics / team / ui / handlers / StagingOutHandler.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.team.ui.handlers;\r
13 \r
14 import org.eclipse.core.commands.ExecutionEvent;\r
15 import org.eclipse.core.commands.ExecutionException;\r
16 import org.eclipse.ui.PlatformUI;\r
17 import org.simantics.db.Session;\r
18 import org.simantics.db.exception.DatabaseException;\r
19 import org.simantics.db.service.TeamSupport;\r
20 import org.simantics.team.Activator;\r
21 import org.simantics.team.Utils;\r
22 import org.simantics.team.ui.CommentDialog;\r
23 import org.simantics.ui.SimanticsUI;\r
24 import org.simantics.ui.workbench.handler.AbstractPreferenceHandler;\r
25 \r
26 public class StagingOutHandler extends AbstractPreferenceHandler {\r
27     public StagingOutHandler() {\r
28         super(Activator.getDefault());\r
29     }\r
30     @Override\r
31     public Object execute(ExecutionEvent event) throws ExecutionException {\r
32         System.out.println("push and exit");\r
33 //        ISelection sel = HandlerUtil.getCurrentSelection(event);\r
34 //        IStructuredSelection ss = StructuredSelection.EMPTY;\r
35 //        if (sel instanceof IStructuredSelection)\r
36 //            ss = (IStructuredSelection) sel;\r
37         try {\r
38             Session session = SimanticsUI.getSession();\r
39             TeamSupport ts = session.getService(TeamSupport.class);\r
40             final CommentDialog.Data data = new CommentDialog.Data("Staging Comment");\r
41             if (!CommentDialog.openCommentDialog(data))\r
42                 return null; // User cancelled operation.\r
43             ts.commit(data.comment, Utils.getTeamFolder(), false);\r
44         } catch (DatabaseException e) {\r
45             //throw new ExecutionException("Failed to publish.", e);\r
46             PlatformUI.getWorkbench().close();\r
47             System.exit(1);\r
48         }\r
49         PlatformUI.getWorkbench().close();\r
50         System.exit(0);\r
51         return null;\r
52     }\r
53 }\r