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 Vicente Fernando - www.alfersoft.com.ar
11 **********************************************************************/
12 package net.sourceforge.phpdt.internal.launching;
14 import org.eclipse.core.runtime.CoreException;
15 import org.eclipse.core.runtime.IProgressMonitor;
16 import org.eclipse.core.runtime.IStatus;
17 import org.eclipse.core.runtime.Status;
18 import org.eclipse.debug.core.DebugPlugin;
19 import org.eclipse.debug.core.ILaunch;
20 import org.eclipse.debug.core.ILaunchConfiguration;
21 import org.eclipse.debug.core.ILaunchManager;
22 import org.eclipse.debug.core.Launch;
23 import org.eclipse.debug.core.model.ILaunchConfigurationDelegate;
24 import org.eclipse.debug.core.model.LaunchConfigurationDelegate;
26 public class PHPLaunchConfigurationDelegate extends LaunchConfigurationDelegate {
28 protected static final InterpreterRunner interpreterRunner;
30 protected static final DebuggerRunner debuggerRunner;
33 interpreterRunner = new InterpreterRunner();
34 debuggerRunner = new DebuggerRunner();
40 * @see org.eclipse.debug.core.model.ILaunchConfigurationDelegate2#getLaunch(org.eclipse.debug.core.ILaunchConfiguration,
43 public ILaunch getLaunch(ILaunchConfiguration configuration, String mode)
44 throws CoreException {
45 PHPSourceLocator locator = new PHPSourceLocator();
46 locator.initializeDefaults(configuration);
47 return new Launch(configuration, mode, locator);
51 * @see ILaunchConfigurationDelegate#launch(ILaunchConfiguration, String,
52 * ILaunch, IProgressMonitor)
54 public void launch(ILaunchConfiguration configuration, String mode,
55 ILaunch launch, IProgressMonitor monitor) throws CoreException {
56 //if (PHPRuntime.getDefault().getSelectedInterpreter() == null) {
57 if (configuration.getAttribute(
58 PHPLaunchConfigurationAttribute.SELECTED_INTERPRETER, "")
60 if (!configuration.getAttribute(
61 PHPLaunchConfigurationAttribute.REMOTE_DEBUG, false)
62 && mode.equals("debug") || mode.equals("run")) {
63 String pid = PHPLaunchingPlugin.PLUGIN_ID;
64 String msg = "You must define an interpreter before running PHP.";
65 IStatus s = new Status(IStatus.ERROR, pid, IStatus.OK, msg,
67 throw new CoreException(s);
71 InterpreterRunnerConfiguration conf = new InterpreterRunnerConfiguration(
73 ILaunchManager m = DebugPlugin.getDefault().getLaunchManager();
74 conf.setEnvironment(m.getEnvironment(configuration));
75 if (mode.equals("debug")) {
76 debuggerRunner.run(conf, launch);
78 interpreterRunner.run(conf, launch);