ArgumentHelper.cs :  » Web-Frameworks » Ingenious-MVC » Ingenious » Mvc » Util » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Web Frameworks » Ingenious MVC 
Ingenious MVC » Ingenious » Mvc » Util » ArgumentHelper.cs
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Text;

namespace Ingenious.Mvc.Util{
  /// <summary>
  /// Provides helper methods for asserting arguments.
  /// </summary>
  /// <remarks>
  /// <para>
  /// This class provides helper methods for asserting the validity of arguments. It can be used to reduce the number of
  /// laborious <c>if</c>, <c>throw</c> sequences in your code.
  /// </para>
  /// <para>
  /// The <see cref="AssertNotNull"/> method can be used to ensure that arguments are not <see langword="null"/>. The
  /// <see cref="AssertNotNullOrEmpty"/> overloads can be used to ensure that strings are not <see langword="null"/> or empty.
  /// The <see cref="AssertEnumMember"/> overloads can be used to assert the validity of enumeration arguments.
  /// </para>
  /// </remarks>
  /// <example>
  /// The following code ensures that the <c>name</c> argument is not <see langword="null"/>:
  /// <code>
  /// public void DisplayDetails(string name)
  /// {
  ///    ArgumentHelper.AssertNotNull(name, "name");
  ///    //now we know that name is not null
  ///    ...
  /// }
  /// </code>
  /// </example>
  /// <example>
  /// The following code ensures that the <c>name</c> argument is not <see langword="null"/> or an empty <c>string</c>:
  /// <code>
  /// public void DisplayDetails(string name)
  /// {
  ///    ArgumentHelper.AssertNotNullOrEmpty(name, "name", true);
  ///    //now we know that name is not null and is not an empty string (or blank)
  ///    ...
  /// }
  /// </code>
  /// </example>
  /// <example>
  /// The following code ensures that the <c>day</c> parameter is a valid member of its enumeration:
  /// <code>
  /// public void DisplayInformation(DayOfWeek day)
  /// {
  ///    ArgumentHelper.AssertEnumMember(day);
  ///    //now we know that day is a valid member of DayOfWeek
  ///    ...
  /// }
  /// </code>
  /// </example>
  /// <example>
  /// The following code ensures that the <c>day</c> parameter is either DayOfWeek.Monday or DayOfWeek.Thursday:
  /// <code>
  /// public void DisplayInformation(DayOfWeek day)
  /// {
  ///    ArgumentHelper.AssertEnumMember(day, DayOfWeek.Monday, DayOfWeek.Thursday);
  ///    //now we know that day is either Monday or Thursday
  ///    ...
  /// }
  /// </code>
  /// </example>
  /// <example>
  /// The following code ensures that the <c>bindingFlags</c> parameter is either BindingFlags.Public, BindingFlags.NonPublic
  /// or both:
  /// <code>
  /// public void GetInformation(BindingFlags bindingFlags)
  /// {
  ///    ArgumentHelper.AssertEnumMember(bindingFlags, BindingFlags.Public, BindingFlags.NonPublic);
  ///    //now we know that bindingFlags is either Public, NonPublic or both
  ///    ...
  /// }
  /// </code>
  /// </example>
  /// <example>
  /// The following code ensures that the <c>bindingFlags</c> parameter is either BindingFlags.Public, BindingFlags.NonPublic,
  /// both or neither (BindingFlags.None):
  /// <code>
  /// public void GetInformation(BindingFlags bindingFlags)
  /// {
  ///    ArgumentHelper.AssertEnumMember(bindingFlags, BindingFlags.Public, BindingFlags.NonPublic, BindingFlags.None);
  ///    //now we know that bindingFlags is either Public, NonPublic, both or neither
  ///    ...
  /// }
  /// </code>
  /// </example>
  public static class ArgumentHelper
  {
    /// <summary>
    /// Ensures that <paramref name="arg"/> is not <see langword="null"/>. If it is, an <see cref="ArgumentNullException"/>
    /// is thrown.
    /// </summary>
    /// <typeparam name="T">
    /// The type of the argument.
    /// </typeparam>
    /// <param name="arg">
    /// The argument to check for <see langword="null"/>.
    /// </param>
    /// <param name="argName">
    /// The name of the argument.
    /// </param>
    /// <exception cref="ArgumentNullException">
    /// If <paramref name="arg"/> is <see langword="null"/>.
    /// </exception>
        [DebuggerHidden]
    public static void AssertNotNull<T>(T arg, string argName)
      where T : class
    {
      if (arg == null)
      {
        throw new ArgumentNullException(argName);
      }
    }

