Home > Articles > Programming > Windows Programming

Like this article? We recommend Using Code Contracts

Using Code Contracts

If you consider the guard statements to describe a set of assumptions about the input, it is reasonable to say that these assumptions describe a contract that the method satisfies. You could further say that these assumptions are actually pre-conditions that must be satisfied before the Calculate method will execute.

Listing 4 shows the same Calculate method using code contracts rather than guard statements. The intent described by the contracts is much clearer than that described by the guard statements. In addition, the logic used by the code contract statements matches the way it is described in the business logic.

Listing 4—Code Contracts

public int Calculate(int divisor, int dividend)
{
   Contract.Requires(divisor > 0);
   Contract.Requires(dividend > 0);
   Contract.Requires(divisor > dividend);
   return dividend / divisor;
}

If this version of the Calculate method was contained in a class named Test and used by the code in Listing 5, the code contract tools would generate the warnings shown in Figure 4 if Perform Static Contract Checking was enabled.

Listing 5—Calling Code that Violates a Contract

class Program
{
   static void Main(string[] args)
   {
      Test t = new Test();
      t.Calculate(0, 0);
   }
}

Figure 4 Compile-time contract violations

Pre-Conditions

Pre-conditions help answer the question of what input is expected. They are contracts about the input when the method is invoked and are most commonly used to validate parameter values.

Listing 5 showed an example of pre-conditions using one of the Contract.Requires overloads. If you are replacing legacy code that had already documented exceptions for invalid inputs, such as code that used legacy guard statements, you may want to continue throwing those exceptions but still utilize code contracts. You can use one of the generic Contract.Requires<T> overloads as shown in Listing 6 to accomplish this.

Listing 6—Using Contract.Requires<T>

public int Calculate(int divisor, int dividend)
{
   Contract.Requires<ArgumentOutOfRangeException>(divisor > 0, "divisor");
   Contract.Requires<ArgumentOutOfRangeException>(dividend > 0, "divisor");
   Contract.Requires<ArgumentException>(divisor > dividend, "divisor");
   return dividend / divisor;
}

The result of running this version of the Calculate method with the same calling code from Listing 5 is shown in Figure 5.

Figure 5 Runtime contract violations

When using either version of Contract.Requires, all of the members specified by the pre-condition must be at least as accessible as the method itself. This means that a private field couldn't be specified in a pre-condition for a public method because callers would have no way of validating such a contract before calling the method.

In addition, the condition should be free of side effects. This applies to any methods that are called within a contract as well. Such side-effect free methods are also called pure methods and must not update any pre-existing state; they can, however, modify objects created after the pure method has begun executing.

Currently, the following are assumed to be pure:

  • Methods marked with the Pure attribute. When a type is marked with the Pure attribute, all methods in that type are considered to also be marked with the Pure attribute.
  • Property get accessors
  • Operators
  • Any method whose fully qualified name begins with System.Diagnostics.Contracts.Contract, System.String, System.IO.Path, or System.Type
  • Any invoked delegate if the delegate type itself is marked with the Pure attribute. The System.Predicate<T> and System.Comparison<T> delegates are considered pure.

Post-Conditions

If pre-conditions help answer the question of what input is expected, post-conditions help answer the question of what output is expected. They are contracts about the state of a method when it terminates, and are checked just prior to exiting the method. Post-conditions may specify members that are less accessible than the method itself. This means that a private field could be specified in a post-condition for a public method.

Most post-conditions will be specified using one of the Contract.Ensures overloads, and specify a condition that must be true when the method completes normally. Listing 7 shows an example of using a post-condition to ensure the result of the division operation is non-zero.

Listing 7—Using Post-Conditions

public int Calculate(int divisor, int dividend)
{
   int result = 0;
   Contract.Requires<ArgumentOutOfRangeException>(divisor > 0, "divisor");
   Contract.Requires<ArgumentOutOfRangeException>(dividend > 0, "divisor");
   Contract.Requires<ArgumentException>(divisor > dividend, "divisor");
   Contract.Ensures(result != 0);
   result = dividend / divisor;
   return result;
}

In order to write this post-condition, it was necessary to change the implementation so the result of the division was captured in a local variable. Because this isn't always practical, the code contracts library provides the Contract.Result<T> method to refer to the actual return value. Using Contract.Result<T> would allow the Calculate method to be written as shown in Listing 8.

Listing 8—Using Post-Conditions and Contract.Result<T>

public int Calculate(int divisor, int dividend)
{
   Contract.Requires<ArgumentOutOfRangeException>(divisor > 0, "divisor");
   Contract.Requires<ArgumentOutOfRangeException>(dividend > 0, "divisor");
   Contract.Requires<ArgumentException>(divisor > dividend, "divisor");
   Contract.Ensures(Contract.Result<int>() != 0);
   return dividend / divisor;
}

If you need to write a post-condition that references an out parameter, you must use the Contract.ValueAtReturn<T> method instead of Contract.Result<T>.

Just as you can refer to method return values and out parameters, it is also possible to refer to the original value of an expression from the pre-condition state using Contract.OldValue<T>. There are, however, several restrictions:

  • The old expression may only be used in a post-condition.
  • An old expression cannot refer to another old expression.
  • The old expression must refer to a value that existed in the method's pre-state.

Object Invariants

Sometimes it is necessary to specify a condition that should be true on each instance of a class. In other words, it defines a set of conditions that must be true both before and after an operation; therefore, invariants express the conditions that are required for the object to be in a "good" state.

Specifying object invariants is done using an invariant method. This is simply a method that satisfies the following rules:

  • It has private accessibility.
  • It has a void return type.
  • It is marked with the ContractInvariantMethod attribute.
  • It contains only calls to the Contract.Invariant method.

While the name of the method is not meaningful, a best practice is to name it something meaningful like ObjectInvariants or just Invariants. It is also possible to specify more than one method for the object invariants, although you should probably keep it to just one method for ease of maintenance.

Changing the Calculate method to the code shown in Listing 9 so that it is part of a larger class which uses object invariants allows you to write a class that ensures the value of result is always not equal to zero.

Listing 9—Using Object Invariants

public class Test
{
   private int result = 0;
   public int Calculate(int divisor, int dividend)
   {
      Contract.Requires<ArgumentOutOfRangeException>(divisor > 0, "divisor");
      Contract.Requires<ArgumentOutOfRangeException>(dividend > 0, "divisor");
      Contract.Requires<ArgumentException>(divisor > dividend, "divisor");
      Contract.Ensures(Contract.Result<int>() != 0);
      this.result = dividend / divisor;
      return result;
   }
   [ContractInvariantMethod]
   private void Invariants()
   {
      Contract.Invariant(this.result != 0);
   }
}

Quantifiers

Code contracts offer support for quantifying a condition through the ForAll and Exists methods. To specify a condition is true for all elements in a collection, you should use the ForAll method. The Exists method determines if any element satisfies the condition.

Both of these methods have two overloads. One overload is generic and takes a collection and a predicate representing the method that will be applied to each element in the collection. The second overload is not generic and takes an inclusive lower bound, an exclusive upper bound, and a predicate representing a method that must take an integer as its argument. Listing 10 shows some examples of using quantifiers.

Listing 10—Using Quantifiers

public int Foo<T>(IEnumerable<T> xs)
{
   Contract.Requires(Contract.ForAll(xs, x => x != null));
   return default(int);
}
public int[] Bar()
{
   Contract.Ensures(Contract.ForAll(0, Contract.Result<int[]>().Length,
      index => Contract.Result<int[]>()[index] > 0));
   return default(int[]);
}

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020