Skip to content

Commit 44f210c

Browse files
committedMar 21, 2021
Fixed #689 (remove "request payload" functionality)
1 parent 47d39f4 commit 44f210c

File tree

9 files changed

+5
-364
lines changed

9 files changed

+5
-364
lines changed
 

‎release-notes/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ JSON library.
3535
(replaced by `StreamWriteCapability` equivalents)
3636
#680: Allow use of `java.nio.file.Path` as parser source, generator target
3737
(contributed by Sven D)
38+
#689: Remove existing "request payload" functionality
3839
- Rename `JsonGenerator.Feature.AUTO_CLOSE_JSON_CONTENT` as `AUTO_CLOSE_CONTENT`
3940
- Add `TreeCodec.nullNode()`, `TreeNode.isNull()` methods
4041
- Change the way `JsonLocation.NA` is included in exception messages

‎src/main/java/com/fasterxml/jackson/core/JsonParser.java

+2-51
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import java.io.*;
99
import java.math.BigDecimal;
1010
import java.math.BigInteger;
11-
import java.nio.charset.Charset;
1211

1312
import com.fasterxml.jackson.core.async.NonBlockingInputFeeder;
1413
import com.fasterxml.jackson.core.exc.InputCoercionException;
@@ -19,7 +18,6 @@
1918
import com.fasterxml.jackson.core.type.ResolvedType;
2019
import com.fasterxml.jackson.core.type.TypeReference;
2120
import com.fasterxml.jackson.core.util.JacksonFeatureSet;
22-
import com.fasterxml.jackson.core.util.RequestPayload;
2321

2422
/**
2523
* Base class that defines public API for reading JSON content.
@@ -46,17 +44,6 @@ public enum NumberType {
4644
protected final static JacksonFeatureSet<StreamReadCapability> DEFAULT_READ_CAPABILITIES
4745
= JacksonFeatureSet.fromDefaults(StreamReadCapability.values());
4846

49-
/*
50-
/**********************************************************************
51-
/* Minimal configuration state
52-
/**********************************************************************
53-
*/
54-
55-
/**
56-
* Optional container that holds the request payload which will be displayed on JSON parsing error.
57-
*/
58-
protected transient RequestPayload _requestPayload;
59-
6047
/*
6148
/**********************************************************************
6249
/* Life-cycle
@@ -203,40 +190,6 @@ protected JsonParser() { }
203190
*/
204191
public abstract void assignCurrentValue(Object v);
205192

206-
/*
207-
/**********************************************************************
208-
/* Attaching additional metadata: request payload
209-
/**********************************************************************
210-
*/
211-
212-
/**
213-
* Sets the payload to be passed if {@link StreamReadException} is thrown.
214-
*
215-
* @param payload to assign
216-
*/
217-
public void setRequestPayloadOnError(RequestPayload payload) {
218-
_requestPayload = payload;
219-
}
220-
221-
/**
222-
* Sets the {@code byte[]} request payload and the charset needed to decode it
223-
*
224-
* @param payload Payload to pass
225-
* @param charset Character encoding for (lazily) decoding payload
226-
*/
227-
public void setRequestPayloadOnError(byte[] payload, Charset charset) {
228-
_requestPayload = (payload == null) ? null : new RequestPayload(payload, charset);
229-
}
230-
231-
/**
232-
* Sets the String request payload
233-
*
234-
* @param payload to assign
235-
*/
236-
public void setRequestPayloadOnError(String payload) {
237-
_requestPayload = (payload == null) ? null : new RequestPayload(payload);
238-
}
239-
240193
/*
241194
/**********************************************************************
242195
/* Optional support for non-blocking parsing
@@ -1661,8 +1614,7 @@ protected void _reportUnsupportedOperation() {
16611614
* @return {@link StreamReadException} constructed
16621615
*/
16631616
protected StreamReadException _constructReadException(String msg) {
1664-
return new StreamReadException(this, msg)
1665-
.withRequestPayload(_requestPayload);
1617+
return new StreamReadException(this, msg);
16661618
}
16671619

16681620
protected StreamReadException _constructReadException(String msg, Object arg) {
@@ -1674,7 +1626,6 @@ protected StreamReadException _constructReadException(String msg, Object arg1, O
16741626
}
16751627

16761628
protected final StreamReadException _constructReadException(String msg, Throwable t) {
1677-
return new StreamReadException(this, msg, t)
1678-
.withRequestPayload(_requestPayload);
1629+
return new StreamReadException(this, msg, t);
16791630
}
16801631
}

