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

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

The 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.streams.kstream.ForeachAction;
import org.apache.kafka.streams.kstream.PrintForeachAction;
import org.apache.kafka.streams.processor.Processor;
import org.apache.kafka.streams.processor.AbstractProcessor;
import org.apache.kafka.streams.processor.ProcessorContext;
import org.apache.kafka.streams.processor.ProcessorSupplier;
import org.apache.kafka.common.serialization.Deserializer;
import org.apache.kafka.common.serialization.Serde;

public class KStreamPrint implements ProcessorSupplier {

    private final Serde keySerde;
    private final Serde valueSerde;
    private final ForeachAction action;
    
    public KStreamPrint(final ForeachAction action, final Serde keySerde, final Serde valueSerde) {
        this.action = action;
        this.keySerde = keySerde;
        this.valueSerde = valueSerde;
    }

    @Override
    public Processor get() {
        return new KStreamPrintProcessor(keySerde, valueSerde);
    }

    private class KStreamPrintProcessor extends AbstractProcessor {
        
        private Serde keySerde;
        private Serde valueSerde;
        private ProcessorContext context;
        
        public KStreamPrintProcessor(final Serde keySerde, final Serde valueSerde) {
            this.keySerde = keySerde;
            this.valueSerde = valueSerde;
        }

        @Override
        public void init(ProcessorContext context) {
            this.context = context;
            if (keySerde == null) {
                this.keySerde = context.keySerde();
            }
            if (valueSerde == null) {
                this.valueSerde = context.valueSerde();
            }
        }

        @Override
        public void process(final K key, final V value) {
            final K deKey = (K) maybeDeserialize(key, keySerde.deserializer());
            final V deValue = (V) maybeDeserialize(value, valueSerde.deserializer());
            action.apply(deKey, deValue);
        }

        private Object maybeDeserialize(final Object keyOrValue, final Deserializer deserializer) {
            if (keyOrValue instanceof byte[]) {
                return deserializer.deserialize(this.context.topic(), (byte[]) keyOrValue);
            }
            return keyOrValue;
        }
        
        @Override
        public void close() {
            if (action instanceof PrintForeachAction) {
                ((PrintForeachAction) action).close();
            }
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy