Skip to content

Commit cea2a24

Browse files
committed
Update cache to handle DiffContext
1 parent 9773e1a commit cea2a24

File tree

3 files changed

+81
-17
lines changed

3 files changed

+81
-17
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
package com.qdesrame.openapi.diff.compare;
2+
3+
import com.qdesrame.openapi.diff.model.DiffContext;
4+
import lombok.Getter;
5+
import org.apache.commons.lang3.builder.EqualsBuilder;
6+
import org.apache.commons.lang3.builder.HashCodeBuilder;
7+
8+
@Getter
9+
public final class CacheKey {
10+
private final String left;
11+
private final String right;
12+
private final DiffContext context;
13+
14+
public CacheKey(final String left, final String right, final DiffContext context) {
15+
this.left = left;
16+
this.right = right;
17+
this.context = context;
18+
}
19+
20+
@Override
21+
public boolean equals(Object o) {
22+
if (this == o) return true;
23+
24+
if (o == null || getClass() != o.getClass()) return false;
25+
26+
CacheKey cacheKey = (CacheKey) o;
27+
28+
return new EqualsBuilder()
29+
.append(left, cacheKey.left)
30+
.append(right, cacheKey.right)
31+
.append(context, cacheKey.context)
32+
.isEquals();
33+
}
34+
35+
@Override
36+
public int hashCode() {
37+
return new HashCodeBuilder(17, 37)
38+
.append(left)
39+
.append(right)
40+
.append(context)
41+
.toHashCode();
42+
}
43+
}

src/main/java/com/qdesrame/openapi/diff/compare/ReferenceDiffCache.java

+8-17
Original file line numberDiff line numberDiff line change
@@ -11,33 +11,25 @@
1111
* Created by adarsh.sharma on 07/01/18.
1212
*/
1313
public abstract class ReferenceDiffCache<C, D> {
14-
private Map<String, Map<String, D>> refDiffMap;
14+
private Map<CacheKey, D> refDiffMap;
1515

1616
public ReferenceDiffCache() {
1717
this.refDiffMap = new HashMap<>();
1818
}
1919

20-
private Optional<D> getFromCache(String leftRef, String rightRef) {
21-
Optional<Map<String, D>> changedSchemaMap = Optional.ofNullable(refDiffMap.get(leftRef));
22-
if (changedSchemaMap.isPresent()) {
23-
return Optional.ofNullable(changedSchemaMap.get().get(rightRef));
24-
}
25-
return Optional.empty();
20+
private Optional<D> getFromCache(CacheKey cacheKey) {
21+
return Optional.ofNullable(refDiffMap.get(cacheKey));
2622
}
2723

28-
private void addToCache(String leftRef, String rightRef, D changed) {
29-
Map<String, D> changedSchemaMap = refDiffMap.computeIfAbsent(leftRef, k -> new HashMap<>());
30-
changedSchemaMap.put(rightRef, changed);
24+
private void addToCache(CacheKey cacheKey, D changed) {
25+
refDiffMap.put(cacheKey, changed);
3126
}
3227

33-
// public Optional<D> cachedDiff(HashSet<String> refSet, C left, C right, String leftRef, String rightRef) {
34-
// return cachedDiff(refSet, left, right, leftRef, rightRef, null);
35-
// }
36-
//
3728
public Optional<D> cachedDiff(HashSet<String> refSet, C left, C right, String leftRef, String rightRef, DiffContext context) {
3829
boolean areBothRefParameters = leftRef != null && rightRef != null;
3930
if (areBothRefParameters) {
40-
Optional<D> changedFromRef = getFromCache(leftRef, rightRef);
31+
CacheKey key = new CacheKey(leftRef, rightRef, context);
32+
Optional<D> changedFromRef = getFromCache(key);
4133
if (changedFromRef.isPresent()) {
4234
return changedFromRef;
4335
} else {
@@ -47,9 +39,8 @@ public Optional<D> cachedDiff(HashSet<String> refSet, C left, C right, String le
4739
} else {
4840
refSet.add(refKey);
4941
Optional<D> changed = computeDiff(refSet, left, right, context);
50-
addToCache(leftRef, rightRef, changed.orElse(null));
42+
addToCache(key, changed.orElse(null));
5143
refSet.remove(refKey);
52-
5344
return changed;
5445
}
5546
}

src/main/java/com/qdesrame/openapi/diff/model/DiffContext.java

+30
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package com.qdesrame.openapi.diff.model;
22

33
import io.swagger.v3.oas.models.PathItem;
4+
import org.apache.commons.lang3.builder.EqualsBuilder;
5+
import org.apache.commons.lang3.builder.HashCodeBuilder;
46

57
import java.util.HashMap;
68
import java.util.Map;
@@ -90,4 +92,32 @@ public DiffContext setParameters(Map<String, String> parameters) {
9092
this.parameters = parameters;
9193
return this;
9294
}
95+
96+
@Override
97+
public boolean equals(Object o) {
98+
if (this == o) return true;
99+
100+
if (o == null || getClass() != o.getClass()) return false;
101+
102+
DiffContext that = (DiffContext) o;
103+
104+
return new EqualsBuilder()
105+
.append(response, that.response)
106+
.append(request, that.request)
107+
.append(url, that.url)
108+
.append(parameters, that.parameters)
109+
.append(method, that.method)
110+
.isEquals();
111+
}
112+
113+
@Override
114+
public int hashCode() {
115+
return new HashCodeBuilder(17, 37)
116+
.append(url)
117+
.append(parameters)
118+
.append(method)
119+
.append(response)
120+
.append(request)
121+
.toHashCode();
122+
}
93123
}

0 commit comments

Comments
 (0)