-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathDiffProcessor.java
118 lines (99 loc) · 3.66 KB
/
DiffProcessor.java
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
/*
* Copyright (c) 2014, Francis Galiegue ([email protected])
*
* This software is dual-licensed under:
*
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
* later version;
* - the Apache Software License (ASL) version 2.0.
*
* The text of this file and of both licenses is available at the root of this
* project or, if you have the jar distribution, in directory META-INF/, under
* the names LGPL-3.0.txt and ASL-2.0.txt respectively.
*
* Direct link to the sources:
*
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
*/
package com.github.fge.jsonpatch.diff;
import com.fasterxml.jackson.databind.JsonNode;
import com.github.fge.jackson.JsonNumEquals;
import com.github.fge.jackson.jsonpointer.JsonPointer;
import com.github.fge.jsonpatch.JsonPatch;
import com.github.fge.jsonpatch.JsonPatchOperation;
import javax.annotation.Nullable;
import java.util.*;
// TODO: cleanup
final class DiffProcessor
{
private static final JsonNumEquals EQUIVALENCE
= JsonNumEquals.getInstance();
private final Map<JsonPointer, JsonNode> unchanged;
private final DiffOptions options;
public static final boolean DIFF_DOESNT_REQUIRE_SOURCE = false;
private final List<DiffOperation> diffs = new ArrayList<DiffOperation>();
DiffProcessor(final Map<JsonPointer, JsonNode> unchanged) {
this(unchanged, DiffOptions.DEFAULT_OPTIONS);
}
DiffProcessor(final Map<JsonPointer, JsonNode> unchanged, DiffOptions options)
{
this.options = options;
this.unchanged = Collections.unmodifiableMap(new HashMap<JsonPointer, JsonNode>(unchanged));
}
void valueReplaced(final JsonPointer pointer, final JsonNode oldValue,
final JsonNode newValue)
{
diffs.add(DiffOperation.replace(pointer, oldValue, newValue));
}
void valueRemoved(final JsonPointer pointer, final JsonNode value)
{
diffs.add(DiffOperation.remove(pointer, value));
}
void valueAdded(final JsonPointer pointer, final JsonNode value)
{
if (options.isDiffDoesntRequireSource()) {
diffs.add(DiffOperation.add(pointer, value));
return;
}
final int removalIndex = findPreviouslyRemoved(value);
if (removalIndex != -1) {
final DiffOperation removed = diffs.get(removalIndex);
diffs.remove(removalIndex);
diffs.add(DiffOperation.move(removed.getFrom(),
value, pointer, value));
return;
}
final JsonPointer ptr = findUnchangedValue(value);
final DiffOperation op = ptr != null
? DiffOperation.copy(ptr, pointer, value)
: DiffOperation.add(pointer, value);
diffs.add(op);
}
JsonPatch getPatch()
{
final List<JsonPatchOperation> list = new ArrayList<JsonPatchOperation>();
for (final DiffOperation op: diffs)
list.add(op.asJsonPatchOperation());
return new JsonPatch(list);
}
@Nullable
private JsonPointer findUnchangedValue(final JsonNode value)
{
for (final Map.Entry<JsonPointer, JsonNode> entry: unchanged.entrySet())
if (EQUIVALENCE.equivalent(value, entry.getValue()))
return entry.getKey();
return null;
}
private int findPreviouslyRemoved(final JsonNode value)
{
DiffOperation op;
for (int i = 0; i < diffs.size(); i++) {
op = diffs.get(i);
if (op.getType() == DiffOperation.Type.REMOVE
&& EQUIVALENCE.equivalent(value, op.getOldValue()))
return i;
}
return -1;
}
}