d4c0680b9976e4e19698f70924157cb975f7b0b9
[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
30         protected static final DebuggerRunner debuggerRunner;
31
32         static {
33                 interpreterRunner = new InterpreterRunner();
34                 debuggerRunner = new DebuggerRunner();
35         }
36
37         /**
38          * (non-Javadoc)
39          * 
40          * @see org.eclipse.debug.core.model.ILaunchConfigurationDelegate2#getLaunch(org.eclipse.debug.core.ILaunchConfiguration,
41          *      java.lang.String)
42          */
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);
48         }
49
50         /**
51          * @see ILaunchConfigurationDelegate#launch(ILaunchConfiguration, String,
52          *      ILaunch, IProgressMonitor)
53          */
54         public void launch(ILaunchConfiguration configuration, String mode,
55                         ILaunch launch, IProgressMonitor monitor) throws CoreException {
56                 if (PHPRuntime.getDefault().getSelectedInterpreter() == null) {
57                         String pid = PHPLaunchingPlugin.PLUGIN_ID;
58                         String msg = "You must define an interpreter before running PHP.";
59                         IStatus s = new Status(IStatus.ERROR, pid, IStatus.OK, msg, null);
60                         throw new CoreException(s);
61                 }
62
63                 InterpreterRunnerConfiguration conf = new InterpreterRunnerConfiguration(
64                                 configuration);
65                 ILaunchManager m = DebugPlugin.getDefault().getLaunchManager();
66                 conf.setEnvironment(m.getEnvironment(configuration));
67                 if (mode.equals("debug")) {
68                         debuggerRunner.run(conf, launch);
69                 } else {
70                         interpreterRunner.run(conf, launch);
71                 }
72         }
73 }