java/copy-image-resizer/src/cz/frantovo/copyImageResizer/RecursiveImageResizer.java
author František Kučera <franta-hg@frantovo.cz>
Mon, 17 Nov 2014 20:05:57 +0100
changeset 12 27e41d7f5e8d
parent 11 f517bafcf812
child 13 28aa5f597457
permissions -rw-r--r--
counters, logging
     1 /**
     2  * copy-image-resizer
     3  * Copyright © 2014 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package cz.frantovo.copyImageResizer;
    19 
    20 import cz.frantovo.copyImageResizer.SingleImageResizer.ImageFormat;
    21 import java.awt.image.BufferedImage;
    22 import java.io.File;
    23 import java.io.FileInputStream;
    24 import java.io.FileNotFoundException;
    25 import java.io.FileOutputStream;
    26 import java.io.IOException;
    27 import java.io.InputStream;
    28 import java.nio.channels.FileChannel;
    29 import java.util.logging.Level;
    30 import java.util.logging.Logger;
    31 import javax.imageio.ImageIO;
    32 
    33 /**
    34  *
    35  * @author Ing. František Kučera (frantovo.cz)
    36  */
    37 public class RecursiveImageResizer {
    38 
    39 	private static final Logger log = Logger.getLogger(RecursiveImageResizer.class.getName());
    40 	
    41 	private final Counters counters = new Counters();
    42 
    43 	private final SingleImageResizer resizer = new SingleImageResizer();
    44 
    45 	private final RecursiveOptions options;
    46 
    47 	public RecursiveImageResizer(RecursiveOptions options) {
    48 		this.options = options;
    49 	}
    50 
    51 	public Counters resize() throws RecursiveException, ResizeException {
    52 		resizeDirectory(options.getInput());
    53 		return counters;
    54 	}
    55 
    56 	private void resizeFile(File inputFile) throws ResizeException {
    57 		File inputFileRelative = relativize(options.getInput(), inputFile);
    58 		log.log(Level.FINER, "Resizing file: {0}", inputFileRelative);
    59 
    60 		ImageFormat format = ImageFormat.getMatching(inputFile.getName());
    61 
    62 		if (format == null) {
    63 			log.log(Level.FINER, "Skipping file: {0} (no image format matched this extension)", inputFileRelative);
    64 		} else {
    65 			try {
    66 				for (SizeSpecification size : options.getSizes()) {
    67 					File sizeRoot = new File(options.getOutput(), size.getDirectory());
    68 					File outputFile = new File(sizeRoot, inputFileRelative.getPath());
    69 					try (FileInputStream input = new FileInputStream(inputFile)) {
    70 						BufferedImage image = readImage(input);
    71 						if (shouldResize(image, size)) {
    72 							try (FileOutputStream output = new FileOutputStream(outputFile)) {
    73 								resizer.resize(image, output, size, format);
    74 							}
    75 						} else {
    76 							log.log(Level.FINER, "File: {0} has already required (or smaller) size → just copy", inputFileRelative);
    77 							justCopy(inputFile, outputFile);
    78 						}
    79 					}
    80 				}
    81 			} catch (FileNotFoundException e) {
    82 				throw new ResizeException("Error while opening stream", e);
    83 			} catch (IOException e) {
    84 				throw new ResizeException("Error while closing stream", e);
    85 			}
    86 		}
    87 	}
    88 
    89 	private static boolean shouldResize(BufferedImage input, SizeSpecification requested) {
    90 		if (requested.isResizeSmaller()) {
    91 			return input.getHeight() != requested.getHeight() || input.getWidth() != requested.getWidth();
    92 		} else {
    93 			return input.getHeight() > requested.getHeight() || input.getWidth() > requested.getWidth();
    94 		}
    95 	}
    96 
    97 	private static BufferedImage readImage(InputStream input) throws ResizeException {
    98 		try {
    99 			return ImageIO.read(input);
   100 		} catch (IOException e) {
   101 			throw new ResizeException("Unable to read image from stream", e);
   102 		}
   103 	}
   104 
   105 	private static void justCopy(File inputFile, File outputFile) throws ResizeException {
   106 		try {
   107 
   108 			if (!outputFile.exists()) {
   109 				outputFile.createNewFile();
   110 			}
   111 
   112 			try (FileChannel input = new FileInputStream(inputFile).getChannel()) {
   113 				try (FileChannel output = new FileOutputStream(outputFile).getChannel()) {
   114 					output.transferFrom(input, 0, input.size());
   115 				}
   116 			}
   117 
   118 		} catch (IOException e) {
   119 			throw new ResizeException("Unable copy stream/channel", e);
   120 		}
   121 
   122 	}
   123 
   124 	private void resizeDirectory(File directory) throws ResizeException {
   125 
   126 		log.log(Level.FINE, "Resizing directory: {0}", directory);
   127 
   128 		for (SizeSpecification size : options.getSizes()) {
   129 			File relative = relativize(options.getInput(), directory);
   130 			File sizeRoot = new File(options.getOutput(), size.getDirectory());
   131 			File dir = new File(sizeRoot, relative.getPath());
   132 			dir.mkdirs();
   133 		}
   134 
   135 		for (File entry : directory.listFiles()) {
   136 			if (entry.isDirectory()) {
   137 				resizeDirectory(entry);
   138 			} else {
   139 				resizeFile(entry);
   140 			}
   141 		}
   142 
   143 	}
   144 
   145 	private static File relativize(File root, File child) {
   146 		return root.toPath().relativize(child.toPath()).toFile();
   147 	}
   148 
   149 }