Skip to content

Commit f5b1adf

Browse files
authored
Port changes up to version 4.15 of java-diff-utils (#130)
1 parent af85ee4 commit f5b1adf

File tree

3 files changed

+49
-28
lines changed

3 files changed

+49
-28
lines changed

README.md

+15-17
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,38 @@
11
# kotlin-multiplatform-diff
22

33
![Build and test](https://github.com/petertrr/kotlin-multiplatform-diff/workflows/Build%20and%20test/badge.svg)
4+
[![Codecov](https://codecov.io/gh/petertrr/kotlin-multiplatform-diff/branch/main/graph/badge.svg)](https://codecov.io/gh/petertrr/kotlin-multiplatform-diff)
45
[![License](https://img.shields.io/github/license/petertrr/kotlin-multiplatform-diff)](https://github.com/petertrr/kotlin-multiplatform-diff/blob/main/LICENSE)
5-
[![codecov](https://codecov.io/gh/petertrr/kotlin-multiplatform-diff/branch/main/graph/badge.svg)](https://codecov.io/gh/petertrr/kotlin-multiplatform-diff)
6-
7-
[![Releases](https://img.shields.io/github/v/release/petertrr/kotlin-multiplatform-diff)](https://github.com/petertrr/kotlin-multiplatform-diff/releases)
86
[![Maven Central](https://img.shields.io/maven-central/v/io.github.petertrr/kotlin-multiplatform-diff)](https://mvnrepository.com/artifact/io.github.petertrr)
97
[![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin)
8+
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.24-blue.svg?logo=kotlin)](http://kotlinlang.org)
109

1110
This is a port of [java-diff-utils](https://github.com/java-diff-utils/java-diff-utils) to Kotlin with multiplatform support.
12-
All credit for the implementation goes to original authors.
11+
All credit for the implementation goes to the original authors.
1312

1413
## Features
1514

16-
All features from version `4.12` of the original library are present, except for:
15+
All features from version `4.15` of the original library are present, except for:
1716

1817
- fuzzy patches
1918
- unified diff, which heavily uses file read/write and therefore needs a more complicated rewrite
2019
- diff-utils-jgit, which uses JVM-only JGit
2120

22-
Please refer to the original guides for more information.
23-
24-
## Supported Platforms
21+
Refer to the [original wiki][1] for more information.
2522

26-
Currently, artifacts for the following platforms are supported:
23+
## Supported platforms
2724

2825
- JVM
29-
- JS (both browser and Node.js)
30-
- WebAssembly (JS and WASI)
26+
- JS (browser and Node.js)
27+
- WebAssembly (WASM/JS and WASM/WASI)
3128
- Native
3229

33-
The supported Native targets are (following the Kotlin/Native [target support guidelines][1]):
30+
Supported Native targets are (following the Kotlin/Native [target support guidelines][2]):
3431

35-
| Tier 1 | Tier 2 | Tier 3 |
36-
|:------------------|:------------------|:---------|
37-
| macosX64 | linuxX64 | mingwX64 |
38-
| macosArm64 | linuxArm64 | |
32+
| Tier 1 | Tier 2 | Tier 3 |
33+
|:-----------|:-----------|:---------|
34+
| macosX64 | linuxX64 | mingwX64 |
35+
| macosArm64 | linuxArm64 | |
3936

40-
[1]: https://kotlinlang.org/docs/native-target-support.html
37+
[1]: https://github.com/java-diff-utils/java-diff-utils/wiki
38+
[2]: https://kotlinlang.org/docs/native-target-support.html

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

+32-10
Original file line numberDiff line numberDiff line change
@@ -37,40 +37,62 @@ public class Patch<T>(private var conflictOutput: ConflictOutput<T> = ExceptionP
3737
}
3838

3939
/**
40-
* Apply this patch to the given target.
40+
* Apply this patch to the given target list, returning a new list.
4141
*
4242
* @return The patched text
4343
* @throws PatchFailedException If the patch cannot be applied
4444
*/
4545
public fun applyTo(target: List<T>): List<T> {
4646
val result = target.toMutableList()
47+
applyToExisting(result)
48+
return result
49+
}
50+
51+
/**
52+
* Apply this patch to the given target list, directly modifying it.
53+
*
54+
* @return The patched text
55+
* @throws PatchFailedException If the patch cannot be applied
56+
*/
57+
@Suppress("MemberVisibilityCanBePrivate")
58+
public fun applyToExisting(target: MutableList<T>) {
4759
val it = deltas.listIterator(deltas.size)
4860

4961
while (it.hasPrevious()) {
5062
val delta = it.previous()
51-
val verifyChunk = delta.verifyAndApplyTo(result)
52-
conflictOutput.processConflict(verifyChunk, delta, result)
63+
val verifyChunk = delta.verifyAndApplyTo(target)
64+
conflictOutput.processConflict(verifyChunk, delta, target)
5365
}
54-
55-
return result
5666
}
5767

5868
/**
59-
* Restore the text to its original form. Opposite of the [applyTo] method.
69+
* Creates a new list, containing the restored state of the given target list.
70+
* Opposite of the [applyTo] method.
6071
*
6172
* @param target The given target
6273
* @return The restored text
6374
*/
6475
public fun restore(target: List<T>): List<T> {
6576
val result = target.toMutableList()
77+
restoreToExisting(result)
78+
return result
79+
}
80+
81+
/**
82+
* Restores all changes within the given target list.
83+
* Opposite of the [applyToExisting] method.
84+
*
85+
* @param target The given target
86+
* @return The restored text
87+
*/
88+
@Suppress("MemberVisibilityCanBePrivate")
89+
public fun restoreToExisting(target: MutableList<T>) {
6690
val it = deltas.listIterator(deltas.size)
6791

6892
while (it.hasPrevious()) {
6993
val delta = it.previous()
70-
delta.restore(result)
94+
delta.restore(target)
7195
}
72-
73-
return result
7496
}
7597

7698
/**
@@ -102,7 +124,7 @@ public class Patch<T>(private var conflictOutput: ConflictOutput<T> = ExceptionP
102124
var startRevised = 0
103125

104126
val adjustedChanges = if (includeEquals) {
105-
changes.sortedBy { it.startOriginal }
127+
changes.sortedBy(Change::startOriginal)
106128
} else {
107129
changes
108130
}

src/commonMain/kotlin/io/github/petertrr/diffutils/text/WordDiffSplitter.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
package io.github.petertrr.diffutils.text
1717

1818
// As a "global" variable to avoid re-compiling the regex each time
19-
private val defaultPattern = Regex("\\s+|[,.\\[\\](){}/\\\\*+\\-#]")
19+
@Suppress("RegExpRedundantEscape") // To be PCRE compliant!
20+
private val defaultPattern = Regex("""\s+|[,.\[\](){}\/\\*+\-#<>;:&']+""")
2021

2122
/**
2223
* Splitting lines by word to achieve word by word diff checking.

0 commit comments

Comments
 (0)