All prefs administrated in external tools plugin.
[phpeclipse.git] / net.sourceforge.phpeclipse.externaltools / src / net / sourceforge / phpdt / externaltools / actions / PHPStartApacheAction.java
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
5  * 
6  * Contributors: IBM Corporation - Initial implementation www.phpeclipse.de
7  **********************************************************************************************************************************/
8 package net.sourceforge.phpdt.externaltools.actions;
9
10 import java.text.MessageFormat;
11
12 import net.sourceforge.phpdt.externaltools.launchConfigurations.ExternalToolsUtil;
13 import net.sourceforge.phpeclipse.externaltools.ExternalToolsPlugin;
14 import net.sourceforge.phpeclipse.externaltools.PHPConsole;
15 import net.sourceforge.phpeclipse.ui.WebUI;
16
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;
22
23 public class PHPStartApacheAction implements IWorkbenchWindowActionDelegate {
24   protected IWorkbenchWindow activeWindow = null;
25
26   public void run(IAction action) {
27     final IPreferenceStore store = ExternalToolsPlugin.getDefault().getPreferenceStore();
28     String documentRoot = store.getString(WebUI.PHP_DOCUMENTROOT_PREF);
29     // replace backslash with slash in the DocumentRoot under Windows
30     documentRoot = documentRoot.replace('\\', '/');
31     String[] arguments = { documentRoot };
32     MessageFormat form = new MessageFormat(store.getString(ExternalToolsPlugin.APACHE_START_PREF));
33     execute("apache_start", store.getString(ExternalToolsPlugin.APACHE_RUN_PREF), form.format(arguments), store
34         .getBoolean(ExternalToolsPlugin.APACHE_START_BACKGROUND));
35   }
36
37   /**
38    * Executes an external progam and saves the LaunchConfiguration under external tools
39    * 
40    * @param command
41    *          external tools command name
42    * @param executable
43    *          executable path i.e.c:\apache\apache.exe
44    * @param arguments
45    *          arguments for this configuration
46    * @param background
47    *          run this configuration in background mode
48    */
49   public static void execute(String command, String executable, String arguments, boolean background) {
50 //    PHPConsole console = new PHPConsole();
51 //    String consoleMessage;
52 //    if (background) {
53 //      consoleMessage = "run in background mode-" + command + ": " + executable + " " + arguments;
54 //    } else {
55 //      consoleMessage = "run in foreground mode-" + command + ": " + executable + " " + arguments;
56 //    }
57 //    console.println(consoleMessage);
58
59     ExternalToolsUtil.execute(command, executable, arguments, background);
60   }
61
62   public void selectionChanged(IAction action, ISelection selection) {
63
64   }
65
66   public void init(IWorkbenchWindow window) {
67     this.activeWindow = window;
68   }
69
70   public void dispose() {
71
72   }
73
74 }