c97d8e13f2c6368dd61eff7e900fbce4e337a3fb
[jSite.git] / src / de / todesbaum / jsite / main / CLI.java
1 /*
2  * jSite -
3  * Copyright (C) 2006 David Roden
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 2 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, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package de.todesbaum.jsite.main;
21
22 import java.io.PrintWriter;
23
24 import de.todesbaum.jsite.application.Freenet7Interface;
25 import de.todesbaum.jsite.application.InsertListener;
26 import de.todesbaum.jsite.application.Node;
27 import de.todesbaum.jsite.application.Project;
28 import de.todesbaum.jsite.application.ProjectInserter;
29 import de.todesbaum.util.io.StreamCopier.ProgressListener;
30
31 /**
32  * Command-line interface for jSite.
33  *
34  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
35  */
36 public class CLI implements InsertListener {
37
38         /** Object used for synchronization. */
39         private Object lockObject = new Object();
40
41         /** Writer for the console. */
42         private PrintWriter outputWriter = new PrintWriter(System.out, true);
43
44         /** The freenet interface. */
45         private Freenet7Interface freenetInterface;
46
47         /** The project inserter. */
48         private ProjectInserter projectInserter = new ProjectInserter();
49
50         /** The list of nodes. */
51         private Node[] nodes;
52
53         /** The projects. */
54         private Project[] projects;
55
56         /** Whether the insert has finished. */
57         private boolean finished = false;
58
59         /** Whether the insert finished successfully. */
60         private boolean success;
61
62         /**
63          * Creates a new command-line interface.
64          *
65          * @param args
66          *            The command-line arguments
67          */
68         private CLI(String[] args) {
69
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.");
81                         return;
82                 }
83
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=")) {
88                                 configFile = value;
89                         }
90                 }
91
92                 Configuration configuration = new Configuration(configFile);
93                 if (!configuration.createLockFile()) {
94                         outputWriter.println("Lock file found!");
95                         return;
96                 }
97
98                 projectInserter.addInsertListener(this);
99                 projects = configuration.getProjects();
100                 Node node = configuration.getSelectedNode();
101                 nodes = configuration.getNodes();
102
103                 freenetInterface = new Freenet7Interface();
104                 freenetInterface.setNode(node);
105
106                 projectInserter.setFreenetInterface(freenetInterface);
107
108                 Project currentProject = null;
109                 for (String argument : args) {
110                         if (argument.startsWith("--config-file=")) {
111                                 /* we already parsed this one. */
112                                 continue;
113                         }
114                         String value = argument.substring(argument.indexOf('=') + 1).trim();
115                         if (argument.startsWith("--node=")) {
116                                 Node newNode = getNode(value);
117                                 if (newNode == null) {
118                                         outputWriter.println("Node \"" + value + "\" not found.");
119                                         return;
120                                 }
121                                 node = newNode;
122                                 freenetInterface.setNode(node);
123                         } else if (argument.startsWith("--project=")) {
124                                 if (currentProject != null) {
125                                         if (insertProject(currentProject)) {
126                                                 outputWriter.println("Project \"" + currentProject.getName() + "\" successfully inserted.");
127                                         } else {
128                                                 outputWriter.println("Project \"" + currentProject.getName() + "\" was not successfully inserted.");
129                                         }
130                                         currentProject = null;
131                                 }
132                                 currentProject = getProject(value);
133                                 if (currentProject == null) {
134                                         outputWriter.println("Project \"" + value + "\" not found.");
135                                 }
136                         } else if (argument.startsWith("--local-directory")) {
137                                 if (currentProject == null) {
138                                         outputWriter.println("You can't specifiy --local-directory before --project.");
139                                         return;
140                                 }
141                                 currentProject.setLocalPath(value);
142                         } else if (argument.startsWith("--path=")) {
143                                 if (currentProject == null) {
144                                         outputWriter.println("You can't specify --path before --project.");
145                                         return;
146                                 }
147                                 currentProject.setPath(value);
148                         } else if (argument.startsWith("--edition=")) {
149                                 if (currentProject == null) {
150                                         outputWriter.println("You can't specify --edition before --project.");
151                                         return;
152                                 }
153                                 currentProject.setEdition(Integer.parseInt(value));
154                         } else {
155                                 outputWriter.println("Unknown parameter: " + argument);
156                                 return;
157                         }
158                 }
159
160                 if (currentProject != null) {
161                         if (insertProject(currentProject)) {
162                                 outputWriter.println("Project \"" + currentProject.getName() + "\" successfully inserted.");
163                         } else {
164                                 outputWriter.println("Project \"" + currentProject.getName() + "\" was not successfully inserted.");
165                         }
166                 }
167
168                 configuration.setProjects(projects);
169                 configuration.save();
170         }
171
172         /**
173          * Returns the project with the given name.
174          *
175          * @param name
176          *            The name of the project
177          * @return The project, or <code>null</code> if no project could be found
178          */
179         private Project getProject(String name) {
180                 for (Project project : projects) {
181                         if (project.getName().equals(name)) {
182                                 return project;
183                         }
184                 }
185                 return null;
186         }
187
188         /**
189          * Returns the node with the given name.
190          *
191          * @param name
192          *            The name of the node
193          * @return The node, or <code>null</code> if no node could be found
194          */
195         private Node getNode(String name) {
196                 for (Node node : nodes) {
197                         if (node.getName().equals(name)) {
198                                 return node;
199                         }
200                 }
201                 return null;
202         }
203
204         /**
205          * Inserts the given project.
206          *
207          * @param currentProject
208          *            The project to insert
209          * @return <code>true</code> if the insert finished successfully,
210          *         <code>false</code> otherwise
211          */
212         private boolean insertProject(Project currentProject) {
213                 if (!freenetInterface.hasNode()) {
214                         outputWriter.println("Node is not running!");
215                         return false;
216                 }
217                 projectInserter.setProject(currentProject);
218                 projectInserter.start(new ProgressListener() {
219
220                         public void onProgress(long copied, long length) {
221                                 System.out.print("Uploaded: " + copied + " / " + length + " bytes...\r");
222                         }
223                 });
224                 synchronized (lockObject) {
225                         while (!finished) {
226                                 try {
227                                         lockObject.wait();
228                                 } catch (InterruptedException e) {
229                                         /* ignore, we're in a loop. */
230                                 }
231                         }
232                 }
233                 return success;
234         }
235
236         //
237         // INTERFACE InsertListener
238         //
239
240         /**
241          * {@inheritDoc}
242          */
243         public void projectInsertStarted(Project project) {
244                 outputWriter.println("Starting Insert of project \"" + project.getName() + "\".");
245         }
246
247         /**
248          * {@inheritDoc}
249          */
250         public void projectUploadFinished(Project project) {
251                 outputWriter.println("Project \"" + project.getName() + "\" has been uploaded, starting insert...");
252         }
253
254         /**
255          * {@inheritDoc}
256          */
257         public void projectURIGenerated(Project project, String uri) {
258                 outputWriter.println("URI: " + uri);
259         }
260
261         /**
262          * {@inheritDoc}
263          */
264         public void projectInsertProgress(Project project, int succeeded, int failed, int fatal, int total, boolean finalized) {
265                 outputWriter.println("Progress: " + succeeded + " done, " + failed + " failed, " + fatal + " fatal, " + total + " total" + (finalized ? " (finalized)" : "") + ", " + ((succeeded + failed + fatal) * 100 / total) + "%");
266         }
267
268         /**
269          * {@inheritDoc}
270          */
271         public void projectInsertFinished(Project project, boolean success, Throwable cause) {
272                 outputWriter.println("Request URI: " + project.getFinalRequestURI(0));
273                 finished = true;
274                 this.success = success;
275                 synchronized (lockObject) {
276                         lockObject.notify();
277                 }
278         }
279
280         //
281         // MAIN
282         //
283
284         /**
285          * Creates a new command-line interface with the given arguments.
286          *
287          * @param args
288          *            The command-line arguments
289          */
290         public static void main(String[] args) {
291                 new CLI(args);
292         }
293
294 }