Merge pull request #901 from Blewzman/FixAggregateExceptionGetBaseException
[mono.git] / mcs / class / Microsoft.Build / Microsoft.Build.Evaluation / Project.cs
1 //
2 // Project.cs
3 //
4 // Author:
5 //   Leszek Ciesielski (skolima@gmail.com)
6 //   Rolf Bjarne Kvinge (rolf@xamarin.com)
7 //   Atsushi Enomoto (atsushi@xamarin.com)
8 //
9 // (C) 2011 Leszek Ciesielski
10 // Copyright (C) 2011,2013 Xamarin Inc. (http://www.xamarin.com)
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System;
33 using System.Collections.Generic;
34 using System.Diagnostics;
35 using System.IO;
36 using System.Linq;
37 using System.Text;
38 using System.Xml;
39 using Microsoft.Build.Construction;
40 using Microsoft.Build.Exceptions;
41 using Microsoft.Build.Execution;
42 using Microsoft.Build.Framework;
43 using Microsoft.Build.Internal;
44 using Microsoft.Build.Internal.Expressions;
45 using Microsoft.Build.Logging;
46 using System.Collections;
47
48 // Basically there are two semantic Project object models and their relationship is not obvious
49 // (apart from Microsoft.Build.Construction.ProjectRootElement which is a "construction rule").
50 //
51 // Microsoft.Build.Evaluation.Project holds some "editable" project model, and it supports
52 // detailed loader API (such as Items and AllEvaluatedItems).
53 // ProjectPoperty holds UnevaluatedValue and gives EvaluatedValue too.
54 //
55 // Microsoft.Build.Execution.ProjectInstance holds "snapshot" of a project, and it lacks
56 // detailed loader API. It does not give us Unevaluated property value.
57 // On the other hand, it supports Targets object model. What Microsoft.Build.Evaluation.Project
58 // offers there is actually a list of Microsoft.Build.Execution.ProjectInstance objects.
59 // It should be also noted that only ProjectInstance has Evaluate() method (Project doesn't).
60 //
61 // And both API holds different set of descendant types for each and cannot really share the
62 // loader code. That is lame.
63 //
64 // So, can either of them be used to construct the other model? Both API models share the same
65 // "governor", which is Microsoft.Build.Evaluation.ProjectCollection/ Project is added to
66 // its LoadedProjects list, while ProjectInstance isn't. Project cannot be loaded to load
67 // a ProjectInstance, at least within the same ProjectCollection.
68 //
69 // On the other hand, can ProjectInstance be used to load a Project? Maybe. Since Project and
70 // its descendants need Microsoft.Build.Construction.ProjectElement family as its API model
71 // is part of the public API. Then I still have to understand how those AllEvaluatedItems/
72 // AllEvaluatedProperties members make sense. EvaluationCounter is another propery in question.
73
74 namespace Microsoft.Build.Evaluation
75 {
76         [DebuggerDisplay ("{FullPath} EffectiveToolsVersion={ToolsVersion} #GlobalProperties="
77         + "{data.globalProperties.Count} #Properties={data.Properties.Count} #ItemTypes="
78         + "{data.ItemTypes.Count} #ItemDefinitions={data.ItemDefinitions.Count} #Items="
79         + "{data.Items.Count} #Targets={data.Targets.Count}")]
80         public class Project
81         {
82                 public Project (XmlReader xml)
83                         : this (ProjectRootElement.Create (xml))
84                 {
85                 }
86
87                 public Project (XmlReader xml, IDictionary<string, string> globalProperties,
88                                               string toolsVersion)
89                         : this (ProjectRootElement.Create (xml), globalProperties, toolsVersion)
90                 {
91                 }
92
93                 public Project (XmlReader xml, IDictionary<string, string> globalProperties,
94                                               string toolsVersion, ProjectCollection projectCollection)
95                         : this (ProjectRootElement.Create (xml), globalProperties, toolsVersion, projectCollection)
96                 {
97                 }
98
99                 public Project (XmlReader xml, IDictionary<string, string> globalProperties,
100                                               string toolsVersion, ProjectCollection projectCollection,
101                                               ProjectLoadSettings loadSettings)
102                         : this (ProjectRootElement.Create (xml), globalProperties, toolsVersion, projectCollection, loadSettings)
103                 {
104                 }
105
106                 public Project (ProjectRootElement xml) : this (xml, null, null)
107                 {
108                 }
109
110                 public Project (ProjectRootElement xml, IDictionary<string, string> globalProperties,
111                                               string toolsVersion)
112                         : this (xml, globalProperties, toolsVersion, ProjectCollection.GlobalProjectCollection)
113                 {
114                 }
115
116                 public Project (ProjectRootElement xml, IDictionary<string, string> globalProperties,
117                                               string toolsVersion, ProjectCollection projectCollection)
118                         : this (xml, globalProperties, toolsVersion, projectCollection, ProjectLoadSettings.Default)
119                 {
120                 }
121
122                 public Project (ProjectRootElement xml, IDictionary<string, string> globalProperties,
123                                               string toolsVersion, ProjectCollection projectCollection,
124                                               ProjectLoadSettings loadSettings)
125                 {
126                         if (projectCollection == null)
127                                 throw new ArgumentNullException ("projectCollection");
128                         this.Xml = xml;
129                         this.GlobalProperties = globalProperties ?? new Dictionary<string, string> ();
130                         this.ToolsVersion = toolsVersion;
131                         this.ProjectCollection = projectCollection;
132                         this.load_settings = loadSettings;
133
134                         Initialize (null);
135                 }
136                 
137                 Project (ProjectRootElement imported, Project parent)
138                 {
139                         this.Xml = imported;
140                         this.GlobalProperties = parent.GlobalProperties;
141                         this.ToolsVersion = parent.ToolsVersion;
142                         this.ProjectCollection = parent.ProjectCollection;
143                         this.load_settings = parent.load_settings;
144
145                         Initialize (parent);
146                 }
147
148                 public Project (string projectFile)
149                         : this (projectFile, null, null)
150                 {
151                 }
152
153                 public Project (string projectFile, IDictionary<string, string> globalProperties,
154                                 string toolsVersion)
155                 : this (projectFile, globalProperties, toolsVersion, ProjectCollection.GlobalProjectCollection, ProjectLoadSettings.Default)
156                 {
157                 }
158
159                 public Project (string projectFile, IDictionary<string, string> globalProperties,
160                                 string toolsVersion, ProjectCollection projectCollection)
161                 : this (projectFile, globalProperties, toolsVersion, projectCollection, ProjectLoadSettings.Default)
162                 {
163                 }
164
165                 public Project (string projectFile, IDictionary<string, string> globalProperties,
166                                 string toolsVersion, ProjectCollection projectCollection,
167                                 ProjectLoadSettings loadSettings)
168                         : this (ProjectRootElement.Create (projectFile), globalProperties, toolsVersion, projectCollection, loadSettings)
169                 {
170                 }
171
172                 ProjectLoadSettings load_settings;
173
174                 public IDictionary<string, string> GlobalProperties { get; private set; }
175
176                 public ProjectCollection ProjectCollection { get; private set; }
177
178                 public string ToolsVersion { get; private set; }
179
180                 public ProjectRootElement Xml { get; private set; }
181
182                 string dir_path;
183                 Dictionary<string, ProjectItemDefinition> item_definitions;
184                 List<ResolvedImport> raw_imports;
185                 List<ProjectItem> raw_items;
186                 List<ProjectItem> all_evaluated_items;
187                 List<ProjectProperty> properties;
188                 Dictionary<string, ProjectTargetInstance> targets;
189
190                 void Initialize (Project parent)
191                 {
192                         dir_path = Directory.GetCurrentDirectory ();
193                         raw_imports = new List<ResolvedImport> ();
194                         item_definitions = new Dictionary<string, ProjectItemDefinition> ();
195                         targets = new Dictionary<string, ProjectTargetInstance> ();
196                         raw_items = new List<ProjectItem> ();
197                         
198                         // FIXME: this is likely hack. Test ImportedProject.Properties to see what exactly should happen.
199                         if (parent != null) {
200                                 properties = parent.properties;
201                         } else {
202                                 properties = new List<ProjectProperty> ();
203                         
204                                 foreach (DictionaryEntry p in Environment.GetEnvironmentVariables ())
205                                         // FIXME: this is kind of workaround for unavoidable issue that PLATFORM=* is actually given
206                                         // on some platforms and that prevents setting default "PLATFORM=AnyCPU" property.
207                                         if (!string.Equals ("PLATFORM", (string) p.Key, StringComparison.OrdinalIgnoreCase))
208                                                 this.properties.Add (new EnvironmentProjectProperty (this, (string)p.Key, (string)p.Value));
209                                 foreach (var p in GlobalProperties)
210                                         this.properties.Add (new GlobalProjectProperty (this, p.Key, p.Value));
211                                 var tools = ProjectCollection.GetToolset (this.ToolsVersion) ?? ProjectCollection.GetToolset (this.ProjectCollection.DefaultToolsVersion);
212                                 foreach (var p in ProjectCollection.GetReservedProperties (tools, this))
213                                         this.properties.Add (p);
214                                 foreach (var p in ProjectCollection.GetWellKnownProperties (this))
215                                         this.properties.Add (p);
216                         }
217
218                         ProcessXml (parent);
219                         
220                         ProjectCollection.AddProject (this);
221                 }
222                 
223                 void ProcessXml (Project parent)
224                 {
225                         // this needs to be initialized here (regardless of that items won't be evaluated at property evaluation;
226                         // Conditions could incorrectly reference items and lack of this list causes NRE.
227                         all_evaluated_items = new List<ProjectItem> ();
228
229                         // property evaluation happens couple of times.
230                         // At first step, all non-imported properties are evaluated TOO, WHILE those properties are being evaluated.
231                         // This means, Include and IncludeGroup elements with Condition attribute MAY contain references to
232                         // properties and they will be expanded.
233                         var elements = EvaluatePropertiesAndImports (Xml.Children).ToArray (); // ToArray(): to not lazily evaluate elements.
234                         
235                         // next, evaluate items
236                         EvaluateItems (elements);
237                         
238                         // finally, evaluate targets and tasks
239                         EvaluateTargets (elements);
240                 }
241                 
242                 IEnumerable<ProjectElement> EvaluatePropertiesAndImports (IEnumerable<ProjectElement> elements)
243                 {
244                         // First step: evaluate Properties
245                         foreach (var child in elements) {
246                                 yield return child;
247                                 var pge = child as ProjectPropertyGroupElement;
248                                 if (pge != null && Evaluate (pge.Condition))
249                                         foreach (var p in pge.Properties)
250                                                 // do not allow overwriting reserved or well-known properties by user
251                                                 if (!this.properties.Any (_ => (_.IsReservedProperty || _.IsWellKnownProperty) && _.Name.Equals (p.Name, StringComparison.InvariantCultureIgnoreCase)))
252                                                         if (Evaluate (p.Condition))
253                                                                 this.properties.Add (new XmlProjectProperty (this, p, PropertyType.Normal, ProjectCollection.OngoingImports.Any ()));
254
255                                 var ige = child as ProjectImportGroupElement;
256                                 if (ige != null && Evaluate (ige.Condition)) {
257                                         foreach (var incc in ige.Imports) {
258                                                 if (Evaluate (incc.Condition))
259                                                         foreach (var e in Import (incc))
260                                                                 yield return e;
261                                         }
262                                 }
263                                 var inc = child as ProjectImportElement;
264                                 if (inc != null && Evaluate (inc.Condition))
265                                         foreach (var e in Import (inc))
266                                                 yield return e;
267                         }
268                 }
269                 
270                 internal IEnumerable<T> GetAllItems<T> (string include, string exclude, Func<string,T> creator, Func<string,ITaskItem> taskItemCreator, Func<string,bool> itemTypeCheck, Action<T,string> assignRecurse)
271                 {
272                         return ProjectCollection.GetAllItems<T> (ExpandString, include, exclude, creator, taskItemCreator, DirectoryPath, assignRecurse,
273                                 t => all_evaluated_items.Any (i => i.EvaluatedInclude == t.ItemSpec && itemTypeCheck (i.ItemType)));
274                 }
275
276                 void EvaluateItems (IEnumerable<ProjectElement> elements)
277                 {
278                         foreach (var child in elements) {
279                                 var ige = child as ProjectItemGroupElement;
280                                 if (ige != null) {
281                                         foreach (var p in ige.Items) {
282                                                 if (!Evaluate (ige.Condition) || !Evaluate (p.Condition))
283                                                         continue;
284                                                 Func<string,ProjectItem> creator = s => new ProjectItem (this, p, s);
285                                                 foreach (var item in GetAllItems<ProjectItem> (p.Include, p.Exclude, creator, s => new ProjectTaskItem (p, s), it => string.Equals (it, p.ItemType, StringComparison.OrdinalIgnoreCase), (t, s) => t.RecursiveDir = s)) {
286                                                         raw_items.Add (item);
287                                                         all_evaluated_items.Add (item);
288                                                 }
289                                         }
290                                 }
291                                 var def = child as ProjectItemDefinitionGroupElement;
292                                 if (def != null) {
293                                         foreach (var p in def.ItemDefinitions) {
294                                                 if (Evaluate (p.Condition)) {
295                                                         ProjectItemDefinition existing;
296                                                         if (!item_definitions.TryGetValue (p.ItemType, out existing))
297                                                                 item_definitions.Add (p.ItemType, (existing = new ProjectItemDefinition (this, p.ItemType)));
298                                                         existing.AddItems (p);
299                                                 }
300                                         }
301                                 }
302                         }
303                         all_evaluated_items.Sort ((p1, p2) => string.Compare (p1.ItemType, p2.ItemType, StringComparison.OrdinalIgnoreCase));
304                 }
305                 
306                 void EvaluateTargets (IEnumerable<ProjectElement> elements)
307                 {
308                         foreach (var child in elements) {
309                                 var te = child as ProjectTargetElement;
310                                 if (te != null)
311                                         this.targets.Add (te.Name, new ProjectTargetInstance (te));
312                         }
313                 }
314                 
315                 IEnumerable<ProjectElement> Import (ProjectImportElement import)
316                 {
317                         string dir = ProjectCollection.GetEvaluationTimeThisFileDirectory (() => FullPath);
318                         string path = WindowsCompatibilityExtensions.NormalizeFilePath (ExpandString (import.Project));
319                         path = Path.IsPathRooted (path) ? path : dir != null ? Path.Combine (dir, path) : Path.GetFullPath (path);
320                         if (ProjectCollection.OngoingImports.Contains (path)) {
321                                 switch (load_settings) {
322                                 case ProjectLoadSettings.RejectCircularImports:
323                                         throw new InvalidProjectFileException (import.Location, null, string.Format ("Circular imports was detected: {0} (resolved as \"{1}\") is already on \"importing\" stack", import.Project, path));
324                                 }
325                                 return new ProjectElement [0]; // do not import circular references
326                         }
327                         ProjectCollection.OngoingImports.Push (path);
328                         try {
329                                 using (var reader = XmlReader.Create (path)) {
330                                         var root = ProjectRootElement.Create (reader, ProjectCollection);
331                                         raw_imports.Add (new ResolvedImport (import, root, true));
332                                         return this.EvaluatePropertiesAndImports (root.Children).ToArray ();
333                                 }
334                         } finally {
335                                 ProjectCollection.OngoingImports.Pop ();
336                         }
337                 }
338
339                 public ICollection<ProjectItem> GetItemsIgnoringCondition (string itemType)
340                 {
341                         return new CollectionFromEnumerable<ProjectItem> (raw_items.Where (p => p.ItemType.Equals (itemType, StringComparison.OrdinalIgnoreCase)));
342                 }
343
344                 public void RemoveItems (IEnumerable<ProjectItem> items)
345                 {
346                         var removal = new List<ProjectItem> (items);
347                         foreach (var item in removal) {
348                                 var parent = item.Xml.Parent;
349                                 parent.RemoveChild (item.Xml);
350                                 if (parent.Count == 0)
351                                         parent.Parent.RemoveChild (parent);
352                         }
353                 }
354
355                 static readonly Dictionary<string, string> empty_metadata = new Dictionary<string, string> ();
356
357                 public IList<ProjectItem> AddItem (string itemType, string unevaluatedInclude)
358                 {
359                         return AddItem (itemType, unevaluatedInclude, empty_metadata);
360                 }
361
362                 public IList<ProjectItem> AddItem (string itemType, string unevaluatedInclude,
363                                 IEnumerable<KeyValuePair<string, string>> metadata)
364                 {
365                         // FIXME: needs several check that AddItemFast() does not process (see MSDN for details).
366
367                         return AddItemFast (itemType, unevaluatedInclude, metadata);
368                 }
369
370                 public IList<ProjectItem> AddItemFast (string itemType, string unevaluatedInclude)
371                 {
372                         return AddItemFast (itemType, unevaluatedInclude, empty_metadata);
373                 }
374
375                 public IList<ProjectItem> AddItemFast (string itemType, string unevaluatedInclude,
376                                                                      IEnumerable<KeyValuePair<string, string>> metadata)
377                 {
378                         throw new NotImplementedException ();
379                 }
380                 
381                 static readonly char [] target_sep = new char[] {';'};
382
383                 public bool Build ()
384                 {
385                         return Build (Xml.DefaultTargets.Split (target_sep, StringSplitOptions.RemoveEmptyEntries));
386                 }
387
388                 public bool Build (IEnumerable<ILogger> loggers)
389                 {
390                         return Build (Xml.DefaultTargets.Split (target_sep, StringSplitOptions.RemoveEmptyEntries), loggers);
391                 }
392
393                 public bool Build (string target)
394                 {
395                         return string.IsNullOrWhiteSpace (target) ? Build () : Build (new string [] {target});
396                 }
397
398                 public bool Build (string[] targets)
399                 {
400                         return Build (targets, new ILogger [0]);
401                 }
402
403                 public bool Build (ILogger logger)
404                 {
405                         return Build (Xml.DefaultTargets.Split (target_sep, StringSplitOptions.RemoveEmptyEntries), new ILogger [] {logger});
406                 }
407
408                 public bool Build (string[] targets, IEnumerable<ILogger> loggers)
409                 {
410                         return Build (targets, loggers, new ForwardingLoggerRecord [0]);
411                 }
412
413                 public bool Build (IEnumerable<ILogger> loggers, IEnumerable<ForwardingLoggerRecord> remoteLoggers)
414                 {
415                         return Build (Xml.DefaultTargets.Split (target_sep, StringSplitOptions.RemoveEmptyEntries), loggers, remoteLoggers);
416                 }
417
418                 public bool Build (string target, IEnumerable<ILogger> loggers)
419                 {
420                         return Build (new string [] { target }, loggers);
421                 }
422
423                 public bool Build (string[] targets, IEnumerable<ILogger> loggers, IEnumerable<ForwardingLoggerRecord> remoteLoggers)
424                 {
425                         // Unlike ProjectInstance.Build(), there is no place to fill outputs by targets, so ignore them
426                         // (i.e. we don't use the overload with output).
427                         //
428                         // This does not check FullPath, so don't call GetProjectInstanceForBuild() directly.
429                         return new BuildManager ().GetProjectInstanceForBuildInternal (this).Build (targets, loggers, remoteLoggers);
430                 }
431
432                 public bool Build (string target, IEnumerable<ILogger> loggers, IEnumerable<ForwardingLoggerRecord> remoteLoggers)
433                 {
434                         return Build (new string [] { target }, loggers, remoteLoggers);
435                 }
436
437                 public ProjectInstance CreateProjectInstance ()
438                 {
439                         var ret = new ProjectInstance (Xml, GlobalProperties, ToolsVersion, ProjectCollection);
440                         // FIXME: maybe fill other properties to the result.
441                         return ret;
442                 }
443                 
444                 bool Evaluate (string unexpandedValue)
445                 {
446                         return string.IsNullOrWhiteSpace (unexpandedValue) || new ExpressionEvaluator (this, null).EvaluateAsBoolean (unexpandedValue);
447                 }
448
449                 public string ExpandString (string unexpandedValue)
450                 {
451                         return ExpandString (unexpandedValue, null);
452                 }
453                 
454                 string ExpandString (string unexpandedValue, string replacementForMissingStuff)
455                 {
456                         return new ExpressionEvaluator (this, replacementForMissingStuff).Evaluate (unexpandedValue);
457                 }
458
459                 public static string GetEvaluatedItemIncludeEscaped (ProjectItem item)
460                 {
461                         return ProjectCollection.Escape (item.EvaluatedInclude);
462                 }
463
464                 public static string GetEvaluatedItemIncludeEscaped (ProjectItemDefinition item)
465                 {
466                         // ?? ItemDefinition does not have Include attribute. What's the point here?
467                         throw new NotImplementedException ();
468                 }
469
470                 public ICollection<ProjectItem> GetItems (string itemType)
471                 {
472                         return new CollectionFromEnumerable<ProjectItem> (Items.Where (p => p.ItemType.Equals (itemType, StringComparison.OrdinalIgnoreCase)));
473                 }
474
475                 public ICollection<ProjectItem> GetItemsByEvaluatedInclude (string evaluatedInclude)
476                 {
477                         return new CollectionFromEnumerable<ProjectItem> (Items.Where (p => p.EvaluatedInclude.Equals (evaluatedInclude, StringComparison.OrdinalIgnoreCase)));
478                 }
479
480                 public IEnumerable<ProjectElement> GetLogicalProject ()
481                 {
482                         throw new NotImplementedException ();
483                 }
484
485                 public static string GetMetadataValueEscaped (ProjectMetadata metadatum)
486                 {
487                         return ProjectCollection.Escape (metadatum.EvaluatedValue);
488                 }
489
490                 public static string GetMetadataValueEscaped (ProjectItem item, string name)
491                 {
492                         var md = item.Metadata.FirstOrDefault (m => m.Name.Equals (name, StringComparison.OrdinalIgnoreCase));
493                         return md != null ? ProjectCollection.Escape (md.EvaluatedValue) : null;
494                 }
495
496                 public static string GetMetadataValueEscaped (ProjectItemDefinition item, string name)
497                 {
498                         var md = item.Metadata.FirstOrDefault (m => m.Name.Equals (name, StringComparison.OrdinalIgnoreCase));
499                         return md != null ? ProjectCollection.Escape (md.EvaluatedValue) : null;
500                 }
501
502                 public string GetPropertyValue (string name)
503                 {
504                         var prop = GetProperty (name);
505                         return prop != null ? prop.EvaluatedValue : string.Empty;
506                 }
507
508                 public static string GetPropertyValueEscaped (ProjectProperty property)
509                 {
510                         // WTF happens here.
511                         //return ProjectCollection.Escape (property.EvaluatedValue);
512                         return property.EvaluatedValue;
513                 }
514
515                 public ProjectProperty GetProperty (string name)
516                 {
517                         return properties.FirstOrDefault (p => p.Name.Equals (name, StringComparison.OrdinalIgnoreCase));
518                 }
519
520                 public void MarkDirty ()
521                 {
522                         if (!DisableMarkDirty)
523                                 is_dirty = true;
524                 }
525
526                 public void ReevaluateIfNecessary ()
527                 {
528                         throw new NotImplementedException ();
529                 }
530
531                 public bool RemoveGlobalProperty (string name)
532                 {
533                         throw new NotImplementedException ();
534                 }
535
536                 public bool RemoveItem (ProjectItem item)
537                 {
538                         throw new NotImplementedException ();
539                 }
540
541                 public bool RemoveProperty (ProjectProperty property)
542                 {
543                         var removed = properties.FirstOrDefault (p => p.Name.Equals (property.Name, StringComparison.OrdinalIgnoreCase));
544                         if (removed == null)
545                                 return false;
546                         properties.Remove (removed);
547                         return true;
548                 }
549
550                 public void Save ()
551                 {
552                         Xml.Save ();
553                 }
554
555                 public void Save (TextWriter writer)
556                 {
557                         Xml.Save (writer);
558                 }
559
560                 public void Save (string path)
561                 {
562                         Save (path, Encoding.Default);
563                 }
564
565                 public void Save (Encoding encoding)
566                 {
567                         Save (FullPath, encoding);
568                 }
569
570                 public void Save (string path, Encoding encoding)
571                 {
572                         using (var writer = new StreamWriter (path, false, encoding))
573                                 Save (writer);
574                 }
575
576                 public void SaveLogicalProject (TextWriter writer)
577                 {
578                         throw new NotImplementedException ();
579                 }
580
581                 public bool SetGlobalProperty (string name, string escapedValue)
582                 {
583                         throw new NotImplementedException ();
584                 }
585
586                 public ProjectProperty SetProperty (string name, string unevaluatedValue)
587                 {
588                         var p = new ManuallyAddedProjectProperty (this, name, unevaluatedValue);
589                         properties.Add (p);
590                         return p;
591                 }
592
593                 public ICollection<ProjectMetadata> AllEvaluatedItemDefinitionMetadata {
594                         get { throw new NotImplementedException (); }
595                 }
596
597                 public ICollection<ProjectItem> AllEvaluatedItems {
598                         get { return all_evaluated_items; }
599                 }
600
601                 public ICollection<ProjectProperty> AllEvaluatedProperties {
602                         get { return properties; }
603                 }
604
605                 public IDictionary<string, List<string>> ConditionedProperties {
606                         get {
607                                 // this property returns different instances every time.
608                                 var dic = new Dictionary<string, List<string>> ();
609                                 
610                                 // but I dunno HOW this evaluates
611                                 
612                                 throw new NotImplementedException ();
613                         }
614                 }
615
616                 public string DirectoryPath {
617                         get { return dir_path; }
618                 }
619
620                 public bool DisableMarkDirty { get; set; }
621
622                 public int EvaluationCounter {
623                         get { throw new NotImplementedException (); }
624                 }
625
626                 public string FullPath {
627                         get { return Xml.FullPath; }
628                         set { Xml.FullPath = value; }
629                 }
630                 
631                 class ResolvedImportComparer : IEqualityComparer<ResolvedImport>
632                 {
633                         public static ResolvedImportComparer Instance = new ResolvedImportComparer ();
634                         
635                         public bool Equals (ResolvedImport x, ResolvedImport y)
636                         {
637                                 return x.ImportedProject.FullPath.Equals (y.ImportedProject.FullPath);
638                         }
639                         public int GetHashCode (ResolvedImport obj)
640                         {
641                                 return obj.ImportedProject.FullPath.GetHashCode ();
642                         }
643                 }
644
645                 public IList<ResolvedImport> Imports {
646                         get { return raw_imports.Distinct (ResolvedImportComparer.Instance).ToList (); }
647                 }
648
649                 public IList<ResolvedImport> ImportsIncludingDuplicates {
650                         get { return raw_imports; }
651                 }
652
653                 public bool IsBuildEnabled {
654                         get { return ProjectCollection.IsBuildEnabled; }
655                 }
656
657                 bool is_dirty;
658                 public bool IsDirty {
659                         get { return is_dirty; }
660                 }
661
662                 public IDictionary<string, ProjectItemDefinition> ItemDefinitions {
663                         get { return item_definitions; }
664                 }
665
666                 [MonoTODO ("should be different from AllEvaluatedItems")]
667                 public ICollection<ProjectItem> Items {
668                         get { return AllEvaluatedItems; }
669                 }
670
671                 public ICollection<ProjectItem> ItemsIgnoringCondition {
672                         get { return raw_items; }
673                 }
674
675                 public ICollection<string> ItemTypes {
676                         get { return new CollectionFromEnumerable<string> (raw_items.Select (i => i.ItemType).Distinct ()); }
677                 }
678
679                 [MonoTODO ("should be different from AllEvaluatedProperties")]
680                 public ICollection<ProjectProperty> Properties {
681                         get { return AllEvaluatedProperties; }
682                 }
683
684                 public bool SkipEvaluation { get; set; }
685
686                 #if NET_4_5
687                 public
688                 #else
689                 internal
690                 #endif
691                 IDictionary<string, ProjectTargetInstance> Targets {
692                         get { return targets; }
693                 }
694                 
695                 // These are required for reserved property, represents dynamically changing property values.
696                 // This should resolve to either the project file path or that of the imported file.
697                 internal string GetEvaluationTimeThisFileDirectory ()
698                 {
699                         var file = GetEvaluationTimeThisFile ();
700                         var dir = Path.IsPathRooted (file) ? Path.GetDirectoryName (file) : Directory.GetCurrentDirectory ();
701                         return dir + Path.DirectorySeparatorChar;
702                 }
703
704                 internal string GetEvaluationTimeThisFile ()
705                 {
706                         return ProjectCollection.OngoingImports.Count > 0 ? ProjectCollection.OngoingImports.Peek () : FullPath ?? string.Empty;
707                 }
708                 
709                 internal string GetFullPath (string pathRelativeToProject)
710                 {
711                         if (Path.IsPathRooted (pathRelativeToProject))
712                                 return pathRelativeToProject;
713                         return Path.GetFullPath (Path.Combine (DirectoryPath, pathRelativeToProject));
714                 }
715         }
716 }