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

com.yahoo.vespa.http.server.FeedReaderFactory Maven / Gradle / Ivy

There is a newer version: 8.441.21
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.server;

import com.yahoo.document.DocumentTypeManager;
import com.yahoo.document.json.JsonFeedReader;
import com.yahoo.text.Utf8;
import com.yahoo.vespaxmlparser.FeedReader;
import com.yahoo.vespaxmlparser.VespaXMLFeedReader;

import java.io.InputStream;

/**
 * Class for creating FeedReader based on dataFormat.
 * @author Haakon Dybdahl
 */
public class FeedReaderFactory {
    private static final int MARK_READLIMIT = 200;

    private final boolean debug;
    public FeedReaderFactory(boolean debug) {
        this.debug = debug;
    }

    /**
     * Creates FeedReader
     * @param inputStream source of feed data
     * @param docTypeManager handles the parsing of the document
     * @param dataFormat specifies the format
     * @return a feedreader
     */
    public FeedReader createReader(
            InputStream inputStream,
            DocumentTypeManager docTypeManager,
            FeedParams.DataFormat dataFormat)  {
        switch (dataFormat) {
            case XML_UTF8:
                byte [] peek = null;
                int bytesPeeked = 0;
                try {
                    if (debug && inputStream.markSupported()) {
                        peek = new byte[MARK_READLIMIT];
                        inputStream.mark(MARK_READLIMIT);
                        bytesPeeked = inputStream.read(peek);
                        inputStream.reset();
                    }
                    return new VespaXMLFeedReader(inputStream, docTypeManager);
                } catch (Exception e) {
                    if (bytesPeeked > 0) {
                        throw new RuntimeException("Could not create VespaXMLFeedReader. First characters are: '" + Utf8.toString(peek, 0, bytesPeeked) + "'", e);
                    } else {
                        throw new RuntimeException("Could not create VespaXMLFeedReader.", e);
                    }
                }
            case JSON_UTF8:
                return new JsonFeedReader(inputStream, docTypeManager);
            default:
                throw new IllegalStateException("Can not create feed reader for format: " + dataFormat);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy