2 * jSite-remote - UpdateChecker.java -
3 * Copyright © 2008 David Roden
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.
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.
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.
20 package de.todesbaum.jsite.gui;
22 import java.io.IOException;
23 import java.io.InputStream;
24 import java.util.ArrayList;
25 import java.util.List;
26 import java.util.Properties;
28 import de.todesbaum.jsite.application.Freenet7Interface;
29 import de.todesbaum.jsite.main.Main;
30 import de.todesbaum.jsite.main.Version;
31 import de.todesbaum.util.freenet.fcp2.Client;
32 import de.todesbaum.util.freenet.fcp2.ClientGet;
33 import de.todesbaum.util.freenet.fcp2.Connection;
34 import de.todesbaum.util.freenet.fcp2.Message;
35 import de.todesbaum.util.freenet.fcp2.Persistence;
36 import de.todesbaum.util.freenet.fcp2.ReturnType;
37 import de.todesbaum.util.freenet.fcp2.Verbosity;
38 import de.todesbaum.util.io.Closer;
41 * Checks for newer versions of jSite.
43 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
45 public class UpdateChecker implements Runnable {
47 /** Counter for connection names. */
48 private static int counter = 0;
50 /** The edition for the update check URL. */
51 private static final int UPDATE_EDITION = 0;
53 /** The URL for update checks. */
54 private static final String UPDATE_KEY = "USK@e3myoFyp5avg6WYN16ImHri6J7Nj8980Fm~aQe4EX1U,QvbWT0ImE0TwLODTl7EoJx2NBnwDxTbLTE6zkB-eGPs,AQACAAE";
56 /** Object used for synchronization. */
57 private final Object syncObject = new Object();
59 /** Update listeners. */
60 private final List<UpdateListener> updateListeners = new ArrayList<UpdateListener>();
62 /** Whether the main thread should stop. */
63 private boolean shouldStop = false;
65 /** Current last found edition of update key. */
66 private int lastUpdateEdition = UPDATE_EDITION;
68 /** Last found version. */
69 private Version lastVersion = Main.getVersion();
71 /** The freenet interface. */
72 private final Freenet7Interface freenetInterface;
75 * Creates a new update checker that uses the given frame as its parent and
76 * communications via the given freenet interface.
78 * @param freenetInterface
79 * The freenet interface
81 public UpdateChecker(Freenet7Interface freenetInterface) {
82 this.freenetInterface = freenetInterface;
86 // EVENT LISTENER MANAGEMENT
90 * Adds an update listener to the list of registered listeners.
92 * @param updateListener
93 * The update listener to add
95 public void addUpdateListener(UpdateListener updateListener) {
96 updateListeners.add(updateListener);
100 * Removes the given listener from the list of registered listeners.
102 * @param updateListener
103 * The update listener to remove
105 public void removeUpdateListener(UpdateListener updateListener) {
106 updateListeners.remove(updateListener);
110 * Notifies all listeners that a version was found.
112 * @param foundVersion
113 * The version that was found
114 * @param versionTimestamp
115 * The timestamp of the version
117 protected void fireUpdateFound(Version foundVersion, long versionTimestamp) {
118 for (UpdateListener updateListener : updateListeners) {
119 updateListener.foundUpdateData(foundVersion, versionTimestamp);
128 * Returns the latest version that was found.
130 * @return The latest found version
132 public Version getLatestVersion() {
141 * Starts the update checker.
143 public void start() {
144 new Thread(this).start();
148 * Stops the update checker.
151 synchronized (syncObject) {
153 syncObject.notifyAll();
162 * Returns whether the update checker should stop.
164 * @return <code>true</code> if the update checker should stop,
165 * <code>false</code> otherwise
167 private boolean shouldStop() {
168 synchronized (syncObject) {
174 * Creates the URI of the update file for the given edition.
178 * @return The URI for the update file for the given edition
180 private String constructUpdateKey(int edition) {
181 return UPDATE_KEY + "/jSite/" + edition + "/jSite.properties";
185 // INTERFACE Runnable
192 Connection connection = freenetInterface.getConnection("jSite-" + ++counter + "-UpdateChecker");
194 connection.connect();
195 } catch (IOException e1) {
196 e1.printStackTrace();
198 Client client = new Client(connection);
199 boolean checkNow = false;
200 int currentEdition = lastUpdateEdition;
201 while (!shouldStop()) {
203 System.out.println("Trying " + constructUpdateKey(currentEdition));
204 ClientGet clientGet = new ClientGet("get-update-key");
205 clientGet.setUri(constructUpdateKey(currentEdition));
206 clientGet.setPersistence(Persistence.CONNECTION);
207 clientGet.setReturnType(ReturnType.direct);
208 clientGet.setVerbosity(Verbosity.ALL);
210 client.execute(clientGet);
211 boolean stop = false;
213 Message message = client.readMessage();
214 System.out.println(message);
215 if ("GetFailed".equals(message.getName())) {
216 if ("27".equals(message.get("code"))) {
217 String editionString = message.get("redirecturi").split("/")[2];
218 int editionNumber = -1;
220 editionNumber = Integer.parseInt(editionString);
221 } catch (NumberFormatException nfe1) {
224 if (editionNumber != -1) {
225 System.out.println("Found new edition " + editionNumber);
226 currentEdition = editionNumber;
227 lastUpdateEdition = editionNumber;
233 if ("AllData".equals(message.getName())) {
234 System.out.println("Update data found.");
235 InputStream dataInputStream = null;
236 Properties properties = new Properties();
238 dataInputStream = message.getPayloadInputStream();
239 properties.load(dataInputStream);
241 Closer.close(dataInputStream);
244 String foundVersionString = properties.getProperty("jSite.Version");
245 if (foundVersionString != null) {
246 Version foundVersion = Version.parse(foundVersionString);
247 if (foundVersion != null) {
248 lastVersion = foundVersion;
249 String versionTimestampString = properties.getProperty("jSite.Date");
250 System.out.println(versionTimestampString);
251 long versionTimestamp = -1;
253 versionTimestamp = Long.parseLong(versionTimestampString);
254 } catch (NumberFormatException nfe1) {
257 fireUpdateFound(foundVersion, versionTimestamp);
265 } catch (IOException e) {
266 System.out.println("Got IOException: " + e.getMessage());
269 if (!checkNow && !shouldStop()) {
270 synchronized (syncObject) {
272 syncObject.wait(15 * 60 * 1000);
273 } catch (InterruptedException ie1) {