Skip to content

Commit 4a6e02d

Browse files
authored
ci: Add detekt static analyzer (#18)
* Add detekt static analyzer * Enable detekt-formatting * Include in `check` task
1 parent dc2b266 commit 4a6e02d

File tree

12 files changed

+110
-69
lines changed

12 files changed

+110
-69
lines changed

.github/workflows/build_and_test.yml

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
with:
2424
arguments: build
2525
gradle-version: wrapper
26+
properties: |
27+
detektAutoCorrect=false
2628
- name: Upload test reports
2729
if: ${{ failure() }} # runs only if previous step has failed, the entire workflow will still be marked as failed
2830
uses: actions/upload-artifact@v2

build.gradle.kts

+14
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import io.github.petertrr.configurePublishing
22
import io.github.petertrr.configureVersioning
3+
import io.gitlab.arturbosch.detekt.Detekt
34
import org.jetbrains.kotlin.gradle.targets.jvm.tasks.KotlinJvmTest
45

56
plugins {
67
alias(libs.plugins.kotlin.multiplatform)
8+
alias(libs.plugins.detekt)
79
jacoco
810
}
911

@@ -52,6 +54,18 @@ tasks.withType<KotlinJvmTest> {
5254
useJUnitPlatform()
5355
}
5456

57+
detekt {
58+
buildUponDefaultConfig = true
59+
config = files("detekt.yml")
60+
autoCorrect = (findProperty("detektAutoCorrect") as String?)?.toBoolean() ?: true
61+
}
62+
dependencies {
63+
detektPlugins(libs.detekt.formatting)
64+
}
65+
tasks.withType<Detekt> {
66+
tasks.getByName("check").dependsOn(this)
67+
}
68+
5569
// configure Jacoco-based code coverage reports for JVM tests executions
5670
jacoco {
5771
toolVersion = "0.8.7"

detekt.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
style:
2+
active: true
3+
MaxLineLength:
4+
active: true
5+
maxLineLength: 180
6+
formatting:
7+
active: true
8+
MaximumLineLength:
9+
active: false

gradle/libs.versions.toml

+3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
[versions]
22
kotlin = "1.6.0"
33
junit = "5.8.1"
4+
detekt = "1.19.0"
45

56
[plugins]
67
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
8+
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
79

810
[libraries]
911
junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" }
1012
junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" }
13+
detekt-formatting = { module = "io.gitlab.arturbosch.detekt:detekt-formatting", version.ref = "detekt" }

src/commonMain/kotlin/io/github/petertrr/diffutils/DiffUtils.kt

+19-8
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* Implements the difference and patching engine
2121
*/
2222

23+
@file:Suppress("TooManyFunctions")
24+
2325
package io.github.petertrr.diffutils
2426

2527
import io.github.petertrr.diffutils.algorithm.DiffAlgorithm
@@ -53,9 +55,13 @@ public fun <T> diff(original: List<T>, revised: List<T>, includeEqualParts: Bool
5355
/**
5456
* Computes the difference between the original and revised text.
5557
*/
56-
public fun diff(sourceText: String, targetText: String,
57-
progress: DiffAlgorithmListener?): Patch<String> {
58-
return diff(sourceText.split("\n"),
58+
public fun diff(
59+
sourceText: String,
60+
targetText: String,
61+
progress: DiffAlgorithmListener?
62+
): Patch<String> {
63+
return diff(
64+
sourceText.split("\n"),
5965
targetText.split("\n"),
6066
progress
6167
)
@@ -73,7 +79,8 @@ public fun diff(sourceText: String, targetText: String,
7379
* @return The patch describing the difference between the original and revised sequences.
7480
*/
7581
public fun <T> diff(
76-
source: List<T>, target: List<T>,
82+
source: List<T>,
83+
target: List<T>,
7784
equalizer: ((T, T) -> Boolean)?
7885
): Patch<T> {
7986
return if (equalizer != null) {
@@ -85,8 +92,10 @@ public fun <T> diff(
8592
}
8693

8794
public fun <T> diff(
88-
original: List<T>, revised: List<T>,
89-
algorithm: DiffAlgorithm<T>, progress: DiffAlgorithmListener?
95+
original: List<T>,
96+
revised: List<T>,
97+
algorithm: DiffAlgorithm<T>,
98+
progress: DiffAlgorithmListener?
9099
): Patch<T> {
91100
return diff(original, revised, algorithm, progress, false)
92101
}
@@ -104,8 +113,10 @@ public fun <T> diff(
104113
* `null`.
105114
*/
106115
public fun <T> diff(
107-
original: List<T>, revised: List<T>,
108-
algorithm: DiffAlgorithm<T>, progress: DiffAlgorithmListener?,
116+
original: List<T>,
117+
revised: List<T>,
118+
algorithm: DiffAlgorithm<T>,
119+
progress: DiffAlgorithmListener?,
109120
includeEqualParts: Boolean
110121
): Patch<T> {
111122
return Patch.generate(original, revised, algorithm.computeDiff(original, revised, progress), includeEqualParts)

src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/Change.kt

+6-5
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ package io.github.petertrr.diffutils.algorithm
2020

2121
import io.github.petertrr.diffutils.patch.DeltaType
2222

23-
public data class Change(val deltaType: DeltaType,
24-
val startOriginal: Int,
25-
val endOriginal: Int,
26-
val startRevised: Int,
27-
val endRevised: Int
23+
public data class Change(
24+
val deltaType: DeltaType,
25+
val startOriginal: Int,
26+
val endOriginal: Int,
27+
val startRevised: Int,
28+
val endRevised: Int
2829
)

src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/myers/MyersDiff.kt

+10-10
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ internal class MyersDiff<T>(private val equalizer: (T, T) -> Boolean = { t1, t2
3333
override fun computeDiff(source: List<T>, target: List<T>, progress: DiffAlgorithmListener?): List<Change> {
3434
progress?.diffStart()
3535
val path = buildPath(source, target, progress)
36-
val result = buildRevision(path, source, target)
36+
val result = buildRevision(path)
3737
progress?.diffEnd()
3838
return result
3939
}
@@ -49,15 +49,15 @@ internal class MyersDiff<T>(private val equalizer: (T, T) -> Boolean = { t1, t2
4949
*/
5050
private fun buildPath(orig: List<T>, rev: List<T>, progress: DiffAlgorithmListener?): PathNode? {
5151
// these are local constants
52-
val N = orig.size
53-
val M = rev.size
54-
val MAX = N + M + 1
55-
val size = 1 + 2 * MAX
52+
val origSize = orig.size
53+
val revSize = rev.size
54+
val max = origSize + revSize + 1
55+
val size = 1 + 2 * max
5656
val middle = size / 2
5757
val diagonal: Array<PathNode?> = arrayOfNulls(size)
5858
diagonal[middle + 1] = PathNode(0, -1, snake = true, bootstrap = true, prev = null)
59-
for (d in 0 until MAX) {
60-
progress?.diffStep(d, MAX)
59+
for (d in 0 until max) {
60+
progress?.diffStep(d, max)
6161
var k = -d
6262
while (k <= d) {
6363
val kmiddle = middle + k
@@ -75,15 +75,15 @@ internal class MyersDiff<T>(private val equalizer: (T, T) -> Boolean = { t1, t2
7575
diagonal[kminus] = null // no longer used
7676
var j = i - k
7777
var node = PathNode(i, j, snake = false, bootstrap = false, prev = prev)
78-
while (i < N && j < M && equalizer.invoke(orig[i], rev[j])) {
78+
while (i < origSize && j < revSize && equalizer.invoke(orig[i], rev[j])) {
7979
i++
8080
j++
8181
}
8282
if (i != node.i) {
8383
node = PathNode(i, j, snake = true, bootstrap = false, prev = node)
8484
}
8585
diagonal[kmiddle] = node
86-
if (i >= N && j >= M) {
86+
if (i >= origSize && j >= revSize) {
8787
return diagonal[kmiddle]
8888
}
8989
k += 2
@@ -102,7 +102,7 @@ internal class MyersDiff<T>(private val equalizer: (T, T) -> Boolean = { t1, t2
102102
* @return A list of [Change]s corresponding to the path.
103103
* @throws IllegalStateException if a patch could not be built from the given path.
104104
*/
105-
private fun buildRevision(actualPath: PathNode?, orig: List<T>, rev: List<T>): List<Change> {
105+
private fun buildRevision(actualPath: PathNode?): List<Change> {
106106
var path: PathNode? = actualPath
107107
val changes: MutableList<Change> = mutableListOf()
108108
if (path!!.snake) {

src/commonMain/kotlin/io/github/petertrr/diffutils/algorithm/myers/PathNode.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ internal class PathNode(
7070

7171
override fun toString() = generateSequence(this) { it.prev }
7272
.joinToString(prefix = "[", postfix = "]") { "(${it.i}, ${it.j})" }
73-
}
73+
}

src/commonMain/kotlin/io/github/petertrr/diffutils/patch/Chunk.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public data class Chunk<T>(
3939
* the positions of changed lines of chunk in the text
4040
*/
4141
val changePosition: List<Int>? = null
42-
) {
42+
) {
4343
/**
4444
* Verifies that this chunk's saved text matches the corresponding text in the given sequence.
4545
*

src/commonMain/kotlin/io/github/petertrr/diffutils/patch/Patch.kt

+6-8
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import io.github.petertrr.diffutils.algorithm.Change
2525
*
2626
* @param T The type of the compared elements in the 'lines'.
2727
*/
28-
public class Patch<T>(estimatedPatchSize: Int = 10) {
28+
public class Patch<T> {
2929
public var deltas: MutableList<Delta<T>> = arrayListOf()
3030
get() {
3131
field.sortBy { it.source.position }
@@ -84,15 +84,13 @@ public class Patch<T>(estimatedPatchSize: Int = 10) {
8484
return Chunk(start, data.subList(start, end))
8585
}
8686

87-
public fun <T> generate(original: List<T>, revised: List<T>, _changes: List<Change>, includeEquals: Boolean): Patch<T> {
88-
val patch = Patch<T>(_changes.size)
87+
public fun <T> generate(original: List<T>, revised: List<T>, changes: List<Change>, includeEquals: Boolean): Patch<T> {
88+
val patch = Patch<T>()
8989
var startOriginal = 0
9090
var startRevised = 0
91-
var changes: List<Change> = _changes
92-
if (includeEquals) {
93-
changes = _changes.sortedBy { it.startOriginal }
94-
}
95-
for (change in changes) {
91+
changes.run {
92+
if (includeEquals) sortedBy { it.startOriginal } else this
93+
}.forEach { change ->
9694
if (includeEquals && startOriginal < change.startOriginal) {
9795
patch.addDelta(
9896
EqualDelta(

0 commit comments

Comments
 (0)