java/copy-image-resizer/src/cz/frantovo/copyImageResizer/cli/CLIStarter.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 18 a5a36526ff71
permissions -rw-r--r--
counters, logging
franta-hg@2
     1
/**
franta-hg@2
     2
 * copy-image-resizer
franta-hg@2
     3
 * Copyright © 2014 František Kučera (frantovo.cz)
franta-hg@2
     4
 *
franta-hg@2
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@2
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@2
     7
 * the Free Software Foundation, either version 3 of the License, or
franta-hg@2
     8
 * (at your option) any later version.
franta-hg@2
     9
 *
franta-hg@2
    10
 * This program is distributed in the hope that it will be useful,
franta-hg@2
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@2
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@2
    13
 * GNU General Public License for more details.
franta-hg@2
    14
 *
franta-hg@2
    15
 * You should have received a copy of the GNU General Public License
franta-hg@2
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@2
    17
 */
franta-hg@4
    18
package cz.frantovo.copyImageResizer.cli;
franta-hg@2
    19
franta-hg@12
    20
import cz.frantovo.copyImageResizer.Counters;
franta-hg@12
    21
import cz.frantovo.copyImageResizer.InvalidOptionsException;
franta-hg@5
    22
import cz.frantovo.copyImageResizer.RecursiveException;
franta-hg@5
    23
import cz.frantovo.copyImageResizer.RecursiveImageResizer;
franta-hg@5
    24
import cz.frantovo.copyImageResizer.RecursiveOptions;
franta-hg@5
    25
import cz.frantovo.copyImageResizer.ResizeException;
franta-hg@5
    26
import java.util.logging.Level;
franta-hg@12
    27
import java.util.logging.LogRecord;
franta-hg@5
    28
import java.util.logging.Logger;
franta-hg@5
    29
franta-hg@2
    30
/**
franta-hg@2
    31
 *
franta-hg@2
    32
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@2
    33
 */
franta-hg@3
    34
public class CLIStarter {
franta-hg@2
    35
franta-hg@5
    36
	private static final Logger log = Logger.getLogger(CLIStarter.class.getName());
franta-hg@5
    37
franta-hg@2
    38
	public static void main(String[] args) {
franta-hg@5
    39
franta-hg@5
    40
		try {
franta-hg@5
    41
			CLIParser parser = new CLIParser();
franta-hg@5
    42
			RecursiveOptions options = parser.parseOptions(args);
franta-hg@12
    43
			options.validate();
franta-hg@11
    44
			RecursiveImageResizer resizer = new RecursiveImageResizer(options);
franta-hg@12
    45
			Counters counters = resizer.resize();
franta-hg@12
    46
			log.log(Level.INFO, "Recursive copy/resize finished. {0}", counters);
franta-hg@5
    47
		} catch (CLIParserException e) {
franta-hg@5
    48
			log.log(Level.SEVERE, "Unable to parse CLI options", e);
franta-hg@12
    49
		} catch (InvalidOptionsException e) {
franta-hg@12
    50
			log.log(Level.SEVERE, "Invalid CLI options", e);
franta-hg@12
    51
			for (InvalidOptionsException.OptionProblem p : e.getProblems()) {
franta-hg@12
    52
				LogRecord r = new LogRecord(Level.SEVERE, "Option problem: {0}");
franta-hg@12
    53
				r.setThrown(p.getException());
franta-hg@12
    54
				r.setParameters(new Object[]{p.getDescription()});
franta-hg@12
    55
				log.log(r);
franta-hg@12
    56
			}
franta-hg@5
    57
		} catch (RecursiveException e) {
franta-hg@5
    58
			log.log(Level.SEVERE, "Error while processing filesystem hierarchy", e);
franta-hg@5
    59
		} catch (ResizeException e) {
franta-hg@5
    60
			log.log(Level.SEVERE, "Error while resizing image", e);
franta-hg@5
    61
		}
franta-hg@2
    62
	}
franta-hg@5
    63
franta-hg@2
    64
}