Merge remote-tracking branch 'joncham/sgen-msvc2'
[mono.git] / mcs / class / Microsoft.Build.Engine / Microsoft.Build.BuildEngine / PropertyReference.cs
1 //
2 // PropertyReference.cs
3 //
4 // Author:
5 //   Marek Sieradzki (marek.sieradzki@gmail.com)
6 //   Ankit Jain (jankit@novell.com)
7 // 
8 // (C) 2005 Marek Sieradzki
9 // Copyright 2009 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29
30 using System;
31 using System.Collections;
32 using System.Collections.Generic;
33 using Microsoft.Build.Framework;
34 using Microsoft.Build.Utilities;
35
36 namespace Microsoft.Build.BuildEngine {
37         internal class PropertyReference : IReference {
38                 
39                 string  name;
40                 int     start;
41                 int     length;
42                 
43                 public PropertyReference (string name, int start, int length)
44                 {
45                         this.name = name;
46                         this.start = start;
47                         this.length = length;
48                 }
49                 
50
51                 // when evaluating items: expand: true
52                 // all other times, expand: true
53                 // so, always true, ignore @options
54                 public string ConvertToString (Project project, ExpressionOptions options)
55                 {
56                         if (project == null)
57                                 throw new ArgumentNullException ("project");
58                         
59                         BuildProperty bp = project.EvaluatedProperties [name];
60                         if (bp == null)
61                                 return String.Empty;
62
63                         if (options == ExpressionOptions.DoNotExpandItemRefs)
64                                 return bp.FinalValue;
65
66                         return bp.ConvertToString (project, ExpressionOptions.ExpandItemRefs);
67                 }
68
69                 // when evaluating items: expand: true
70                 // all other times, expand: true
71                 // so, always true, ignore @options
72                 public ITaskItem[] ConvertToITaskItemArray (Project project, ExpressionOptions options)
73                 {
74                         BuildProperty bp = project.EvaluatedProperties [name];
75                         if (bp == null)
76                                 return null;
77
78                         if (options == ExpressionOptions.DoNotExpandItemRefs) {
79                                 List<ITaskItem> list = new List<ITaskItem> ();
80                                 foreach (string s in bp.FinalValue.Split (new char[] {';'}, StringSplitOptions.RemoveEmptyEntries))
81                                         list.Add (new TaskItem (s));
82                                 return list.ToArray ();
83                         }
84
85                         return bp.ConvertToITaskItemArray (project, ExpressionOptions.ExpandItemRefs);
86                 }
87                 
88                 public string Name {
89                         get { return name; }
90                 }
91
92                 public string GetValue (Project project)
93                 {
94                         BuildProperty bp = project.EvaluatedProperties [name];
95                         return bp == null ? String.Empty : bp.Value;
96                 }
97
98                 public int Start {
99                         get { return start; }
100                 }
101
102                 public int End {
103                         get { return start + length - 1; }
104                 }
105
106                 public override string ToString ()
107                 {
108                         return String.Format ("$({0})", name);
109                 }
110         }
111 }