Search code examples
c#.netvisual-studiovisual-studio-2012code-contracts

Code Contracts + Code Analysis


I think about starting to use Code Contracts in my code base.

I already use Code Analysis with all rules enabled and a goal of zero warnings.

However, when using Contract.Requires(parameter != null) I get a warning from Code Analysis, namely CA1062:

CA1062 : Microsoft.Design : In externally visible method 'Foo', validate parameter 'parameter' before using it.

That's unfortunate, I don't want to disable that rule as I find it useful. But I also don't want to suppress every false occurrence of it.

Is there a solution?


Solution

  • As of Version 4.5.2 of the framework (possibly even 4.5) it is possible to tell Code Analysis about the contracts being enforced by Code Contracts. First create the following extension method and marker attribute

      using System;
      using System.Diagnostics;
      using System.Diagnostics.CodeAnalysis;
      using System.Diagnostics.Contracts;
    
      /// <summary>Extension methods to enhance Code Contracts and integration with Code Analysis.</summary>
      public static class ContractExtensions {
    #if RUNTIME_NULL_CHECKS
        /// <summary>Throws <c>ArgumentNullException{name}</c> if <c>value</c> is null.</summary>
        /// <param name="value">Value to be tested.</param>
        /// <param name="name">Name of the parameter being tested, for use in the exception thrown.</param>
        [ContractArgumentValidator]  // Requires Assemble Mode = Custom Parameter Validation
        public static void ContractedNotNull<T>([ValidatedNotNull]this T value, string name) where T : class {
          if (value == null) throw new ArgumentNullException(name);
          Contract.EndContractBlock();
        }
    #else
        /// <summary>Throws <c>ContractException{name}</c> if <c>value</c> is null.</summary>
        /// <param name="value">Value to be tested.</param>
        /// <param name="name">Name of the parameter being tested, for use in the exception thrown.</param>
        [SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "value")]
        [SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "name")]
        [ContractAbbreviator] // Requires Assemble Mode = Standard Contract Requires
        public static void ContractedNotNull<T>([ValidatedNotNull]this T value, string name) where T : class {
          Contract.Requires(value != null,name);
        }
    #endif
      }
    
    /// <summary>Decorator for an incoming parameter that is contractually enforced as NotNull.</summary>
    [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false)]
    public sealed class ValidatedNotNullAttribute : global::System.Attribute {}
    

    and now convert your entry null-tests to the following format:

    /// <summary>IForEachable2{TItem} implementation</summary>
    public   void  ForEach(FastIteratorFunctor<TItem> functor) {
      functor.ContractedNotNull("functor"); // for Code Analysis
    
      TItem[] array = _array;
      for (int i = 0; i < array.Length; i++)    functor.Invoke(array[i]);
    }
    

    The method name ContractedNotNull and the compilation switch RUNTIME_NULL_CHECKS can of course be changed to anything that suits your naming style.

    Here is the original blog that informed me of this technique, which I have refined slightly; many thanks to Terje Sandstrom for publishing his research.

    Rico Suter expands on this here by using additional attributes so that the debugger and inliner are smarter also: