]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
daba04a424de264218d46b265c2655fec7afd282
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2010, 2011 Association for Decentralized Information Management in\r
3  * 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.sysdyn.ui.handlers.imports;\r
13 \r
14 import java.io.File;\r
15 \r
16 import org.eclipse.core.commands.AbstractHandler;\r
17 import org.eclipse.core.commands.ExecutionEvent;\r
18 import org.eclipse.core.commands.ExecutionException;\r
19 import org.eclipse.core.runtime.IProgressMonitor;\r
20 import org.eclipse.core.runtime.IStatus;\r
21 import org.eclipse.core.runtime.Platform;\r
22 import org.eclipse.core.runtime.jobs.Job;\r
23 import org.eclipse.swt.SWT;\r
24 import org.eclipse.swt.widgets.FileDialog;\r
25 import org.eclipse.swt.widgets.Shell;\r
26 import org.eclipse.ui.handlers.HandlerUtil;\r
27 import org.simantics.DatabaseJob;\r
28 import org.simantics.sysdyn.ui.Activator;\r
29 import org.simantics.sysdyn.ui.utils.imports.ImportUtilsUI;\r
30 \r
31 /**\r
32  * Imports models from exported transferable graph files.\r
33  * \r
34  * @author Teemu Lempinen\r
35  *\r
36  */\r
37 public class ImportModelHandler extends AbstractHandler {\r
38 \r
39     @Override\r
40     public Object execute(ExecutionEvent event) throws ExecutionException {\r
41 \r
42         // Get imported transferable graph file using FileDialog\r
43         Shell shell = HandlerUtil.getActiveShellChecked(event);\r
44         FileDialog fd = new FileDialog(shell, SWT.OPEN);\r
45         fd.setText("Import Model");\r
46 \r
47         String path = Activator.getDefault().getPreferenceStore().getString(ImportUtilsUI.IMPORTMODELTPATH);\r
48         if(path.isEmpty() || !(new File(path).exists()))\r
49             path = Platform.getLocation().toOSString();\r
50         fd.setFilterPath(path);\r
51         String[] filterExt = {"*.tg"};\r
52         fd.setFilterExtensions(filterExt);\r
53         final String selected = fd.open();\r
54         if(selected == null) return null;\r
55 \r
56         Job job = new DatabaseJob("Import model") {\r
57 \r
58             @Override\r
59             protected IStatus run(IProgressMonitor monitor) {\r
60                 IStatus status = ImportUtilsUI.importModelFile(selected, monitor);\r
61                 return status;\r
62             }\r
63         };\r
64         job.setUser(true);\r
65         job.schedule();\r
66 \r
67         return null;\r
68 \r
69     }\r
70 }\r