1
1
package com .fasterxml .jackson .databind ;
2
2
3
3
import java .io .Closeable ;
4
- import java .io .IOException ;
5
- import java .io .UncheckedIOException ;
6
4
import java .util .*;
7
5
8
6
import com .fasterxml .jackson .core .*;
9
- import com .fasterxml .jackson .databind .exc .RuntimeJsonMappingException ;
10
7
11
8
/**
12
9
* 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 )
15
12
*/
16
13
public class MappingIterator <T > implements Iterator <T >, Closeable
17
14
{
@@ -167,8 +164,6 @@ protected MappingIterator(JavaType type, JsonParser p, DeserializationContext ct
167
164
/**
168
165
* Method for getting an "empty" iterator instance: one that never
169
166
* has more values; may be freely shared.
170
- *
171
- * @since 2.10 Existed earlier but {@code public} since 2.10
172
167
*/
173
168
@ SuppressWarnings ("unchecked" )
174
169
public static <T > MappingIterator <T > emptyIterator () {
@@ -184,25 +179,13 @@ public static <T> MappingIterator<T> emptyIterator() {
184
179
@ Override
185
180
public boolean hasNext ()
186
181
{
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 ();
194
183
}
195
184
196
185
@ Override
197
186
public T next ()
198
187
{
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 ();
206
189
}
207
190
208
191
@ Override
@@ -211,7 +194,7 @@ public void remove() {
211
194
}
212
195
213
196
@ Override
214
- public void close () throws IOException {
197
+ public void close () {
215
198
if (_state != STATE_CLOSED ) {
216
199
_state = STATE_CLOSED ;
217
200
if (_parser != null ) {
@@ -230,7 +213,7 @@ public void close() throws IOException {
230
213
* Equivalent of {@link #next} but one that may throw checked
231
214
* exceptions from Jackson due to invalid input.
232
215
*/
233
- public boolean hasNextValue () throws IOException
216
+ public boolean hasNextValue () throws JacksonException
234
217
{
235
218
switch (_state ) {
236
219
case STATE_CLOSED :
@@ -259,7 +242,7 @@ public boolean hasNextValue() throws IOException
259
242
return true ;
260
243
}
261
244
262
- public T nextValue () throws IOException
245
+ public T nextValue () throws JacksonException
263
246
{
264
247
switch (_state ) {
265
248
case STATE_CLOSED :
@@ -299,7 +282,7 @@ public T nextValue() throws IOException
299
282
*
300
283
* @return List of entries read
301
284
*/
302
- public List <T > readAll () throws IOException {
285
+ public List <T > readAll () throws JacksonException {
303
286
return readAll (new ArrayList <T >());
304
287
}
305
288
@@ -309,7 +292,7 @@ public List<T> readAll() throws IOException {
309
292
*
310
293
* @return List of entries read (same as passed-in argument)
311
294
*/
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
313
296
{
314
297
while (hasNextValue ()) {
315
298
resultList .add (nextValue ());
@@ -321,7 +304,7 @@ public <L extends List<? super T>> L readAll(L resultList) throws IOException
321
304
* Convenience method for reading all entries accessible via
322
305
* this iterator
323
306
*/
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
325
308
{
326
309
while (hasNextValue ()) {
327
310
results .add (nextValue ());
@@ -369,7 +352,7 @@ public JsonLocation getCurrentLocation() {
369
352
/**********************************************************************
370
353
*/
371
354
372
- protected void _resync () throws IOException
355
+ protected void _resync () throws JacksonException
373
356
{
374
357
final JsonParser p = _parser ;
375
358
// 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
395
378
protected <R > R _throwNoSuchElement () {
396
379
throw new NoSuchElementException ();
397
380
}
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
- }
406
381
}
0 commit comments