net.pkhsolutions.pecsapp.control.PictureFileStorage.java Source code

Java tutorial

Introduction

Here is the source code for net.pkhsolutions.pecsapp.control.PictureFileStorage.java

Source

/*
 * Copyright (C) 2016 Petter Holmstrm
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package net.pkhsolutions.pecsapp.control;

import net.pkhsolutions.pecsapp.entity.PageLayout;
import net.pkhsolutions.pecsapp.entity.PictureDescriptor;
import org.jetbrains.annotations.NotNull;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.file.FileAlreadyExistsException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Optional;

/**
 * Control class for storing and loading picture files from the file system.
 */
@Service
public class PictureFileStorage {

    private static final Logger LOGGER = LoggerFactory.getLogger(PictureFileStorage.class);

    private Path directory;

    @Autowired
    PictureFileStorage(@NotNull PictureFileStorageProperties properties) throws IOException {
        directory = Paths.get(properties.getDirectory());
        LOGGER.info("Storing picture files in {}", directory);
    }

    /**
     * TODO Document me
     *
     * @param descriptor
     * @param layout
     * @param image
     * @throws IOException
     */
    public void store(@NotNull PictureDescriptor descriptor, @NotNull Optional<PageLayout> layout,
            @NotNull BufferedImage image) throws IOException {
        final Path path = getDirectoryForLayout(layout)
                .resolve(String.format("%d.%s", descriptor.getId(), descriptor.getMimeType().getSubtype()));
        LOGGER.debug("Storing image in {}", path);
        try (OutputStream outputStream = Files.newOutputStream(path)) {
            ImageIO.write(image, descriptor.getMimeType().getSubtype(), outputStream);
        }
    }

    /**
     * TODO Document me
     *
     * @param descriptor
     * @param layout
     * @return
     * @throws IOException
     */
    @NotNull
    public Optional<BufferedImage> load(@NotNull PictureDescriptor descriptor, @NotNull Optional<PageLayout> layout)
            throws IOException {
        final Path path = getDirectoryForLayout(layout)
                .resolve(String.format("%d.%s", descriptor.getId(), descriptor.getMimeType().getSubtype()));
        LOGGER.debug("Loading image from {}", path);
        if (!Files.exists(path)) {
            LOGGER.warn("File {} does not exist", path);
            return Optional.empty();
        }
        try (InputStream inputStream = Files.newInputStream(path)) {
            return Optional.of(ImageIO.read(inputStream));
        }
    }

    @NotNull
    private Path getDirectoryForLayout(@NotNull Optional<PageLayout> layout) throws IOException {
        final Path path = directory.resolve(layout.map(PageLayout::name).orElse("raw").toLowerCase());
        try {
            return Files.createDirectories(path);
        } catch (FileAlreadyExistsException ex) {
            return path;
        }
    }

}