    /// <summary>
    /// Ensures that <paramref name="arg"/> is not <see langword="null"/>, optionally checking each item in it for
    /// <see langword="null"/>. If any checked items are <see langword="null"/>, an exception is thrown.
    /// </summary>
    /// <remarks>
    /// <para>
    /// This method throws an <see cref="ArgumentNullException"/> if <paramref name="arg"/> is <see langword="null"/>. If
    /// <paramref name="assertContentsNotNull"/> is <see langword="true"/> and one of the items in <paramref name="arg"/>
    /// is found to be <see langword="null"/>, an <see cref="ArgumentException"/> is thrown.
    /// </para>
    /// </remarks>
    /// <typeparam name="T">
    /// The type of the items in the <paramref name="arg"/> enumeration.
    /// </typeparam>
    /// <param name="arg">
    /// The argument to check for <see langword="null"/>.
    /// </param>
    /// <param name="argName">
    /// The name of the argument.
    /// </param>
    /// <param name="assertContentsNotNull">
    /// If <see langword="true"/>, each item inside the <paramref name="arg"/> enumeration is also checked for
    /// <see langword="null"/>. If <see langword="false"/>, only <paramref name="arg"/> itself is checked for
    /// <see langword="null"/>.
    /// </param>
    /// <exception cref="ArgumentException">
    /// If <paramref name="assertContentsNotNull"/> is <see langword="true"/> and one of the items in <paramref name="arg"/>
    /// is <see langword="null"/>.
    /// </exception>
    [DebuggerHidden]
    public static void AssertNotNull<T>(IEnumerable<T> arg, string argName, bool assertContentsNotNull)
    {
      //make sure the enumerable item itself isn't null
      AssertNotNull(arg, argName);

      if (assertContentsNotNull && typeof(T).IsClass)
      {
        //make sure each item in the enumeration isn't null
        foreach (T item in arg)
        {
          if (item == null)
          {
            throw new ArgumentException("An item inside the enumeration was null.", argName);
          }
        }
      }
    }

    /// <summary>
    /// Ensures that <paramref name="arg"/> is not <see langword="null"/> or an empty <c>string</c>. If it is, an
    /// <see cref="ArgumentException"/> is thrown.
    /// </summary>
    /// <param name="arg">
    /// The argument to check for <see langword="null"/> or an empty <c>string</c>.
    /// </param>
    /// <param name="argName">
    /// The name of the argument.
    /// </param>
    [DebuggerHidden]
    public static void AssertNotNullOrEmpty(string arg, string argName)
    {
      AssertNotNullOrEmpty(arg, argName, false);
    }

    /// <summary>
    /// Ensures that <paramref name="arg"/> is not <see langword="null"/> or an empty <c>string</c>, optionally trimming
    /// <paramref name="arg"/> first. If it is, an <see cref="ArgumentException"/> is thrown.
    /// </summary>
    /// <param name="arg">
    /// The argument to check for <see langword="null"/> or an empty <c>string</c>.
    /// </param>
    /// <param name="argName">
    /// The name of the argument.
    /// </param>
    /// <param name="trim">
    /// If <see langword="true"/> and <paramref name="arg"/> is not <see langword="null"/> or an empty <c>string</c>, it is
    /// trimmed and re-tested for being empty.
    /// </param>
    /// <exception cref="ArgumentException">
    /// If <paramref name="arg"/> is <see langword="null"/> or an empty <c>string</c>, or if it is a blank <c>string</c> and
    /// <paramref name="trim"/> is <see langword="true"/>.
    /// </exception>
    [DebuggerHidden]
    public static void AssertNotNullOrEmpty(string arg, string argName, bool trim)
    {
      if (string.IsNullOrEmpty(arg) || (trim && (arg.Trim().Length == 0)))
      {
        throw new ArgumentException("Cannot be null or empty.", argName);
      }
    }

