org.apache.kafka.streams.state.internals.KeyAndJoinSideDeserializer Maven / Gradle / Ivy
/*
* 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.state.internals;
import org.apache.kafka.common.serialization.Deserializer;
import org.apache.kafka.streams.kstream.internals.WrappingNullableDeserializer;
import org.apache.kafka.streams.processor.internals.SerdeGetter;
import java.util.Map;
import static org.apache.kafka.streams.kstream.internals.WrappingNullableUtils.initNullableDeserializer;
public class KeyAndJoinSideDeserializer implements WrappingNullableDeserializer, K, Void> {
private Deserializer keyDeserializer;
KeyAndJoinSideDeserializer(final Deserializer keyDeserializer) {
this.keyDeserializer = keyDeserializer;
}
@SuppressWarnings("unchecked")
@Override
public void setIfUnset(final SerdeGetter getter) {
if (keyDeserializer == null) {
keyDeserializer = (Deserializer) getter.keySerde().deserializer();
}
initNullableDeserializer(keyDeserializer, getter);
}
@Override
public void configure(final Map configs, final boolean isKey) {
keyDeserializer.configure(configs, isKey);
}
@Override
public KeyAndJoinSide deserialize(final String topic, final byte[] data) {
final boolean bool = data[0] == 1;
final K key = keyDeserializer.deserialize(topic, rawKey(data));
return KeyAndJoinSide.make(bool, key);
}
private byte[] rawKey(final byte[] data) {
final byte[] rawKey = new byte[data.length - 1];
System.arraycopy(data, 1, rawKey, 0, rawKey.length);
return rawKey;
}
@Override
public void close() {
keyDeserializer.close();
}
}