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

io.apicurio.registry.utils.IoUtil Maven / Gradle / Ivy

The newest version!
package io.apicurio.registry.utils;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UncheckedIOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;

public class IoUtil {

    /**
     * Writes the given zip file to an output directory (assumed to either not exist or be empty).
     * 
     * @param zip
     * @param outputDirectory
     */
    public static void unpackToDisk(ZipInputStream zip, Path outputDirectory) throws IOException {
        ZipEntry entry = zip.getNextEntry();
        while (entry != null) {
            Path entryPath = zipPath(entry, outputDirectory);
            if (entry.isDirectory()) {
                Files.createDirectories(entryPath);
            } else {
                Path parentPath = entryPath.getParent();
                if (parentPath != null && Files.notExists(parentPath)) {
                    Files.createDirectories(parentPath);
                }
                Files.copy(zip, entryPath, StandardCopyOption.REPLACE_EXISTING);
            }
            zip.closeEntry();
            entry = zip.getNextEntry();
        }
    }

    private static Path zipPath(ZipEntry entry, Path targetDir) throws IOException {
        Path targetDirResolved = targetDir.resolve(entry.getName());
        Path normalizedPath = targetDirResolved.normalize();
        if (!normalizedPath.startsWith(targetDir)) {
            throw new IOException("Invalid ZIP entry: " + entry.getName());
        }
        return normalizedPath;
    }

    private static ByteArrayOutputStream toBaos(InputStream stream) throws IOException {
        ByteArrayOutputStream result = new ByteArrayOutputStream();
        copy(stream, result);
        return result;
    }

    /**
     * Close auto-closeable, unchecked IOException is thrown for any IO exception, IllegalStateException for
     * all others.
     *
     * @param closeable the closeable
     */
    public static void close(AutoCloseable closeable) {
        try {
            if (closeable != null) {
                closeable.close();
            }
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } catch (Exception e) {
            throw new IllegalStateException(e);
        }
    }

    /**
     * Close auto-closeable, ignore any exception.
     *
     * @param closeable the closeable
     */
    public static void closeIgnore(AutoCloseable closeable) {
        try {
            close(closeable);
        } catch (Exception ignored) {
        }
    }

    /**
     * Get byte array from stream. Stream is closed at the end.
     *
     * @param stream the stream
     * @return stream as a byte array
     */
    public static byte[] toBytes(InputStream stream) {
        try {
            return toBaos(stream).toByteArray();
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            close(stream);
        }
    }

    /**
     * Get byte array from stream.
     *
     * @param stream the stream
     * @return stream as a byte array
     */
    public static byte[] toBytes(InputStream stream, boolean closeStream) {
        try {
            return toBaos(stream).toByteArray();
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            if (closeStream) {
                close(stream);
            }
        }
    }

    /**
     * Get byte array from a file.
     *
     * @param file the file
     * @return file as a byte array
     */
    public static byte[] toBytes(File file) {
        try (FileInputStream stream = new FileInputStream(file)) {
            return toBaos(stream).toByteArray();
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        }
    }

    /**
     * Get string from stream. Stream is closed at the end.
     *
     * @param stream the stream
     * @return stream as a string
     */
    public static String toString(InputStream stream) {
        try {
            return toBaos(stream).toString(StandardCharsets.UTF_8.name());
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            close(stream);
        }
    }

    /**
     * Get string from byte array.
     *
     * @param bytes the bytes
     * @return byte array as a string
     */
    public static String toString(byte[] bytes) {
        return (bytes == null ? null : new String(bytes, StandardCharsets.UTF_8));
    }

    /**
     * Get byte array from string.
     *
     * @param string the string
     * @return string as byte array
     */
    public static byte[] toBytes(String string) {
        return (string == null ? null : string.getBytes(StandardCharsets.UTF_8));
    }

    /**
     * Get stream from content.
     *
     * @param content the content
     * @return content as stream
     */
    public static InputStream toStream(String content) {
        return new ByteArrayInputStream(content.getBytes(StandardCharsets.UTF_8));
    }

    public static InputStream toStream(byte[] content) {
        return new ByteArrayInputStream(content);
    }

    public static long copy(InputStream input, OutputStream output) throws IOException {
        final byte[] buffer = new byte[8192];
        int n;
        long count = 0;
        while ((n = input.read(buffer)) != -1) {
            output.write(buffer, 0, n);
            count += n;
        }
        return count;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy