/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to you 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.kareldb.kafka.serialization; import io.kareldb.avro.AvroSchema; import io.kareldb.kafka.KafkaTable; import org.apache.avro.Schema; import org.apache.avro.Schema.Field; import org.apache.avro.generic.GenericDatumWriter; import org.apache.avro.generic.GenericRecord; import org.apache.avro.generic.GenericRecordBuilder; import org.apache.avro.io.BinaryEncoder; import org.apache.avro.io.DatumWriter; import org.apache.avro.io.EncoderFactory; import org.apache.calcite.linq4j.Ord; import org.apache.kafka.common.errors.SerializationException; import org.apache.kafka.common.serialization.Serializer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.Map; public class KafkaKeySerializer implements Serializer<Comparable[]> { private final static Logger LOG = LoggerFactory.getLogger(KafkaKeySerializer.class); private final EncoderFactory encoderFactory = EncoderFactory.get(); private Schema avroSchema; private DatumWriter<Object> writer; @Override public void configure(Map<String, ?> configs, boolean isKey) { avroSchema = (Schema) configs.get("avroSchema"); writer = new GenericDatumWriter<>(avroSchema, KafkaTable.GENERIC); } @Override public byte[] serialize(String topic, Comparable[] object) { if (object == null) { return null; } try { ByteArrayOutputStream out = new ByteArrayOutputStream(); BinaryEncoder encoder = encoderFactory.directBinaryEncoder(out, null); writer.write(toRecord(object), encoder); encoder.flush(); byte[] bytes = out.toByteArray(); out.close(); return bytes; } catch (IOException | RuntimeException e) { // avro serialization can throw AvroRuntimeException, NullPointerException, // ClassCastException, etc LOG.error("Error serializing Avro key " + e.getMessage()); throw new SerializationException("Error serializing Avro key", e); } } private GenericRecord toRecord(Comparable[] object) { GenericRecordBuilder builder = new GenericRecordBuilder(avroSchema); for (Ord<Field> field : Ord.zip(avroSchema.getFields())) { Comparable c = object[field.i]; builder.set(field.e, AvroSchema.toAvroValue(field.e.schema(), c)); } return builder.build(); } @Override public void close() { } }