Skip to content

Commit 6f3ad49

Browse files
committed
Implement #524: add CBORWriteFeature
1 parent ab14f2b commit 6f3ad49

18 files changed

+179
-254
lines changed

cbor/src/main/java/tools/jackson/dataformat/cbor/CBORFactory.java

+12-23
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,11 @@ public class CBORFactory
4343
*/
4444
public final static String FORMAT_NAME = "CBOR";
4545

46-
/**
47-
* Bitfield (set of flags) of all parser features that are enabled
48-
* by default.
49-
*/
50-
final static int DEFAULT_CBOR_PARSER_FEATURE_FLAGS = CBORParser.Feature.collectDefaults();
51-
5246
/**
5347
* Bitfield (set of flags) of all generator features that are enabled
5448
* by default.
5549
*/
56-
final static int DEFAULT_CBOR_GENERATOR_FEATURE_FLAGS = CBORGenerator.Feature.collectDefaults();
50+
final static int DEFAULT_CBOR_GENERATOR_FEATURE_FLAGS = CBORWriteFeature.collectDefaults();
5751

5852
/*
5953
/**********************************************************************
@@ -87,7 +81,7 @@ public CBORFactory() {
8781
super(StreamReadConstraints.defaults(),
8882
StreamWriteConstraints.defaults(),
8983
ErrorReportConfiguration.defaults(),
90-
DEFAULT_CBOR_PARSER_FEATURE_FLAGS,
84+
0,
9185
DEFAULT_CBOR_GENERATOR_FEATURE_FLAGS);
9286
}
9387

@@ -179,27 +173,22 @@ public boolean canUseSchema(FormatSchema schema) {
179173
return false; // no (mandatory) FormatSchema for cbor
180174
}
181175

182-
@Override
183-
public Class<CBORParser.Feature> getFormatReadFeatureType() {
184-
return CBORParser.Feature.class;
176+
// No Reader features yet for CBOR
177+
/*@Override
178+
public Class<CBORReadFeature> getFormatReadFeatureType() {
179+
return CBORReadFeature.class;
185180
}
181+
*/
186182

