/** * Copyright (c) 2005-2011 by Appcelerator, Inc. All Rights Reserved. * Licensed under the terms of the Eclipse Public License (EPL). * Please see the license.txt included with this distribution for details. * Any modifications to this file must keep this entire header intact. */ /* * @author Fabio Zadrozny */ package org.python.pydev.editor.codecompletion.shell; import java.io.File; import java.io.IOException; import org.eclipse.core.runtime.CoreException; import org.python.pydev.core.IInterpreterInfo; import org.python.pydev.core.IInterpreterManager; import org.python.pydev.core.log.Log; import org.python.pydev.plugin.PydevPlugin; import org.python.pydev.runners.SimpleIronpythonRunner; import org.python.pydev.runners.SimpleRunner; import com.aptana.shared_core.io.FileUtils; /** * @author Fabio Zadrozny */ public class IronpythonShell extends AbstractShell { /** * Initialize with the default python server file. * * @throws IOException * @throws CoreException */ public IronpythonShell() throws IOException, CoreException { super(PydevPlugin.getScriptWithinPySrc("pycompletionserver.py")); } @Override protected synchronized ProcessCreationInfo createServerProcess(IInterpreterInfo interpreter, int pWrite, int pRead) throws IOException { File file = new File(interpreter.getExecutableOrJar()); if (file.exists() == false) { throw new RuntimeException("The interpreter location found does not exist. " + interpreter); } if (file.isDirectory() == true) { throw new RuntimeException("The interpreter location found is a directory. " + interpreter); } String[] parameters = SimpleIronpythonRunner.preparePythonCallParameters(interpreter.getExecutableOrJar(), FileUtils.getFileAbsolutePath(serverFile), new String[] { String.valueOf(pWrite), String.valueOf(pRead) }, true); IInterpreterManager manager = PydevPlugin.getIronpythonInterpreterManager(); String[] envp = null; try { envp = SimpleRunner.getEnvironment(null, interpreter, manager); } catch (CoreException e) { Log.log(e); } File workingDir = serverFile.getParentFile(); process = SimpleIronpythonRunner.createProcess(parameters, envp, workingDir); return new ProcessCreationInfo(parameters, envp, workingDir, process); } }