Class GeneratorBase
- java.lang.Object
-
- com.fasterxml.jackson.core.JsonGenerator
-
- com.fasterxml.jackson.core.base.GeneratorBase
-
- All Implemented Interfaces:
Versioned,java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
- Direct Known Subclasses:
JsonGeneratorImpl
public abstract class GeneratorBase extends JsonGenerator
This base class implements part of API that a JSON generator exposes to applications, adds shared internal methods that sub-classes can use and adds some abstract methods sub-classes must implement.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonGenerator
JsonGenerator.Feature
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean_cfgNumbersAsStringsFlag set to indicate that implicit conversion from number to JSON String is needed (as perJsonGenerator.Feature.WRITE_NUMBERS_AS_STRINGS).protected boolean_closedFlag that indicates whether generator is closed or not.protected int_featuresBit flag composed of bits that indicate whichJsonGenerator.Features are enabled.protected ObjectCodec_objectCodecprotected JsonWriteContext_writeContextObject that keeps track of the current contextual state of the generator.protected static intDERIVED_FEATURES_MASKSet of feature masks related to features that need updates of other local configuration or state.protected static intMAX_BIG_DECIMAL_SCALEThis value is the limit of scale allowed for serializingBigDecimalin "plain" (non-engineering) notation; intent is to prevent asymmetric attack whereupon simple eng-notation with big scale is used to generate huge "plain" serialization.static intSURR1_FIRSTstatic intSURR1_LASTstatic intSURR2_FIRSTstatic intSURR2_LASTprotected static java.lang.StringWRITE_BINARYprotected static java.lang.StringWRITE_BOOLEANprotected static java.lang.StringWRITE_NULLprotected static java.lang.StringWRITE_NUMBERprotected static java.lang.StringWRITE_RAWprotected static java.lang.StringWRITE_STRING-
Fields inherited from class com.fasterxml.jackson.core.JsonGenerator
_cfgPrettyPrinter
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedGeneratorBase(int features, ObjectCodec codec)protectedGeneratorBase(int features, ObjectCodec codec, JsonWriteContext ctxt)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected java.lang.String_asString(java.math.BigDecimal value)Helper method used to serialize aBigDecimalas a String, for serialization, taking into account configuration settingsprotected void_checkStdFeatureChanges(int newFeatureFlags, int changedFeatures)Helper method called to verify changes to standard features.protected PrettyPrinter_constructDefaultPrettyPrinter()Overridable factory method called to instantiate an appropriatePrettyPrinterfor case of "just use the default one", whenuseDefaultPrettyPrinter()is called.protected int_decodeSurrogate(int surr1, int surr2)protected abstract void_releaseBuffers()Method called to release any buffers generator may be holding, once generator is being closed.protected abstract void_verifyValueWrite(java.lang.String typeMsg)Method called before trying to write a value (scalar or structured), to verify that this is legal in current output state, as well as to output separators if and as necessary.voidclose()Method called to close this generator, so that no more content can be written.JsonGeneratordisable(JsonGenerator.Feature f)Method for disabling specified features (checkJsonGenerator.Featurefor list of features)JsonGeneratorenable(JsonGenerator.Feature f)Method for enabling specified parser features: checkJsonGenerator.Featurefor list of available features.abstract voidflush()Method called to flush any buffered content to the underlying target (output stream, writer), and to flush the target itself as well.ObjectCodecgetCodec()Method for accessing the object used for writing Java object as JSON content (using methodJsonGenerator.writeObject(java.lang.Object)).java.lang.ObjectgetCurrentValue()Helper method, usually equivalent to:getOutputContext().getCurrentValue();intgetFeatureMask()Bulk access method for getting state of all standard (non-dataformat-specific)JsonGenerator.Features.JsonStreamContextgetOutputContext()Note: type was co-variant until Jackson 2.7; reverted back to base type in 2.8 to allow for overriding by subtypes that use custom context type.booleanisClosed()Method that can be called to determine whether this generator is closed or not.booleanisEnabled(JsonGenerator.Feature f)Method for checking whether given feature is enabled.JsonGeneratoroverrideStdFeatures(int values, int mask)Bulk set method for (re)setting states of features specified bymask.JsonGeneratorsetCodec(ObjectCodec oc)Method that can be called to set or reset the object to use for writing Java objects as JsonContent (using methodJsonGenerator.writeObject(java.lang.Object)).voidsetCurrentValue(java.lang.Object v)Helper method, usually equivalent to:getOutputContext().setCurrentValue(v);JsonGeneratorsetFeatureMask(int newMask)Deprecated.JsonGeneratoruseDefaultPrettyPrinter()Convenience method for enabling pretty-printing using the default pretty printer (DefaultPrettyPrinter).Versionversion()Implemented with standard version number detection algorithm, typically using a simple generated class, with information extracted from Maven project file during build.intwriteBinary(Base64Variant b64variant, java.io.InputStream data, int dataLength)Method similar toJsonGenerator.writeBinary(Base64Variant,byte[],int,int), but where input is provided through a stream, allowing for incremental writes without holding the whole input in memory.voidwriteFieldName(SerializableString name)Method similar toJsonGenerator.writeFieldName(String), main difference being that it may perform better as some of processing (such as quoting of certain characters, or encoding into external encoding if supported by generator) can be done just once and reused for later calls.voidwriteObject(java.lang.Object value)Method for writing given Java object (POJO) as Json.voidwriteRawValue(char[] text, int offset, int len)voidwriteRawValue(SerializableString text)Method similar toJsonGenerator.writeRawValue(String), but potentially more efficient as it may be able to use pre-encoded content (similar toJsonGenerator.writeRaw(SerializableString).voidwriteRawValue(java.lang.String text)Method that will force generator to copy input text verbatim without any modifications, but assuming it must constitute a single legal JSON value (number, string, boolean, null, Array or List).voidwriteRawValue(java.lang.String text, int offset, int len)voidwriteStartObject(java.lang.Object forValue)Method for writing starting marker of an Object value to represent the given Java Object value.voidwriteString(SerializableString text)Method similar toJsonGenerator.writeString(String), but that takesSerializableStringwhich can make this potentially more efficient to call as generator may be able to reuse quoted and/or encoded representation.voidwriteTree(TreeNode rootNode)Method for writing given JSON tree (expressed as a tree where given JsonNode is the root) using this generator.-
Methods inherited from class com.fasterxml.jackson.core.JsonGenerator
_copyCurrentContents, _reportError, _reportUnsupportedOperation, _throwInternal, _verifyOffsets, _writeSimpleObject, canOmitFields, canUseSchema, canWriteBinaryNatively, canWriteFormattedNumbers, canWriteObjectId, canWriteTypeId, configure, copyCurrentEvent, copyCurrentStructure, getCharacterEscapes, getFormatFeatures, getHighestEscapedChar, getOutputBuffered, getOutputTarget, getPrettyPrinter, getSchema, isEnabled, overrideFormatFeatures, setCharacterEscapes, setHighestNonEscapedChar, setPrettyPrinter, setRootValueSeparator, setSchema, writeArray, writeArray, writeArray, writeArrayFieldStart, writeBinary, writeBinary, writeBinary, writeBinary, writeBinaryField, writeBoolean, writeBooleanField, writeEmbeddedObject, writeEndArray, writeEndObject, writeFieldId, writeFieldName, writeNull, writeNullField, writeNumber, writeNumber, writeNumber, writeNumber, writeNumber, writeNumber, writeNumber, writeNumber, writeNumberField, writeNumberField, writeNumberField, writeNumberField, writeNumberField, writeObjectField, writeObjectFieldStart, writeObjectId, writeObjectRef, writeOmittedField, writeRaw, writeRaw, writeRaw, writeRaw, writeRaw, writeRawUTF8String, writeStartArray, writeStartArray, writeStartArray, writeStartArray, writeStartObject, writeStartObject, writeString, writeString, writeString, writeStringField, writeTypeId, writeTypePrefix, writeTypeSuffix, writeUTF8String
-
-
-
-
Field Detail
-
SURR1_FIRST
public static final int SURR1_FIRST
- See Also:
- Constant Field Values
-
SURR1_LAST
public static final int SURR1_LAST
- See Also:
- Constant Field Values
-
SURR2_FIRST
public static final int SURR2_FIRST
- See Also:
- Constant Field Values
-
SURR2_LAST
public static final int SURR2_LAST
- See Also:
- Constant Field Values
-
DERIVED_FEATURES_MASK
protected static final int DERIVED_FEATURES_MASK
Set of feature masks related to features that need updates of other local configuration or state.- Since:
- 2.5
-
WRITE_BINARY
protected static final java.lang.String WRITE_BINARY
- See Also:
- Constant Field Values
-
WRITE_BOOLEAN
protected static final java.lang.String WRITE_BOOLEAN
- See Also:
- Constant Field Values
-
WRITE_NULL
protected static final java.lang.String WRITE_NULL
- See Also:
- Constant Field Values
-
WRITE_NUMBER
protected static final java.lang.String WRITE_NUMBER
- See Also:
- Constant Field Values
-
WRITE_RAW
protected static final java.lang.String WRITE_RAW
- See Also:
- Constant Field Values
-
WRITE_STRING
protected static final java.lang.String WRITE_STRING
- See Also:
- Constant Field Values
-
MAX_BIG_DECIMAL_SCALE
protected static final int MAX_BIG_DECIMAL_SCALE
This value is the limit of scale allowed for serializingBigDecimalin "plain" (non-engineering) notation; intent is to prevent asymmetric attack whereupon simple eng-notation with big scale is used to generate huge "plain" serialization. See [core#315] for details.- Since:
- 2.7.7
- See Also:
- Constant Field Values
-
_objectCodec
protected ObjectCodec _objectCodec
-
_features
protected int _features
Bit flag composed of bits that indicate whichJsonGenerator.Features are enabled.
-
_cfgNumbersAsStrings
protected boolean _cfgNumbersAsStrings
Flag set to indicate that implicit conversion from number to JSON String is needed (as perJsonGenerator.Feature.WRITE_NUMBERS_AS_STRINGS).
-
_writeContext
protected JsonWriteContext _writeContext
Object that keeps track of the current contextual state of the generator.
-
_closed
protected boolean _closed
Flag that indicates whether generator is closed or not. Gets set when it is closed by an explicit call (close()).
-
-
Constructor Detail
-
GeneratorBase
protected GeneratorBase(int features, ObjectCodec codec)
-
GeneratorBase
protected GeneratorBase(int features, ObjectCodec codec, JsonWriteContext ctxt)- Since:
- 2.5
-
-
Method Detail
-
version
public Version version()
Implemented with standard version number detection algorithm, typically using a simple generated class, with information extracted from Maven project file during build.- Specified by:
versionin interfaceVersioned- Specified by:
versionin classJsonGenerator
-
getCurrentValue
public java.lang.Object getCurrentValue()
Description copied from class:JsonGeneratorHelper method, usually equivalent to:getOutputContext().getCurrentValue();Note that "current value" is NOT populated (or used) by Streaming parser; it is only used by higher-level data-binding functionality. The reason it is included here is that it can be stored and accessed hierarchically, and gets passed through data-binding.
- Overrides:
getCurrentValuein classJsonGenerator
-
setCurrentValue
public void setCurrentValue(java.lang.Object v)
Description copied from class:JsonGeneratorHelper method, usually equivalent to:getOutputContext().setCurrentValue(v);- Overrides:
setCurrentValuein classJsonGenerator
-
isEnabled
public final boolean isEnabled(JsonGenerator.Feature f)
Description copied from class:JsonGeneratorMethod for checking whether given feature is enabled. CheckJsonGenerator.Featurefor list of available features.- Specified by:
isEnabledin classJsonGenerator
-
getFeatureMask
public int getFeatureMask()
Description copied from class:JsonGeneratorBulk access method for getting state of all standard (non-dataformat-specific)JsonGenerator.Features.- Specified by:
getFeatureMaskin classJsonGenerator- Returns:
- Bit mask that defines current states of all standard
JsonGenerator.Features.
-
enable
public JsonGenerator enable(JsonGenerator.Feature f)
Description copied from class:JsonGeneratorMethod for enabling specified parser features: checkJsonGenerator.Featurefor list of available features.- Specified by:
enablein classJsonGenerator- Returns:
- Generator itself (this), to allow chaining
-
disable
public JsonGenerator disable(JsonGenerator.Feature f)
Description copied from class:JsonGeneratorMethod for disabling specified features (checkJsonGenerator.Featurefor list of features)- Specified by:
disablein classJsonGenerator- Returns:
- Generator itself (this), to allow chaining
-
setFeatureMask
@Deprecated public JsonGenerator setFeatureMask(int newMask)
Deprecated.Description copied from class:JsonGeneratorBulk set method for (re)setting states of all standardJsonGenerator.Features- Specified by:
setFeatureMaskin classJsonGenerator- Parameters:
newMask- Bitmask that defines whichJsonGenerator.Features are enabled and which disabled- Returns:
- This parser object, to allow chaining of calls
-
overrideStdFeatures
public JsonGenerator overrideStdFeatures(int values, int mask)
Description copied from class:JsonGeneratorBulk set method for (re)setting states of features specified bymask. Functionally equivalent toint oldState = getFeatureMask(); int newState = (oldState & ~mask) | (values & mask); setFeatureMask(newState);but preferred as this lets caller more efficiently specify actual changes made.- Overrides:
overrideStdFeaturesin classJsonGenerator- Parameters:
values- Bit mask of set/clear state for features to changemask- Bit mask of features to change
-
_checkStdFeatureChanges
protected void _checkStdFeatureChanges(int newFeatureFlags, int changedFeatures)Helper method called to verify changes to standard features.- Parameters:
newFeatureFlags- Bitflag of standard features after they were changedchangedFeatures- Bitflag of standard features for which setting did change- Since:
- 2.7
-
useDefaultPrettyPrinter
public JsonGenerator useDefaultPrettyPrinter()
Description copied from class:JsonGeneratorConvenience method for enabling pretty-printing using the default pretty printer (DefaultPrettyPrinter).- Specified by:
useDefaultPrettyPrinterin classJsonGenerator- Returns:
- Generator itself (this), to allow chaining
-
setCodec
public JsonGenerator setCodec(ObjectCodec oc)
Description copied from class:JsonGeneratorMethod that can be called to set or reset the object to use for writing Java objects as JsonContent (using methodJsonGenerator.writeObject(java.lang.Object)).- Specified by:
setCodecin classJsonGenerator- Returns:
- Generator itself (this), to allow chaining
-
getCodec
public ObjectCodec getCodec()
Description copied from class:JsonGeneratorMethod for accessing the object used for writing Java object as JSON content (using methodJsonGenerator.writeObject(java.lang.Object)).- Specified by:
getCodecin classJsonGenerator
-
getOutputContext
public JsonStreamContext getOutputContext()
Note: type was co-variant until Jackson 2.7; reverted back to base type in 2.8 to allow for overriding by subtypes that use custom context type.- Specified by:
getOutputContextin classJsonGenerator- Returns:
- Context object that can give information about logical position within generated json content.
-
writeStartObject
public void writeStartObject(java.lang.Object forValue) throws java.io.IOExceptionDescription copied from class:JsonGeneratorMethod for writing starting marker of an Object value to represent the given Java Object value. Argument is offered as metadata, but more importantly it should be assigned as the "current value" for the Object content that gets constructed and initialized.Object values can be written in any context where values are allowed: meaning everywhere except for when a field name is expected.
- Overrides:
writeStartObjectin classJsonGenerator- Throws:
java.io.IOException
-
writeFieldName
public void writeFieldName(SerializableString name) throws java.io.IOException
Description copied from class:JsonGeneratorMethod similar toJsonGenerator.writeFieldName(String), main difference being that it may perform better as some of processing (such as quoting of certain characters, or encoding into external encoding if supported by generator) can be done just once and reused for later calls.Default implementation simple uses unprocessed name container in serialized String; implementations are strongly encouraged to make use of more efficient methods argument object has.
- Specified by:
writeFieldNamein classJsonGenerator- Throws:
java.io.IOException
-
writeString
public void writeString(SerializableString text) throws java.io.IOException
Description copied from class:JsonGeneratorMethod similar toJsonGenerator.writeString(String), but that takesSerializableStringwhich can make this potentially more efficient to call as generator may be able to reuse quoted and/or encoded representation.Default implementation just calls
JsonGenerator.writeString(String); sub-classes should override it with more efficient implementation if possible.- Specified by:
writeStringin classJsonGenerator- Throws:
java.io.IOException
-
writeRawValue
public void writeRawValue(java.lang.String text) throws java.io.IOExceptionDescription copied from class:JsonGeneratorMethod that will force generator to copy input text verbatim without any modifications, but assuming it must constitute a single legal JSON value (number, string, boolean, null, Array or List). Assuming this, proper separators are added if and as needed (comma or colon), and generator state updated to reflect this.- Specified by:
writeRawValuein classJsonGenerator- Throws:
java.io.IOException
-
writeRawValue
public void writeRawValue(java.lang.String text, int offset, int len) throws java.io.IOException- Specified by:
writeRawValuein classJsonGenerator- Throws:
java.io.IOException
-
writeRawValue
public void writeRawValue(char[] text, int offset, int len) throws java.io.IOException- Specified by:
writeRawValuein classJsonGenerator- Throws:
java.io.IOException
-
writeRawValue
public void writeRawValue(SerializableString text) throws java.io.IOException
Description copied from class:JsonGeneratorMethod similar toJsonGenerator.writeRawValue(String), but potentially more efficient as it may be able to use pre-encoded content (similar toJsonGenerator.writeRaw(SerializableString).- Overrides:
writeRawValuein classJsonGenerator- Throws:
java.io.IOException
-
writeBinary
public int writeBinary(Base64Variant b64variant, java.io.InputStream data, int dataLength) throws java.io.IOException
Description copied from class:JsonGeneratorMethod similar toJsonGenerator.writeBinary(Base64Variant,byte[],int,int), but where input is provided through a stream, allowing for incremental writes without holding the whole input in memory.- Specified by:
writeBinaryin classJsonGenerator- Parameters:
b64variant- Base64 variant to usedata- InputStream to use for reading binary data to write. Will not be closed after successful write operationdataLength- (optional) number of bytes that will be available; or -1 to be indicate it is not known. If a positive length is given,dataMUST provide at least that many bytes: if not, an exception will be thrown. Note that implementations need not support cases where length is not known in advance; this depends on underlying data format: JSON output does NOT require length, other formats may.- Returns:
- Number of bytes read from
dataand written as binary payload - Throws:
java.io.IOException
-
writeObject
public void writeObject(java.lang.Object value) throws java.io.IOExceptionDescription copied from class:JsonGeneratorMethod for writing given Java object (POJO) as Json. Exactly how the object gets written depends on object in question (ad on codec, its configuration); for most beans it will result in JSON Object, but for others JSON Array, or String or numeric value (and for nulls, JSON null literal. NOTE: generator must have its object codec set to non-null value; for generators created by a mapping factory this is the case, for others not.- Specified by:
writeObjectin classJsonGenerator- Throws:
java.io.IOException
-
writeTree
public void writeTree(TreeNode rootNode) throws java.io.IOException
Description copied from class:JsonGeneratorMethod for writing given JSON tree (expressed as a tree where given JsonNode is the root) using this generator. This will generally just callJsonGenerator.writeObject(java.lang.Object)with given node, but is added for convenience and to make code more explicit in cases where it deals specifically with trees.- Specified by:
writeTreein classJsonGenerator- Throws:
java.io.IOException
-
flush
public abstract void flush() throws java.io.IOExceptionDescription copied from class:JsonGeneratorMethod called to flush any buffered content to the underlying target (output stream, writer), and to flush the target itself as well.- Specified by:
flushin interfacejava.io.Flushable- Specified by:
flushin classJsonGenerator- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOExceptionDescription copied from class:JsonGeneratorMethod called to close this generator, so that no more content can be written.Whether the underlying target (stream, writer) gets closed depends on whether this generator either manages the target (i.e. is the only one with access to the target -- case if caller passes a reference to the resource such as File, but not stream); or has feature
JsonGenerator.Feature.AUTO_CLOSE_TARGETenabled. If either of above is true, the target is also closed. Otherwise (not managing, feature not enabled), target is not closed.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Specified by:
closein classJsonGenerator- Throws:
java.io.IOException
-
isClosed
public boolean isClosed()
Description copied from class:JsonGeneratorMethod that can be called to determine whether this generator is closed or not. If it is closed, no more output can be done.- Specified by:
isClosedin classJsonGenerator
-
_releaseBuffers
protected abstract void _releaseBuffers()
Method called to release any buffers generator may be holding, once generator is being closed.
-
_verifyValueWrite
protected abstract void _verifyValueWrite(java.lang.String typeMsg) throws java.io.IOExceptionMethod called before trying to write a value (scalar or structured), to verify that this is legal in current output state, as well as to output separators if and as necessary.- Parameters:
typeMsg- Additional message used for generating exception message if value output is NOT legal in current generator output state.- Throws:
java.io.IOException
-
_constructDefaultPrettyPrinter
protected PrettyPrinter _constructDefaultPrettyPrinter()
Overridable factory method called to instantiate an appropriatePrettyPrinterfor case of "just use the default one", whenuseDefaultPrettyPrinter()is called.- Since:
- 2.6
-
_asString
protected java.lang.String _asString(java.math.BigDecimal value) throws java.io.IOExceptionHelper method used to serialize aBigDecimalas a String, for serialization, taking into account configuration settings- Throws:
java.io.IOException- Since:
- 2.7.7
-
_decodeSurrogate
protected final int _decodeSurrogate(int surr1, int surr2) throws java.io.IOException- Throws:
java.io.IOException- Since:
- 2.5
-
-