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

org.apache.kafka.streams.kstream.internals.ChangedDeserializer Maven / Gradle / Ivy

There is a newer version: 3.8.0
Show newest version
/*
 * 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 org.apache.kafka.streams.kstream.internals;

import org.apache.kafka.common.header.Headers;
import org.apache.kafka.common.serialization.Deserializer;
import org.apache.kafka.common.utils.ByteUtils;
import org.apache.kafka.streams.errors.StreamsException;
import org.apache.kafka.streams.processor.internals.SerdeGetter;

import java.nio.ByteBuffer;

public class ChangedDeserializer implements Deserializer>, WrappingNullableDeserializer, Void, T> {

    private static final int ENCODING_FLAG_SIZE = 1;
    private static final int IS_LATEST_FLAG_SIZE = 1;

    private Deserializer inner;

    public ChangedDeserializer(final Deserializer inner) {
        this.inner = inner;
    }

    public Deserializer inner() {
        return inner;
    }

    @SuppressWarnings("unchecked")
    @Override
    public void setIfUnset(final SerdeGetter getter) {
        if (inner == null) {
            inner = (Deserializer) getter.valueSerde().deserializer();
        }
    }

    @Override
    public Change deserialize(final String topic, final Headers headers, final byte[] data) {
        // The format we need to deserialize is:
        // {BYTE_ARRAY oldValue}{BYTE encodingFlag=0}
        // {BYTE_ARRAY newValue}{BYTE encodingFlag=1}
        // {VARINT newDataLength}{BYTE_ARRAY newValue}{BYTE_ARRAY oldValue}{BYTE encodingFlag=2}
        // {BYTE_ARRAY oldValue}{BYTE isLatest}{BYTE encodingFlag=3}
        // {BYTE_ARRAY newValue}{BYTE isLatest}{BYTE encodingFlag=4}
        // {VARINT newDataLength}{BYTE_ARRAY newValue}{BYTE_ARRAY oldValue}{BYTE isLatest}{BYTE encodingFlag=5}
        final ByteBuffer buffer = ByteBuffer.wrap(data);
        final byte encodingFlag = buffer.get(data.length - ENCODING_FLAG_SIZE);

        final byte[] newData;
        final byte[] oldData;
        final boolean isLatest;
        switch (encodingFlag) {
            case (byte) 0: {
                newData = null;
                final int oldDataLength = data.length - ENCODING_FLAG_SIZE;
                oldData = new byte[oldDataLength];
                buffer.get(oldData);
                isLatest = true;
                break;
            }
            case (byte) 1: {
                oldData = null;
                final int newDataLength = data.length - ENCODING_FLAG_SIZE;
                newData = new byte[newDataLength];
                buffer.get(newData);
                isLatest = true;
                break;
            }
            case (byte) 2: {
                final int newDataLength = ByteUtils.readVarint(buffer);
                newData = new byte[newDataLength];
                buffer.get(newData);

                final int oldDataLength = buffer.capacity() - buffer.position() - ENCODING_FLAG_SIZE;
                oldData = new byte[oldDataLength];
                buffer.get(oldData);
                isLatest = true;
                break;
            }
            case (byte) 3: {
                newData = null;
                final int oldDataLength = data.length - IS_LATEST_FLAG_SIZE - ENCODING_FLAG_SIZE;
                oldData = new byte[oldDataLength];
                buffer.get(oldData);
                isLatest = readIsLatestFlag(buffer);
                break;
            }
            case (byte) 4: {
                oldData = null;
                final int newDataLength = data.length - IS_LATEST_FLAG_SIZE - ENCODING_FLAG_SIZE;
                newData = new byte[newDataLength];
                buffer.get(newData);
                isLatest = readIsLatestFlag(buffer);
                break;
            }
            case (byte) 5: {
                final int newDataLength = ByteUtils.readVarint(buffer);
                newData = new byte[newDataLength];
                buffer.get(newData);

                final int oldDataLength = buffer.capacity() - buffer.position() - IS_LATEST_FLAG_SIZE - ENCODING_FLAG_SIZE;
                oldData = new byte[oldDataLength];
                buffer.get(oldData);

                isLatest = readIsLatestFlag(buffer);
                break;
            }
            default:
                throw new StreamsException("Encountered unknown byte value `" + encodingFlag + "` for encodingFlag in ChangedDeserializer.");
        }

        return new Change<>(
            inner.deserialize(topic, headers, newData),
            inner.deserialize(topic, headers, oldData),
            isLatest);
    }

    private boolean readIsLatestFlag(final ByteBuffer buffer) {
        final byte isLatestFlag = buffer.get(buffer.capacity() - IS_LATEST_FLAG_SIZE - ENCODING_FLAG_SIZE);
        if (isLatestFlag == (byte) 1) {
            return true;
        } else if (isLatestFlag == (byte) 0) {
            return false;
        } else {
            throw new StreamsException("Encountered unexpected byte value `" + isLatestFlag + "` for isLatestFlag in ChangedDeserializer.");
        }
    }

    @Override
    public Change deserialize(final String topic, final byte[] data) {
        return deserialize(topic, null, data);
    }

    @Override
    public void close() {
        inner.close();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy