Skip to content

Commit 99d2cf2

Browse files
committed
Some more work for #2177: resolved half of errors (now down to under 200...), tests compile
1 parent b37aef8 commit 99d2cf2

File tree

163 files changed

+731
-980
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+731
-980
lines changed

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

+2-5
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.Collection;
54

65
import com.fasterxml.jackson.core.*;
@@ -186,7 +185,7 @@ public T deserialize(JsonParser p, DeserializationContext ctxt, T intoValue)
186185
*/
187186
public Object deserializeWithType(JsonParser p, DeserializationContext ctxt,
188187
TypeDeserializer typeDeserializer)
189-
throws IOException
188+
throws JacksonException
190189
{
191190
// We could try calling
192191
return typeDeserializer.deserializeTypedFromAny(p, ctxt);
@@ -197,12 +196,10 @@ public Object deserializeWithType(JsonParser p, DeserializationContext ctxt,
197196
* but called when merging value. Considered "bad merge" by default implementation,
198197
* but if {@link MapperFeature#IGNORE_MERGE_FOR_UNMERGEABLE} is enabled will simple delegate to
199198
* {@link #deserializeWithType(JsonParser, DeserializationContext, TypeDeserializer)}.
200-
*
201-
* @since 2.10
202199
*/
203200
public Object deserializeWithType(JsonParser p, DeserializationContext ctxt,
204201
TypeDeserializer typeDeserializer, T intoValue)
205-
throws IOException
202+
throws JacksonException
206203
{
207204
ctxt.handleBadMerge(this);
208205
return deserializeWithType(p, ctxt, typeDeserializer);

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

-1
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.math.BigDecimal;
54
import java.math.BigInteger;
65
import java.util.*;

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

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

3-
import java.io.IOException;
3+
import com.fasterxml.jackson.core.JacksonException;
44

55
/**
66
* Abstract class that defines API used for deserializing JSON content
@@ -25,7 +25,7 @@ public abstract class KeyDeserializer
2525
* @param ctxt Context to use for accessing configuration, resolving
2626
* secondary deserializers
2727
*/
28-
public void resolve(DeserializationContext ctxt) throws JsonMappingException {
28+
public void resolve(DeserializationContext ctxt) throws JacksonException {
2929
// Default implementation does nothing
3030
}
3131

@@ -39,7 +39,7 @@ public void resolve(DeserializationContext ctxt) throws JsonMappingException {
3939
* Method called to deserialize a {@link java.util.Map} key from JSON property name.
4040
*/
4141
public abstract Object deserializeKey(String key, DeserializationContext ctxt)
42-
throws IOException;
42+
throws JacksonException;
4343

4444
/**
4545
* This marker class is only to be used with annotations, to

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

+11-36
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
package com.fasterxml.jackson.databind;
22

33
import java.io.Closeable;
4-
import java.io.IOException;
5-
import java.io.UncheckedIOException;
64
import java.util.*;
75

86
import com.fasterxml.jackson.core.*;
9-
import com.fasterxml.jackson.databind.exc.RuntimeJsonMappingException;
107

118
/**
129
* Iterator exposed by {@link ObjectMapper} when binding sequence of
13-
* objects. Extension is done to allow more convenient exposing of
14-
* {@link IOException} (which basic {@link Iterator} does not expose)
10+
* objects. Extension is done to allow more convenient access
11+
* (in Jackson 2.x exception handling required it, too, but not in 3.x)
1512
*/
1613
public class MappingIterator<T> implements Iterator<T>, Closeable
1714
{
@@ -167,8 +164,6 @@ protected MappingIterator(JavaType type, JsonParser p, DeserializationContext ct
167164
/**
168165
* Method for getting an "empty" iterator instance: one that never
169166
* has more values; may be freely shared.
170-
*
171-
* @since 2.10 Existed earlier but {@code public} since 2.10
172167
*/
173168
@SuppressWarnings("unchecked")
174169
public static <T> MappingIterator<T> emptyIterator() {
@@ -184,25 +179,13 @@ public static <T> MappingIterator<T> emptyIterator() {
184179
@Override
185180
public boolean hasNext()
186181
{
187-
try {
188-
return hasNextValue();
189-
} catch (JsonMappingException e) {
190-
return (Boolean) _handleMappingException(e);
191-
} catch (IOException e) {
192-
return (Boolean) _handleIOException(e);
193-
}
182+
return hasNextValue();
194183
}
195184

196185
@Override
197186
public T next()
198187
{
199-
try {
200-
return nextValue();
201-
} catch (JsonMappingException e) {
202-
return _handleMappingException(e);
203-
} catch (IOException e) {
204-
return _handleIOException(e);
205-
}
188+
return nextValue();
206189
}
207190

208191
@Override
@@ -211,7 +194,7 @@ public void remove() {
211194
}
212195

213196
@Override
214-
public void close() throws IOException {
197+
public void close() {
215198
if (_state != STATE_CLOSED) {
216199
_state = STATE_CLOSED;
217200
if (_parser != null) {
@@ -230,7 +213,7 @@ public void close() throws IOException {
230213
* Equivalent of {@link #next} but one that may throw checked
231214
* exceptions from Jackson due to invalid input.
232215
*/
233-
public boolean hasNextValue() throws IOException
216+
public boolean hasNextValue() throws JacksonException
234217
{
235218
switch (_state) {
236219
case STATE_CLOSED:
@@ -259,7 +242,7 @@ public boolean hasNextValue() throws IOException
259242
return true;
260243
}
261244

262-
public T nextValue() throws IOException
245+
public T nextValue() throws JacksonException
263246
{
264247
switch (_state) {
265248
case STATE_CLOSED:
@@ -299,7 +282,7 @@ public T nextValue() throws IOException
299282
*
300283
* @return List of entries read
301284
*/
302-
public List<T> readAll() throws IOException {
285+
public List<T> readAll() throws JacksonException {
303286
return readAll(new ArrayList<T>());
304287
}
305288

@@ -309,7 +292,7 @@ public List<T> readAll() throws IOException {
309292
*
310293
* @return List of entries read (same as passed-in argument)
311294
*/
312-
public <L extends List<? super T>> L readAll(L resultList) throws IOException
295+
public <L extends List<? super T>> L readAll(L resultList) throws JacksonException
313296
{
314297
while (hasNextValue()) {
315298
resultList.add(nextValue());
@@ -321,7 +304,7 @@ public <L extends List<? super T>> L readAll(L resultList) throws IOException
321304
* Convenience method for reading all entries accessible via
322305
* this iterator
323306
*/
324-
public <C extends Collection<? super T>> C readAll(C results) throws IOException
307+
public <C extends Collection<? super T>> C readAll(C results) throws JacksonException
325308
{
326309
while (hasNextValue()) {
327310
results.add(nextValue());
@@ -369,7 +352,7 @@ public JsonLocation getCurrentLocation() {
369352
/**********************************************************************
370353
*/
371354

372-
protected void _resync() throws IOException
355+
protected void _resync() throws JacksonException
373356
{
374357
final JsonParser p = _parser;
375358
// First, a quick check to see if we might have been lucky and no re-sync needed
@@ -395,12 +378,4 @@ protected void _resync() throws IOException
395378
protected <R> R _throwNoSuchElement() {
396379
throw new NoSuchElementException();
397380
}
398-
399-
protected <R> R _handleMappingException(JsonMappingException e) {
400-
throw new RuntimeJsonMappingException(e.getMessage(), e);
401-
}
402-
403-
protected <R> R _handleIOException(IOException e) {
404-
throw new UncheckedIOException(e.getMessage(), e);
405-
}
406381
}

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

+1-10
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
import com.fasterxml.jackson.databind.cfg.ContextAttributes;
1515
import com.fasterxml.jackson.databind.cfg.GeneratorSettings;
1616
import com.fasterxml.jackson.databind.cfg.SerializationContexts;
17-
import com.fasterxml.jackson.databind.exc.RuntimeJsonMappingException;
1817
import com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitorWrapper;
1918
import com.fasterxml.jackson.databind.jsontype.TypeSerializer;
2019
import com.fasterxml.jackson.databind.node.ArrayNode;
@@ -1130,15 +1129,7 @@ public Prefetch forRootType(ObjectWriter parent, JavaType newType) {
11301129
// have `TypeSerializer` to use
11311130
if (newType.isJavaLangObject()) {
11321131
DefaultSerializerProvider ctxt = parent._serializerProvider();
1133-
TypeSerializer typeSer;
1134-
1135-
try {
1136-
typeSer = ctxt.findTypeSerializer(newType);
1137-
} catch (JsonMappingException e) {
1138-
// Unlike with value serializer pre-fetch, let's not allow exception
1139-
// for TypeSerializer be swallowed
1140-
throw new RuntimeJsonMappingException(e);
1141-
}
1132+
TypeSerializer typeSer = ctxt.findTypeSerializer(newType);
11421133
return new Prefetch(null, null, typeSer);
11431134
}
11441135

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

+2-2
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.util.Date;
65
import java.util.Locale;
@@ -1296,7 +1295,8 @@ public JsonMappingException invalidTypeIdException(JavaType baseType, String typ
12961295
return InvalidTypeIdException.from(null, _colonConcat(msg, extraDesc), baseType, typeId);
12971296
}
12981297

1299-
protected void _reportIncompatibleRootType(Object value, JavaType rootType) throws IOException
1298+
protected void _reportIncompatibleRootType(Object value, JavaType rootType)
1299+
throws JacksonException
13001300
{
13011301
// One special case: allow primitive/wrapper type coercion
13021302
if (rootType.isPrimitive()) {

src/main/java/com/fasterxml/jackson/databind/deser/AbstractDeserializer.java

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

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

65
import com.fasterxml.jackson.annotation.ObjectIdGenerator;
@@ -217,7 +216,7 @@ public SettableBeanProperty findBackReference(String logicalName) {
217216
@Override
218217
public Object deserializeWithType(JsonParser p, DeserializationContext ctxt,
219218
TypeDeserializer typeDeserializer)
220-
throws IOException
219+
throws JacksonException
221220
{
222221
// Hmmh. One tricky question; for scalar, is it an Object Id, or "Natural" type?
223222
// for now, prefer Object Id:
@@ -264,7 +263,8 @@ public Object deserialize(JsonParser p, DeserializationContext ctxt)
264263
/**********************************************************
265264
*/
266265

267-
protected Object _deserializeIfNatural(JsonParser p, DeserializationContext ctxt) throws IOException
266+
protected Object _deserializeIfNatural(JsonParser p, DeserializationContext ctxt)
267+
throws JacksonException
268268
{
269269
/* There is a chance we might be "natural" types
270270
* (String, Boolean, Integer, Double), which do not include any type information...
@@ -306,7 +306,8 @@ protected Object _deserializeIfNatural(JsonParser p, DeserializationContext ctxt
306306
* Method called in cases where it looks like we got an Object Id
307307
* to parse and use as a reference.
308308
*/
309-
protected Object _deserializeFromObjectId(JsonParser p, DeserializationContext ctxt) throws IOException
309+
protected Object _deserializeFromObjectId(JsonParser p, DeserializationContext ctxt)
310+
throws JacksonException
310311
{
311312
Object id = _objectIdReader.readObjectReference(p, ctxt);
312313
ReadableObjectId roid = ctxt.findObjectId(id, _objectIdReader.generator, _objectIdReader.resolver);

src/main/java/com/fasterxml/jackson/databind/deser/CreatorProperty.java

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

3-
import java.io.IOException;
43
import java.lang.annotation.Annotation;
54

65
import com.fasterxml.jackson.annotation.JacksonInject;
6+
import com.fasterxml.jackson.core.JacksonException;
77
import com.fasterxml.jackson.core.JsonParser;
88

99
import com.fasterxml.jackson.databind.*;
@@ -215,29 +215,29 @@ public <A extends Annotation> A getAnnotation(Class<A> acls) {
215215

216216
@Override
217217
public void deserializeAndSet(JsonParser p, DeserializationContext ctxt,
218-
Object instance) throws IOException
218+
Object instance) throws JacksonException
219219
{
220220
_verifySetter();
221221
_fallbackSetter.set(instance, deserialize(p, ctxt));
222222
}
223223

224224
@Override
225225
public Object deserializeSetAndReturn(JsonParser p,
226-
DeserializationContext ctxt, Object instance) throws IOException
226+
DeserializationContext ctxt, Object instance) throws JacksonException
227227
{
228228
_verifySetter();
229229
return _fallbackSetter.setAndReturn(instance, deserialize(p, ctxt));
230230
}
231231

232232
@Override
233-
public void set(Object instance, Object value) throws IOException
233+
public void set(Object instance, Object value)
234234
{
235235
_verifySetter();
236236
_fallbackSetter.set(instance, value);
237237
}
238238

239239
@Override
240-
public Object setAndReturn(Object instance, Object value) throws IOException
240+
public Object setAndReturn(Object instance, Object value)
241241
{
242242
_verifySetter();
243243
return _fallbackSetter.setAndReturn(instance, value);
@@ -285,13 +285,14 @@ public boolean isInjectionOnly() {
285285
/**********************************************************************
286286
*/
287287

288-
private final void _verifySetter() throws IOException {
288+
private final void _verifySetter() throws JacksonException {
289289
if (_fallbackSetter == null) {
290290
_reportMissingSetter(null, null);
291291
}
292292
}
293293

294-
private void _reportMissingSetter(JsonParser p, DeserializationContext ctxt) throws IOException
294+
private void _reportMissingSetter(JsonParser p, DeserializationContext ctxt)
295+
throws JacksonException
295296
{
296297
final String msg = "No fallback setter/field defined for creator property "+ClassUtil.name(getName());
297298
// Hmmmh. Should we return quietly (NOP), or error?

src/main/java/com/fasterxml/jackson/databind/deser/DefaultDeserializationContext.java

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

3-
import java.io.IOException;
43
import java.util.*;
54
import java.util.Map.Entry;
65

src/main/java/com/fasterxml/jackson/databind/deser/SettableAnyProperty.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public Object deserialize(JsonParser p, DeserializationContext ctxt) throws IOEx
144144
}
145145

146146
@SuppressWarnings("unchecked")
147-
public void set(Object instance, Object propName, Object value) throws IOException
147+
public void set(Object instance, Object propName, Object value) throws JacksonException
148148
{
149149
try {
150150
// if annotation in the field (only map is supported now)
@@ -196,7 +196,7 @@ protected void _throwAsIOE(Exception e, Object propName, Object value)
196196
}
197197
throw new JsonMappingException(null, msg.toString(), e);
198198
}
199-
ClassUtil.throwIfIOE(e);
199+
ClassUtil.throwIfJacksonE(e);
200200
ClassUtil.throwIfRTE(e);
201201
// let's wrap the innermost problem
202202
Throwable t = ClassUtil.getRootCause(e);
@@ -223,7 +223,7 @@ public AnySetterReferring(SettableAnyProperty parent,
223223

224224
@Override
225225
public void handleResolvedForwardReference(Object id, Object value)
226-
throws IOException
226+
throws JacksonException
227227
{
228228
if (!hasId(id)) {
229229
throw new IllegalArgumentException("Trying to resolve a forward reference with id [" + id.toString()

0 commit comments

Comments
 (0)