‎src/main/java/com/fasterxml/jackson/core/base/ParserMinimalBase.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -980,10 +980,9 @@ protected InputCoercionException _constructNotNumericType(JsonToken actualToken,
980980
}
981981

982982
protected InputCoercionException _constructInputCoercion(String msg, JsonToken inputType, Class<?> targetType) {
983-
return new InputCoercionException(this, msg, inputType, targetType)
984-
.withRequestPayload(_requestPayload);
983+
return new InputCoercionException(this, msg, inputType, targetType);
985984
}
986-
985+
987986
/*
988987
/**********************************************************************
989988
/* Error reporting, generic

‎src/main/java/com/fasterxml/jackson/core/exc/InputCoercionException.java

-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package com.fasterxml.jackson.core.exc;
22

33
import com.fasterxml.jackson.core.*;
4-
import com.fasterxml.jackson.core.util.RequestPayload;
54

65
/**
76
* Exception type for read-side problems that are not direct decoding ("parsing")
@@ -54,12 +53,6 @@ public InputCoercionException withParser(JsonParser p) {
5453
return this;
5554
}
5655

57-
@Override
58-
public InputCoercionException withRequestPayload(RequestPayload p) {
59-
_requestPayload = p;
60-
return this;
61-
}
62-
6356
/**
6457
* Accessor for getting information about input type (in form of token, giving "shape"
6558
* of input) for which coercion failed.
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package com.fasterxml.jackson.core.exc;
22

33
import com.fasterxml.jackson.core.*;
4-
import com.fasterxml.jackson.core.util.RequestPayload;
54

65
/**
76
* Intermediate base class for all read-side streaming processing problems, including
@@ -14,14 +13,6 @@ public class StreamReadException
1413

1514
protected transient JsonParser _processor;
1615

17-
/**
18-
* Optional payload that can be assigned to pass along for error reporting
19-
* or handling purposes. Core streaming parser implementations DO NOT
20-
* initialize this; it is up to using applications and frameworks to
21-
* populate it.
22-
*/
23-
protected RequestPayload _requestPayload;
24-
2516
public StreamReadException(JsonParser p, String msg) {
2617
super(msg, (p == null) ? null : p.currentLocation(), null);
2718
_processor = p;
@@ -60,55 +51,8 @@ public StreamReadException withParser(JsonParser p) {
6051
return this;
6152
}
6253

63-
/**
64-
* Fluent method that may be used to assign payload to this exception,
65-
* to let recipient access it for diagnostics purposes.
66-
*<p>
67-
* NOTE: `this` instance is modified and no new instance is constructed.
68-
*
69-
* @param payload Payload to assign to this exception
70-
*
71-
* @return This exception instance to allow call chaining
72-
*/
73-
public StreamReadException withRequestPayload(RequestPayload payload) {
74-
_requestPayload = payload;
75-
return this;
76-
}
77-
7854
@Override
7955
public JsonParser processor() {
8056
return _processor;
8157
}
82-
83-
/**
84-
* Method that may be called to find payload that was being parsed, if
85-
* one was specified for parser that threw this Exception.
86-
*
87-
* @return request body, if payload was specified; `null` otherwise
88-
*/
89-
public RequestPayload getRequestPayload() {
90-
return _requestPayload;
91-
}
92-
93-
/**
94-
* The method returns the String representation of the request payload if
95-
* one was specified for parser that threw this Exception.
96-
*
97-
* @return request body as String, if payload was specified; `null` otherwise
98-
*/
99-
public String getRequestPayloadAsString() {
100-
return (_requestPayload != null) ? _requestPayload.toString() : null;
101-
}
102-
103-
/**
104-
* Overriding the getMessage() to include the request body
105-
*/
106-
@Override
107-
public String getMessage() {
108-
String msg = super.getMessage();
109-
if (_requestPayload != null) {
110-
msg += "\nRequest payload: " + _requestPayload.toString();
111-
}
112-
return msg;
113-
}
11458
}

‎src/main/java/com/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer.java

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import java.util.Arrays;
44
import java.util.concurrent.atomic.AtomicReference;
55

6-
import com.fasterxml.jackson.core.JacksonException;
76
import com.fasterxml.jackson.core.exc.StreamReadException;
87
import com.fasterxml.jackson.core.json.JsonFactory;
98
import com.fasterxml.jackson.core.util.InternCache;

‎src/main/java/com/fasterxml/jackson/core/util/RequestPayload.java

-63
This file was deleted.

‎src/test/java/com/fasterxml/jackson/core/json/RequestPayloadOnExceptionTest.java

-150
This file was deleted.

‎src/test/java/com/fasterxml/jackson/core/util/RequestPayloadTest.java

-33
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.