Wrap always_inline and noinline attributes in compiler checks and use MSVC equivalent.
[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 #if NET_2_0
31
32 using System;
33 using System.Collections;
34 using System.Collections.Generic;
35 using Microsoft.Build.Framework;
36 using Microsoft.Build.Utilities;
37
38 namespace Microsoft.Build.BuildEngine {
39         internal class PropertyReference : IReference {
40                 
41                 string  name;
42                 int     start;
43                 int     length;
44                 
45                 public PropertyReference (string name, int start, int length)
46                 {
47                         this.name = name;
48                         this.start = start;
49                         this.length = length;
50                 }
51                 
52
53                 // when evaluating items: expand: true
54                 // all other times, expand: true
55                 // so, always true, ignore @options
56                 public string ConvertToString (Project project, ExpressionOptions options)
57                 {
58                         if (project == null)
59                                 throw new ArgumentNullException ("project");
60                         
61                         BuildProperty bp = project.EvaluatedProperties [name];
62                         if (bp == null)
63                                 return String.Empty;
64
65                         if (options == ExpressionOptions.DoNotExpandItemRefs)
66                                 return bp.FinalValue;
67
68                         return bp.ConvertToString (project, ExpressionOptions.ExpandItemRefs);
69                 }
70
71                 // when evaluating items: expand: true
72                 // all other times, expand: true
73                 // so, always true, ignore @options
74                 public ITaskItem[] ConvertToITaskItemArray (Project project, ExpressionOptions options)
75                 {
76                         BuildProperty bp = project.EvaluatedProperties [name];
77                         if (bp == null)
78                                 return null;
79
80                         if (options == ExpressionOptions.DoNotExpandItemRefs) {
81                                 List<ITaskItem> list = new List<ITaskItem> ();
82                                 foreach (string s in bp.FinalValue.Split (new char[] {';'}, StringSplitOptions.RemoveEmptyEntries))
83                                         list.Add (new TaskItem (s));
84                                 return list.ToArray ();
85                         }
86
87                         return bp.ConvertToITaskItemArray (project, ExpressionOptions.ExpandItemRefs);
88                 }
89                 
90                 public string Name {
91                         get { return name; }
92                 }
93
94                 public string GetValue (Project project)
95                 {
96                         BuildProperty bp = project.EvaluatedProperties [name];
97                         return bp == null ? String.Empty : bp.Value;
98                 }
99
100                 public int Start {
101                         get { return start; }
102                 }
103
104                 public int End {
105                         get { return start + length - 1; }
106                 }
107
108                 public override string ToString ()
109                 {
110                         return String.Format ("$({0})", name);
111                 }
112         }
113 }
114
115 #endif