Skip to content

Commit 92f80f7

Browse files
committed
Start databind-side work on #2177 changes
1 parent 91af4a9 commit 92f80f7

File tree

6 files changed

+195
-182
lines changed

6 files changed

+195
-182
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ public boolean canConvertToExactIntegral() {
454454
* @return Binary data this node contains, iff it is a binary
455455
* node; null otherwise
456456
*/
457-
public byte[] binaryValue() throws IOException {
457+
public byte[] binaryValue() {
458458
return null;
459459
}
460460

src/main/java/com/fasterxml/jackson/databind/node/BaseJsonNode.java

+4-12
Original file line numberDiff line numberDiff line change
@@ -141,21 +141,13 @@ public abstract void serializeWithType(JsonGenerator jgen, SerializerProvider pr
141141

142142
@Override
143143
public String toString() {
144-
try {
145-
return JsonMapper.shared().writeValueAsString(this);
146-
} catch (IOException e) { // should never occur
147-
throw new RuntimeException(e);
148-
}
144+
return JsonMapper.shared().writeValueAsString(this);
149145
}
150146

151147
@Override
152148
public String toPrettyString() {
153-
try {
154-
return JsonMapper.shared()
155-
.writerWithDefaultPrettyPrinter()
156-
.writeValueAsString(this);
157-
} catch (IOException e) { // should never occur
158-
throw new RuntimeException(e);
159-
}
149+
return JsonMapper.shared()
150+
.writerWithDefaultPrettyPrinter()
151+
.writeValueAsString(this);
160152
}
161153
}

src/main/java/com/fasterxml/jackson/databind/node/TextNode.java

+13-10
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,11 @@ public String textValue() {
5959
* Method for accessing textual contents assuming they were
6060
* base64 encoded; if so, they are decoded and resulting binary
6161
* data is returned.
62+
*
63+
* @throws JacksonException if textual contents are not valid Base64 content
6264
*/
6365
@SuppressWarnings("resource")
64-
public byte[] getBinaryValue(Base64Variant b64variant) throws IOException
66+
public byte[] getBinaryValue(Base64Variant b64variant) throws JacksonException
6567
{
6668
final String str = _value.trim();
6769
// 04-Sep-2020, tatu: Let's limit the size of the initial block to 64k,
@@ -74,7 +76,8 @@ public byte[] getBinaryValue(Base64Variant b64variant) throws IOException
7476
try {
7577
b64variant.decode(str, builder);
7678
} catch (IllegalArgumentException e) {
77-
throw InvalidFormatException.from(null,
79+
throw InvalidFormatException.from(
80+
null, /* Alas, no processor to pass */
7881
String.format(
7982
"Cannot access contents of TextNode as binary due to broken Base64 encoding: %s",
8083
e.getMessage()),
@@ -84,14 +87,14 @@ public byte[] getBinaryValue(Base64Variant b64variant) throws IOException
8487
}
8588

8689
@Override
87-
public byte[] binaryValue() throws IOException {
90+
public byte[] binaryValue() throws JacksonException {
8891
return getBinaryValue(Base64Variants.getDefaultVariant());
8992
}
9093

9194
/*
92-
/**********************************************************
95+
/**********************************************************************
9396
/* General type coercions
94-
/**********************************************************
97+
/**********************************************************************
9598
*/
9699

97100
@Override
@@ -135,10 +138,10 @@ public double asDouble(double defaultValue) {
135138
return NumberInput.parseAsDouble(_value, defaultValue);
136139
}
137140

138-
/*
139-
/**********************************************************
141+
/*
142+
/**********************************************************************
140143
/* Serialization
141-
/**********************************************************
144+
/**********************************************************************
142145
*/
143146

144147
@Override
@@ -152,9 +155,9 @@ public final void serialize(JsonGenerator g, SerializerProvider provider) throws
152155
}
153156

154157
/*
155-
/**********************************************************
158+
/**********************************************************************
156159
/* Overridden standard methods
157-
/**********************************************************
160+
/**********************************************************************
158161
*/
159162

160163
@Override

src/main/java/com/fasterxml/jackson/databind/node/TreeTraversingParser.java

+43-33
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import com.fasterxml.jackson.core.*;
99
import com.fasterxml.jackson.core.base.ParserMinimalBase;
10+
import com.fasterxml.jackson.core.exc.InputCoercionException;
1011
import com.fasterxml.jackson.core.util.JacksonFeatureSet;
1112
import com.fasterxml.jackson.databind.JsonNode;
1213

@@ -16,7 +17,8 @@
1617
* Useful when a streaming source is expected by code, such as data binding
1718
* functionality.
1819
*/
19-
public class TreeTraversingParser extends ParserMinimalBase
20+
public class TreeTraversingParser
21+
extends ParserMinimalBase
2022
{
2123
/*
2224
/**********************************************************************
@@ -85,7 +87,7 @@ public JsonNode getInputSource() {
8587
*/
8688

8789
@Override
88-
public void close() throws IOException
90+
public void close()
8991
{
9092
if (!_closed) {
9193
_closed = true;
@@ -101,7 +103,7 @@ public void close() throws IOException
101103
*/
102104

103105
@Override
104-
public JsonToken nextToken() throws IOException, JsonParseException
106+
public JsonToken nextToken()
105107
{
106108
_currToken = _nodeCursor.nextToken();
107109
if (_currToken == null) {
@@ -124,10 +126,10 @@ public JsonToken nextToken() throws IOException, JsonParseException
124126
}
125127

126128
// default works well here:
127-
//public JsonToken nextValue() throws IOException
129+
//public JsonToken nextValue()
128130

129131
@Override
130-
public JsonParser skipChildren() throws IOException
132+
public JsonParser skipChildren()
131133
{
132134
if (_currToken == JsonToken.START_OBJECT) {
133135
_nodeCursor = _nodeCursor.getParent();
@@ -209,17 +211,17 @@ public String getText()
209211
}
210212

211213
@Override
212-
public char[] getTextCharacters() throws IOException, JsonParseException {
214+
public char[] getTextCharacters() {
213215
return getText().toCharArray();
214216
}
215217

216218
@Override
217-
public int getTextLength() throws IOException, JsonParseException {
219+
public int getTextLength() {
218220
return getText().length();
219221
}
220222

221223
@Override
222-
public int getTextOffset() throws IOException, JsonParseException {
224+
public int getTextOffset() {
223225
return 0;
224226
}
225227

@@ -238,53 +240,57 @@ public boolean hasTextCharacters() {
238240
//public byte getByteValue() throws IOException
239241

240242
@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;
244251
}
245252

246253
@Override
247-
public BigInteger getBigIntegerValue() throws IOException
248-
{
249-
return currentNumericNode().bigIntegerValue();
254+
public BigInteger getBigIntegerValue() throws InputCoercionException {
255+
return currentNumericNode(NR_BIGINT).bigIntegerValue();
250256
}
251257

252258
@Override
253-
public BigDecimal getDecimalValue() throws IOException {
254-
return currentNumericNode().decimalValue();
259+
public BigDecimal getDecimalValue() throws InputCoercionException {
260+
return currentNumericNode(NR_BIGDECIMAL).decimalValue();
255261
}
256262

257263
@Override
258-
public double getDoubleValue() throws IOException {
259-
return currentNumericNode().doubleValue();
264+
public double getDoubleValue() throws InputCoercionException {
265+
return currentNumericNode(NR_DOUBLE).doubleValue();
260266
}
261267

262268
@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();
265271
}
266272

267273
@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);
270276
if (!node.canConvertToInt()) {
271-
reportOverflowInt();
277+
_reportOverflowInt();
272278
}
273279
return node.intValue();
274280
}
275281

276282
@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);
279285
if (!node.canConvertToLong()) {
280-
reportOverflowLong();
286+
_reportOverflowLong();
281287
}
282288
return node.longValue();
283289
}
284290

285291
@Override
286-
public Number getNumberValue() throws IOException {
287-
return currentNumericNode().numberValue();
292+
public Number getNumberValue() throws InputCoercionException {
293+
return currentNumericNode(-1).numberValue();
288294
}
289295

290296
@Override
@@ -323,7 +329,7 @@ public boolean isNaN() {
323329

324330
@Override
325331
public byte[] getBinaryValue(Base64Variant b64variant)
326-
throws IOException, JsonParseException
332+
throws JacksonException
327333
{
328334
// Multiple possibilities...
329335
JsonNode n = currentNode();
@@ -342,11 +348,15 @@ public byte[] getBinaryValue(Base64Variant b64variant)
342348

343349
@Override
344350
public int readBinaryValue(Base64Variant b64variant, OutputStream out)
345-
throws IOException, JsonParseException
351+
throws JacksonException
346352
{
347353
byte[] data = getBinaryValue(b64variant);
348354
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+
}
350360
return data.length;
351361
}
352362
return 0;
@@ -365,13 +375,13 @@ protected JsonNode currentNode() {
365375
return _nodeCursor.currentNode();
366376
}
367377

368-
protected JsonNode currentNumericNode()
378+
protected JsonNode currentNumericNode(int targetNumType)
369379
throws JsonParseException
370380
{
371381
JsonNode n = currentNode();
372382
if (n == null || !n.isNumber()) {
373383
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);
375385
}
376386
return n;
377387
}

0 commit comments

Comments
 (0)