DEV Community

Carlos Caballero
Carlos Caballero

Posted on • Originally published at carloscaballero.io

Refactoring: Guard Clauses

In computer programming, a guard is a boolean expression that must evaluate to true if the program execution is to continue in the branch in question.

Regardless of which programming language is used, guard code or a guard clause is a check of integrity preconditions used to avoid errors during execution. — Wikipedia

The main problems that appear in a code in which the guard clauses technique is not applied are the following:

  1. Excessive indentation. Excessive use of the control structure if nested means that there is a high level of indentation that makes code reading difficult.

  2. Relationship between if-else. When there is a large number of separate code fragments between if-else, which are conceptually related to each other, it is necessary to perform the code reading by jumping between the different parts.

  3. Mental effort. A consequence of the different jumps in the source code causes an extra effort to be generated in the generation of code.

So, the practical application of a guard clause is the following case:

In this case, and most of the time, you must reverse the logic to avoid using the reserved word else. The previous code would be rewritten as follows:

Therefore, the particular cases that cause an exit of the method would be placed at the beginning of the method and act as guards in a way that avoid continuing through the satisfactory flow of the method.

In this way, the method is easy to read since the particular cases are at the beginning of the same and the case of satisfactory flow use is the body of the method.

There are detractors of the guard clauses that indicate that there should only be a single exit point in each method and with this technique we find several exit points. It should not be confused with having return everywhere and without control in our methods that will make us have even greater mental effort. But, all the returns are clearly controlled, since they will be found in the guards or at the end of the method.

Below we will see examples of more complex guard clauses in which the reading and understanding of the code is considerably improved.

Imagine that you have to create a method that calculates the cost of the health insurance in which the userID is received as a parameter.
A search in a database is done using this ID to retrieve a user. In case the user does not exist, an exception called UserNotFoundException will be throwed. If the user exists in the system, the next step is to verify that the user's health insurance corresponds to one of those that are valid for this algorithm: Allianz or AXA. In case the insurance is not valid, an exception called UserInsuranceNotFoundException must be returned. Finally, this algorithm is only valid for users who are of Spanish nationality. Therefore, you should check again if the user is Spanish to perform insurance calculation or return an exception called UserIsNotSpanishException

As you can see the code has many levels of indentation. The same version of the previous algorithm is shown below but the guard clauses technique has been applied. This technique allows the code to be more readable. Note that 3 guard clauses have been applied that allow generating alternative paths (throw exceptions) that do not interfere in the algorithm result.

Some questions that must be resolved:

  1. Why are not there cases of if-else if?

  2. Stop thinking! If your code requires cases like else if it is because you are breaking the principle of Single Responsibility and the code makes higher level decisions, which should be refactored using techniques such as division into sub-methods or design patterns such as command or strategy.

  3. Negative conditions are not well understood.

  4. For this we have another refactoring technique called _ method extraction_ which consists in extracting code into functions for reuse or for reading comprehension. In the following example we modified the previous example creating methods that allow a reading and understanding of the code better.

In the use of clause guard the logic of the conditions is normally inverted and, depending on the complexity of the condition, it is quite complex to understand what is being evaluated in that condition.

That is why it is good practice to extract the logic of the conditions in small functions that allow greater readability of the code and, of course, to find bugs in them, since the responsibility of evaluating the condition is being delegated to a specific function.

For our example of medical insurance we can generate the following methods:

It is not necessary to create a function to check if the user exists, since just checking that the user is different to null or undefined is sufficient. Therefore, the resulting code would be the following:

There are many practices in order to improve the quality of the code. The most important thing to learn when applying refactoring techniques is that they should be focused on two points, mainly:

  1. Uncouple the code, which allows small changes do not cause large chained changes throughout the software project.

  2. Readability, it is very important that developers understand that most of the time of their work is based on reading code, and probably code written by another developer. It is very beneficial in cost / development that a developer does not spend time understanding elementary logic because it is not easy to read.

Refactoring starts from the most elementary point, a simple if, to an architecture pattern. It is important to take care of all aspects of our software development.

Refactoring.com
Guard — Wikipedia

Originally published at https://carloscaballero.io on May 31, 2019.

Top comments (6)

Collapse
 
bajithelearner profile image
Baji Shaik

Very helpful, thank you

Collapse
 
carlillo profile image
Carlos Caballero

Thanks Bajo Shaik!

I hope that those tips will be useful for you!

Collapse
 
abesamma profile image
A.B. Samma

Totally agree. I discovered this when I was still a beginner in programming. It really helps make your code more readable.

Collapse
 
carlillo profile image
Carlos Caballero

Hi @Samma!

In my opinion the best thing when you applied this technique is that the mental effort is reduced when you read code.

Thanks!

Collapse
 
qhkm profile image
qhkm

Super helpfull!! Thanks

Collapse
 
carlillo profile image
Carlos Caballero

Thank you @qhkm ! :-)