Parse options from environment
[rhynodge.git] / src / main / java / net / pterodactylus / rhynodge / engine / Starter.java
1 /*
2  * Rhynodge - Starter.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.rhynodge.engine;
19
20 import java.io.IOException;
21
22 import net.pterodactylus.rhynodge.actions.EmailAction;
23 import net.pterodactylus.rhynodge.loader.ChainWatcher;
24 import net.pterodactylus.rhynodge.states.StateManager;
25 import net.pterodactylus.util.envopt.Parser;
26
27 /**
28  * Rhynodge main starter class.
29  *
30  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
31  */
32 public class Starter {
33
34         /**
35          * JVM main entry method.
36          *
37          * @param arguments
38          *            Command-line arguments
39          */
40         public static void main(String... arguments) throws IOException {
41
42                 Options options = Parser.fromSystemEnvironment().parseEnvironment(Options::new);
43
44                 /* create the state manager. */
45                 StateManager stateManager = new StateManager(options.stateDirectory);
46
47                 /* create the engine. */
48                 Engine engine = new Engine(stateManager, createErrorEmailAction(options.smtpHostname, options.errorEmailSender, options.errorEmailRecipient));
49
50                 /* start a watcher. */
51                 ChainWatcher chainWatcher = new ChainWatcher(engine, options.chainDirectory);
52                 chainWatcher.start();
53         }
54
55         private static EmailAction createErrorEmailAction(String smtpHostname, String errorEmailSender, String errorEmailRecipient) {
56                 return new EmailAction(smtpHostname, errorEmailSender, errorEmailRecipient);
57         }
58
59 }