]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.graphviz/src/org/simantics/graphviz/Activator.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.graphviz / src / org / simantics / graphviz / Activator.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.graphviz;\r
13 \r
14 import java.io.File;\r
15 import java.io.IOException;\r
16 import java.net.URL;\r
17 import java.net.URLDecoder;\r
18 \r
19 import org.eclipse.core.runtime.FileLocator;\r
20 import org.eclipse.core.runtime.Plugin;\r
21 import org.osgi.framework.Bundle;\r
22 import org.osgi.framework.BundleContext;\r
23 \r
24 /**\r
25  * The activator class controls the plug-in life cycle\r
26  * \r
27  * @author Hannu Niemistö\r
28  */\r
29 public class Activator extends Plugin {\r
30 \r
31     // The plug-in ID\r
32     public static final String PLUGIN_ID = "org.simantics.graphviz";\r
33 \r
34     // The shared instance\r
35     private static Activator plugin;\r
36 \r
37     // private File stateDir;\r
38     private Bundle bundle;\r
39     private File DOT_EXE;\r
40 \r
41     /*\r
42      * (non-Javadoc)\r
43      * \r
44      * @see\r
45      * org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext)\r
46      */\r
47     @Override\r
48     public void start(BundleContext context) throws Exception {\r
49         super.start(context);\r
50 \r
51         bundle = context.getBundle();\r
52         URL url = FileLocator.toFileURL(bundle.getEntry("dot"));\r
53         DOT_EXE = new File(url.getPath(), "dot.exe");\r
54 \r
55         plugin = this;\r
56     }\r
57 \r
58     /*\r
59      * (non-Javadoc)\r
60      * \r
61      * @see\r
62      * org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext)\r
63      */\r
64     @Override\r
65     public void stop(BundleContext context) throws Exception {\r
66         plugin = null;\r
67         super.stop(context);\r
68     }\r
69 \r
70     /**\r
71      * Returns the shared instance\r
72      * \r
73      * @return the shared instance\r
74      */\r
75     public static Activator getDefault() {\r
76         return plugin;\r
77     }\r
78 \r
79     public static File getDotExe() {\r
80         Activator activator = getDefault();\r
81         if(activator != null)\r
82             return activator.DOT_EXE;\r
83         else\r
84             try {\r
85                 URL path = Activator.class.getResource(".");\r
86                 URL resource = new URL(path, "../../../../dot/dot.exe");\r
87                 return new File(URLDecoder.decode(resource.getPath(), "UTF-8"));\r
88             } catch (IOException e) {\r
89                 e.printStackTrace();\r
90                 return null;\r
91             }\r
92     }\r
93 \r
94 }\r