187183
@Override
188-
public Class<CBORGenerator.Feature> getFormatWriteFeatureType() {
189-
return CBORGenerator.Feature.class;
190-
}
191-
192-
/**
193-
* Checked whether specified parser feature is enabled.
194-
*/
195-
public final boolean isEnabled(CBORParser.Feature f) {
196-
return f.enabledIn(_formatReadFeatures);
184+
public Class<CBORWriteFeature> getFormatWriteFeatureType() {
185+
return CBORWriteFeature.class;
197186
}
198187

199188
/**
200189
* Check whether specified generator feature is enabled.
201190
*/
202-
public final boolean isEnabled(CBORGenerator.Feature f) {
191+
public final boolean isEnabled(CBORWriteFeature f) {
203192
return f.enabledIn(_formatWriteFeatures);
204193
}
205194

@@ -267,10 +256,10 @@ protected JsonGenerator _createGenerator(ObjectWriteContext writeCtxt,
267256
writeCtxt.getStreamWriteFeatures(_streamWriteFeatures),
268257
writeCtxt.getFormatWriteFeatures(_formatWriteFeatures),
269258
out);
270-
if (CBORGenerator.Feature.WRITE_TYPE_HEADER.enabledIn(_formatWriteFeatures)) {
259+
if (CBORWriteFeature.WRITE_TYPE_HEADER.enabledIn(_formatWriteFeatures)) {
271260
gen.writeTag(CBORConstants.TAG_ID_SELF_DESCRIBE);
272261
}
273-
if (CBORGenerator.Feature.STRINGREF.enabledIn(_formatWriteFeatures)) {
262+
if (CBORWriteFeature.STRINGREF.enabledIn(_formatWriteFeatures)) {
274263
gen.writeTag(CBORConstants.TAG_ID_STRINGREF_NAMESPACE);
275264
}
276265
return gen;

cbor/src/main/java/tools/jackson/dataformat/cbor/CBORFactoryBuilder.java

+8-40
Original file line numberDiff line numberDiff line change
@@ -24,75 +24,43 @@ protected CBORFactoryBuilder() {
2424
super(StreamReadConstraints.defaults(),
2525
StreamWriteConstraints.defaults(),
2626
ErrorReportConfiguration.defaults(),
27-
CBORFactory.DEFAULT_CBOR_PARSER_FEATURE_FLAGS,
27+
0,
2828
CBORFactory.DEFAULT_CBOR_GENERATOR_FEATURE_FLAGS);
2929
}
3030

3131
public CBORFactoryBuilder(CBORFactory base) {
3232
super(base);
3333
}
3434

35-
// // // Parser features
36-
37-
public CBORFactoryBuilder enable(CBORParser.Feature f) {
38-
_formatReadFeatures |= f.getMask();
39-
return _this();
40-
}
41-
42-
public CBORFactoryBuilder enable(CBORParser.Feature first, CBORParser.Feature... other) {
43-
_formatReadFeatures |= first.getMask();
44-
for (CBORParser.Feature f : other) {
45-
_formatReadFeatures |= f.getMask();
46-
}
47-
return _this();
48-
}
49-
50-
public CBORFactoryBuilder disable(CBORParser.Feature f) {
51-
_formatReadFeatures &= ~f.getMask();
52-
return _this();
53-
}
54-
55-
public CBORFactoryBuilder disable(CBORParser.Feature first, CBORParser.Feature... other) {
56-
_formatReadFeatures &= ~first.getMask();
57-
for (CBORParser.Feature f : other) {
58-
_formatReadFeatures &= ~f.getMask();
59-
}
60-
return _this();
61-
}
62-
63-
public CBORFactoryBuilder configure(CBORParser.Feature f, boolean state) {
64-
return state ? enable(f) : disable(f);
65-
}
66-
6735
// // // Generator features
6836

69-
public CBORFactoryBuilder enable(CBORGenerator.Feature f) {
37+
public CBORFactoryBuilder enable(CBORWriteFeature f) {
7038
_formatWriteFeatures |= f.getMask();
7139
return _this();
7240
}
7341

74-
public CBORFactoryBuilder enable(CBORGenerator.Feature first, CBORGenerator.Feature... other) {
42+
public CBORFactoryBuilder enable(CBORWriteFeature first, CBORWriteFeature... other) {
7543
_formatWriteFeatures |= first.getMask();
76-
for (CBORGenerator.Feature f : other) {
44+
for (CBORWriteFeature f : other) {
7745
_formatWriteFeatures |= f.getMask();
7846
}
7947
return _this();
8048
}
8149

82-
public CBORFactoryBuilder disable(CBORGenerator.Feature f) {
50+
public CBORFactoryBuilder disable(CBORWriteFeature f) {
8351
_formatWriteFeatures &= ~f.getMask();
8452
return _this();
8553
}
8654

87-
public CBORFactoryBuilder disable(CBORGenerator.Feature first, CBORGenerator.Feature... other) {
55+
public CBORFactoryBuilder disable(CBORWriteFeature first, CBORWriteFeature... other) {
8856
_formatWriteFeatures &= ~first.getMask();
89-
for (CBORGenerator.Feature f : other) {
57+
for (CBORWriteFeature f : other) {
9058
_formatWriteFeatures &= ~f.getMask();
9159
}
9260
return _this();
9361
}
9462

95-
public CBORFactoryBuilder configure(CBORGenerator.Feature f, boolean state) {
63+
public CBORFactoryBuilder configure(CBORWriteFeature f, boolean state) {
9664
return state ? enable(f) : disable(f);
9765
}
9866

cbor/src/main/java/tools/jackson/dataformat/cbor/CBORGenerator.java

+10-110
Original file line numberDiff line numberDiff line change
@@ -49,106 +49,6 @@ public class CBORGenerator extends GeneratorBase
4949
*/
5050
private final static int MAX_LONG_STRING_BYTES = (MAX_LONG_STRING_CHARS * 3) + 3;
5151

52-
/**
53-
* Enumeration that defines all togglable features for CBOR generator.
54-
*/
55-
public enum Feature implements FormatFeature {
56-
/**
57-
* Feature that determines whether generator should try to use smallest
58-
* (size-wise) integer representation: if true, will use smallest
59-
* representation that is enough to retain value; if false, will use
60-
* length indicated by argument type (4-byte for <code>int</code>,
61-
* 8-byte for <code>long</code> and so on).
62-
*/
63-
WRITE_MINIMAL_INTS(true),
64-
65-
/**
66-
* Feature that determines whether CBOR "Self-Describe Tag" (value
67-
* 55799, encoded as 3-byte sequence of <code>0xD9, 0xD9, 0xF7</code>)
68-
* should be written at the beginning of document or not.
69-
* <p>
70-
* Default value is {@code false} meaning that type tag will not be
71-
* written at the beginning of a new document.
72-
*/
73-
WRITE_TYPE_HEADER(false),
74-
75-
/**
76-
* Feature that determines if an invalid surrogate encoding found in the
77-
* incoming String should fail with an exception or silently be output
78-
* as the Unicode 'REPLACEMENT CHARACTER' (U+FFFD) or not; if not,
79-
* an exception will be thrown to indicate invalid content.
80-
* <p>
81-
* Default value is {@code false} (for backwards compatibility) meaning that
82-
* an invalid surrogate will result in exception ({@code StreamWriteException}).
83-
*/
84-
LENIENT_UTF_ENCODING(false),
85-
86-
/**
87-
* Feature that determines if string references are generated based on the
88-
* <a href="http://cbor.schmorp.de/stringref">stringref</a>) extension. This can save
89-
* storage space, parsing time, and pool string memory when parsing. Readers of the output
90-
* must also support the stringref extension to properly decode the data. Extra overhead may
91-
* be added to generation time and memory usage to compute the shared binary and text
92-
* strings.
93-
* <p>
94-
* Default value is {@code false} meaning that the stringref extension will not be used.
95-
*
96-
* @since 2.15
97-
*/
98-
STRINGREF(false),
99-
100-
/**
101-
* Feature that determines whether generator should try to write doubles
102-
* as floats: if {@code true}, will write a {@code double} as a 4-byte float if no
103-
* precision loss will occur; if {@code false}, will always write a {@code double}
104-
* as an 8-byte double.
105-
* <p>
106-
* Default value is {@code false} meaning that doubles will always be written as
107-
* 8-byte values.
108-
*
109-
* @since 2.15
110-
*/
111-
WRITE_MINIMAL_DOUBLES(false),
112-
;
113-
114-
protected final boolean _defaultState;
115-
protected final int _mask;
116-
117-
/**
118-
* Method that calculates bit set (flags) of all features that are
119-
* enabled by default.
120-
*/
121-
public static int collectDefaults() {
122-
int flags = 0;
123-
for (Feature f : values()) {
124-
if (f.enabledByDefault()) {
125-
flags |= f.getMask();
126-
}
127-
}
128-
return flags;
129-
}
130-
131-
private Feature(boolean defaultState) {
132-
_defaultState = defaultState;
133-
_mask = (1 << ordinal());
134-
}
135-
136-
@Override
137-
public boolean enabledByDefault() {
138-
return _defaultState;
139-
}
140-
141-
@Override
142-
public boolean enabledIn(int flags) {
143-
return (flags & getMask()) != 0;
144-
}
145-
146-
@Override
147-
public int getMask() {
148-
return _mask;
149-
}
150-
}
151-
15252
/**
15353
* To simplify certain operations, we require output buffer length to allow
15454
* outputting of contiguous 256 character UTF-8 encoded String value. Length
@@ -176,7 +76,7 @@ public int getMask() {
17676

17777
/**
17878
* Bit flag composed of bits that indicate which
179-
* {@link CBORGenerator.Feature}s are enabled.
79+
* {@link CBORWriteFeature}s are enabled.
18080
*/
18181
protected final int _formatFeatures;
18282

@@ -280,11 +180,11 @@ public CBORGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt,
280180
? DupDetector.rootDetector(this)
281181
: null;
282182
_streamWriteContext = CBORWriteContext.createRootContext(dups);
283-
_cfgMinimalInts = Feature.WRITE_MINIMAL_INTS.enabledIn(formatFeatures);
284-
_cfgMinimalDoubles = Feature.WRITE_MINIMAL_DOUBLES.enabledIn(formatFeatures);
183+
_cfgMinimalInts = CBORWriteFeature.WRITE_MINIMAL_INTS.enabledIn(formatFeatures);
184+
_cfgMinimalDoubles = CBORWriteFeature.WRITE_MINIMAL_DOUBLES.enabledIn(formatFeatures);
285185
_out = out;
286186
_bufferRecyclable = true;
287-
_stringRefs = Feature.STRINGREF.enabledIn(formatFeatures) ? new HashMap<>() : null;
187+
_stringRefs = CBORWriteFeature.STRINGREF.enabledIn(formatFeatures) ? new HashMap<>() : null;
288188
_outputBuffer = ioCtxt.allocWriteEncodingBuffer(BYTE_BUFFER_FOR_OUTPUT);
289189
_outputEnd = _outputBuffer.length;
290190
_charBuffer = ioCtxt.allocConcatBuffer();
@@ -317,13 +217,13 @@ public CBORGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt,
317217
? DupDetector.rootDetector(this)
318218
: null;
319219
_streamWriteContext = CBORWriteContext.createRootContext(dups);
320-
_cfgMinimalInts = Feature.WRITE_MINIMAL_INTS.enabledIn(formatFeatures);
321-
_cfgMinimalDoubles = Feature.WRITE_MINIMAL_DOUBLES.enabledIn(formatFeatures);
220+
_cfgMinimalInts = CBORWriteFeature.WRITE_MINIMAL_INTS.enabledIn(formatFeatures);
221+
_cfgMinimalDoubles = CBORWriteFeature.WRITE_MINIMAL_DOUBLES.enabledIn(formatFeatures);
322222
_out = out;
323223
_bufferRecyclable = bufferRecyclable;
324224
_outputTail = offset;
325225
_outputBuffer = outputBuffer;
326-
_stringRefs = Feature.STRINGREF.enabledIn(formatFeatures) ? new HashMap<>() : null;
226+
_stringRefs = CBORWriteFeature.STRINGREF.enabledIn(formatFeatures) ? new HashMap<>() : null;
327227
_outputEnd = _outputBuffer.length;
328228
_charBuffer = ioCtxt.allocConcatBuffer();
329229
_charBufferLength = _charBuffer.length;
@@ -422,7 +322,7 @@ public CBORGenerator disable(Feature f) {
422322
}
423323
*/
424324

425-
public final boolean isEnabled(Feature f) {
325+
public final boolean isEnabled(CBORWriteFeature f) {
426326
return (_formatFeatures & f.getMask()) != 0;
427327
}
428328

@@ -1653,7 +1553,7 @@ private final int _encode2(int i, int outputPtr, String str, int len,
16531553
private int _invalidSurrogateStart(int code, byte[] outBuf, int outputPtr)
16541554
throws JacksonException
16551555
{
1656-
if (isEnabled(Feature.LENIENT_UTF_ENCODING)) {
1556+
if (isEnabled(CBORWriteFeature.LENIENT_UTF_ENCODING)) {
16571557
return _appendReplacementChar(outBuf, outputPtr);
16581558
}
16591559
// Will be called in two distinct cases: either first character is
@@ -1675,7 +1575,7 @@ private int _invalidSurrogateEnd(int surr1, int surr2,
16751575
byte[] outBuf, int outputPtr)
16761576
throws JacksonException
16771577
{
1678-
if (isEnabled(Feature.LENIENT_UTF_ENCODING)) {
1578+
if (isEnabled(CBORWriteFeature.LENIENT_UTF_ENCODING)) {
16791579
return _appendReplacementChar(outBuf, outputPtr);
16801580
}
16811581
_reportError(String.format(

cbor/src/main/java/tools/jackson/dataformat/cbor/CBORParser.java

-38
Original file line numberDiff line numberDiff line change
@@ -24,46 +24,8 @@
2424

2525
public class CBORParser extends ParserBase
2626
{
27-
/**
28-
* Enumeration that defines all togglable features for CBOR generators.
29-
*/
30-
public enum Feature implements FormatFeature
31-
{
32-
// BOGUS(false)
33-
;
34-
35-
final boolean _defaultState;
36-
final int _mask;
37-
38-
/**
39-
* Method that calculates bit set (flags) of all features that
40-
* are enabled by default.
41-
*/
42-
public static int collectDefaults()
43-
{
44-
int flags = 0;
45-
for (Feature f : values()) {
46-
if (f.enabledByDefault()) {
47-
flags |= f.getMask();
48-
}
49-
}
50-
return flags;
51-
}
52-
53-
private Feature(boolean defaultState) {
54-
_defaultState = defaultState;
55-
_mask = (1 << ordinal());
56-
}
57-
58-
@Override public boolean enabledByDefault() { return _defaultState; }
59-
@Override public int getMask() { return _mask; }
60-
@Override public boolean enabledIn(int flags) { return (flags & _mask) != 0; }
61-
}
62-
6327
/**
6428
* Class for keeping track of tags in an optimized manner.
65-
*
66-
* @since 2.15
6729
*/
6830
public static final class TagList
6931
{

0 commit comments

Comments
 (0)