* TaskEngine.cs (Prepare): Emit a useful error message property value
[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                 Project project;
42                 
43                 public BuildEngine (Engine engine, Project project, int column, int line,
44                                     bool continueOnError)
45                 {
46                         this.engine = engine;
47                         this.project = project;
48                         this.columnNumberOfTaskNode = column;
49                         this.continueOnError = continueOnError;
50                         this.lineNumberOfTaskNode = line;
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                         if (String.IsNullOrEmpty (projectFileName)) {
62                                 return engine.BuildProject (project, targetNames, targetOutputs,
63                                                 BuildSettings.DoNotResetPreviouslyBuiltTargets);
64                         } else {
65                                 BuildPropertyGroup bpg = new BuildPropertyGroup ();
66                                 if (globalProperties != null)
67                                         foreach (DictionaryEntry de in globalProperties)
68                                                 bpg.AddProperty (new BuildProperty (
69                                                         (string) de.Key, (string) de.Value,
70                                                         PropertyType.Global));
71                                 return engine.BuildProjectFile (projectFileName,
72                                         targetNames, bpg, targetOutputs, BuildSettings.DoNotResetPreviouslyBuiltTargets);
73                         }
74                 }
75
76                 // Raises a custom event to all registered loggers.
77                 public void LogCustomEvent (CustomBuildEventArgs e)
78                 {
79                         engine.EventSource.FireCustomEventRaised (this, e);
80                 }
81
82                 // Raises an error to all registered loggers.
83                 public void LogErrorEvent (BuildErrorEventArgs e)
84                 {
85                         engine.EventSource.FireErrorRaised (this, e);
86                 }
87
88                 // Raises a message event to all registered loggers.
89                 public void LogMessageEvent (BuildMessageEventArgs e)
90                 {
91                         engine.EventSource.FireMessageRaised (this, e);
92                 }
93
94                 // Raises a warning to all registered loggers.
95                 public void LogWarningEvent (BuildWarningEventArgs e)
96                 {
97                         engine.EventSource.FireWarningRaised (this, e);
98                 }
99
100                 public int ColumnNumberOfTaskNode {
101                         get { return columnNumberOfTaskNode; }
102                 }
103
104                 public bool ContinueOnError {
105                         get { return continueOnError; }
106                 }
107
108                 public int LineNumberOfTaskNode {
109                         get { return lineNumberOfTaskNode; }
110                 }
111
112                 public string ProjectFileOfTaskNode {
113                         get { return project.FullFileName; }
114                 }
115                 
116         }
117 }
118
119 #endif