7
7
8
8
import com .fasterxml .jackson .core .*;
9
9
import com .fasterxml .jackson .core .base .ParserMinimalBase ;
10
+ import com .fasterxml .jackson .core .exc .InputCoercionException ;
10
11
import com .fasterxml .jackson .core .util .JacksonFeatureSet ;
11
12
import com .fasterxml .jackson .databind .JsonNode ;
12
13
16
17
* Useful when a streaming source is expected by code, such as data binding
17
18
* functionality.
18
19
*/
19
- public class TreeTraversingParser extends ParserMinimalBase
20
+ public class TreeTraversingParser
21
+ extends ParserMinimalBase
20
22
{
21
23
/*
22
24
/**********************************************************************
@@ -85,7 +87,7 @@ public JsonNode getInputSource() {
85
87
*/
86
88
87
89
@ Override
88
- public void close () throws IOException
90
+ public void close ()
89
91
{
90
92
if (!_closed ) {
91
93
_closed = true ;
@@ -101,7 +103,7 @@ public void close() throws IOException
101
103
*/
102
104
103
105
@ Override
104
- public JsonToken nextToken () throws IOException , JsonParseException
106
+ public JsonToken nextToken ()
105
107
{
106
108
_currToken = _nodeCursor .nextToken ();
107
109
if (_currToken == null ) {
@@ -124,10 +126,10 @@ public JsonToken nextToken() throws IOException, JsonParseException
124
126
}
125
127
126
128
// default works well here:
127
- //public JsonToken nextValue() throws IOException
129
+ //public JsonToken nextValue()
128
130
129
131
@ Override
130
- public JsonParser skipChildren () throws IOException
132
+ public JsonParser skipChildren ()
131
133
{
132
134
if (_currToken == JsonToken .START_OBJECT ) {
133
135
_nodeCursor = _nodeCursor .getParent ();
@@ -209,17 +211,17 @@ public String getText()
209
211
}
210
212
211
213
@ Override
212
- public char [] getTextCharacters () throws IOException , JsonParseException {
214
+ public char [] getTextCharacters () {
213
215
return getText ().toCharArray ();
214
216
}
215
217
216
218
@ Override
217
- public int getTextLength () throws IOException , JsonParseException {
219
+ public int getTextLength () {
218
220
return getText ().length ();
219
221
}
220
222
221
223
@ Override
222
- public int getTextOffset () throws IOException , JsonParseException {
224
+ public int getTextOffset () {
223
225
return 0 ;
224
226
}
225
227
@@ -238,53 +240,57 @@ public boolean hasTextCharacters() {
238
240
//public byte getByteValue() throws IOException
239
241
240
242
@ Override
241
- public NumberType getNumberType () throws IOException {
242
- JsonNode n = currentNumericNode ();
243
- return (n == null ) ? null : n .numberType ();
243
+ public NumberType getNumberType () {
244
+ // NOTE: do not call "currentNumericNode()" as that would throw exception
245
+ // on non-numeric node
246
+ JsonNode n = currentNode ();
247
+ if (n instanceof NumericNode ) {
248
+ return n .numberType ();
249
+ }
250
+ return null ;
244
251
}
245
252
246
253
@ Override
247
- public BigInteger getBigIntegerValue () throws IOException
248
- {
249
- return currentNumericNode ().bigIntegerValue ();
254
+ public BigInteger getBigIntegerValue () throws InputCoercionException {
255
+ return currentNumericNode (NR_BIGINT ).bigIntegerValue ();
250
256
}
251
257
252
258
@ Override
253
- public BigDecimal getDecimalValue () throws IOException {
254
- return currentNumericNode ().decimalValue ();
259
+ public BigDecimal getDecimalValue () throws InputCoercionException {
260
+ return currentNumericNode (NR_BIGDECIMAL ).decimalValue ();
255
261
}
256
262
257
263
@ Override
258
- public double getDoubleValue () throws IOException {
259
- return currentNumericNode ().doubleValue ();
264
+ public double getDoubleValue () throws InputCoercionException {
265
+ return currentNumericNode (NR_DOUBLE ).doubleValue ();
260
266
}
261
267
262
268
@ Override
263
- public float getFloatValue () throws IOException {
264
- return (float ) currentNumericNode ().doubleValue ();
269
+ public float getFloatValue () throws InputCoercionException {
270
+ return (float ) currentNumericNode (NR_FLOAT ).doubleValue ();
265
271
}
266
272
267
273
@ Override
268
- public int getIntValue () throws IOException {
269
- final NumericNode node = (NumericNode ) currentNumericNode ();
274
+ public int getIntValue () throws InputCoercionException {
275
+ final NumericNode node = (NumericNode ) currentNumericNode (NR_INT );
270
276
if (!node .canConvertToInt ()) {
271
- reportOverflowInt ();
277
+ _reportOverflowInt ();
272
278
}
273
279
return node .intValue ();
274
280
}
275
281
276
282
@ Override
277
- public long getLongValue () throws IOException {
278
- final NumericNode node = (NumericNode ) currentNumericNode ();
283
+ public long getLongValue () throws InputCoercionException {
284
+ final NumericNode node = (NumericNode ) currentNumericNode (NR_LONG );
279
285
if (!node .canConvertToLong ()) {
280
- reportOverflowLong ();
286
+ _reportOverflowLong ();
281
287
}
282
288
return node .longValue ();
283
289
}
284
290
285
291
@ Override
286
- public Number getNumberValue () throws IOException {
287
- return currentNumericNode ().numberValue ();
292
+ public Number getNumberValue () throws InputCoercionException {
293
+ return currentNumericNode (- 1 ).numberValue ();
288
294
}
289
295
290
296
@ Override
@@ -323,7 +329,7 @@ public boolean isNaN() {
323
329
324
330
@ Override
325
331
public byte [] getBinaryValue (Base64Variant b64variant )
326
- throws IOException , JsonParseException
332
+ throws JacksonException
327
333
{
328
334
// Multiple possibilities...
329
335
JsonNode n = currentNode ();
@@ -342,11 +348,15 @@ public byte[] getBinaryValue(Base64Variant b64variant)
342
348
343
349
@ Override
344
350
public int readBinaryValue (Base64Variant b64variant , OutputStream out )
345
- throws IOException , JsonParseException
351
+ throws JacksonException
346
352
{
347
353
byte [] data = getBinaryValue (b64variant );
348
354
if (data != null ) {
349
- out .write (data , 0 , data .length );
355
+ try {
356
+ out .write (data , 0 , data .length );
357
+ } catch (IOException e ) {
358
+ throw _wrapIOFailure (e );
359
+ }
350
360
return data .length ;
351
361
}
352
362
return 0 ;
@@ -365,13 +375,13 @@ protected JsonNode currentNode() {
365
375
return _nodeCursor .currentNode ();
366
376
}
367
377
368
- protected JsonNode currentNumericNode ()
378
+ protected JsonNode currentNumericNode (int targetNumType )
369
379
throws JsonParseException
370
380
{
371
381
JsonNode n = currentNode ();
372
382
if (n == null || !n .isNumber ()) {
373
383
JsonToken t = (n == null ) ? null : n .asToken ();
374
- throw _constructError ( "Current token (" + t + ") not numeric, cannot use numeric value accessors" );
384
+ throw _constructNotNumericType ( t , - 1 );
375
385
}
376
386
return n ;
377
387
}
0 commit comments