    /// <summary>
    /// Ensures that <paramref name="enumValue"/> is a valid member of the <typeparamref name="TEnum"/> enumeration. If it
    /// is not, an <see cref="ArgumentException"/> is thrown.
    /// </summary>
    /// <remarks>
    /// <para>
    /// This method can be used to validate all publicly-supplied enumeration values. Without such an assertion, it is
    /// possible to cast any <c>int</c> value to the enumeration type and pass it in.
    /// </para>
    /// <para>
    /// This method works for both flags and non-flags enumerations. In the case of a flags enumeration, any combination of
    /// values in the enumeration is accepted. In the case of a non-flags enumeration, <paramref name="enumValue"/> must
    /// be equal to one of the values in the enumeration.
    /// </para>
    /// <para>
    /// This method is generic and quite slow as a result. You should prefer using the
    /// <see cref="AssertEnumMember{TEnum}(TEnum, TEnum[])"/> overload where possible. That overload is both faster and
    /// safer. Faster because it does not incur reflection costs, and safer because you are able to specify the exact
    /// values accepted by your method.
    /// </para>
    /// </remarks>
    /// <typeparam name="TEnum">
    /// The enumeration type.
    /// </typeparam>
    /// <param name="enumValue">
    /// The value of the enumeration.
    /// </param>
    /// <exception cref="ArgumentException">
    /// If <paramref name="enumValue"/> is not a valid member of the <typeparamref name="TEnum"/> enumeration.
    /// </exception>
        [DebuggerHidden]
        public static void AssertEnumMember<TEnum>(TEnum enumValue)
        where TEnum : struct, IConvertible
    {
      if (Attribute.IsDefined(typeof(TEnum), typeof(FlagsAttribute), false))
      {
        //flag enumeration - we can only get here if TEnum is a valid enumeration type, since the FlagsAttribute can
        //only be applied to enumerations
        bool throwEx = false;
        long longValue = enumValue.ToInt64(CultureInfo.InvariantCulture);

        if (longValue  == 0)
        {
          //only throw if zero isn't defined in the enum - we have to convert zero to the underlying type of the enum
          throwEx = !Enum.IsDefined(typeof(TEnum), ((IConvertible) 0).ToType(Enum.GetUnderlyingType(typeof(TEnum)), CultureInfo.InvariantCulture));
        }
        else
        {
          foreach (TEnum value in Enum.GetValues(typeof(TEnum)))
          {
            longValue &= ~value.ToInt64(CultureInfo.InvariantCulture);
          }

          //throw if there is a value left over after removing all valid values
          throwEx = (longValue != 0);
        }

        if (throwEx)
        {
          throw new ArgumentException(string.Format(CultureInfo.InvariantCulture,
            "Enum value '{0}' is not valid for flags enumeration '{1}'.",
            enumValue, typeof(TEnum).FullName));
        }
      }
      else
      {
        //not a flag enumeration
        if (!Enum.IsDefined(typeof(TEnum), enumValue))
        {
          throw new ArgumentException(string.Format(CultureInfo.InvariantCulture,
              "Enum value '{0}' is not defined for enumeration '{1}'.",
              enumValue, typeof(TEnum).FullName));
        }
      }
    }

