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:
authorLluis Sanchez <lluis@novell.com>2010-03-17 15:30:51 +0300
committerLluis Sanchez <lluis@novell.com>2010-03-17 15:30:51 +0300
commit3352c438c92957c57ce5818d2b410b9d761076f5 (patch)
tree0fdce565f42e17cbc1675f014da34527b99e0fa5 /main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/RemoteProjectBuilder.cs
parentde8a39a96737efd04aabafb4cc27c546061c90f5 (diff)
parent585086f0ea0a49166046bb8f48d2def87907d0e0 (diff)
Merged MD.Projects into MD.Core, and MD.Projects.Gui, MD.Core.Gui and MD.Components into MD.Ide.
svn path=/trunk/monodevelop/; revision=153728
Diffstat (limited to 'main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/RemoteProjectBuilder.cs')
-rw-r--r--main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/RemoteProjectBuilder.cs107
1 files changed, 107 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/RemoteProjectBuilder.cs b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/RemoteProjectBuilder.cs
new file mode 100644
index 0000000000..7256f36f63
--- /dev/null
+++ b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/RemoteProjectBuilder.cs
@@ -0,0 +1,107 @@
+//
+// RemoteProjectBuilder.cs
+//
+// Author:
+// Lluis Sanchez Gual <lluis@novell.com>
+//
+// Copyright (c) 2009 Novell, Inc (http://www.novell.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.Diagnostics;
+
+namespace MonoDevelop.Projects.Formats.MSBuild
+{
+ class RemoteBuildEngine: IBuildEngine
+ {
+ IBuildEngine engine;
+ Process proc;
+
+ public int ReferenceCount { get; set; }
+ public DateTime ReleaseTime { get; set; }
+
+ public RemoteBuildEngine (Process proc, IBuildEngine engine)
+ {
+ this.proc = proc;
+ this.engine = engine;
+ }
+
+ public IProjectBuilder LoadProject (string file, string binPath)
+ {
+ return engine.LoadProject (file, binPath);
+ }
+
+ public void UnloadProject (IProjectBuilder pb)
+ {
+ engine.UnloadProject (pb);
+ }
+
+ public void Dispose ()
+ {
+ if (proc != null) {
+ try {
+ proc.Kill ();
+ } catch {
+ }
+ }
+ else
+ engine.Dispose ();
+ }
+ }
+
+ public class RemoteProjectBuilder: IDisposable
+ {
+ RemoteBuildEngine engine;
+ IProjectBuilder builder;
+
+ internal RemoteProjectBuilder (string file, string binPath, RemoteBuildEngine engine)
+ {
+ this.engine = engine;
+ builder = engine.LoadProject (file, binPath);
+ }
+
+ public MSBuildResult[] RunTarget (string target, string configuration, string platform, ILogWriter logWriter)
+ {
+ return builder.RunTarget (target, configuration, platform, logWriter);
+ }
+
+ public string[] GetAssemblyReferences (string configuration, string platform)
+ {
+ return builder.GetAssemblyReferences (configuration, platform);
+ }
+
+ public void Dispose ()
+ {
+ if (engine != null) {
+ if (builder != null)
+ engine.UnloadProject (builder);
+ MSBuildProjectService.ReleaseProjectBuilder (engine);
+ GC.SuppressFinalize (this);
+ engine = null;
+ builder = null;
+ }
+ }
+
+ ~RemoteProjectBuilder ()
+ {
+ Dispose ();
+ }
+ }
+}