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
9 IBM Corporation - Initial implementation
10 Klaus Hartlage - www.eclipseproject.de
11 **********************************************************************/
12 package net.sourceforge.phpeclipse;
14 import java.util.MissingResourceException;
15 import java.util.ResourceBundle;
17 import net.sourceforge.phpdt.internal.ui.preferences.TemplatePreferencePage;
18 import net.sourceforge.phpdt.internal.ui.viewsupport.ImageDescriptorRegistry;
19 import net.sourceforge.phpeclipse.phpeditor.PHPDocumentProvider;
20 import net.sourceforge.phpeclipse.phpeditor.util.PHPColorProvider;
21 import net.sourceforge.phpeclipse.resourcesview.PHPElement;
22 import net.sourceforge.phpeclipse.resourcesview.PHPElementAdapterFactory;
23 import net.sourceforge.phpeclipse.resourcesview.ResourceAdapterFactory;
24 import org.eclipse.core.resources.IResource;
25 import org.eclipse.core.resources.IWorkspace;
26 import org.eclipse.core.resources.ResourcesPlugin;
27 import org.eclipse.core.runtime.CoreException;
28 import org.eclipse.core.runtime.IAdapterManager;
29 import org.eclipse.core.runtime.IPath;
30 import org.eclipse.core.runtime.IPluginDescriptor;
31 import org.eclipse.core.runtime.IStatus;
32 import org.eclipse.core.runtime.Path;
33 import org.eclipse.core.runtime.Platform;
34 import org.eclipse.core.runtime.Status;
35 import org.eclipse.jface.preference.IPreferenceStore;
36 import org.eclipse.jface.preference.PreferenceConverter;
37 import org.eclipse.swt.widgets.Shell;
38 import org.eclipse.ui.IWorkbenchPage;
39 import org.eclipse.ui.IWorkbenchWindow;
40 import org.eclipse.ui.plugin.AbstractUIPlugin;
43 * The main plugin class to be used in the desktop.
45 public class PHPeclipsePlugin extends AbstractUIPlugin implements IPreferenceConstants {
46 // public static final String LOCALHOST_PREF = "_localhost";
47 // public static final String DOCUMENTROOT_PREF = "_documentroot";
48 // public static final String USE_EXTERNAL_BROWSER_PREF = "_use_external_browser";
49 // public static final String EXTERNAL_BROWSER_PREF = "_external_browser";
50 // public static final String MYSQL_PREF = "_my_sql";
51 // public static final String APACHE_START_PREF = "_apache_start";
52 // public static final String APACHE_STOP_PREF = "_apache_stop";
53 // public static final String APACHE_RESTART_PREF = "_apache_restart";
54 // public static final String SHOW_OUTPUT_IN_CONSOLE = "_sho_output_in_console";
55 // public static final String EXTERNAL_PARSER_PREF = "_external_parser";
58 * The id of the PHP plugin (value <code>"net.sourceforge.phpeclipse"</code>).
60 public static final String PLUGIN_ID = "net.sourceforge.phpeclipse"; //$NON-NLS-1$
61 public final static String PHP_NATURE_ID = PLUGIN_ID + ".phpnature";
62 public static final String PHP_RESOURCES_VIEW_ID = PLUGIN_ID + ".resourcesview.ViewPHPResources"; //$NON-NLS-1$
64 //The shared instance.
65 private static PHPeclipsePlugin plugin;
67 //private ResourceBundle resourceBundle;
69 private ImageDescriptorRegistry fImageDescriptorRegistry;
70 private PHPDocumentProvider fCompilationUnitDocumentProvider;
72 * The Java virtual machine that we are running on.
74 private static int jvm;
77 private static final int MRJ_2_0 = 0;
79 /** MRJ 2.1 or later */
80 private static final int MRJ_2_1 = 1;
82 /** Java on Mac OS X 10.0 (MRJ 3.0) */
83 private static final int MRJ_3_0 = 3;
86 private static final int MRJ_3_1 = 4;
89 private static final int WINDOWS_NT = 5;
92 private static final int WINDOWS_9x = 6;
94 /** JVM constant for any other platform */
95 private static final int OTHER = -1;
99 public PHPeclipsePlugin(IPluginDescriptor descriptor) {
104 // resourceBundle = ResourceBundle.getBundle("net.sourceforge.PHPeclipsePluginResources");
105 // } catch (MissingResourceException x) {
106 // resourceBundle = null;
110 public static ImageDescriptorRegistry getImageDescriptorRegistry() {
111 return getDefault().internalGetImageDescriptorRegistry();
114 private ImageDescriptorRegistry internalGetImageDescriptorRegistry() {
115 if (fImageDescriptorRegistry == null)
116 fImageDescriptorRegistry= new ImageDescriptorRegistry();
117 return fImageDescriptorRegistry;
119 // @TODO: refactor this into a better method name !
120 public PHPDocumentProvider getCompilationUnitDocumentProvider() {
121 if (fCompilationUnitDocumentProvider == null)
122 fCompilationUnitDocumentProvider = new PHPDocumentProvider();
123 return fCompilationUnitDocumentProvider;
126 public static void setJVM() {
127 String osName = System.getProperty("os.name");
129 if (osName.startsWith("Mac OS")) {
130 String mrjVersion = System.getProperty("mrj.version");
131 String majorMRJVersion = mrjVersion.substring(0, 3);
135 double version = Double.valueOf(majorMRJVersion).doubleValue();
139 } else if (version >= 2.1 && version < 3) {
141 } else if (version == 3.0) {
143 } else if (version >= 3.1) {
147 } catch (NumberFormatException nfe) {
151 } else if (osName.startsWith("Windows")) {
152 if (osName.indexOf("9") != -1) {
159 public static int getJVM() {
163 * Returns the shared instance.
165 public static PHPeclipsePlugin getDefault() {
170 * Returns the workspace instance.
172 public static IWorkspace getWorkspace() {
173 return ResourcesPlugin.getWorkspace();
176 public static IWorkbenchPage getActivePage() {
177 return getDefault().getActivePage();
180 public static IWorkbenchWindow getActiveWorkbenchWindow() {
181 return getDefault().getWorkbench().getActiveWorkbenchWindow();
184 public static Shell getActiveWorkbenchShell() {
185 return getActiveWorkbenchWindow().getShell();
188 public static String getPluginId() {
189 return getDefault().getDescriptor().getUniqueIdentifier();
192 public static void log(IStatus status) {
193 getDefault().getLog().log(status);
196 // public static void logErrorMessage(String message) {
197 // log(new Status(IStatus.ERROR, getPluginId(), JavaStatusConstants.INTERNAL_ERROR, message, null));
200 // public static void logErrorStatus(String message, IStatus status) {
201 // if (status == null) {
202 // logErrorMessage(message);
205 // MultiStatus multi= new MultiStatus(getPluginId(), JavaStatusConstants.INTERNAL_ERROR, message, null);
206 // multi.add(status);
210 // public static void log(Throwable e) {
211 // log(new Status(IStatus.ERROR, getPluginId(), JavaStatusConstants.INTERNAL_ERROR, JavaUIMessages.getString("JavaPlugin.internal_error"), e)); //$NON-NLS-1$
213 public static void log(int severity, String message) {
214 Status status = new Status(severity, PLUGIN_ID, IStatus.OK, message, null) ;
217 public static void log(Throwable e) {
218 log(new Status(IStatus.ERROR, PLUGIN_ID, IStatus.ERROR, "PHPeclipsePlugin.internalErrorOccurred", e)); //$NON-NLS-1$
220 public static boolean isDebug() {
221 return getDefault().isDebugging();
224 static IPath getInstallLocation() {
225 return new Path(getDefault().getDescriptor().getInstallURL().getFile());
229 * Returns the string from the plugin's resource bundle,
230 * or 'key' if not found.
232 // public static String getResourceString(String key) {
233 // ResourceBundle bundle = PHPeclipsePlugin.getDefault().getResourceBundle();
235 // return bundle.getString(key);
236 // } catch (MissingResourceException e) {
242 * Returns the plugin's resource bundle,
244 // public ResourceBundle getResourceBundle() {
245 // return resourceBundle;
248 protected void initializeDefaultPreferences(IPreferenceStore store) {
249 // windows preferences:
250 store.setDefault(LOCALHOST_PREF, "http://localhost");
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}");
259 store.setDefault(EXTERNAL_BROWSER_PREF, "netscape {0}");
261 store.setDefault(DOCUMENTROOT_PREF, getWorkspace().getRoot().getLocation().toString() );
262 // store.setDefault(DOCUMENTROOT_PREF, "c:\\eclipse\\workspace"); // WIN_32
263 // store.setDefault(DOCUMENTROOT_PREF, "/eclipse/workspace"); // UNIX
264 if ((jvm == WINDOWS_9x) || (jvm == WINDOWS_NT)) {
265 store.setDefault(EXTERNAL_PARSER_PREF, "c:\\apache\\php\\php -l -f {0}");
266 store.setDefault(MYSQL_PREF, "c:\\apache\\mysql\\bin\\mysqld.exe --standalone");
267 store.setDefault(APACHE_START_PREF, "c:\\apache\\apache.exe -c \"DocumentRoot \"{0}\"\"");
268 store.setDefault(APACHE_STOP_PREF, "c:\\apache\\apache.exe -k shutdown");
269 store.setDefault(APACHE_RESTART_PREF, "c:\\apache\\apache.exe -k restart");
271 store.setDefault(EXTERNAL_PARSER_PREF, "/apache/php/php -l -f {0}");
272 store.setDefault(MYSQL_PREF, "/apache/mysql/bin/mysqld --standalone");
273 store.setDefault(APACHE_START_PREF, "/apache/apache -c \"DocumentRoot \"{0}\"\"");
274 store.setDefault(APACHE_STOP_PREF, "/apache/apache.exe -k shutdown");
275 store.setDefault(APACHE_RESTART_PREF, "/apache/apache -k restart");
279 store.setDefault(PHP_PARSER_DEFAULT, PHP_EXTERNAL_PARSER);
280 store.setDefault(PHP_INTERNAL_PARSER, "false");
281 store.setDefault(PHP_EXTERNAL_PARSER, "true");
283 store.setDefault(PHP_PARSE_ON_SAVE, "true");
285 // show line numbers:
286 store.setDefault(LINE_NUMBER_RULER, "false");
287 store.setDefault(FORMATTER_TAB_SIZE, "4");
289 // php syntax highlighting
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_STRING, PHPColorProvider.STRING);
296 PreferenceConverter.setDefault(store, PHP_DEFAULT, PHPColorProvider.DEFAULT);
297 PreferenceConverter.setDefault(store, LINKED_POSITION_COLOR, PHPColorProvider.LINKED_POSITION_COLOR);
298 PreferenceConverter.setDefault(store, LINE_NUMBER_COLOR, PHPColorProvider.LINE_NUMBER_COLOR);
300 store.setDefault(PREFERENCE_COLOR_BACKGROUND_SYSTEM_DEFAULT, "true");
301 PreferenceConverter.setDefault(store, PREFERENCE_COLOR_BACKGROUND, PHPColorProvider.BACKGROUND_COLOR);
303 TemplatePreferencePage.initDefaults(store);
306 public void startup() throws CoreException {
308 IAdapterManager manager= Platform.getAdapterManager();
309 manager.registerAdapters(new PHPElementAdapterFactory(), PHPElement.class);
310 manager.registerAdapters(new ResourceAdapterFactory(), IResource.class);