]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.team.ui/src/org/simantics/team/ui/handlers/CommitAllHandler.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.team.ui / src / org / simantics / team / ui / handlers / CommitAllHandler.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 java.io.File;\r
15 \r
16 import org.eclipse.core.commands.ExecutionEvent;\r
17 import org.eclipse.core.commands.ExecutionException;\r
18 import org.simantics.db.Session;\r
19 import org.simantics.db.exception.DatabaseException;\r
20 import org.simantics.db.service.TeamSupport;\r
21 import org.simantics.team.Activator;\r
22 import org.simantics.team.Utils;\r
23 import org.simantics.team.ui.CommentDialog;\r
24 import org.simantics.ui.SimanticsUI;\r
25 import org.simantics.ui.workbench.handler.AbstractPreferenceHandler;\r
26 \r
27 public class CommitAllHandler extends AbstractPreferenceHandler {\r
28 \r
29     public CommitAllHandler() {\r
30         super(Activator.getDefault());\r
31     }\r
32     @Override\r
33     public Object execute(ExecutionEvent event) throws ExecutionException {\r
34         System.out.println("CommitAllHandler");\r
35 //        ISelection sel = HandlerUtil.getCurrentSelection(event);\r
36 //        IStructuredSelection ss = StructuredSelection.EMPTY;\r
37 //        if (sel instanceof IStructuredSelection)\r
38 //            ss = (IStructuredSelection) sel;\r
39         try {\r
40             File teamFolder = Utils.getTeamFolder();\r
41             commitAll(teamFolder, false); // Don't initialize.\r
42         } catch (DatabaseException e) {\r
43             throw new ExecutionException("Failed to commit.", e);\r
44         }\r
45         return null;\r
46     }\r
47     static CommentDialog.Data commitAll(File teamFolder, boolean init) \r
48     throws DatabaseException {\r
49         Session session = SimanticsUI.getSession();\r
50         TeamSupport ts = session.getService(TeamSupport.class);\r
51         final CommentDialog.Data data = new CommentDialog.Data("Commit Comment");\r
52         if (CommentDialog.openCommentDialog(data))\r
53             ts.commit(data.comment, teamFolder, init);\r
54         return data;\r
55     }\r
56 }\r