/* * Copyright 2020 Red Hat * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.apicurio.registry.utils.serde.avro; import io.apicurio.registry.utils.serde.util.Utils; import org.apache.avro.Schema; import org.apache.avro.generic.GenericDatumReader; import org.apache.avro.generic.GenericDatumWriter; import org.apache.avro.io.DatumReader; import org.apache.avro.io.DatumWriter; import org.apache.avro.specific.SpecificData; import org.apache.avro.specific.SpecificDatumReader; import org.apache.avro.specific.SpecificDatumWriter; import org.apache.avro.specific.SpecificRecord; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; /** * @author Ales Justin */ public class DefaultAvroDatumProvider<T> implements AvroDatumProvider<T> { private Boolean useSpecificAvroReader; private Map<String, Schema> schemas = new ConcurrentHashMap<>(); public DefaultAvroDatumProvider() { } public DefaultAvroDatumProvider(boolean useSpecificAvroReader) { this.useSpecificAvroReader = useSpecificAvroReader; } public DefaultAvroDatumProvider<T> setUseSpecificAvroReader(boolean useSpecificAvroReader) { this.useSpecificAvroReader = useSpecificAvroReader; return this; } @Override public void configure(Map<String, ?> configs) { if (useSpecificAvroReader == null) { useSpecificAvroReader = Utils.isTrue(configs.get(REGISTRY_USE_SPECIFIC_AVRO_READER_CONFIG_PARAM)); } } @SuppressWarnings("unchecked") private Schema getReaderSchema(Schema schema) { return schemas.computeIfAbsent(schema.getFullName(), k -> { Class<SpecificRecord> readerClass = SpecificData.get().getClass(schema); if (readerClass != null) { try { return readerClass.newInstance().getSchema(); } catch (Exception e) { throw new IllegalStateException(String.format("Error getting schema [%s]: %s", schema.getFullName(), readerClass.getName()), e); } } else { throw new IllegalArgumentException("Could not find class " + schema.getFullName() + " specified in writer's schema whilst finding reader's " + "schema for a SpecificRecord."); } }); } @Override public DatumWriter<T> createDatumWriter(T data, Schema schema) { if (data instanceof SpecificRecord) { return new SpecificDatumWriter<>(schema); } else { return new GenericDatumWriter<>(schema); } } @Override public DatumReader<T> createDatumReader(Schema schema) { // do not use SpecificDatumReader if schema is a primitive if (useSpecificAvroReader != null && useSpecificAvroReader) { if (AvroSchemaUtils.isPrimitive(schema) == false) { return new SpecificDatumReader<>(schema, getReaderSchema(schema)); } } return new GenericDatumReader<>(schema); } @Override public Schema toSchema(T data) { return AvroSchemaUtils.getSchema(data); } }