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

com.vaadin.flow.component.upload.receivers.FileBuffer Maven / Gradle / Ivy

There is a newer version: 24.5.5
Show newest version
/*
 * Copyright 2000-2017 Vaadin 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 com.vaadin.flow.component.upload.receivers;

import java.io.ByteArrayInputStream;
import java.io.FileDescriptor;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.logging.Level;

import com.vaadin.flow.component.upload.Receiver;

/**
 * Basic in file receiver implementation. File is stored by default to File
 * created using {@link java.io.File#createTempFile(String, String)} with a null
 * suffix.
 * 

* For a custom file the constructor {@link AbstractFileBuffer(FileFactory)} * should be used. */ public class FileBuffer extends AbstractFileBuffer implements Receiver { private FileData file; @Override public OutputStream receiveUpload(String fileName, String MIMEType) { FileOutputStream outputBuffer = createFileOutputStream(fileName); file = new FileData(fileName, MIMEType, outputBuffer); return outputBuffer; } /** * Get the file data object. * * @return file data for the latest upload or null */ public FileData getFileData() { return file; } /** * Get the file name for this buffer. * * @return file name or empty if no file */ public String getFileName() { return file != null ? file.getFileName() : ""; } /** * Get the output stream for file. * * @return file output stream or null if not available */ public FileDescriptor getFileDescriptor() { if (file != null) { try { return ((FileOutputStream) file.getOutputBuffer()).getFD(); } catch (IOException e) { getLogger().log(Level.WARNING, "Failed to get file descriptor for: '" + getFileName() + "'", e); } } return null; } /** * Get the input stream for file. * * @return input stream for file or empty stream if file not found */ public InputStream getInputStream() { if (file != null) { try { return new FileInputStream( ((FileOutputStream) file.getOutputBuffer()).getFD()); } catch (IOException e) { getLogger().log(Level.WARNING, "Failed to create InputStream for: '" + getFileName() + "'", e); } } return new ByteArrayInputStream(new byte[0]); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy