Update mcs/class/Commons.Xml.Relaxng/Commons.Xml.Relaxng/RelaxngPattern.cs
[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 : IBuildEngine2 {
36         
37                 Engine  engine;
38                 int     columnNumberOfTaskNode;
39                 bool    continueOnError;
40                 int     lineNumberOfTaskNode;
41                 Project project;
42                 string taskfile;
43                 
44                 public BuildEngine (Engine engine, Project project, string taskfile, int column, int line,
45                                     bool continueOnError)
46                 {
47                         this.engine = engine;
48                         this.project = project;
49                         this.columnNumberOfTaskNode = column;
50                         this.continueOnError = continueOnError;
51                         this.lineNumberOfTaskNode = line;
52                         this.taskfile = taskfile;
53                 }
54         
55                 // Initiates a build of a project file. If the build is
56                 // successful, the outputs (if any) of the specified targets
57                 // are returned.
58                 public bool BuildProjectFile (string projectFileName,
59                                        string[] targetNames,
60                                        IDictionary globalProperties,
61                                        IDictionary targetOutputs)
62                 {
63                         return BuildProjectFile (projectFileName, targetNames, globalProperties, targetOutputs, null);
64                 }
65
66                 public bool BuildProjectFile (string projectFileName,
67                                        string[] targetNames,
68                                        IDictionary globalProperties,
69                                        IDictionary targetOutputs, string toolsVersion)
70                 {
71                         if (String.IsNullOrEmpty (projectFileName)) {
72                                 string oldProjectToolsVersion = project.ToolsVersion;
73                                 project.ToolsVersion = toolsVersion;
74                                 try {
75                                         return engine.BuildProject (project, targetNames, targetOutputs,
76                                                 BuildSettings.DoNotResetPreviouslyBuiltTargets);
77                                 } finally {
78                                         project.ToolsVersion = oldProjectToolsVersion;
79                                 }
80                         } else {
81                                 BuildPropertyGroup bpg = new BuildPropertyGroup ();
82                                 if (globalProperties != null)
83                                         foreach (DictionaryEntry de in globalProperties)
84                                                 bpg.AddProperty (new BuildProperty (
85                                                         (string) de.Key, (string) de.Value,
86                                                         PropertyType.Global));
87                                 return engine.BuildProjectFile (projectFileName,
88                                         targetNames, bpg, targetOutputs, BuildSettings.DoNotResetPreviouslyBuiltTargets, toolsVersion);
89                         }
90                 }
91
92                 public bool BuildProjectFilesInParallel (string[] projectFileNames,
93                                         string [] targetNames,
94                                         IDictionary[] globalProperties,
95                                         IDictionary[] targetOutputsPerProject,
96                                         string[] toolsVersion,
97                                         bool useResultsCache,
98                                         bool unloadProjectsOnCompletion)
99                 {
100                         throw new NotImplementedException ();
101                 }
102
103                 // Raises a custom event to all registered loggers.
104                 public void LogCustomEvent (CustomBuildEventArgs e)
105                 {
106                         engine.EventSource.FireCustomEventRaised (this, e);
107                 }
108
109                 // Raises an error to all registered loggers.
110                 public void LogErrorEvent (BuildErrorEventArgs e)
111                 {
112                         if (ContinueOnError) {
113                                 // log the error as a warning
114                                 LogWarningEvent (new BuildWarningEventArgs (
115                                         e.Subcategory, e.Code, e.File, e.LineNumber, e.ColumnNumber,
116                                         e.EndLineNumber, e.EndColumnNumber, e.Message,
117                                         e.HelpKeyword, e.SenderName));
118
119                                 LogMessageEvent (new BuildMessageEventArgs (
120                                                         "Previous error was converted to a warning as the " +
121                                                         "task was called with ContinueOnError=true.",
122                                                         null, null, MessageImportance.Normal));
123
124                         } else {
125                                 engine.EventSource.FireErrorRaised (this, e);
126                         }
127                 }
128
129                 // Raises a message event to all registered loggers.
130                 public void LogMessageEvent (BuildMessageEventArgs e)
131                 {
132                         engine.EventSource.FireMessageRaised (this, e);
133                 }
134
135                 // Raises a warning to all registered loggers.
136                 public void LogWarningEvent (BuildWarningEventArgs e)
137                 {
138                         engine.EventSource.FireWarningRaised (this, e);
139                 }
140
141                 public int ColumnNumberOfTaskNode {
142                         get { return columnNumberOfTaskNode; }
143                 }
144
145                 public bool ContinueOnError {
146                         get { return continueOnError; }
147                 }
148
149                 public int LineNumberOfTaskNode {
150                         get { return lineNumberOfTaskNode; }
151                 }
152
153                 public string ProjectFileOfTaskNode {
154                         get { return taskfile; }
155                 }
156
157                 public bool IsRunningMultipleNodes {
158                         get { return false; }
159                 }
160                 
161         }
162 }
163
164 #endif