com.fasterxml.jackson.dataformat.avro.AvroParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-dataformat-avro Show documentation
Show all versions of jackson-dataformat-avro Show documentation
Support for reading and writing AVRO-encoded data via Jackson
abstractions.
package com.fasterxml.jackson.dataformat.avro;
import java.io.*;
import com.fasterxml.jackson.core.*;
import com.fasterxml.jackson.core.base.ParserBase;
import com.fasterxml.jackson.core.io.IOContext;
import com.fasterxml.jackson.core.json.JsonReadContext;
import com.fasterxml.jackson.core.util.ByteArrayBuilder;
import com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext;
import com.fasterxml.jackson.dataformat.avro.deser.MissingReader;
/**
* {@link JsonParser} implementation for decoding Avro content and
* exposing at as a stream of {@link JsonToken}s, to be used
* for data binding.
*/
public abstract class AvroParser extends ParserBase
{
/**
* Enumeration that defines all togglable features for Avro parsers.
*/
public enum Feature {
;
final boolean _defaultState;
final int _mask;
/**
* Method that calculates bit set (flags) of all features that
* are enabled by default.
*/
public static int collectDefaults()
{
int flags = 0;
for (Feature f : values()) {
if (f.enabledByDefault()) {
flags |= f.getMask();
}
}
return flags;
}
private Feature(boolean defaultState) {
_defaultState = defaultState;
_mask = (1 << ordinal());
}
public boolean enabledByDefault() { return _defaultState; }
public int getMask() { return _mask; }
}
/*
/**********************************************************************
/* Configuration
/**********************************************************************
*/
/**
* Codec used for data binding when (if) requested.
*/
protected ObjectCodec _objectCodec;
protected int _avroFeatures;
protected AvroSchema _rootSchema;
/*
/**********************************************************************
/* Input sources
/**********************************************************************
*/
final protected InputStream _input;
/*
/**********************************************************************
/* State
/**********************************************************************
*/
protected AvroReadContext _avroContext;
/**
* We need to keep track of text values.
*/
protected String _textValue;
/*
/**********************************************************************
/* Life-cycle
/**********************************************************************
*/
protected AvroParser(IOContext ctxt, int parserFeatures, int avroFeatures,
ObjectCodec codec, InputStream in)
{
super(ctxt, parserFeatures);
_objectCodec = codec;
_avroFeatures = avroFeatures;
_input = in;
_avroContext = MissingReader.instance;
}
protected AvroParser(IOContext ctxt, int parserFeatures, int avroFeatures,
ObjectCodec codec,
byte[] data, int offset, int len)
{
super(ctxt, parserFeatures);
_objectCodec = codec;
_avroFeatures = avroFeatures;
_input = null;
_avroContext = MissingReader.instance;
}
@Override
public ObjectCodec getCodec() {
return _objectCodec;
}
@Override
public void setCodec(ObjectCodec c) {
_objectCodec = c;
}
@Override
public Object getInputSource() {
return _input;
}
/*
/**********************************************************
/* Versioned
/**********************************************************
*/
@Override
public Version version() {
return PackageVersion.VERSION;
}
/*
/**********************************************************
/* ParserBase method impls
/**********************************************************
*/
@Override
protected boolean loadMore() throws IOException {
throw new UnsupportedOperationException();
}
@Override
protected void _finishString() throws IOException, JsonParseException {
throw new UnsupportedOperationException();
}
@Override
protected void _closeInput() throws IOException {
if (_input != null) {
_input.close();
}
}
/*
/***************************************************
/* Public API, configuration
/***************************************************
*/
/**
* Method for enabling specified Avro feature
* (check {@link Feature} for list of features)
*/
public JsonParser enable(AvroParser.Feature f)
{
_avroFeatures |= f.getMask();
return this;
}
/**
* Method for disabling specified Avro feature
* (check {@link Feature} for list of features)
*/
public JsonParser disable(AvroParser.Feature f)
{
_avroFeatures &= ~f.getMask();
return this;
}
/**
* Method for enabling or disabling specified Avro feature
* (check {@link Feature} for list of features)
*/
public JsonParser configure(AvroParser.Feature f, boolean state)
{
if (state) {
enable(f);
} else {
disable(f);
}
return this;
}
/**
* Method for checking whether specified Avro {@link Feature}
* is enabled.
*/
public boolean isEnabled(AvroParser.Feature f) {
return (_avroFeatures & f.getMask()) != 0;
}
@Override
public boolean canUseSchema(FormatSchema schema) {
return (schema instanceof AvroSchema);
}
@Override public AvroSchema getSchema() {
return _rootSchema;
}
@Override
public void setSchema(FormatSchema schema)
{
if (_rootSchema == schema) {
return;
}
if (schema instanceof AvroSchema) {
_initSchema((AvroSchema) schema);
} else {
super.setSchema(schema);
}
}
protected abstract void _initSchema(AvroSchema schema);
/*
/**********************************************************
/* Location info
/**********************************************************
*/
@Override
public JsonLocation getTokenLocation()
{
// !!! TODO
return null;
}
@Override
public JsonLocation getCurrentLocation()
{
// !!! TODO
return null;
}
/*
/**********************************************************
/* Parsing
/**********************************************************
*/
@Override
public abstract JsonToken nextToken() throws IOException, JsonParseException;
/*
/**********************************************************
/* String value handling
/**********************************************************
*/
// For now we do not store char[] representation...
@Override
public boolean hasTextCharacters() {
return false;
}
@Override
public String getText() throws IOException, JsonParseException
{
if (_currToken == JsonToken.VALUE_STRING) {
return _textValue;
}
if (_currToken == JsonToken.FIELD_NAME) {
return _avroContext.getCurrentName();
}
if (_currToken != null) {
if (_currToken.isScalarValue()) {
return _textValue;
}
return _currToken.asString();
}
return null;
}
@Override
public String getCurrentName() throws IOException, JsonParseException
{
return _avroContext.getCurrentName();
}
@Override
public void overrideCurrentName(String name)
{
// Simple, but need to look for START_OBJECT/ARRAY's "off-by-one" thing:
JsonReadContext ctxt = _parsingContext;
if (_currToken == JsonToken.START_OBJECT || _currToken == JsonToken.START_ARRAY) {
ctxt = ctxt.getParent();
}
/* 24-Sep-2013, tatu: Unfortunate, but since we did not expose exceptions,
* need to wrap this here
*/
try {
ctxt.setCurrentName(name);
} catch (IOException e) {
throw new IllegalStateException(e);
}
}
@Override
public char[] getTextCharacters() throws IOException, JsonParseException {
String text = getText();
return (text == null) ? null : text.toCharArray();
}
@Override
public int getTextLength() throws IOException, JsonParseException {
String text = getText();
return (text == null) ? 0 : text.length();
}
@Override
public int getTextOffset() throws IOException, JsonParseException {
return 0;
}
/*
/**********************************************************************
/* Binary (base64)
/**********************************************************************
*/
@Override
public Object getEmbeddedObject() throws IOException, JsonParseException {
return _binaryValue;
}
@Override
public byte[] getBinaryValue(Base64Variant variant) throws IOException, JsonParseException
{
if (_binaryValue == null) {
if (_currToken != JsonToken.VALUE_STRING) {
_reportError("Current token ("+_currToken+") not VALUE_STRING, can not access as binary");
}
@SuppressWarnings("resource")
ByteArrayBuilder builder = _getByteArrayBuilder();
_decodeBase64(getText(), builder, variant);
_binaryValue = builder.toByteArray();
}
return _binaryValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy