1
1
/*
2
2
* Copyright (c) 2014, Francis Galiegue ([email protected] )
3
+ * Copyright (c) 2016, Alexander Patrikalakis ([email protected] )
4
+ * Copyright (c) 2015, Daisuke Miyamoto ([email protected] )
3
5
*
4
6
* This software is dual-licensed under:
5
7
*
19
21
20
22
package com .github .fge .jsonpatch ;
21
23
24
+ import com .amazonaws .services .dynamodbv2 .xspec .ExpressionSpecBuilder ;
22
25
import com .fasterxml .jackson .annotation .JsonCreator ;
23
26
import com .fasterxml .jackson .core .JsonGenerator ;
24
27
import com .fasterxml .jackson .databind .JsonNode ;
28
31
import com .github .fge .jackson .JacksonUtils ;
29
32
import com .github .fge .msgsimple .bundle .MessageBundle ;
30
33
import com .github .fge .msgsimple .load .MessageBundles ;
34
+ import com .google .common .base .Supplier ;
31
35
import com .google .common .collect .ImmutableList ;
32
36
33
37
import java .io .IOException ;
89
93
* <p><b>IMPORTANT NOTE:</b> the JSON Patch is supposed to be VALID when the
90
94
* constructor for this class ({@link JsonPatch#fromJson(JsonNode)} is used.</p>
91
95
*/
92
- public final class JsonPatch
93
- implements JsonSerializable
96
+ public class JsonPatch
97
+ implements JsonSerializable , Supplier < ExpressionSpecBuilder >
94
98
{
95
99
private static final MessageBundle BUNDLE
96
100
= MessageBundles .getBundle (JsonPatchMessages .class );
97
101
98
102
/**
99
103
* List of operations
100
104
*/
101
- private final List <JsonPatchOperation > operations ;
105
+ protected final List <JsonPatchOperation > operations ;
102
106
103
107
/**
104
108
* Constructor
@@ -126,7 +130,7 @@ public static JsonPatch fromJson(final JsonNode node)
126
130
throws IOException
127
131
{
128
132
BUNDLE .checkNotNull (node , "jsonPatch.nullInput" );
129
- return JacksonUtils .getReader ().withType (JsonPatch .class )
133
+ return JacksonUtils .getReader ().forType (JsonPatch .class )
130
134
.readValue (node );
131
135
}
132
136
@@ -148,6 +152,19 @@ public JsonNode apply(final JsonNode node)
148
152
149
153
return ret ;
150
154
}
155
+
156
+ /**
157
+ * Converts this JsonPatch into an ExpressionSpecBuilder
158
+ * @return an expression spec builder that contains the updates contained in this
159
+ * patch
160
+ */
161
+ public ExpressionSpecBuilder get () {
162
+ ExpressionSpecBuilder builder = new ExpressionSpecBuilder ();
163
+ for (JsonPatchOperation operation : operations ) {
164
+ operation .applyToBuilder (builder );
165
+ }
166
+ return builder ;
167
+ }
151
168
152
169
@ Override
153
170
public String toString ()
0 commit comments