/* Copyright 2010 Google Inc Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ using Google.Apis.Testing; using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Reflection; using System.Text.RegularExpressions; namespace Google.Apis.Util { /// A utility class which contains helper methods and extension methods. public static class Utilities { /// Returns the version of the core library. [VisibleForTestOnly] public static string GetLibraryVersion() { return Regex.Match(typeof(Utilities).GetTypeInfo().Assembly.FullName, "Version=([\\d\\.]+)").Groups[1].ToString(); } /// /// A Google.Apis utility method for throwing an if the object is /// null. /// public static T ThrowIfNull(this T obj, string paramName) { if (obj == null) { throw new ArgumentNullException(paramName); } return obj; } /// /// A Google.Apis utility method for throwing an if the string is /// null or empty. /// /// The original string. public static string ThrowIfNullOrEmpty(this string str, string paramName) { if (string.IsNullOrEmpty(str)) { throw new ArgumentException("Parameter was empty", paramName); } return str; } /// Returns true in case the enumerable is null or empty. internal static bool IsNullOrEmpty(this IEnumerable coll) { return coll == null || coll.Count() == 0; } /// /// A Google.Apis utility method for returning the first matching custom attribute (or null) of the specified member. /// public static T GetCustomAttribute(this MemberInfo info) where T : Attribute { object[] results = info.GetCustomAttributes(typeof(T), false).ToArray(); return results.Length == 0 ? null : (T)results[0]; } /// Returns the defined string value of an Enum. internal static string GetStringValue(this Enum value) { FieldInfo entry = value.GetType().GetField(value.ToString()); entry.ThrowIfNull("value"); // If set, return the value. var attribute = entry.GetCustomAttribute(); if (attribute != null) { return attribute.Text; } // Otherwise, throw an exception. throw new ArgumentException( string.Format("Enum value '{0}' does not contain a StringValue attribute", entry), "value"); } /// /// Returns the defined string value of an Enum. Use for test purposes or in other Google.Apis projects. /// public static string GetEnumStringValue(Enum value) { return value.GetStringValue(); } /// /// Tries to convert the specified object to a string. Uses custom type converters if available. /// Returns null for a null object. /// [VisibleForTestOnly] public static string ConvertToString(object o) { if (o == null) { return null; } if (o.GetType().GetTypeInfo().IsEnum) { // Try to convert the Enum value using the StringValue attribute. var enumType = o.GetType(); FieldInfo field = enumType.GetField(o.ToString()); StringValueAttribute attribute = field.GetCustomAttribute(); return attribute != null ? attribute.Text : o.ToString(); } if (o is DateTime) { // Honor RFC3339. return ConvertToRFC3339((DateTime)o); } if (o is bool) { return o.ToString().ToLowerInvariant(); } return o.ToString(); } /// Converts the input date into a RFC3339 string (http://www.ietf.org/rfc/rfc3339.txt). internal static string ConvertToRFC3339(DateTime date) { if (date.Kind == DateTimeKind.Unspecified) { date = date.ToUniversalTime(); } return date.ToString("yyyy-MM-dd'T'HH:mm:ss.fffK", DateTimeFormatInfo.InvariantInfo); } /// /// Parses the input string and returns if the input is a valid /// representation of a date. Otherwise it returns null. /// public static DateTime? GetDateTimeFromString(string raw) { DateTime result; if (!DateTime.TryParse(raw, out result)) { return null; } return result; } /// Returns a string (by RFC3339) form the input instance. public static string GetStringFromDateTime(DateTime? date) { if (!date.HasValue) { return null; } return ConvertToRFC3339(date.Value); } } }