forked from petertrr/kotlin-multiplatform-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiffUtils.kt
151 lines (137 loc) · 5.29 KB
/
DiffUtils.kt
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
/*
* Copyright 2021 Peter Trifanov.
* Copyright 2009-2017 java-diff-utils.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* This file has been modified by Peter Trifanov when porting from Java to Kotlin.
*/
@file:JvmName("DiffUtils")
package io.github.petertrr.diffutils
import io.github.petertrr.diffutils.algorithm.DiffAlgorithm
import io.github.petertrr.diffutils.algorithm.DiffAlgorithmListener
import io.github.petertrr.diffutils.algorithm.NoopAlgorithmListener
import io.github.petertrr.diffutils.algorithm.myers.MyersDiff
import io.github.petertrr.diffutils.patch.Patch
import io.github.petertrr.diffutils.text.DiffRowGenerator
import kotlin.jvm.JvmName
import kotlin.jvm.JvmOverloads
// Instead of asking consumers to normalize their line endings, we simply catch them all.
private val lineBreak = Regex("\r\n|\r|\n")
/**
* Computes the difference between two strings.
*
* By default, uses the Myers algorithm.
*
* @param sourceText A string representing the original text
* @param targetText A string representing the revised text
* @param algorithm The diff algorithm to use
* @param progress The diff algorithm progress listener
* @param includeEqualParts Whether to include equal data parts into the patch. `false` by default.
* @return The patch describing the difference between the original and revised strings
*/
@JvmOverloads
public fun diff(
sourceText: String,
targetText: String,
algorithm: DiffAlgorithm<String> = MyersDiff(),
progress: DiffAlgorithmListener = NoopAlgorithmListener(),
includeEqualParts: Boolean = false,
): Patch<String> =
diff(
source = sourceText.split(lineBreak),
target = targetText.split(lineBreak),
algorithm = algorithm,
progress = progress,
includeEqualParts = includeEqualParts,
)
/**
* Computes the difference between the original and target list of elements.
*
* By default, uses the Myers algorithm.
*
* @param source A list representing the original sequence of elements
* @param target A list representing the revised sequence of elements
* @param algorithm The diff algorithm to use
* @param progress The diff algorithm progress listener
* @param includeEqualParts Whether to include equal parts in the resulting patch. `false` by default.
* @return The patch describing the difference between the original and revised sequences
*/
@JvmOverloads
public fun <T> diff(
source: List<T>,
target: List<T>,
algorithm: DiffAlgorithm<T> = MyersDiff(),
progress: DiffAlgorithmListener = NoopAlgorithmListener(),
includeEqualParts: Boolean = false,
): Patch<T> =
Patch.generate(
original = source,
revised = target,
changes = algorithm.computeDiff(source, target, progress),
includeEquals = includeEqualParts,
)
/**
* Computes the difference between the given texts inline.
*
* This one uses the "trick" to make out of texts lists of characters,
* like [DiffRowGenerator] does and merges those changes at the end together again.
*
* @param original A string representing the original text
* @param revised A string representing the revised text
* @return The patch describing the difference between the original and revised text
*/
public fun diffInline(original: String, revised: String): Patch<String> {
val origChars = original.toCharArray()
val origList = ArrayList<String>(origChars.size)
val revChars = revised.toCharArray()
val revList = ArrayList<String>(revChars.size)
for (character in origChars) {
origList.add(character.toString())
}
for (character in revChars) {
revList.add(character.toString())
}
val patch = diff(origList, revList)
patch.deltas = patch.deltas.mapTo(ArrayList(patch.deltas.size)) {
it.withChunks(
it.source.copy(lines = compressLines(it.source.lines, "")),
it.target.copy(lines = compressLines(it.target.lines, "")),
)
}
return patch
}
/**
* Applies the given patch to the original list and returns the revised list.
*
* @param original A list representing the original sequence of elements
* @param patch The patch to apply
* @return A list representing the revised sequence of elements
*/
public fun <T> patch(original: List<T>, patch: Patch<T>): List<T> =
patch.applyTo(original)
/**
* Applies the given patch to the revised list and returns the original list.
*
* @param revised A list representing the revised sequence of elements
* @param patch The patch to apply
* @return A list representing the original sequence of elements
*/
public fun <T> unpatch(revised: List<T>, patch: Patch<T>): List<T> =
patch.restore(revised)
private fun compressLines(lines: List<String>, delimiter: String): List<String> =
if (lines.isEmpty()) {
emptyList()
} else {
listOf(lines.joinToString(delimiter))
}