1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|

# HOW-TO: Clean Up Logic
Guide originally published at **[PR13717](https://github.com/xbmc/xbmc/pull/13717)**. To better understand this document, you should read the original *Pull Request*.
## Table of Contents
1. **[Why clean logic is important](#1-why-clean-logic-is-important)**
2. **[What bad `if` and ternary (`? :`) statements look like](#2-what-bad-if-and-ternary-statements-look-like)**
3. **[How to clean up OR's](#3-how-to-clean-up-ors)**
4. **[How to clean up AND's](#4-how-to-clean-up-ands)**
5. **[How to clean up ternary (`? :`) statements](#5-how-to-clean-up-ternary-statements)**
6. **[Extra credit: the `switch` statement](#6-extra-credit-the-switch-statement)**
7. **[Choosing AND vs. OR](#7-choosing-and-vs-or)**
## 1. Why clean logic is important
It's all about readability. We should strive to write code for people, not computers. `if` statements impact the control flow. We want the control flow to be as easy to read and follow as possible.
**[back to top](#table-of-contents)**
## 2. What bad if and ternary statements look like
Take the **[first commit](https://github.com/xbmc/xbmc/commit/2d85c66~6)**. The previous logic roughly translates to:
```c++
if (A || B || (C &&D) || ((E || (F && G)) && (H && I && J && K)) || L)
something();
```
Wow.
Ternary logic can also be unwieldy. For example, the previous logic in the second commit translates to:
```c++
X = (A && !B) ? Y : Z;
```
This statement isn't as offensive, but wouldn't it be more readable and maintainable by using a few more lines?
**[back to top](#table-of-contents)**
## 3. How to clean up OR's
Generally, OR's are separated by creating a *sequence* of `if`'s on new lines with the same indentation. An initial flag is set, and the `if` statements are used to flip the flag. We can then use a final `if` that only depends on a single flag.
For example:
```c++
if (A || B)
something()
```
becomes:
```c++
bool flag = false;
if (A)
flag = true;
else if (B)
flag = true;
if (flag)
something();
```
This is demonstrated in the commit **[Improve logic for GUI_MSG_QUEUE_NEXT_ITEM in CApplication::OnMessage()](https://github.com/xbmc/xbmc/commit/2d85c66~2)**.
**[back to top](#table-of-contents)**
## 4. How to clean up AND's
Generally, AND's are separated by creating a *series* of `if`'s by embedding indented blocks.
For example:
```c++
if (A && B)
something()
```
becomes:
```c++
if (A)
{
if (B)
something();
}
```
This is demonstrated in the commit **[Improve logic in CAutorun::ExecuteAutorun()](https://github.com/xbmc/xbmc/commit/2d85c66~1)**.
**[back to top](#table-of-contents)**
## 5. How to clean up ternary statements
As the name suggests, ternary statements can be split into three lines. For example,
```c++
X = (A && !B) ? Y : Z;
```
becomes:
```c++
X = Y;
if (!A || B)
X = Z;
```
This is demonstrated in the commit **[Improve sleep time logic in CApplication::FrameMove()](https://github.com/xbmc/xbmc/commit/2d85c66~5)**.
**[back to top](#table-of-contents)**
## 6. Extra credit: the `switch` statement
As a bonus, if the logic compares the same value to multiple constants, you can use a `switch` statement for a small performance boost.
For example (notice how I add a tricky OR at the end):
```c++
if (x == A || x == B || x == C || y == D)
something();
```
becomes:
```
bool flag = false;
switch (x)
{
case A:
case B:
case C:
flag = true;
break;
default:
if (y == D)
flag = true;
break;
}
if (flag)
something();
```
This is demonstrated in the commit **[Clean up player notification logic in CApplication::OnAction()](https://github.com/xbmc/xbmc/commit/2d85c66~6)**.
Switch statements use *jump tables*, which can be faster than `if`s in some cases because branching slows down speculative execution.
**[back to top](#table-of-contents)**
## 7. Choosing AND vs. OR
In general, I prefer the flag approach (OR) over the embedding indented blocks approach (AND) because less indentation makes the control flow easier to follow. Boolean algebra can be used to convert AND statements into ORs.
However, when a bunch of ANDs and ORs are combined, sometimes it makes things more complicated to use a single OR operator. It's really a process of trying different algebraic combinations to get the simplest-to-read control flow.
The last commit shows how I was given a convoluted condition and played around with boolean algebra until I eventually settled on what I considered most readable, **[Improve logic in CGraphicContext::SetFullScreenVideo()](https://github.com/xbmc/xbmc/commit/2d85c66)**.
**[back to top](#table-of-contents)**
|