Debugger now steps through embedded PHP in HTML files.
[phpeclipse.git] / net.sourceforge.phpeclipse.launching / src / net / sourceforge / phpdt / internal / launching / PHPLaunchConfigurationDelegate.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  Vicente Fernando - www.alfersoft.com.ar
11  **********************************************************************/
12 package net.sourceforge.phpdt.internal.launching;
13
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;
25
26 public class PHPLaunchConfigurationDelegate extends LaunchConfigurationDelegate {
27         
28         protected static final InterpreterRunner interpreterRunner;
29         protected static final DebuggerRunner debuggerRunner;
30         
31         static {
32                 interpreterRunner  = new InterpreterRunner();
33                 debuggerRunner = new DebuggerRunner();
34         }
35
36         /** (non-Javadoc)
37          * @see org.eclipse.debug.core.model.ILaunchConfigurationDelegate2#getLaunch(org.eclipse.debug.core.ILaunchConfiguration, java.lang.String)
38          */
39         public ILaunch getLaunch(ILaunchConfiguration configuration, String mode) 
40         throws CoreException {
41                 return new Launch(configuration, mode, new PHPSourceLocator());
42         }
43         
44         /**
45          * @see ILaunchConfigurationDelegate#launch(ILaunchConfiguration, String, ILaunch, IProgressMonitor)
46          */
47         public void 
48         launch(ILaunchConfiguration configuration, String mode, ILaunch launch, IProgressMonitor monitor) throws CoreException {
49                 if (PHPRuntime.getDefault().getSelectedInterpreter() == null) {
50                         String pid = PHPLaunchingPlugin.PLUGIN_ID;
51                         String msg = "You must define an interpreter before running PHP.";
52                         IStatus s = new Status(IStatus.ERROR, pid, IStatus.OK, msg, null);
53                         throw new CoreException(s);
54                 }
55                 
56                 InterpreterRunnerConfiguration conf = new 
57                         InterpreterRunnerConfiguration(configuration);
58                 ILaunchManager m = DebugPlugin.getDefault().getLaunchManager();
59                 conf.setEnvironment(m.getEnvironment(configuration));
60                 if (mode.equals("debug")) {
61                         debuggerRunner.run(conf, launch);
62                 } else {
63                         interpreterRunner.run(conf, launch);
64                 }               
65         }
66 }