2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / class / Microsoft.Build.Utilities / Mono.XBuild.Utilities / ReservedNameUtils.cs
blobe8379f00be0c623d4c7c1bce5d4c4d985b3126c0
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:
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
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.
28 #if NET_2_0
30 using System;
31 using System.Collections;
32 using System.Collections.Specialized;
33 using System.IO;
35 namespace Mono.XBuild.Utilities {
37 internal static class ReservedNameUtils {
39 static string[] reservedMetadataNames;
40 static Hashtable reservedMetadataHash;
42 static ReservedNameUtils ()
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);
53 public static ICollection ReservedMetadataNames {
54 get {
55 return (ICollection) reservedMetadataNames.Clone ();
59 public static int ReservedMetadataNameCount {
60 get {
61 return reservedMetadataNames.Length;
65 public static bool IsReservedMetadataName (string metadataName)
67 return reservedMetadataHash.Contains (metadataName);
70 public static string GetReservedMetadata (string itemSpec,
71 string metadataName, IDictionary metadata)
73 if (metadataName == null)
74 throw new ArgumentNullException ();
76 if (String.IsNullOrEmpty (itemSpec))
77 return String.Empty;
79 switch (metadataName.ToLower ()) {
80 case "fullpath":
81 return Path.GetFullPath (itemSpec);
82 case "rootdir":
83 if (Path.IsPathRooted (itemSpec))
84 return Path.GetPathRoot (itemSpec);
85 else
86 return Path.GetPathRoot (Environment.CurrentDirectory);
87 case "filename":
88 return Path.GetFileNameWithoutExtension (itemSpec);
89 case "extension":
90 return Path.GetExtension (itemSpec);
91 case "relativedir":
92 return WithTrailingSlash (Path.GetDirectoryName (itemSpec));
93 case "directory":
94 string fullpath = Path.GetFullPath (itemSpec);
95 return WithTrailingSlash (
96 Path.GetDirectoryName (fullpath).Substring (Path.GetPathRoot (fullpath).Length));
97 case "recursivedir":
98 if (metadata != null && metadata.Contains ("RecursiveDir"))
99 return (string)metadata ["RecursiveDir"];
100 else
101 return String.Empty;
102 case "identity":
103 return Path.Combine (Path.GetDirectoryName (itemSpec), Path.GetFileName (itemSpec));
104 case "modifiedtime":
105 if (File.Exists (itemSpec))
106 return File.GetLastWriteTime (itemSpec).ToString ();
107 else if (Directory.Exists (itemSpec))
108 return Directory.GetLastWriteTime (itemSpec).ToString ();
109 else
110 return String.Empty;
111 case "createdtime":
112 if (File.Exists (itemSpec))
113 return File.GetCreationTime (itemSpec).ToString ();
114 else if (Directory.Exists (itemSpec))
115 return Directory.GetCreationTime (itemSpec).ToString ();
116 else
117 return String.Empty;
118 case "accessedtime":
119 if (File.Exists (itemSpec))
120 return File.GetLastAccessTime (itemSpec).ToString ();
121 else if (Directory.Exists (itemSpec))
122 return Directory.GetLastAccessTime (itemSpec).ToString ();
123 else
124 return String.Empty;
125 default:
126 throw new ArgumentException ("Invalid reserved metadata name");
130 static string WithTrailingSlash (string path)
132 if (path.Length > 0)
133 return path + Path.DirectorySeparatorChar;
134 else
135 return path;
140 #endif