@@ -37,40 +37,62 @@ public class Patch<T>(private var conflictOutput: ConflictOutput<T> = ExceptionP
37
37
}
38
38
39
39
/* *
40
- * Apply this patch to the given target.
40
+ * Apply this patch to the given target list, returning a new list .
41
41
*
42
42
* @return The patched text
43
43
* @throws PatchFailedException If the patch cannot be applied
44
44
*/
45
45
public fun applyTo (target : List <T >): List <T > {
46
46
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 >) {
47
59
val it = deltas.listIterator(deltas.size)
48
60
49
61
while (it.hasPrevious()) {
50
62
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 )
53
65
}
54
-
55
- return result
56
66
}
57
67
58
68
/* *
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.
60
71
*
61
72
* @param target The given target
62
73
* @return The restored text
63
74
*/
64
75
public fun restore (target : List <T >): List <T > {
65
76
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 >) {
66
90
val it = deltas.listIterator(deltas.size)
67
91
68
92
while (it.hasPrevious()) {
69
93
val delta = it.previous()
70
- delta.restore(result )
94
+ delta.restore(target )
71
95
}
72
-
73
- return result
74
96
}
75
97
76
98
/* *
@@ -102,7 +124,7 @@ public class Patch<T>(private var conflictOutput: ConflictOutput<T> = ExceptionP
102
124
var startRevised = 0
103
125
104
126
val adjustedChanges = if (includeEquals) {
105
- changes.sortedBy { it. startOriginal }
127
+ changes.sortedBy( Change :: startOriginal)
106
128
} else {
107
129
changes
108
130
}
0 commit comments