Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Alberto Cortez <calberto.cortez@gmail.com>2011-11-30 18:13:28 +0400
committerAlex Corrado <alexc@xamarin.com>2011-12-01 22:39:18 +0400
commit0161c8e1add1fe1301855698b929cd11021ece9e (patch)
tree3432bfdd0e967fc8343911006971fcec23f4b040
parentef09b67d8f1023bdfb3c19b05a11a8e2f604950a (diff)
Add the missing IronPythonExecutionHandler.cs filemonodevelop-2.8.4
I'm such an idiot.
-rw-r--r--extras/PyBinding/PyBinding/PyBinding/IronPythonExecutionHandler.cs51
1 files changed, 51 insertions, 0 deletions
diff --git a/extras/PyBinding/PyBinding/PyBinding/IronPythonExecutionHandler.cs b/extras/PyBinding/PyBinding/PyBinding/IronPythonExecutionHandler.cs
new file mode 100644
index 0000000000..2d066bc59c
--- /dev/null
+++ b/extras/PyBinding/PyBinding/PyBinding/IronPythonExecutionHandler.cs
@@ -0,0 +1,51 @@
+// IronPythonExecutionHandler.cs
+//
+// Copyright (c) 2011 Carlos Alberto Cortez <calberto.cortez@gmail.com>
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+// THE SOFTWARE.
+
+using System;
+using System.IO;
+using MonoDevelop.Core;
+using MonoDevelop.Core.Execution;
+
+using PyBinding.Runtime;
+
+namespace PyBinding
+{
+ public class IronPythonExecutionHandler : IExecutionHandler
+ {
+ public bool CanExecute (ExecutionCommand command)
+ {
+ return command is PythonExecutionCommand;
+ }
+
+ public IProcessAsyncOperation Execute (ExecutionCommand command, IConsole console)
+ {
+ var config = ((PythonExecutionCommand)command).Configuration;
+ var runtime = (IronPythonRuntime)config.Runtime;
+
+ var args = runtime.GetArguments (config);
+ string dir = Path.GetFullPath (config.ParentItem.BaseDirectory);
+
+ var cmd = new DotNetExecutionCommand (runtime.Path, String.Join (" ", args), dir, config.EnvironmentVariables);
+ return cmd.TargetRuntime.GetExecutionHandler ().Execute (cmd, console);
+ }
+ }
+}