Skip to content

Commit b37aef8

Browse files
committed
More #2177 changes, will be a long day...
1 parent 92f80f7 commit b37aef8

35 files changed

+509
-552
lines changed

src/main/java/com/fasterxml/jackson/databind/DeserializationContext.java

+31-28
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package com.fasterxml.jackson.databind;
22

3-
import java.io.IOException;
43
import java.text.DateFormat;
54
import java.text.ParseException;
65
import java.util.*;
@@ -332,7 +331,7 @@ public ObjectTreeNode createObjectNode() {
332331

333332
@SuppressWarnings("unchecked")
334333
@Override
335-
public JsonNode readTree(JsonParser p) throws IOException {
334+
public JsonNode readTree(JsonParser p) throws JacksonException {
336335
// NOTE: inlined version of `_bindAsTree()` from `ObjectReader`
337336
JsonToken t = p.currentToken();
338337
if (t == null) {
@@ -358,17 +357,17 @@ public JsonNode readTree(JsonParser p) throws IOException {
358357
* this method does not allow use of contextual annotations.
359358
*/
360359
@Override
361-
public <T> T readValue(JsonParser p, Class<T> type) throws IOException {
360+
public <T> T readValue(JsonParser p, Class<T> type) throws JacksonException {
362361
return readValue(p, getTypeFactory().constructType(type));
363362
}
364363

365364
@Override
366-
public <T> T readValue(JsonParser p, TypeReference<T> refType) throws IOException {
365+
public <T> T readValue(JsonParser p, TypeReference<T> refType) throws JacksonException {
367366
return readValue(p, getTypeFactory().constructType(refType));
368367
}
369368

370369
@Override
371-
public <T> T readValue(JsonParser p, ResolvedType type) throws IOException {
370+
public <T> T readValue(JsonParser p, ResolvedType type) throws JacksonException {
372371
if (!(type instanceof JavaType)) {
373372
throw new UnsupportedOperationException(
374373
"Only support `JavaType` implementation of `ResolvedType`, not: "+type.getClass().getName());
@@ -377,7 +376,7 @@ public <T> T readValue(JsonParser p, ResolvedType type) throws IOException {
377376
}
378377

379378
@SuppressWarnings("unchecked")
380-
public <T> T readValue(JsonParser p, JavaType type) throws IOException {
379+
public <T> T readValue(JsonParser p, JavaType type) throws JacksonException {
381380
JsonDeserializer<Object> deser = findRootValueDeserializer(type);
382381
if (deser == null) {
383382
reportBadDefinition(type,
@@ -985,12 +984,12 @@ public Calendar constructCalendar(Date d) {
985984
* @return String value found; not {@code null} (exception should be thrown if no suitable
986985
* value found)
987986
*
988-
* @throws IOException If there are problems either reading content (underlying parser
987+
* @throws JacksonException If there are problems either reading content (underlying parser
989988
* problem) or finding expected scalar value
990989
*/
991990
public String extractScalarFromObject(JsonParser p, JsonDeserializer<?> deser,
992991
Class<?> scalarType)
993-
throws IOException
992+
throws JacksonException
994993
{
995994
return (String) handleUnexpectedToken(constructType(scalarType), p);
996995
}
@@ -1007,12 +1006,16 @@ public String extractScalarFromObject(JsonParser p, JsonDeserializer<?> deser,
10071006
* annotations that the property (passed to this method -- usually property that
10081007
* has custom serializer that called this method) has.
10091008
*/
1010-
public <T> T readPropertyValue(JsonParser p, BeanProperty prop, Class<T> type) throws IOException {
1009+
public <T> T readPropertyValue(JsonParser p, BeanProperty prop, Class<T> type)
1010+
throws JacksonException
1011+
{
10111012
return readPropertyValue(p, prop, getTypeFactory().constructType(type));
10121013
}
10131014

10141015
@SuppressWarnings("unchecked")
1015-
public <T> T readPropertyValue(JsonParser p, BeanProperty prop, JavaType type) throws IOException {
1016+
public <T> T readPropertyValue(JsonParser p, BeanProperty prop, JavaType type)
1017+
throws JacksonException
1018+
{
10161019
JsonDeserializer<Object> deser = findContextualValueDeserializer(type, prop);
10171020
if (deser == null) {
10181021
return reportBadDefinition(type, String.format(
@@ -1039,7 +1042,7 @@ public <T> T readPropertyValue(JsonParser p, BeanProperty prop, JavaType type) t
10391042
*/
10401043
public boolean handleUnknownProperty(JsonParser p, JsonDeserializer<?> deser,
10411044
Object instanceOrClass, String propName)
1042-
throws IOException
1045+
throws JacksonException
10431046
{
10441047
LinkedNode<DeserializationProblemHandler> h = _config.getProblemHandlers();
10451048
while (h != null) {
@@ -1075,11 +1078,11 @@ public boolean handleUnknownProperty(JsonParser p, JsonDeserializer<?> deser,
10751078
*
10761079
* @return Key value to use
10771080
*
1078-
* @throws IOException To indicate unrecoverable problem, usually based on <code>msg</code>
1081+
* @throws JacksonException To indicate unrecoverable problem, usually based on <code>msg</code>
10791082
*/
10801083
public Object handleWeirdKey(Class<?> keyClass, String keyValue,
10811084
String msg, Object... msgArgs)
1082-
throws IOException
1085+
throws JacksonException
10831086
{
10841087
// but if not handled, just throw exception
10851088
msg = _format(msg, msgArgs);
@@ -1119,11 +1122,11 @@ public Object handleWeirdKey(Class<?> keyClass, String keyValue,
11191122
*
11201123
* @return Property value to use
11211124
*
1122-
* @throws IOException To indicate unrecoverable problem, usually based on <code>msg</code>
1125+
* @throws JacksonException To indicate unrecoverable problem, usually based on <code>msg</code>
11231126
*/
11241127
public Object handleWeirdStringValue(Class<?> targetClass, String value,
11251128
String msg, Object... msgArgs)
1126-
throws IOException
1129+
throws JacksonException
11271130
{
11281131
// but if not handled, just throw exception
11291132
msg = _format(msg, msgArgs);
@@ -1163,11 +1166,11 @@ public Object handleWeirdStringValue(Class<?> targetClass, String value,
11631166
*
11641167
* @return Property value to use
11651168
*
1166-
* @throws IOException To indicate unrecoverable problem, usually based on <code>msg</code>
1169+
* @throws JacksonException To indicate unrecoverable problem, usually based on <code>msg</code>
11671170
*/
11681171
public Object handleWeirdNumberValue(Class<?> targetClass, Number value,
11691172
String msg, Object... msgArgs)
1170-
throws IOException
1173+
throws JacksonException
11711174
{
11721175
msg = _format(msg, msgArgs);
11731176
LinkedNode<DeserializationProblemHandler> h = _config.getProblemHandlers();
@@ -1192,7 +1195,7 @@ public Object handleWeirdNumberValue(Class<?> targetClass, Number value,
11921195

11931196
public Object handleWeirdNativeValue(JavaType targetType, Object badValue,
11941197
JsonParser p)
1195-
throws IOException
1198+
throws JacksonException
11961199
{
11971200
LinkedNode<DeserializationProblemHandler> h = _config.getProblemHandlers();
11981201
final Class<?> raw = targetType.getRawClass();
@@ -1232,7 +1235,7 @@ public Object handleWeirdNativeValue(JavaType targetType, Object badValue,
12321235
@SuppressWarnings("resource")
12331236
public Object handleMissingInstantiator(Class<?> instClass, ValueInstantiator valueInst,
12341237
JsonParser p, String msg, Object... msgArgs)
1235-
throws IOException
1238+
throws JacksonException
12361239
{
12371240
if (p == null) {
12381241
p = getParser();
@@ -1294,7 +1297,7 @@ public Object handleMissingInstantiator(Class<?> instClass, ValueInstantiator va
12941297
*/
12951298
public Object handleInstantiationProblem(Class<?> instClass, Object argument,
12961299
Throwable t)
1297-
throws IOException
1300+
throws JacksonException
12981301
{
12991302
LinkedNode<DeserializationProblemHandler> h = _config.getProblemHandlers();
13001303
while (h != null) {
@@ -1314,7 +1317,7 @@ public Object handleInstantiationProblem(Class<?> instClass, Object argument,
13141317
h = h.next();
13151318
}
13161319
// 18-May-2016, tatu: Only wrap if not already a valid type to throw
1317-
ClassUtil.throwIfIOE(t);
1320+
ClassUtil.throwIfJacksonE(t);
13181321
// [databind#2164]: but see if wrapping is desired
13191322
if (!isEnabled(DeserializationFeature.WRAP_EXCEPTIONS)) {
13201323
ClassUtil.throwIfRTE(t);
@@ -1326,14 +1329,14 @@ public Object handleInstantiationProblem(Class<?> instClass, Object argument,
13261329
/*
13271330
public Object handleUnexpectedToken(Class<?> instClass, JsonToken t,
13281331
JsonParser p, String msg, Object... msgArgs)
1329-
throws IOException
1332+
throws JacksonException
13301333
{
13311334
return handleUnexpectedToken(constructType(instClass), t, p, msg, msgArgs);
13321335
}
13331336
*/
13341337

13351338
public Object handleUnexpectedToken(Class<?> instClass, JsonParser p)
1336-
throws IOException
1339+
throws JacksonException
13371340
{
13381341
return handleUnexpectedToken(constructType(instClass), p.currentToken(), p, null);
13391342
}
@@ -1351,7 +1354,7 @@ public Object handleUnexpectedToken(Class<?> instClass, JsonParser p)
13511354
* @return Object that should be constructed, if any; has to be of type <code>instClass</code>
13521355
*/
13531356
public Object handleUnexpectedToken(JavaType targetType, JsonParser p)
1354-
throws IOException
1357+
throws JacksonException
13551358
{
13561359
return handleUnexpectedToken(targetType, p.currentToken(), p, null);
13571360
}
@@ -1371,7 +1374,7 @@ public Object handleUnexpectedToken(JavaType targetType, JsonParser p)
13711374
*/
13721375
public Object handleUnexpectedToken(JavaType targetType, JsonToken t,
13731376
JsonParser p, String msg, Object... msgArgs)
1374-
throws IOException
1377+
throws JacksonException
13751378
{
13761379
msg = _format(msg, msgArgs);
13771380
LinkedNode<DeserializationProblemHandler> h = _config.getProblemHandlers();
@@ -1423,11 +1426,11 @@ public Object handleUnexpectedToken(JavaType targetType, JsonToken t,
14231426
*
14241427
* @return {@link JavaType} that id resolves to
14251428
*
1426-
* @throws IOException To indicate unrecoverable problem, if resolution cannot
1429+
* @throws JacksonException To indicate unrecoverable problem, if resolution cannot
14271430
* be made to work
14281431
*/
14291432
public JavaType handleUnknownTypeId(JavaType baseType, String id,
1430-
TypeIdResolver idResolver, String extraDesc) throws IOException
1433+
TypeIdResolver idResolver, String extraDesc) throws JacksonException
14311434
{
14321435
LinkedNode<DeserializationProblemHandler> h = _config.getProblemHandlers();
14331436
while (h != null) {
@@ -1455,7 +1458,7 @@ public JavaType handleUnknownTypeId(JavaType baseType, String id,
14551458
}
14561459

14571460
public JavaType handleMissingTypeId(JavaType baseType,
1458-
TypeIdResolver idResolver, String extraDesc) throws IOException
1461+
TypeIdResolver idResolver, String extraDesc) throws JacksonException
14591462
{
14601463
LinkedNode<DeserializationProblemHandler> h = _config.getProblemHandlers();
14611464
while (h != null) {

src/main/java/com/fasterxml/jackson/databind/JsonDeserializer.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public JsonDeserializer<?> createContextual(DeserializationContext ctxt,
145145
* @return Deserialized value
146146
*/
147147
public abstract T deserialize(JsonParser p, DeserializationContext ctxt)
148-
throws IOException, JsonProcessingException;
148+
throws JacksonException;
149149

150150
/**
151151
* Alternate deserialization method (compared to the most commonly
@@ -164,7 +164,7 @@ public abstract T deserialize(JsonParser p, DeserializationContext ctxt)
164164
* update-existing-value operation (esp. immutable types)
165165
*/
166166
public T deserialize(JsonParser p, DeserializationContext ctxt, T intoValue)
167-
throws IOException
167+
throws JacksonException
168168
{
169169
ctxt.handleBadMerge(this);
170170
return deserialize(p, ctxt);

src/main/java/com/fasterxml/jackson/databind/JsonSerializable.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package com.fasterxml.jackson.databind;
22

3-
import java.io.IOException;
4-
53
import com.fasterxml.jackson.core.*;
64
import com.fasterxml.jackson.databind.jsontype.TypeSerializer;
75

@@ -25,7 +23,8 @@ public interface JsonSerializable
2523
* Serialization method called when no additional type information is
2624
* to be included in serialization.
2725
*/
28-
public void serialize(JsonGenerator gen, SerializerProvider serializers) throws IOException;
26+
public void serialize(JsonGenerator gen, SerializerProvider serializers)
27+
throws JacksonException;
2928

3029
/**
3130
* Serialization method called when additional type information is
@@ -41,7 +40,8 @@ public interface JsonSerializable
4140
* Double and Boolean) never include type information.
4241
*/
4342
public void serializeWithType(JsonGenerator gen, SerializerProvider serializers,
44-
TypeSerializer typeSer) throws IOException;
43+
TypeSerializer typeSer)
44+
throws JacksonException;
4545

4646
/**
4747
* Base class with minimal implementation, as well as couple of extension methods

src/main/java/com/fasterxml/jackson/databind/JsonSerializer.java

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package com.fasterxml.jackson.databind;
22

3-
import java.io.IOException;
43
import java.util.Iterator;
54

65
import com.fasterxml.jackson.annotation.JsonFormat;
@@ -207,7 +206,7 @@ public JsonSerializer<?> withFormatOverrides(SerializationConfig config,
207206
* serializing Objects value contains, if any.
208207
*/
209208
public abstract void serialize(T value, JsonGenerator gen, SerializerProvider serializers)
210-
throws IOException;
209+
throws JacksonException;
211210

212211
/**
213212
* Method that can be called to ask implementation to serialize
@@ -238,7 +237,7 @@ public abstract void serialize(T value, JsonGenerator gen, SerializerProvider se
238237
*/
239238
public void serializeWithType(T value, JsonGenerator gen, SerializerProvider serializers,
240239
TypeSerializer typeSer)
241-
throws IOException
240+
throws JacksonException
242241
{
243242
Class<?> clz = handledType();
244243
if (clz == null) {
@@ -321,9 +320,7 @@ public Iterator<PropertyWriter> properties() {
321320
*<p>
322321
* Default implementation will consider only null values to be empty.
323322
*/
324-
public boolean isEmpty(SerializerProvider provider, T value)
325-
throws IOException
326-
{
323+
public boolean isEmpty(SerializerProvider provider, T value) {
327324
return (value == null);
328325
}
329326

0 commit comments

Comments
 (0)