*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / PHPeclipsePlugin.java
1 /**********************************************************************
2 Copyright (c) 2000, 2002 IBM Corp. and others.
3 All rights reserved. This program and the accompanying materials
4 are made available under the terms of the Common Public License v1.0
5 which accompanies this distribution, and is available at
6 http://www.eclipse.org/legal/cpl-v10.html
7
8 Contributors:
9     IBM Corporation - Initial implementation
10     Klaus Hartlage - www.eclipseproject.de
11 **********************************************************************/
12 package net.sourceforge.phpeclipse;
13
14 import net.sourceforge.phpdt.internal.ui.preferences.TemplatePreferencePage;
15 import net.sourceforge.phpdt.internal.ui.viewsupport.ImageDescriptorRegistry;
16 import net.sourceforge.phpeclipse.phpeditor.PHPDocumentProvider;
17 import net.sourceforge.phpeclipse.phpeditor.PHPSyntaxRdr;
18 import net.sourceforge.phpeclipse.phpeditor.util.PHPColorProvider;
19 import net.sourceforge.phpeclipse.resourcesview.PHPElement;
20 import net.sourceforge.phpeclipse.resourcesview.PHPElementAdapterFactory;
21 import net.sourceforge.phpeclipse.resourcesview.ResourceAdapterFactory;
22
23 import org.eclipse.core.resources.IResource;
24 import org.eclipse.core.resources.IWorkspace;
25 import org.eclipse.core.resources.ResourcesPlugin;
26 import org.eclipse.core.runtime.CoreException;
27 import org.eclipse.core.runtime.IAdapterManager;
28 import org.eclipse.core.runtime.IPath;
29 import org.eclipse.core.runtime.IPluginDescriptor;
30 import org.eclipse.core.runtime.IStatus;
31 import org.eclipse.core.runtime.Path;
32 import org.eclipse.core.runtime.Platform;
33 import org.eclipse.core.runtime.Status;
34 import org.eclipse.jface.preference.IPreferenceStore;
35 import org.eclipse.jface.preference.PreferenceConverter;
36 import org.eclipse.swt.widgets.Shell;
37 import org.eclipse.ui.IWorkbenchPage;
38 import org.eclipse.ui.IWorkbenchWindow;
39 import org.eclipse.ui.plugin.AbstractUIPlugin;
40
41 /**
42  * The main plugin class to be used in the desktop.
43  */
44 public class PHPeclipsePlugin extends AbstractUIPlugin implements IPreferenceConstants {
45   //    public static final String LOCALHOST_PREF = "_localhost";
46   //    public static final String DOCUMENTROOT_PREF = "_documentroot";
47   //    public static final String USE_EXTERNAL_BROWSER_PREF = "_use_external_browser";
48   //    public static final String EXTERNAL_BROWSER_PREF = "_external_browser";
49   //    public static final String MYSQL_PREF = "_my_sql";
50   //    public static final String APACHE_START_PREF = "_apache_start";
51   //    public static final String APACHE_STOP_PREF = "_apache_stop";
52   //    public static final String APACHE_RESTART_PREF = "_apache_restart";
53   //  public static final String SHOW_OUTPUT_IN_CONSOLE = "_sho_output_in_console";
54   //  public static final String EXTERNAL_PARSER_PREF = "_external_parser";
55
56   /**
57    * The id of the PHP plugin (value <code>"net.sourceforge.phpeclipse"</code>).
58    */
59   public static final String PLUGIN_ID = "net.sourceforge.phpeclipse"; //$NON-NLS-1$
60   public final static String PHP_NATURE_ID = PLUGIN_ID + ".phpnature";
61   public static final String PHP_RESOURCES_VIEW_ID = PLUGIN_ID + ".resourcesview.ViewPHPResources"; //$NON-NLS-1$
62
63   //The shared instance.
64   private static PHPeclipsePlugin plugin;
65   //Resource bundle.
66   //private ResourceBundle resourceBundle;
67
68   private ImageDescriptorRegistry fImageDescriptorRegistry;
69   private PHPDocumentProvider fCompilationUnitDocumentProvider;
70   /**
71   * The Java virtual machine that we are running on.  
72   */
73   private static int jvm;
74
75   /** MRJ 2.0 */
76   private static final int MRJ_2_0 = 0;
77
78   /** MRJ 2.1 or later */
79   private static final int MRJ_2_1 = 1;
80
81   /** Java on Mac OS X 10.0 (MRJ 3.0) */
82   private static final int MRJ_3_0 = 3;
83
84   /** MRJ 3.1 */
85   private static final int MRJ_3_1 = 4;
86
87   /** Windows NT  */
88   private static final int WINDOWS_NT = 5;
89
90   /** Windows 9x  */
91   private static final int WINDOWS_9x = 6;
92
93   /** JVM constant for any other platform */
94   private static final int OTHER = -1;
95   /**
96    * The constructor.
97    */
98   public PHPeclipsePlugin(IPluginDescriptor descriptor) {
99     super(descriptor);
100     plugin = this;
101     setJVM();
102     //    try {
103     //      resourceBundle = ResourceBundle.getBundle("net.sourceforge.PHPeclipsePluginResources");
104     //    } catch (MissingResourceException x) {
105     //      resourceBundle = null;
106     //    }
107   }
108
109   public static ImageDescriptorRegistry getImageDescriptorRegistry() {
110     return getDefault().internalGetImageDescriptorRegistry();
111   }
112
113   private ImageDescriptorRegistry internalGetImageDescriptorRegistry() {
114     if (fImageDescriptorRegistry == null)
115       fImageDescriptorRegistry = new ImageDescriptorRegistry();
116     return fImageDescriptorRegistry;
117   }
118   // @TODO: refactor this into a better method name !
119   public PHPDocumentProvider getCompilationUnitDocumentProvider() {
120     if (fCompilationUnitDocumentProvider == null)
121       fCompilationUnitDocumentProvider = new PHPDocumentProvider();
122     return fCompilationUnitDocumentProvider;
123   }
124
125   public static void setJVM() {
126     String osName = System.getProperty("os.name");
127
128     if (osName.startsWith("Mac OS")) {
129       String mrjVersion = System.getProperty("mrj.version");
130       String majorMRJVersion = mrjVersion.substring(0, 3);
131       jvm = OTHER;
132       try {
133
134         double version = Double.valueOf(majorMRJVersion).doubleValue();
135
136         if (version == 2) {
137           jvm = MRJ_2_0;
138         } else if (version >= 2.1 && version < 3) {
139           jvm = MRJ_2_1;
140         } else if (version == 3.0) {
141           jvm = MRJ_3_0;
142         } else if (version >= 3.1) {
143           jvm = MRJ_3_1;
144         }
145
146       } catch (NumberFormatException nfe) {
147
148       }
149
150     } else if (osName.startsWith("Windows")) {
151       if (osName.indexOf("9") != -1) {
152         jvm = WINDOWS_9x;
153       } else {
154         jvm = WINDOWS_NT;
155       }
156     }
157   }
158   public static int getJVM() {
159     return jvm;
160   }
161   /**
162    * Returns the shared instance.
163    */
164   public static PHPeclipsePlugin getDefault() {
165     return plugin;
166   }
167
168   /**
169    * Returns the workspace instance.
170    */
171   public static IWorkspace getWorkspace() {
172     return ResourcesPlugin.getWorkspace();
173   }
174
175   public static IWorkbenchPage getActivePage() {
176     return PHPeclipsePlugin.getActivePage();
177   }
178
179   public static IWorkbenchWindow getActiveWorkbenchWindow() {
180     return getDefault().getWorkbench().getActiveWorkbenchWindow();
181   }
182
183   public static Shell getActiveWorkbenchShell() {
184     return getActiveWorkbenchWindow().getShell();
185   }
186
187   public static String getPluginId() {
188     return getDefault().getDescriptor().getUniqueIdentifier();
189   }
190
191   public static void log(IStatus status) {
192     getDefault().getLog().log(status);
193   }
194
195   //  public static void logErrorMessage(String message) {
196   //    log(new Status(IStatus.ERROR, getPluginId(), JavaStatusConstants.INTERNAL_ERROR, message, null));
197   //  }
198   //
199   //  public static void logErrorStatus(String message, IStatus status) {
200   //    if (status == null) {
201   //      logErrorMessage(message);
202   //      return; 
203   //    }
204   //    MultiStatus multi= new MultiStatus(getPluginId(), JavaStatusConstants.INTERNAL_ERROR, message, null);
205   //    multi.add(status);
206   //    log(multi);
207   //  }
208   //  
209   //  public static void log(Throwable e) {
210   //    log(new Status(IStatus.ERROR, getPluginId(), JavaStatusConstants.INTERNAL_ERROR, JavaUIMessages.getString("JavaPlugin.internal_error"), e)); //$NON-NLS-1$
211   //  }
212
213   public static void log(int severity, String message) {
214     Status status = new Status(severity, PLUGIN_ID, IStatus.OK, message, null);
215     log(status);
216   }
217   public static void log(Throwable e) {
218     log(new Status(IStatus.ERROR, PLUGIN_ID, IStatus.ERROR, "PHPeclipsePlugin.internalErrorOccurred", e)); //$NON-NLS-1$
219   }
220   public static boolean isDebug() {
221     return getDefault().isDebugging();
222   }
223
224   static IPath getInstallLocation() {
225     return new Path(getDefault().getDescriptor().getInstallURL().getFile());
226   }
227
228   /**
229    * Returns the string from the plugin's resource bundle,
230    * or 'key' if not found.
231    */
232   //  public static String getResourceString(String key) {
233   //    ResourceBundle bundle = PHPeclipsePlugin.getDefault().getResourceBundle();
234   //    try {
235   //      return bundle.getString(key);
236   //    } catch (MissingResourceException e) {
237   //      return key;
238   //    }
239   //  }
240
241   /**
242    * Returns the plugin's resource bundle,
243    */
244   //  public ResourceBundle getResourceBundle() {
245   //    return resourceBundle;
246   //  }
247
248   protected void initializeDefaultPreferences(IPreferenceStore store) {
249     // windows preferences:
250     store.setDefault(LOCALHOST_PREF, "http://localhost");
251
252     store.setDefault(USE_EXTERNAL_BROWSER_PREF, "false");
253     store.setDefault(SHOW_OUTPUT_IN_CONSOLE, "true");
254     if (jvm == WINDOWS_9x) {
255       store.setDefault(EXTERNAL_BROWSER_PREF, "command.com /c start iexplore {0}");
256     } else if (jvm == WINDOWS_NT) {
257       store.setDefault(EXTERNAL_BROWSER_PREF, "rundll32 url.dll,FileProtocolHandler {0}");
258     } else {
259       store.setDefault(EXTERNAL_BROWSER_PREF, "netscape {0}");
260     }
261     store.setDefault(DOCUMENTROOT_PREF, getWorkspace().getRoot().getLocation().toString());
262     if ((jvm == WINDOWS_9x) || (jvm == WINDOWS_NT)) {
263       store.setDefault(EXTERNAL_PARSER_PREF, "c:\\apache\\php\\php -l -f {0}");
264       store.setDefault(MYSQL_PREF, "c:\\apache\\mysql\\bin\\mysqld.exe --standalone");
265       store.setDefault(APACHE_START_PREF, "c:\\apache\\apache.exe -c \"DocumentRoot \"{0}\"\"");
266       store.setDefault(APACHE_STOP_PREF, "c:\\apache\\apache.exe -k shutdown");
267       store.setDefault(APACHE_RESTART_PREF, "c:\\apache\\apache.exe -k restart");
268     } else {
269       store.setDefault(EXTERNAL_PARSER_PREF, "/apache/php/php -l -f {0}");
270       store.setDefault(MYSQL_PREF, "/apache/mysql/bin/mysqld --standalone");
271       store.setDefault(APACHE_START_PREF, "/apache/apache -c \"DocumentRoot \"{0}\"\"");
272       store.setDefault(APACHE_STOP_PREF, "/apache/apache.exe -k shutdown");
273       store.setDefault(APACHE_RESTART_PREF, "/apache/apache -k restart");
274
275     }
276
277     store.setDefault(PHP_PARSER_DEFAULT, PHP_EXTERNAL_PARSER);
278     store.setDefault(PHP_INTERNAL_PARSER, "false");
279     store.setDefault(PHP_EXTERNAL_PARSER, "true");
280
281     store.setDefault(PHP_PARSE_ON_SAVE, "true");
282
283     // show line numbers:
284     store.setDefault(LINE_NUMBER_RULER, "false");
285     store.setDefault(FORMATTER_TAB_SIZE, "4");
286
287     // php syntax highlighting
288     store.setDefault(PHP_USERDEF_XMLFILE, ""); //assume there is none  chooA
289
290     PreferenceConverter.setDefault(store, PHP_MULTILINE_COMMENT, PHPColorProvider.MULTI_LINE_COMMENT);
291     PreferenceConverter.setDefault(store, PHP_SINGLELINE_COMMENT, PHPColorProvider.SINGLE_LINE_COMMENT);
292     PreferenceConverter.setDefault(store, PHP_KEYWORD, PHPColorProvider.KEYWORD);
293     PreferenceConverter.setDefault(store, PHP_VARIABLE, PHPColorProvider.VARIABLE);
294     PreferenceConverter.setDefault(store, PHP_FUNCTIONNAME, PHPColorProvider.FUNCTION_NAME);
295     PreferenceConverter.setDefault(store, PHP_CONSTANT, PHPColorProvider.CONSTANT);
296     PreferenceConverter.setDefault(store, PHP_TYPE, PHPColorProvider.TYPE);
297     PreferenceConverter.setDefault(store, PHP_STRING, PHPColorProvider.STRING);
298     PreferenceConverter.setDefault(store, PHP_DEFAULT, PHPColorProvider.DEFAULT);
299     PreferenceConverter.setDefault(store, PHP_EDITOR_BACKGROUND, PHPColorProvider.BACKGROUND);
300     PreferenceConverter.setDefault(store, LINKED_POSITION_COLOR, PHPColorProvider.LINKED_POSITION_COLOR);
301     PreferenceConverter.setDefault(store, LINE_NUMBER_COLOR, PHPColorProvider.LINE_NUMBER_COLOR);
302
303     store.setDefault(PREFERENCE_COLOR_BACKGROUND_SYSTEM_DEFAULT, "true");
304     PreferenceConverter.setDefault(store, PREFERENCE_COLOR_BACKGROUND, PHPColorProvider.BACKGROUND_COLOR);
305
306     //language stuff
307     store.setDefault(RESOURCE_BUNDLE, LANGUAGE_DEFAULT);
308     store.setDefault(RESOURCE_BUNDLE_EN_GB, "true");
309     store.setDefault(RESOURCE_BUNDLE_DE, "false");
310     store.setDefault(RESOURCE_BUNDLE_FR, "false");
311     store.setDefault(RESOURCE_BUNDLE_ES, "false");
312
313     store.setDefault(PHP_OUTLINE_CLASS, "true"); //$NON-NLS-1$
314     store.setDefault(PHP_OUTLINE_FUNC, "true"); //$NON-NLS-1$
315     store.setDefault(PHP_OUTLINE_VAR, "true"); //$NON-NLS-1$ 
316
317     TemplatePreferencePage.initDefaults(store);
318     new PHPSyntaxRdr(); //this will initialize the static fields in the syntaxrdr class
319   }
320
321   public void startup() throws CoreException {
322     super.startup();
323     IAdapterManager manager = Platform.getAdapterManager();
324     manager.registerAdapters(new PHPElementAdapterFactory(), PHPElement.class);
325     manager.registerAdapters(new ResourceAdapterFactory(), IResource.class);
326   }
327 }