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

org.primefaces.model.DefaultStreamedContent Maven / Gradle / Ivy

/*
 * The MIT License
 *
 * Copyright (c) 2009-2023 PrimeTek Informatics
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package org.primefaces.model;

import java.io.InputStream;
import java.io.OutputStream;
import java.io.Serializable;
import java.util.function.Consumer;
import java.util.function.Supplier;

import javax.faces.FacesException;

import org.primefaces.util.SerializableConsumer;
import org.primefaces.util.SerializableSupplier;

/**
 * Default implementation of a StreamedContent
 */
public class DefaultStreamedContent implements StreamedContent, Serializable {

    private static final long serialVersionUID = 1L;
    private SerializableSupplier stream;
    private String contentType;
    private String name;
    private String contentEncoding;
    private Long contentLength;
    private SerializableConsumer writer;

    public DefaultStreamedContent() {
        // NOOP
    }

    @Override
    public Supplier getStream() {
        return stream;
    }

    @Override
    public String getContentType() {
        return contentType;
    }

    @Override
    public String getName() {
        return name;
    }

    @Override
    public String getContentEncoding() {
        return contentEncoding;
    }

    @Override
    public Long getContentLength() {
        return contentLength;
    }

    @Override
    public Consumer getWriter() {
        return writer;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static final class Builder {

        private final DefaultStreamedContent streamedContent;

        private Builder() {
            streamedContent = new DefaultStreamedContent();
        }

        public Builder stream(SerializableSupplier is) {
            streamedContent.stream = is;
            return this;
        }

        public Builder contentType(String contentType) {
            streamedContent.contentType = contentType;
            return this;
        }

        public Builder name(String name) {
            streamedContent.name = name;
            return this;
        }

        public Builder contentEncoding(String contentEncoding) {
            streamedContent.contentEncoding = contentEncoding;
            return this;
        }

        public Builder contentLength(Long contentLength) {
            streamedContent.contentLength = contentLength;
            return this;
        }

        public Builder writer(SerializableConsumer writer) {
            streamedContent.writer = writer;
            return this;
        }

        public DefaultStreamedContent build() {
            if (streamedContent.writer == null && streamedContent.stream == null) {
                throw new FacesException("Either provide a 'stream' or 'writer'!");
            }

            return streamedContent;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy