merge -r 60439:60440
[mono.git] / mcs / class / Microsoft.Build.Utilities / Mono.XBuild.Utilities / ReservedNameUtils.cs
1 //
2 // ReservedNameUtils.cs
3 //
4 // Author:
5 //   Marek Sieradzki (marek.sieradzki@gmail.com)
6 //
7 // (C) 2006 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 System.Collections.Specialized;
33 using System.IO;
34
35 namespace Mono.XBuild.Utilities {
36
37         internal static class ReservedNameUtils {
38         
39                 static string[] reservedMetadataNames;
40                 static Hashtable reservedMetadataHash;
41         
42                 static ReservedNameUtils ()
43                 {
44                         reservedMetadataNames = new string [] {
45                                 "FullPath", "RootDir", "Filename", "Extension", "RelativeDir", "Directory",
46                                 "RecursiveDir", "Identity", "ModifiedTime", "CreatedTime", "AccessedTime"};
47                         reservedMetadataHash = CollectionsUtil.CreateCaseInsensitiveHashtable (ReservedMetadataNameCount);
48                         foreach (string s in reservedMetadataNames) {
49                                 reservedMetadataHash.Add (s, null);
50                         }
51                 }
52                 
53                 public static ICollection ReservedMetadataNames {
54                         get {
55                                 return (ICollection) reservedMetadataNames.Clone ();
56                         }
57                 }
58
59                 public static int ReservedMetadataNameCount {
60                         get {
61                                 return reservedMetadataNames.Length;
62                         }
63                 }
64
65                 public static bool IsReservedMetadataName (string metadataName)
66                 {
67                         return reservedMetadataHash.Contains (metadataName.ToLower ());
68                 }
69                 
70                 public static string GetReservedMetadata (string itemSpec,
71                                                    string metadataName)
72                 {
73                         switch (metadataName.ToLower ()) {
74                         case "fullpath":
75                                 return Path.GetFullPath (itemSpec);
76                         case "rootdir":
77                                 return Path.GetPathRoot (itemSpec);
78                         case "filename":
79                                 return Path.GetFileNameWithoutExtension (itemSpec);
80                         case "extension":
81                                 return Path.GetExtension (itemSpec);
82                         case "relativedir":
83                                 return Path.GetDirectoryName (itemSpec);
84                         case "directory":
85                                 return Path.GetDirectoryName (Path.GetFullPath (itemSpec));
86                         case "recursivedir":
87                                 // FIXME: how to handle this?
88                                 return "";
89                         case "identity":
90                                 return Path.Combine (Path.GetDirectoryName (itemSpec), Path.GetFileName (itemSpec));
91                         case "modifiedtime":
92                                 if (File.Exists (itemSpec))
93                                         return File.GetLastWriteTime (itemSpec).ToString ();
94                                 else if (Directory.Exists (itemSpec))
95                                         return Directory.GetLastWriteTime (itemSpec).ToString ();
96                                 else
97                                         return String.Empty;
98                         case "createdtime":
99                                 if (File.Exists (itemSpec))
100                                         return File.GetCreationTime (itemSpec).ToString ();
101                                 else if (Directory.Exists (itemSpec))
102                                         return Directory.GetCreationTime (itemSpec).ToString ();
103                                 else
104                                         return String.Empty;
105                         case "accessedtime":
106                                 if (File.Exists (itemSpec))
107                                         return File.GetLastAccessTime (itemSpec).ToString ();
108                                 else if (Directory.Exists (itemSpec))
109                                         return Directory.GetLastAccessTime (itemSpec).ToString ();
110                                 else
111                                         return String.Empty;
112                         default:
113                                 throw new ArgumentException ("Invalid reserved metadata name");
114                         }
115                 }
116         }
117 }
118
119 #endif