2007-01-09 Marek Sieradzki <marek.sieradzki@gmail.com>
[mono.git] / mcs / class / Microsoft.Build.Engine / Microsoft.Build.BuildEngine / BuildEngine.cs
1 //
2 // BuildEngine.cs: Class that can be accessed by task.
3 //
4 // Author:
5 //   Marek Sieradzki (marek.sieradzki@gmail.com)
6 // 
7 // (C) 2005 Marek Sieradzki
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
28 #if NET_2_0
29
30 using System;
31 using System.Collections;
32 using Microsoft.Build.Framework;
33
34 namespace Microsoft.Build.BuildEngine {
35         internal class BuildEngine : IBuildEngine {
36         
37                 Engine  engine;
38                 int     columnNumberOfTaskNode;
39                 bool    continueOnError;
40                 int     lineNumberOfTaskNode;
41                 string  projectFileOfTaskNode;
42                 
43                 public BuildEngine (Engine engine, int column, int line,
44                                     bool continueOnError, string projectFile)
45                 {
46                         this.engine = engine;
47                         this.columnNumberOfTaskNode = column;
48                         this.continueOnError = continueOnError;
49                         this.lineNumberOfTaskNode = line;
50                         this.projectFileOfTaskNode = projectFile;
51                 }
52         
53                 // Initiates a build of a project file. If the build is
54                 // successful, the outputs (if any) of the specified targets
55                 // are returned.
56                 public bool BuildProjectFile (string projectFileName,
57                                        string[] targetNames,
58                                        IDictionary globalProperties,
59                                        IDictionary targetOutputs)
60                 {
61                         BuildPropertyGroup bpg = new BuildPropertyGroup ();
62                         foreach (DictionaryEntry de in globalProperties)
63                                 bpg.AddNewProperty ((string) de.Key, (string) de.Value);
64                         return engine.BuildProjectFile (projectFileName,
65                                 targetNames, bpg, targetOutputs);
66                 }
67
68                 // Raises a custom event to all registered loggers.
69                 public void LogCustomEvent (CustomBuildEventArgs e)
70                 {
71                         engine.EventSource.FireCustomEventRaised (this, e);
72                 }
73
74                 // Raises an error to all registered loggers.
75                 public void LogErrorEvent (BuildErrorEventArgs e)
76                 {
77                         engine.EventSource.FireErrorRaised (this, e);
78                 }
79
80                 // Raises a message event to all registered loggers.
81                 public void LogMessageEvent (BuildMessageEventArgs e)
82                 {
83                         engine.EventSource.FireMessageRaised (this, e);
84                 }
85
86                 // Raises a warning to all registered loggers.
87                 public void LogWarningEvent (BuildWarningEventArgs e)
88                 {
89                         engine.EventSource.FireWarningRaised (this, e);
90                 }
91
92                 public int ColumnNumberOfTaskNode {
93                         get { return columnNumberOfTaskNode; }
94                 }
95
96                 public bool ContinueOnError {
97                         get { return continueOnError; }
98                 }
99
100                 public int LineNumberOfTaskNode {
101                         get { return lineNumberOfTaskNode; }
102                 }
103
104                 public string ProjectFileOfTaskNode {
105                         get { return projectFileOfTaskNode; }
106                 }
107                 
108         }
109 }
110
111 #endif