All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fge.avro.translators.MapTranslator Maven / Gradle / Ivy

package com.github.fge.avro.translators;

import com.fasterxml.jackson.databind.node.ObjectNode;
import com.github.fge.avro.MutableTree;
import com.github.fge.jackson.NodeType;
import com.github.fge.jackson.jsonpointer.JsonPointer;
import com.github.fge.jsonschema.exceptions.ProcessingException;
import com.github.fge.jsonschema.report.ProcessingReport;
import org.apache.avro.Schema;

final class MapTranslator
    extends AvroTranslator
{
    private static final AvroTranslator INSTANCE = new MapTranslator();

    private MapTranslator()
    {
    }

    public static AvroTranslator getInstance()
    {
        return INSTANCE;
    }

    @Override
    public void translate(final Schema avroSchema, final MutableTree jsonSchema,
        final ProcessingReport report)
        throws ProcessingException
    {
        jsonSchema.setType(NodeType.OBJECT);

        final JsonPointer pwd = jsonSchema.getPointer();
        final ObjectNode subSchema = FACTORY.objectNode();
        final Schema valuesSchema = avroSchema.getValueType();

        jsonSchema.getCurrentNode().put("additionalProperties", subSchema);

        jsonSchema.setPointer(pwd.append("additionalProperties"));
        AvroTranslators.getTranslator(valuesSchema.getType())
            .translate(valuesSchema, jsonSchema, report);
        jsonSchema.setPointer(pwd);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy