Skip to content

Commit

Permalink
New Rule: BracesOnWhenStatements with configurable parameters (#5838)
Browse files Browse the repository at this point in the history
* Add "BracesOnWhenStatements" rule

* Fix after merge

* Update detekt-rules-style/src/main/kotlin/io/gitlab/arturbosch/detekt/rules/style/BracesOnWhenStatements.kt

Co-authored-by: Róbert Papp <papp.robert.s@gmail.com>

* Update detekt-rules-style/src/main/kotlin/io/gitlab/arturbosch/detekt/rules/style/BracesOnWhenStatements.kt

Co-authored-by: Róbert Papp <papp.robert.s@gmail.com>

* Update detekt-rules-style/src/main/kotlin/io/gitlab/arturbosch/detekt/rules/style/BracesOnWhenStatements.kt

Co-authored-by: Róbert Papp <papp.robert.s@gmail.com>

* Update detekt-rules-style/src/main/kotlin/io/gitlab/arturbosch/detekt/rules/style/BracesOnWhenStatements.kt

Co-authored-by: Róbert Papp <papp.robert.s@gmail.com>

* Fix tests and bugs

* Fix tests and bugs

* Add various improvements

* Add various improvements

* Update detekt-rules-style/src/main/kotlin/io/gitlab/arturbosch/detekt/rules/style/BracesOnWhenStatements.kt

Co-authored-by: Róbert Papp <papp.robert.s@gmail.com>

---------

Co-authored-by: Róbert Papp <papp.robert.s@gmail.com>
  • Loading branch information
VitalyVPinchuk and TWiStErRob committed Apr 20, 2023
1 parent 910a7c6 commit 70161db
Show file tree
Hide file tree
Showing 4 changed files with 1,253 additions and 0 deletions.
4 changes: 4 additions & 0 deletions detekt-core/src/main/resources/default-detekt-config.yml
Expand Up @@ -507,6 +507,10 @@ style:
active: false
singleLine: 'never'
multiLine: 'always'
BracesOnWhenStatements:
active: false
singleLine: 'necessary'
multiLine: 'consistent'
CanBeNonNullable:
active: false
CascadingCallWrapping:
Expand Down
@@ -0,0 +1,242 @@
package io.gitlab.arturbosch.detekt.rules.style

import io.gitlab.arturbosch.detekt.api.CodeSmell
import io.gitlab.arturbosch.detekt.api.Config
import io.gitlab.arturbosch.detekt.api.Debt
import io.gitlab.arturbosch.detekt.api.Entity
import io.gitlab.arturbosch.detekt.api.Issue
import io.gitlab.arturbosch.detekt.api.Rule
import io.gitlab.arturbosch.detekt.api.Severity
import io.gitlab.arturbosch.detekt.api.config
import io.gitlab.arturbosch.detekt.api.internal.Configuration
import org.jetbrains.kotlin.psi.KtBlockExpression
import org.jetbrains.kotlin.psi.KtWhenEntry
import org.jetbrains.kotlin.psi.KtWhenExpression
import org.jetbrains.kotlin.psi.psiUtil.siblings

/**
* This rule detects `when` statements which do not comply with the specified policy.
* Keeping braces consistent will improve readability and avoid possible errors.
*
* Single-line `when` statement is:
* a `when` where each of the branches are single-line (has no line breaks `\n`).
*
* Multi-line `when` statement is:
* a `when` where at least one of the branches is multi-line (has a break line `\n`).
*
* Available options are:
* * `never`: forces no braces on any branch.
* _Tip_: this is very strict, it will force a simple expression, like a single function call / expression.
* Extracting a function for "complex" logic is one way to adhere to this policy.
* * `necessary`: forces no braces on any branch except where necessary for multi-statement branches.
* * `consistent`: ensures that braces are consistent within `when` statement.
* If there are braces on one of the branches, all branches should have it.
* * `always`: forces braces on all branches.
*
* <noncompliant>
* // singleLine = 'never'
* when (a) {
* 1 -> { f1() } // Not allowed.
* 2 -> f2()
* }
* // multiLine = 'never'
* when (a) {
* 1 -> { // Not allowed.
* f1()
* }
* 2 -> f2()
* }
* // singleLine = 'necessary'
* when (a) {
* 1 -> { f1() } // Unnecessary braces.
* 2 -> f2()
* }
* // multiLine = 'necessary'
* when (a) {
* 1 -> { // Unnecessary braces.
* f1()
* }
* 2 -> f2()
* }
*
* // singleLine = 'consistent'
* when (a) {
* 1 -> { f1() }
* 2 -> f2()
* }
* // multiLine = 'consistent'
* when (a) {
* 1 ->
* f1() // Missing braces.
* 2 -> {
* f2()
* f3()
* }
* }
*
* // singleLine = 'always'
* when (a) {
* 1 -> { f1() }
* 2 -> f2() // Missing braces.
* }
* // multiLine = 'always'
* when (a) {
* 1 ->
* f1() // Missing braces.
* 2 -> {
* f2()
* f3()
* }
* }
*
* </noncompliant>
*
* <compliant>
* // singleLine = 'never'
* when (a) {
* 1 -> f1()
* 2 -> f2()
* }
* // multiLine = 'never'
* when (a) {
* 1 ->
* f1()
* 2 -> f2()
* }
* // singleLine = 'necessary'
* when (a) {
* 1 -> f1()
* 2 -> { f2(); f3() } // Necessary braces because of multiple statements.
* }
* // multiLine = 'necessary'
* when (a) {
* 1 ->
* f1()
* 2 -> { // Necessary braces because of multiple statements.
* f2()
* f3()
* }
* }
*
* // singleLine = 'consistent'
* when (a) {
* 1 -> { f1() }
* 2 -> { f2() }
* }
* when (a) {
* 1 -> f1()
* 2 -> f2()
* }
* // multiLine = 'consistent'
* when (a) {
* 1 -> {
* f1()
* }
* 2 -> {
* f2()
* f3()
* }
* }
*
* // singleLine = 'always'
* when (a) {
* 1 -> { f1() }
* 2 -> { f2() }
* }
* // multiLine = 'always'
* when (a) {
* 1 -> {
* f1()
* }
* 2 -> {
* f2()
* f3()
* }
* }
*
* </compliant>
*/
class BracesOnWhenStatements(config: Config = Config.empty) : Rule(config) {
override val issue = Issue(
javaClass.simpleName,
Severity.Style,
"Braces do not comply with the specified policy",
Debt.FIVE_MINS
)

@Configuration("single-line braces policy")
private val singleLine: BracePolicy by config("necessary") { BracePolicy.getValue(it) }

@Configuration("multi-line braces policy")
private val multiLine: BracePolicy by config("consistent") { BracePolicy.getValue(it) }

override fun visitWhenExpression(expression: KtWhenExpression) {
super.visitWhenExpression(expression)

validate(expression.entries, policy(expression))
}

private fun validate(branches: List<KtWhenEntry>, policy: BracePolicy) {
val violators = when (policy) {
BracePolicy.Always -> {
branches.filter { !it.hasBraces() }
}

BracePolicy.Necessary -> {
branches.filter { !it.isMultiStatement() && it.hasBraces() }
}

BracePolicy.Never -> {
branches.filter { it.hasBraces() }
}

BracePolicy.Consistent -> {
val braces = branches.count { it.hasBraces() }
val noBraces = branches.count { !it.hasBraces() }
if (braces != 0 && noBraces != 0) {
branches.take(1)
} else {
emptyList()
}
}
}
violators.forEach { report(it, policy) }
}

private fun KtWhenEntry.hasBraces(): Boolean = expression is KtBlockExpression

private fun KtWhenEntry.isMultiStatement(): Boolean =
expression.let { it is KtBlockExpression && it.statements.size > 1 }

private fun policy(expression: KtWhenExpression): BracePolicy {
val isMultiLine = expression.entries.any { branch ->
requireNotNull(branch.arrow) { "When branch ${branch.text} has no arrow!" }
.siblings(forward = true, withItself = false)
.any { it.textContains('\n') }
}
return if (isMultiLine) multiLine else singleLine
}

private fun report(violator: KtWhenEntry, policy: BracePolicy) {
val reported = when (policy) {
BracePolicy.Consistent -> (violator.parent as KtWhenExpression).whenKeyword
BracePolicy.Always,
BracePolicy.Necessary,
BracePolicy.Never -> requireNotNull(violator.arrow) { "When branch ${violator.text} has no arrow!" }
}
report(CodeSmell(issue, Entity.from(reported), policy.message))
}

enum class BracePolicy(val config: String, val message: String) {
Always("always", "Missing braces on this branch, add them."),
Consistent("consistent", "Inconsistent braces, make sure all branches either have or don't have braces."),
Necessary("necessary", "Extra braces exist on this branch, remove them."),
Never("never", "Extra braces exist on this branch, remove them.");

companion object {
fun getValue(arg: String): BracePolicy =
values().singleOrNull { it.config == arg }
?: error("Unknown value $arg, allowed values are: ${values().joinToString("|")}")
}
}
}
Expand Up @@ -78,6 +78,7 @@ class StyleGuideProvider : DefaultRuleSetProvider {
MayBeConst(config),
PreferToOverPairSyntax(config),
BracesOnIfStatements(config),
BracesOnWhenStatements(config),
MandatoryBracesLoops(config),
NullableBooleanCheck(config),
VarCouldBeVal(config),
Expand Down

0 comments on commit 70161db

Please sign in to comment.