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

org.apache.jena.kafka.DeserializerActionFK Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/*
 *  Copyright (c) Telicent Ltd.
 *
 *  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 org.apache.jena.kafka;

import java.io.PrintStream;
import java.util.Map;
import java.util.function.Function;

import org.apache.jena.atlas.lib.StrUtils;
import org.apache.jena.riot.WebContent;
import org.apache.jena.riot.web.HttpNames;
import org.apache.kafka.common.header.Headers;
import org.apache.kafka.common.serialization.Deserializer;

/**
 * Deserialize to an internal "request object"
 */
public class DeserializerActionFK implements Deserializer {

    private final static String defaultContentType = WebContent.contentTypeNQuads;
    // Verbose mode - dumps incoming Kafka event to an output stream.
    // The purpose is to be able to capture events
    private final Function dumpOutput;
    private boolean verbose = false;

    /**
     * New DeserializerActionFK
     * @param verbose
     *      Dump events.
     * @param dumpOutput
     *      Supply a {@code PrintStream} for dump output.
     *      The output is thread-safe.
     *      The output is flushed after each event.
     */
    public DeserializerActionFK(boolean verbose, Function dumpOutput) {
        this.verbose = verbose;
        this.dumpOutput = dumpOutput;
    }

    public DeserializerActionFK() {
        this(false, null);
    }

    private int counter = 0;

    @Override
    public RequestFK deserialize(String topic, Headers headers, byte[] data) {
        Map requestHeaders = JK.headerToMap(headers);

        if ( verbose && dumpOutput != null ) {
            synchronized(this) {
                counter++;
                try (PrintStream out = dumpOutput.apply(counter)) {
                    out.printf("## %d ##\n", counter);
                    headers.forEach(h -> out.println(h.key() + ": " + StrUtils.fromUTF8bytes(h.value())));
                    out.println();
                    String x = StrUtils.fromUTF8bytes(data);
                    out.print(x);
                    if (!x.endsWith("\n"))
                        out.println();
                    out.flush();
                }
            }
        }

        // Default Content-Type to NQuads
        if ( ! requestHeaders.containsKey(HttpNames.hContentType) ) {
            //Log.warn(FusekiKafka.LOG, "No Content-Type - defaulting to "+defaultContentType);
            requestHeaders.put(HttpNames.hContentType, defaultContentType);
        }

        // Content-Length
        if ( ! requestHeaders.containsKey(HttpNames.hContentLength) ) {
            String contentLengthStr = Integer.toString(data.length);
            requestHeaders.put(HttpNames.hContentLength, contentLengthStr);
        }

        return new RequestFK(topic, requestHeaders, data);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy