initial commit
[meviz.git] / src / main / java / eu / svjatoslav / meviz / htmlindexer / CommandlineHandler.java
1 /*
2  * Meviz - Various tools collection to work with multimedia.
3  * Copyright (C) 2012, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public License
7  * as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.meviz.htmlindexer;
11
12 import java.io.File;
13
14 import eu.svjatoslav.commons.commandline.parameterparser.Parameter;
15 import eu.svjatoslav.commons.commandline.parameterparser.Parser;
16 import eu.svjatoslav.meviz.encoder.EncodingOptions;
17
18 public class CommandlineHandler {
19
20     Parameter galleryNameParameter = new Parameter(false, true, false,
21             new eu.svjatoslav.commons.commandline.parameterparser.arguments.String(), "Gallery title. (default is: "
22                     + Constants.DEFAULT_GALLERY_TITLE + ").", "-t", "--gallery-title");
23
24     Parameter workingDirectoryParameter = new Parameter(false, true, true,
25             new eu.svjatoslav.commons.commandline.parameterparser.arguments.String(), "Working directory.", "-w",
26             "--working-directory");
27
28     public Parser initParser() {
29
30         final Parser parser = new Parser();
31         parser.addParameter(galleryNameParameter);
32         parser.addParameter(workingDirectoryParameter);
33
34         return parser;
35     }
36
37     /**
38      * @return {@link EncodingOptions} if commandline arguments were
39      *         successfully parsed, or <code>null</code> if parsing error
40      *         occurred.
41      */
42     public IndexingOptions parseCommandlineArguments(final String[] args) {
43
44         final IndexingOptions options = new IndexingOptions();
45
46         final Parser parser = initParser();
47         if (!parser.parse(args)) {
48             return null;
49         }
50
51         if (galleryNameParameter.isParameterSpecified()) {
52             options.galleryTitle = galleryNameParameter.getArgumentsAsStrings().get(0);
53         }
54
55         if (workingDirectoryParameter.isParameterSpecified()) {
56             options.workingDirectory = workingDirectoryParameter.getArgumentsAsFiles().get(0);
57         } else {
58             options.workingDirectory = new File(System.getProperty("user.dir"));
59         }
60
61         return options;
62     }
63 }