2 * jSite - CLI.java - Copyright © 2006–2014 David Roden
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 2 of the License, or
7 * (at your option) any later version.
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.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 package de.todesbaum.jsite.main;
21 import java.io.PrintWriter;
22 import java.util.List;
24 import net.pterodactylus.util.io.StreamCopier.ProgressListener;
25 import de.todesbaum.jsite.application.Freenet7Interface;
26 import de.todesbaum.jsite.application.InsertListener;
27 import de.todesbaum.jsite.application.Node;
28 import de.todesbaum.jsite.application.Project;
29 import de.todesbaum.jsite.application.ProjectInserter;
32 * Command-line interface for jSite.
34 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
36 public class CLI implements InsertListener {
38 /** Object used for synchronization. */
39 private Object lockObject = new Object();
41 /** Writer for the console. */
42 private PrintWriter outputWriter = new PrintWriter(System.out, true);
44 /** The freenet interface. */
45 private Freenet7Interface freenetInterface;
47 /** The project inserter. */
48 private ProjectInserter projectInserter = new ProjectInserter();
50 /** The list of nodes. */
54 private List<Project> projects;
56 /** Whether the insert has finished. */
57 private boolean finished = false;
59 /** Whether the insert finished successfully. */
60 private boolean success;
63 * Creates a new command-line interface.
66 * The command-line arguments
68 private CLI(String[] args) {
70 if ((args.length == 0) || args[0].equals("-h") || args[0].equals("--help")) {
71 outputWriter.println("\nParameters:\n");
72 outputWriter.println(" --config-file=<configuration file>");
73 outputWriter.println(" --node=<node name>");
74 outputWriter.println(" --project=<project name>");
75 outputWriter.println(" --local-directory=<local directory>");
76 outputWriter.println(" --path=<path>");
77 outputWriter.println(" --edition=<edition>");
78 outputWriter.println("\nA project gets inserted when a new project is loaded on the command line,");
79 outputWriter.println("or when the command line is finished. --local-directory, --path, and --edition");
80 outputWriter.println("override the parameters in the project.");
84 String configFile = System.getProperty("user.home") + "/.jSite/config7";
85 for (String argument : args) {
86 String value = argument.substring(argument.indexOf('=') + 1).trim();
87 if (argument.startsWith("--config-file=")) {
92 ConfigurationLocator configurationLocator = new ConfigurationLocator();
93 if (configFile != null) {
94 configurationLocator.setCustomLocation(configFile);
96 Configuration configuration = new Configuration(configurationLocator, configurationLocator.findPreferredLocation());
98 projectInserter.addInsertListener(this);
99 projects = configuration.getProjects();
100 Node node = configuration.getSelectedNode();
101 nodes = configuration.getNodes();
103 freenetInterface = new Freenet7Interface();
104 freenetInterface.setNode(node);
106 projectInserter.setFreenetInterface(freenetInterface);
107 projectInserter.setPriority(configuration.getPriority());
109 Project currentProject = null;
110 for (String argument : args) {
111 if (argument.startsWith("--config-file=")) {
112 /* we already parsed this one. */
115 String value = argument.substring(argument.indexOf('=') + 1).trim();
116 if (argument.startsWith("--node=")) {
117 Node newNode = getNode(value);
118 if (newNode == null) {
119 outputWriter.println("Node \"" + value + "\" not found.");
123 freenetInterface.setNode(node);
124 } else if (argument.startsWith("--project=")) {
125 if (currentProject != null) {
126 if (insertProject(currentProject)) {
127 outputWriter.println("Project \"" + currentProject.getName() + "\" successfully inserted.");
129 outputWriter.println("Project \"" + currentProject.getName() + "\" was not successfully inserted.");
131 currentProject = null;
133 currentProject = getProject(value);
134 if (currentProject == null) {
135 outputWriter.println("Project \"" + value + "\" not found.");
137 } else if (argument.startsWith("--local-directory")) {
138 if (currentProject == null) {
139 outputWriter.println("You can't specifiy --local-directory before --project.");
142 currentProject.setLocalPath(value);
143 } else if (argument.startsWith("--path=")) {
144 if (currentProject == null) {
145 outputWriter.println("You can't specify --path before --project.");
148 currentProject.setPath(value);
149 } else if (argument.startsWith("--edition=")) {
150 if (currentProject == null) {
151 outputWriter.println("You can't specify --edition before --project.");
154 currentProject.setEdition(Integer.parseInt(value));
156 outputWriter.println("Unknown parameter: " + argument);
162 if (currentProject != null) {
163 if (insertProject(currentProject)) {
164 outputWriter.println("Project \"" + currentProject.getName() + "\" successfully inserted.");
167 outputWriter.println("Project \"" + currentProject.getName() + "\" was not successfully inserted.");
171 configuration.setProjects(projects);
172 configuration.save();
174 System.exit(errorCode);
178 * Returns the project with the given name.
181 * The name of the project
182 * @return The project, or <code>null</code> if no project could be found
184 private Project getProject(String name) {
185 for (Project project : projects) {
186 if (project.getName().equals(name)) {
194 * Returns the node with the given name.
197 * The name of the node
198 * @return The node, or <code>null</code> if no node could be found
200 private Node getNode(String name) {
201 for (Node node : nodes) {
202 if (node.getName().equals(name)) {
210 * Inserts the given project.
212 * @param currentProject
213 * The project to insert
214 * @return <code>true</code> if the insert finished successfully,
215 * <code>false</code> otherwise
217 private boolean insertProject(Project currentProject) {
218 if (!freenetInterface.hasNode()) {
219 outputWriter.println("Node is not running!");
222 projectInserter.setProject(currentProject);
223 projectInserter.start(new ProgressListener() {
226 public void onProgress(long copied, long length) {
227 System.out.print("Uploaded: " + copied + " / " + length + " bytes...\r");
230 synchronized (lockObject) {
234 } catch (InterruptedException e) {
235 /* ignore, we're in a loop. */
243 // INTERFACE InsertListener
250 public void projectInsertStarted(Project project) {
251 outputWriter.println("Starting Insert of project \"" + project.getName() + "\".");
258 public void projectUploadFinished(Project project) {
259 outputWriter.println("Project \"" + project.getName() + "\" has been uploaded, starting insert...");
266 public void projectURIGenerated(Project project, String uri) {
267 outputWriter.println("URI: " + uri);
274 public void projectInsertProgress(Project project, int succeeded, int failed, int fatal, int total, boolean finalized) {
278 outputWriter.println("Progress: " + succeeded + " done, " + failed + " failed, " + fatal + " fatal, " + total + " total" + (finalized ? " (finalized)" : "") + ", " + ((succeeded + failed + fatal) * 100 / total) + "%");
285 public void projectInsertFinished(Project project, boolean success, Throwable cause) {
286 outputWriter.println("Request URI: " + project.getFinalRequestURI(0));
288 this.success = success;
289 synchronized (lockObject) {
299 * Creates a new command-line interface with the given arguments.
302 * The command-line arguments
304 public static void main(String[] args) {