* TaskEngine.cs (Prepare): Emit a useful error message property value
[mono.git] / mcs / class / Microsoft.Build.Engine / Microsoft.Build.BuildEngine / UsingTask.cs
1 //
2 // UsingTask.cs: Represents a single UsingTask element in an MSBuild project.
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.IO;
32 using System.Xml;
33 using Mono.XBuild.Framework;
34
35 namespace Microsoft.Build.BuildEngine {
36         public class UsingTask {
37         
38                 ImportedProject importedProject;
39                 Project         project;
40                 XmlElement      usingTaskElement;
41
42                 internal UsingTask (XmlElement usingTaskElement, Project project, ImportedProject importedProject)
43                 {
44                         this.project = project;
45                         this.importedProject = importedProject;
46                         this.usingTaskElement = usingTaskElement;
47                         
48                         if (project == null)
49                                 throw new ArgumentNullException ("project");
50                         if (usingTaskElement == null)
51                                 throw new ArgumentNullException ("usingTaskElement");
52                         if (AssemblyName != null && AssemblyFile != null)
53                                 throw new InvalidProjectFileException ("A <UsingTask> element must contain either the \"AssemblyName\" attribute or the \"AssemblyFile\" attribute (but not both).  ");
54                         if (TaskName == String.Empty)
55                                 throw new InvalidProjectFileException ("The required attribute \"TaskName\" is missing from element <UsingTask>.  ");
56                 }
57
58                 internal void Evaluate ()
59                 {
60                         if (AssemblyName == null && AssemblyFile == null)
61                                 throw new InvalidProjectFileException ("A <UsingTask> element must contain either the \"AssemblyName\" attribute or the \"AssemblyFile\" attribute (but not both).  ");
62
63                         if (ConditionParser.ParseAndEvaluate (Condition, project))
64                                 project.TaskDatabase.RegisterUsingTask (this);
65                 }
66
67                 internal void Load (TaskDatabase db)
68                 {
69                         AssemblyLoadInfo loadInfo = null;
70
71                         if (AssemblyName != null) {
72                                 loadInfo = new AssemblyLoadInfo (AssemblyName, TaskName);
73                         } else if (AssemblyFile != null) {
74                                 Expression exp = new Expression ();
75                                 // FIXME: test it
76                                 exp.Parse (AssemblyFile, false);
77                                 string filename = (string) exp.ConvertTo (project, typeof (string));
78
79                                 if (Path.IsPathRooted (filename) == false) {
80                                         string ffn;
81                                         if (importedProject != null) {
82                                                 ffn = Path.GetDirectoryName (importedProject.FullFileName);
83                                         } else if (project.FullFileName != String.Empty) {
84                                                 ffn = Path.GetDirectoryName (project.FullFileName);
85                                         } else {
86                                                 ffn = Environment.CurrentDirectory;
87                                         }
88                                         filename = Path.Combine (ffn, filename);
89                                 }
90                                 loadInfo = new AssemblyLoadInfo (LoadInfoType.AssemblyFilename, filename, null, null, null, null, TaskName);
91                         }
92
93                         db.RegisterTask (TaskName, loadInfo);
94                 }
95
96                 public bool IsImported {
97                         get { return importedProject != null; }
98                 }
99                 
100                 public string AssemblyFile {
101                         get {
102                                 string assemblyFile = usingTaskElement.GetAttribute ("AssemblyFile");
103                                 return (assemblyFile == String.Empty) ? null : assemblyFile;
104                         }
105                 }
106                 
107                 public string AssemblyName {
108                         get {
109                                 string assemblyName = usingTaskElement.GetAttribute ("AssemblyName");
110                                 return (assemblyName == String.Empty) ? null : assemblyName;
111                         }
112                 }
113                 
114                 public string Condition {
115                         get {
116                                 string condition = usingTaskElement.GetAttribute ("Condition");
117                                 return (condition == String.Empty) ? null : condition;
118                         }
119                 }
120                 
121                 public string TaskName {
122                         get { return usingTaskElement.GetAttribute ("TaskName"); }
123                 }
124         }
125 }
126
127 #endif