1 /***********************************************************************************************************************************
2 * Copyright (c) 2000, 2002 IBM Corp. and others. All rights reserved. This program and the accompanying materials are made
3 * available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at
4 * http://www.eclipse.org/legal/cpl-v10.html
6 * Contributors: IBM Corporation - Initial implementation www.phpeclipse.de
7 **********************************************************************************************************************************/
8 package net.sourceforge.phpdt.externaltools.actions;
10 import java.text.MessageFormat;
12 import net.sourceforge.phpdt.externaltools.launchConfigurations.ExternalToolsUtil;
13 import net.sourceforge.phpeclipse.externaltools.ExternalToolsPlugin;
14 import net.sourceforge.phpeclipse.ui.WebUI;
15 //import net.sourceforge.phpeclipse.ui.WebUI;
17 import org.eclipse.jface.action.IAction;
18 import org.eclipse.jface.preference.IPreferenceStore;
19 import org.eclipse.jface.viewers.ISelection;
20 import org.eclipse.ui.IWorkbenchWindow;
21 import org.eclipse.ui.IWorkbenchWindowActionDelegate;
23 public class PHPStartApacheAction implements IWorkbenchWindowActionDelegate {
24 protected IWorkbenchWindow activeWindow = null;
26 public void run(IAction action) {
27 final IPreferenceStore webUIStore = WebUI.getDefault()
28 .getPreferenceStore();
30 String documentRoot = webUIStore.getString(WebUI.PHP_DOCUMENTROOT_PREF);
31 final IPreferenceStore store = ExternalToolsPlugin.getDefault()
32 .getPreferenceStore();
34 // replace backslash with slash in the DocumentRoot under Windows
35 documentRoot = documentRoot.replace('\\', '/');
36 String[] arguments = { documentRoot };
37 MessageFormat form = new MessageFormat(store
38 .getString(ExternalToolsPlugin.APACHE_START_PREF));
39 execute("apache_start", store
40 .getString(ExternalToolsPlugin.APACHE_RUN_PREF), form
41 .format(arguments), store
42 .getBoolean(ExternalToolsPlugin.APACHE_START_BACKGROUND));
46 * Executes an external progam and saves the LaunchConfiguration under
50 * external tools command name
52 * executable path i.e.c:\apache\apache.exe
54 * arguments for this configuration
56 * run this configuration in background mode
58 public static void execute(String command, String executable,
59 String arguments, boolean background) {
60 // PHPConsole console = new PHPConsole();
61 // String consoleMessage;
63 // consoleMessage = "run in background mode-" + command + ": " +
64 // executable + " " + arguments;
66 // consoleMessage = "run in foreground mode-" + command + ": " +
67 // executable + " " + arguments;
69 // console.println(consoleMessage);
71 ExternalToolsUtil.execute(command, executable, arguments, background);
74 public void selectionChanged(IAction action, ISelection selection) {
78 public void init(IWorkbenchWindow window) {
79 this.activeWindow = window;
82 public void dispose() {