    /// <summary>
    /// Ensures that <paramref name="enumValue"/> is included in the values specified by <paramref name="validValues"/>. If
    /// it is not, an <see cref="ArgumentException"/> is thrown.
    /// </summary>
    /// <remarks>
    /// <para>
    /// This method can be used to ensure that an enumeration argument is valid for the context of the method. It works for
    /// both flags and non-flags enumerations. For flags enumerations, <paramref name="enumValue"/> must be any combination
    /// of values specified by <paramref name="validValues"/>. For non-flags enumerations, <paramref name="enumValue"/>
    /// must be one of the values specified by <paramref name="validValues"/>.
    /// </para>
    /// <para>
    /// This method is much faster than the <see cref="AssertEnumMember{TEnum}(TEnum)"/> overload. This is because it does
    /// not use reflection to determine the values defined by the enumeration. For this reason you should prefer this method
    /// when validating enumeration arguments.
    /// </para>
    /// <para>
    /// Another reason why this method is prefered is because it allows you to explicitly specify the values that your code
    /// handles. If you use the <see cref="AssertEnumMember{TEnum}(TEnum)"/> overload and a new value is later added to the
    /// enumeration, the assertion will not fail but your code probably will.
    /// </para>
    /// </remarks>
    /// <typeparam name="TEnum">
    /// The enumeration type.
    /// </typeparam>
    /// <param name="enumValue">
    /// The value of the enumeration.
    /// </param>
    /// <param name="validValues">
    /// An array of all valid values.
    /// </param>
    /// <exception cref="ArgumentNullException">
    /// If <paramref name="validValues"/> is <see langword="null"/>.
    /// </exception>
    /// <exception cref="ArgumentException">
    /// If <paramref name="enumValue"/> is not present in <paramref name="validValues"/>, or (for flag enumerations) if
    /// <paramref name="enumValue"/> is not some combination of values specified in <paramref name="validValues"/>.
    /// </exception>
    [DebuggerHidden]
    public static void AssertEnumMember<TEnum>(TEnum enumValue, params TEnum[] validValues)
      where TEnum : struct, IConvertible
    {
      AssertNotNull(validValues, "validValues");

      if (Attribute.IsDefined(typeof(TEnum), typeof(FlagsAttribute), false))
      {
        //flag enumeration
        bool throwEx = false;
        long longValue = enumValue.ToInt64(CultureInfo.InvariantCulture);

        if (longValue == 0)
        {
          //only throw if zero isn't permitted by the valid values
          throwEx = true;

          foreach (TEnum value in validValues)
          {
            if (value.ToInt64(CultureInfo.InvariantCulture) == 0)
            {
              throwEx = false;
              break;
            }
          }
        }
        else
        {
          foreach (TEnum value in validValues)
          {
            longValue &= ~value.ToInt64(CultureInfo.InvariantCulture);
          }

          //throw if there is a value left over after removing all valid values
          throwEx = (longValue != 0);
        }

        if (throwEx)
        {
          throw new ArgumentException(string.Format(CultureInfo.InvariantCulture,
            "Enum value '{0}' is not allowed for flags enumeration '{1}'.",
            enumValue, typeof(TEnum).FullName));
        }
      }
      else
      {
        //not a flag enumeration
        foreach (TEnum value in validValues)
        {
          if (enumValue.Equals(value))
          {
            return;
          }
        }

        //at this point we know an exception is required - however, we want to tailor the message based on whether the
        //specified value is undefined or simply not allowed
        if (!Enum.IsDefined(typeof(TEnum), enumValue))
        {
          throw new ArgumentException(string.Format(CultureInfo.InvariantCulture,
              "Enum value '{0}' is not defined for enumeration '{1}'.",
              enumValue, typeof(TEnum).FullName));
        }
        else
        {
          throw new ArgumentException(string.Format(CultureInfo.InvariantCulture,
              "Enum value '{0}' is defined for enumeration '{1}' but it is not permitted in this context.",
              enumValue, typeof(TEnum).FullName));
        }
      }
    }

    /// <summary>
    /// Ensures that <paramref name="id"/> is not equal to <see cref="Id{T}.Empty"/>.
    /// </summary>
    /// <typeparam name="T">
    /// The type of ID.
    /// </typeparam>
    /// <param name="id">
    /// The ID to be tested.
    /// </param>
    /// <param name="argName">
    /// The name of the argument being tested.
    /// </param>
    /// <exception cref="IdException">
    /// If <paramref name="id"/> is equal to <see cref="Id{T}.Empty"/>.
    /// </exception>
    public static void AssertNotEmpty<T>(Id<T> id, string argName)
    {
      if (id.IsEmpty)
      {
        throw new IdException(string.Format(CultureInfo.InvariantCulture, "An empty ID of type {0} was illegally provided for argument '{1}'.", id.IdType, argName));
      }
    }
  }
}
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.