You are here
Home > Programming > Introducing Code Contracts – Writing Better Code

Introducing Code Contracts – Writing Better Code

Introducing Code Contracts – Exactly what are code contracts and how can they help me in my daily coding tasks? How do code contracts make my code better? Well as I have said before, user input is evil. All user input. Code contracts provide a way for a developer to specifically check what values are coming into their methods and catch issues easily. Here is an introduction to code contracts.

Introducing Code Contracts To Secure Your Code

Code contracts allow you to express coding assumptions in .NET applications. Your first order of business must be to visit the Microsoft Research site. Read the article on code contracts and research it a bit. You then need to download the Code Contracts for .NET installer from the Visual Studio Gallery. After you have installed code contracts, you will find an additional tab called Code Contracts in the project properties.

For this example I just selected to perform Runtine Checking. I also selected Standard Contract Requires. You can also change the Configuration from the dropdown should you wish.

Introducing Code Contracts

In this code example, assume that we have a class that reads each line in a file. Each line contains the location of a specific log file that we need to process. Then in your method you want to secure with a contract, add a Contract.Requires expression. I am defining the exception (in my case FileNotFoundException) to the condition to check if the file exists. If the file does not exist, the message I defined will be displayed in the exception thrown.

Introducing Code Contracts

You can also define a code contract to properties. This will then ensure that the path set is a valid path. The private setter also maintains encapsulation in your class. So as soon as you run your code and you somehow pass a path to a class that gets deleted, the contract will catch the missing file.

Introducing Code Contracts

This is fantastic, and allows developers to tightly control the parameters coming in to your method. You will also notice that I used a Contract.Ensures. This basically tells my calling code that I ensure that this method will return a value greater or equal to 0. But what if we wanted to enforce the use of code contracts and keep our code stable.

A situation could exist where there are more junior developers working on the same project. You need to enforce code contracts as part of your coding standards and also lock down the internal workings of the class by contracting property values. Well, go back to the settings for the project and enable ‘Perform Static Contract Checking’. I enabled ‘Fail build on warnings’ too.

Introducing Code Contracts

This time, at the top of your class, add a private void Invariants method and decorate it with the [ContractInvariantMethod] attribute. You will see that I have a property called ProcessFileCount that defines the maximum number of log files to process. This is because I don’t want to allow the class to process more than 100 log files at a time. Inside the Invariants method, define a code contract to check the value of our ProcessFileCount property.

Introducing Code Contracts

In the calling code, instantiate the class and pass the ProcessLogFiles method (that also sets our property) a value of 120. As soon as you build the code you will receive the build errors as seen below. One of the errors specifies that the value passed to our method exceeds the maximum value allowed.

Introducing Code Contracts

Let us go and correct the error, and pass it a value of 50. Therefore, the class will only process the first 50 log files in the file we passed to it in the constructor.

Introducing Code Contracts

When we build again, we see that the build fails a second time. This time (as before) it tells us that we have written bad code. We have not added a code contract to our method. Looking at the method, we can see that Visual Studio has underlined the offending line of code and that we do not implement code contracts.

Introducing Code Contracts

This is easily remedied though by adding a code contract to the method.

Introducing Code Contracts

From the code above, and by implementing our Invariant method, we can ensure that other developers working on this specific class always add code contracts to their code. It is better to catch these issues during development than to do so during UAT.

Image: Fluix

Dirk Strauss
Dirk is a Software Developer from South Africa. He loves all things Technology and is slightly addicted to Jimi Hendrix. Apart from writing code, he also enjoys authoring books and articles. "I love sharing knowledge and connecting with people from around the world. It's the diversity that makes life so beautiful." Dirk feels very strongly that pizza is simply not complete without Tabasco, that you can never have too much garlic, and that cooking the perfect steak is an art he has almost mastered.
https://dirkstrauss.com

Similar Articles

Top