Skip to content

Commit 5947235

Browse files
committed
Implement #1364: rename JsonLocation as TokenStreamLocation
1 parent 728f2c4 commit 5947235

36 files changed

+139
-137
lines changed

release-notes/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ JSON library.
4747
`StreamWriteConstraints` to 500 in 3.0
4848
#1269: Change `JsonFactory.builder()` configuration of `RecyclerPool` to avoid
4949
allocation default implementation (in 3.0)
50+
#1364: JSTEP-6: rename `JsonLocation` as `TokenStreamLocation`
5051
- Rename `JsonGenerator.Feature.AUTO_CLOSE_JSON_CONTENT` as `AUTO_CLOSE_CONTENT`
5152
- Add `TreeCodec.nullNode()`, `TreeNode.isNull()` methods
5253
- Change the way `JsonLocation.NA` is included in exception messages

src/main/java/tools/jackson/core/JacksonException.java

+11-11
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Object writeReplace() {
157157
/**********************************************************************
158158
*/
159159

160-
protected JsonLocation _location;
160+
protected TokenStreamLocation _location;
161161

162162
/**
163163
* Path through which problem that triggering throwing of
@@ -191,7 +191,7 @@ protected JacksonException(String msg, Throwable rootCause) {
191191
this(null, msg, null, rootCause);
192192
}
193193

194-
protected JacksonException(String msg, JsonLocation loc, Throwable rootCause) {
194+
protected JacksonException(String msg, TokenStreamLocation loc, Throwable rootCause) {
195195
this(null, msg, loc, rootCause);
196196
}
197197

@@ -201,7 +201,7 @@ protected JacksonException(Closeable processor, Throwable rootCause) {
201201
_location = _nonNullLocation(null);
202202
}
203203

204-
protected JacksonException(Closeable processor, String msg, JsonLocation loc,
204+
protected JacksonException(Closeable processor, String msg, TokenStreamLocation loc,
205205
Throwable rootCause) {
206206
super(msg, rootCause);
207207
_processor = processor;
@@ -212,7 +212,7 @@ protected JacksonException(Closeable processor, String msg)
212212
{
213213
super(msg);
214214
_processor = processor;
215-
JsonLocation loc = null;
215+
TokenStreamLocation loc = null;
216216
if (processor instanceof JsonParser) {
217217
// 17-Aug-2015, tatu: Use of token location makes some sense from databinding,
218218
// since actual parsing (current) location is typically only needed for low-level
@@ -227,7 +227,7 @@ protected JacksonException(Closeable processor, String msg, Throwable problem)
227227
{
228228
super(msg, problem);
229229
_processor = processor;
230-
JsonLocation loc = null;
230+
TokenStreamLocation loc = null;
231231
if (problem instanceof JacksonException) {
232232
loc = ((JacksonException) problem).getLocation();
233233
} else if (processor instanceof JsonParser) {
@@ -237,15 +237,15 @@ protected JacksonException(Closeable processor, String msg, Throwable problem)
237237
_location = _nonNullLocation(loc);
238238
}
239239

240-
protected JacksonException(Closeable processor, String msg, JsonLocation loc)
240+
protected JacksonException(Closeable processor, String msg, TokenStreamLocation loc)
241241
{
242242
super(msg);
243243
_processor = processor;
244244
_location = _nonNullLocation(loc);
245245
}
246246

247-
private static JsonLocation _nonNullLocation(JsonLocation loc) {
248-
return (loc == null) ? JsonLocation.NA : loc;
247+
private static TokenStreamLocation _nonNullLocation(TokenStreamLocation loc) {
248+
return (loc == null) ? TokenStreamLocation.NA : loc;
249249
}
250250

251251
// @since 3.0
@@ -417,15 +417,15 @@ public StringBuilder getPathReference(StringBuilder sb)
417417
/**
418418
* Accessor for location information related to position within input
419419
* or output (depending on operation), if available; if not available
420-
* may return {@link JsonLocation#NA} (but never {@code null}).
420+
* may return {@link TokenStreamLocation#NA} (but never {@code null}).
421421
*<p>
422422
* Accuracy of location information depends on backend (format) as well
423423
* as (in some cases) operation being performed.
424424
*
425425
* @return Location in input or output that triggered the problem reported, if
426426
* available; {@code null} otherwise.
427427
*/
428-
public JsonLocation getLocation() { return _location; }
428+
public TokenStreamLocation getLocation() { return _location; }
429429

430430
/**
431431
* Method that allows accessing the original "message" argument,
@@ -510,7 +510,7 @@ protected String _buildMessage()
510510
if (baseMessage == null) {
511511
baseMessage = "N/A";
512512
}
513-
JsonLocation loc = getLocation();
513+
TokenStreamLocation loc = getLocation();
514514
String suffix = messageSuffix();
515515
// mild optimization, if nothing extra is needed:
516516
StringBuilder sb = new StringBuilder(200);

src/main/java/tools/jackson/core/JsonParser.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,13 @@ protected JsonParser() { }
154154
*<p>
155155
* Note that the location is not guaranteed to be accurate (although most
156156
* implementation will try their best): some implementations may only
157-
* return {@link JsonLocation#NA} due to not having access
157+
* return {@link TokenStreamLocation#NA} due to not having access
158158
* to input location information (when delegating actual decoding work
159159
* to other library).
160160
*
161161
* @return Starting location of the token parser currently points to
162162
*/
163-
public abstract JsonLocation currentTokenLocation();
163+
public abstract TokenStreamLocation currentTokenLocation();
164164

165165
/**
166166
* Method that returns location of the last processed character;
@@ -169,13 +169,13 @@ protected JsonParser() { }
169169
* Note that the location is not guaranteed to be accurate (although most
170170
* implementation will try their best): some implementations may only
171171
* report specific boundary locations (start or end locations of tokens)
172-
* and others only return {@link JsonLocation#NA} due to not having access
172+
* and others only return {@link TokenStreamLocation#NA} due to not having access
173173
* to input location information (when delegating actual decoding work
174174
* to other library).
175175
*
176176
* @return Location of the last processed input unit (byte or character)
177177
*/
178-
public abstract JsonLocation currentLocation();
178+
public abstract TokenStreamLocation currentLocation();
179179

180180
/**
181181
* Get an approximate count of the number of tokens that have been read.
@@ -1739,7 +1739,7 @@ protected StreamReadException _constructReadException(String msg, Throwable t) {
17391739
/**
17401740
* Helper method for constructing {@link StreamReadException}
17411741
* based on current state of the parser, except for specified
1742-
* {@link JsonLocation} for problem location (which may not be
1742+
* {@link TokenStreamLocation} for problem location (which may not be
17431743
* the exact current location)
17441744
*
17451745
* @param msg Base exception message to construct exception with
@@ -1749,7 +1749,7 @@ protected StreamReadException _constructReadException(String msg, Throwable t) {
17491749
*
17501750
* @since 2.13
17511751
*/
1752-
protected StreamReadException _constructReadException(String msg, JsonLocation loc) {
1752+
protected StreamReadException _constructReadException(String msg, TokenStreamLocation loc) {
17531753
return new StreamReadException(this, msg, loc);
17541754
}
17551755
}

src/main/java/tools/jackson/core/StreamReadFeature.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public enum StreamReadFeature
7474
// // // Other
7575

7676
/**
77-
* Feature that determines whether {@link JsonLocation} instances should be constructed
77+
* Feature that determines whether {@link TokenStreamLocation} instances should be constructed
7878
* with reference to source or not. If source reference is included, its type and contents
7979
* are included when `toString()` method is called (most notably when printing out parse
8080
* exception with that location information). If feature is disabled, no source reference
@@ -88,7 +88,7 @@ public enum StreamReadFeature
8888
*<p>
8989
* Feature is disabled by default for security reason (to avoid leaking additional source
9090
* information), meaning that "source reference" information is NOT passed
91-
* and none of source content will be included in {@link JsonLocation}
91+
* and none of source content will be included in {@link TokenStreamLocation}
9292
* constructed either when requested explicitly, or when needed for an exception.
9393
*/
9494
INCLUDE_SOURCE_IN_LOCATION(false),

src/main/java/tools/jackson/core/TokenStreamContext.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -265,15 +265,15 @@ public JsonPointer pathAsPointer(boolean includeRoot) {
265265
* for example, in case of JSON `Object` context, offset at which `[` token was
266266
* read or written. Often used for error reporting purposes.
267267
* Implementations that do not keep track of such location are expected to return
268-
* {@link JsonLocation#NA}; this is what the default implementation does.
268+
* {@link TokenStreamLocation#NA}; this is what the default implementation does.
269269
*
270270
* @param srcRef Source reference needed to construct location instance
271271
*
272272
* @return Location pointing to the point where the context
273273
* start marker was found (or written); never {@code null}.
274274
*/
275-
public JsonLocation startLocation(ContentReference srcRef) {
276-
return JsonLocation.NA;
275+
public TokenStreamLocation startLocation(ContentReference srcRef) {
276+
return TokenStreamLocation.NA;
277277
}
278278

279279
/**

src/main/java/tools/jackson/core/TokenStreamFactory.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1235,7 +1235,7 @@ public RecyclerPool<BufferRecycler> _getRecyclerPool() {
12351235
* Overridable factory method that actually instantiates desired
12361236
* context object.
12371237
*
1238-
* @param contentRef Source reference to use (relevant to {@code JsonLocation} construction)
1238+
* @param contentRef Source reference to use (relevant to {@code TokenStreamLocation} construction)
12391239
* @param resourceManaged Whether input/output buffers used are managed by this factory
12401240
*
12411241
* @return Context constructed
@@ -1248,7 +1248,7 @@ protected IOContext _createContext(ContentReference contentRef, boolean resource
12481248
* Overridable factory method that actually instantiates desired
12491249
* context object.
12501250
*
1251-
* @param contentRef Source reference to use (relevant to {@code JsonLocation} construction)
1251+
* @param contentRef Source reference to use (relevant to {@code TokenStreamLocation} construction)
12521252
* @param resourceManaged Whether input/output buffers used are managed by this factory
12531253
* @param enc Character encoding defined to be used/expected
12541254
*

src/main/java/tools/jackson/core/JsonLocation.java src/main/java/tools/jackson/core/TokenStreamLocation.java

+9-7
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@
1515
* NOTE: users should be careful if using {@link #equals} implementation as
1616
* it may or may not compare underlying "content reference" for equality.
1717
* Instead if would make sense to explicitly implementing equality checks
18-
* using specific criteria caller desires.
18+
* using specific criteria caller desires
19+
* <br />
20+
* NOTE: in Jackson 2.x this type was named {@code JsonLocation}
1921
*/
20-
public class JsonLocation
22+
public class TokenStreamLocation
2123
implements java.io.Serializable
2224
{
2325
private static final long serialVersionUID = 2L;
@@ -26,7 +28,7 @@ public class JsonLocation
2628
* Shared immutable "N/A location" that can be returned to indicate
2729
* that no location information is available.
2830
*/
29-
public final static JsonLocation NA = new JsonLocation(ContentReference.unknown(),
31+
public final static TokenStreamLocation NA = new TokenStreamLocation(ContentReference.unknown(),
3032
-1L, -1L, -1, -1);
3133

3234
private final static String NO_LOCATION_DESC = "[No location information]";
@@ -57,13 +59,13 @@ public class JsonLocation
5759
/**********************************************************************
5860
*/
5961

60-
public JsonLocation(ContentReference contentRef, long totalChars,
62+
public TokenStreamLocation(ContentReference contentRef, long totalChars,
6163
int lineNr, int colNr)
6264
{
6365
this(contentRef, -1L, totalChars, lineNr, colNr);
6466
}
6567

66-
public JsonLocation(ContentReference contentRef, long totalBytes, long totalChars,
68+
public TokenStreamLocation(ContentReference contentRef, long totalBytes, long totalChars,
6769
int lineNr, int columnNr)
6870
{
6971
// 14-Mar-2021, tatu: Defensive programming, but also for convenience...
@@ -220,8 +222,8 @@ public boolean equals(Object other)
220222
{
221223
if (other == this) return true;
222224
if (other == null) return false;
223-
if (!(other instanceof JsonLocation)) return false;
224-
JsonLocation otherLoc = (JsonLocation) other;
225+
if (!(other instanceof TokenStreamLocation)) return false;
226+
TokenStreamLocation otherLoc = (TokenStreamLocation) other;
225227

226228
if (_contentReference == null) {
227229
if (otherLoc._contentReference != null) return false;

src/main/java/tools/jackson/core/base/ParserBase.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ public void close() throws JacksonException
282282
_inputPtr = Math.max(_inputPtr, _inputEnd);
283283
}
284284

285-
// public JsonLocation getTokenLocation()
286-
// public JsonLocation getCurrentLocation()
285+
// public TokenStreamLocation currentTokenLocation()
286+
// public TokenStreamLocation currentLocation()
287287

288288
/*
289289
/**********************************************************************
@@ -1110,7 +1110,7 @@ protected <T> T _handleBase64MissingPadding(Base64Variant b64variant)
11101110

11111111
/**
11121112
* Helper method used to encapsulate logic of including (or not) of
1113-
* "content reference" when constructing {@link JsonLocation} instances.
1113+
* "content reference" when constructing {@link TokenStreamLocation} instances.
11141114
*
11151115
* @return ContentReference object to use.
11161116
*/
@@ -1123,7 +1123,7 @@ protected ContentReference _contentReference() {
11231123

11241124
/**
11251125
* Helper method used to encapsulate logic of providing
1126-
* "content reference" when constructing {@link JsonLocation} instances
1126+
* "content reference" when constructing {@link TokenStreamLocation} instances
11271127
* and source information is <b>NOT</b> to be included
11281128
* ({@code StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION} disabled).
11291129
*<p>

src/main/java/tools/jackson/core/base/ParserMinimalBase.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,8 @@ public void close() throws JacksonException
353353

354354
// public abstract TokenStreamContext getParsingContext();
355355

356-
// public abstract JsonLocation currentTokenLocation();
357-
// public abstract JsonLocation currentLocation();
356+
// public abstract TokenStreamLocation currentTokenLocation();
357+
// public abstract TokenStreamLocation currentLocation();
358358

359359
@Override
360360
public ObjectReadContext objectReadContext() {
@@ -1061,7 +1061,7 @@ protected <T> T _reportUnexpectedNumberChar(int ch, String comment) throws Strea
10611061
*
10621062
* @return Same as {@link #currentLocation()} except offset by -1
10631063
*/
1064-
protected JsonLocation _currentLocationMinusOne() {
1064+
protected TokenStreamLocation _currentLocationMinusOne() {
10651065
return currentLocation();
10661066
}
10671067

src/main/java/tools/jackson/core/exc/StreamConstraintsException.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package tools.jackson.core.exc;
22

33
import tools.jackson.core.JacksonException;
4-
import tools.jackson.core.JsonLocation;
4+
import tools.jackson.core.TokenStreamLocation;
55

66
/**
77
* Exception type used to indicate violations of stream constraints
@@ -17,7 +17,7 @@ public StreamConstraintsException(String msg) {
1717
super(msg);
1818
}
1919

20-
public StreamConstraintsException(String msg, JsonLocation loc) {
20+
public StreamConstraintsException(String msg, TokenStreamLocation loc) {
2121
super(msg, loc, null);
2222
}
2323
}

src/main/java/tools/jackson/core/exc/StreamReadException.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ public StreamReadException(JsonParser p, String msg, Throwable rootCause) {
2323
this(p, msg, _loc(p), rootCause);
2424
}
2525

26-
public StreamReadException(JsonParser p, String msg, JsonLocation loc) {
26+
public StreamReadException(JsonParser p, String msg, TokenStreamLocation loc) {
2727
super(p, msg, loc);
2828
}
2929

30-
public StreamReadException(JsonParser p, String msg, JsonLocation loc,
30+
public StreamReadException(JsonParser p, String msg, TokenStreamLocation loc,
3131
Throwable rootCause) {
3232
super(p, msg, loc, rootCause);
3333
}
3434

35-
private static JsonLocation _loc(JsonParser p) {
35+
private static TokenStreamLocation _loc(JsonParser p) {
3636
return(p == null) ? null : p.currentLocation();
3737
}
3838

src/main/java/tools/jackson/core/filter/FilteringParserDelegate.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public int getMatchCount() {
160160
@Override public boolean isExpectedStartArrayToken() { return _currToken == JsonToken.START_ARRAY; }
161161
@Override public boolean isExpectedStartObjectToken() { return _currToken == JsonToken.START_OBJECT; }
162162

163-
@Override public JsonLocation currentLocation() { return delegate.currentLocation(); }
163+
@Override public TokenStreamLocation currentLocation() { return delegate.currentLocation(); }
164164

165165
@Override
166166
public TokenStreamContext streamReadContext() {

src/main/java/tools/jackson/core/io/ContentReference.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Abstraction that encloses information about content being processed --
1313
* input source or output target, streaming or
1414
* not -- for the purpose of including pertinent information in
15-
* location (see {@link tools.jackson.core.JsonLocation})
15+
* location (see {@link tools.jackson.core.TokenStreamLocation})
1616
* objections, most commonly to be printed out as part of {@code Exception}
1717
* messages.
1818
*/
@@ -374,9 +374,8 @@ protected boolean _appendEscaped(StringBuilder sb, int ctrlChar) {
374374
/**********************************************************************
375375
*/
376376

377-
// Just needed for JsonLocation#equals(): although it'd seem we only need
378-
// to care about identity, for backwards compatibility better compare
379-
// bit more
377+
// Just needed for TokenStreamLocation#equals(): although it'd seem we only need
378+
// to care about identity, for backwards compatibility better compare bit more
380379
@Override
381380
public boolean equals(Object other)
382381
{

src/main/java/tools/jackson/core/json/DupDetector.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void reset() {
5353
_seen = null;
5454
}
5555

56-
public JsonLocation findLocation() {
56+
public TokenStreamLocation findLocation() {
5757
// ugly but:
5858
if (_source instanceof JsonParser) {
5959
return ((JsonParser)_source).currentLocation();

src/main/java/tools/jackson/core/json/JsonReadContext.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,10 @@ public JsonReadContext createChildObjectContext(int lineNr, int colNr) {
172172
@Override public JsonReadContext getParent() { return _parent; }
173173

174174
@Override
175-
public JsonLocation startLocation(ContentReference srcRef) {
175+
public TokenStreamLocation startLocation(ContentReference srcRef) {
176176
// We don't keep track of offsets at this level (only reader does)
177177
long totalChars = -1L;
178-
return new JsonLocation(ContentReference.rawReference(srcRef),
178+
return new TokenStreamLocation(ContentReference.rawReference(srcRef),
179179
totalChars, _lineNr, _columnNr);
180180
}
181181

0 commit comments

Comments
 (0)