UpdateSite.java
11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
package com.mumfrey.liteloader.update;
import java.text.DateFormat;
import java.util.Comparator;
import java.util.Date;
import java.util.Map;
import java.util.Map.Entry;
import com.google.gson.Gson;
import com.google.gson.JsonSyntaxException;
import com.mumfrey.liteloader.util.log.LiteLoaderLogger;
import com.mumfrey.liteloader.util.net.HttpStringRetriever;
/**
* An update site, used by liteloader to check for new versions but is also available to mods who may
* want to use a similar system
*
* @author Adam Mummery-Smith
*/
public class UpdateSite implements Comparator<Long>
{
/**
* Gson instance for deserializing remote version data
*/
private static Gson gson = new Gson();
/**
* Base URL of the remote update site
*/
private final String updateSiteUrl;
/**
* Name of the json file containing the remote versions data, eg. versions.json
*/
private final String updateSiteJsonFileName;
/**
* The version of minecraft being targetted
*/
private final String targetVersion;
/**
* Artefact name in the form "com.somedomain.pkg:artefactname"
*/
private final String artefact;
/**
* Local artefact timestamp
*/
private final long currentTimeStamp;
/**
* Comparator for the timestamps
*/
private final Comparator<Long> timeStampComparator;
/**
* Threading lock object
*/
private final Object lock = new Object();
/**
* StringRetriever which will fetch the remote json file, null when not performing a fetch operation
*/
private HttpStringRetriever stringRetriever;
/**
* True if the check is complete (even if it failed)
*/
private volatile boolean checkComplete = false;
/**
* True if the check succeeded
*/
private volatile boolean checkSuccess = false;
/**
* True if an updated version is available
*/
private volatile boolean updateAvailable = false;
/**
* The version which is available
*/
private String availableVersion = null;
/**
* The version which is available
*/
private String availableVersionDate = null;
/**
* The URL to the available artefact
*/
private String availableVersionURL = null;
/**
* Create a new UpdateSite with the specified information
*
* @param updateSiteUrl Base URL of the update site, should include the trailing slash
* @param jsonFileName Name of the json file on the remote site containing the version data, eg. versions.json
* @param targetVersion The target minecraft version
* @param artefact Artefact name in the form "com.somedomain.pkg:artefactname"
* @param currentTimeStamp Timestamp of the current artefact
* @param timeStampComparator Comparator to use for comparing timestamps, if null uses built in comparator
*/
public UpdateSite(String updateSiteUrl, String jsonFileName, String targetVersion, String artefact, long currentTimeStamp, Comparator<Long> timeStampComparator)
{
this.updateSiteUrl = updateSiteUrl + (updateSiteUrl.endsWith("/") ? "" : "/");
this.updateSiteJsonFileName = jsonFileName;
this.targetVersion = targetVersion;
this.artefact = artefact;
this.currentTimeStamp = currentTimeStamp;
this.timeStampComparator = timeStampComparator != null ? timeStampComparator : this;
}
/**
* Create a new UpdateSite with the specified information
*
* @param updateSiteUrl Base URL of the update site, should include the trailing slash
* @param jsonFileName Name of the json file on the remote site containing the version data, eg. versions.json
* @param targetVersion The target minecraft version
* @param artefact Artefact name in the form "com.somedomain.pkg:artefactname"
* @param currentTimeStamp Timestamp of the current artefact
*/
public UpdateSite(String updateSiteUrl, String jsonFileName, String targetVersion, String artefact, long currentTimeStamp)
{
this(updateSiteUrl, jsonFileName, targetVersion, artefact, currentTimeStamp, null);
}
/**
* If an update check is not already in progress, starts an update check
*/
public void beginUpdateCheck()
{
synchronized (this.lock)
{
if (this.stringRetriever == null)
{
LiteLoaderLogger.debug("Update site for %s is starting the update check", this.artefact);
this.stringRetriever = new HttpStringRetriever(String.format("%s%s", this.updateSiteUrl, this.updateSiteJsonFileName));
this.stringRetriever.start();
}
}
}
/**
* Gets whether a check is in progress
*/
public boolean isCheckInProgress()
{
this.update();
boolean checkInProgress = false;
synchronized (this.lock)
{
checkInProgress = this.stringRetriever != null;
}
return checkInProgress;
}
/**
* Gets whether a check has been completed
*/
public boolean isCheckComplete()
{
this.update();
return this.checkComplete;
}
/**
* Gets whether the last check was a success
*/
public boolean isCheckSucceess()
{
this.update();
return this.checkComplete && this.checkSuccess;
}
/**
* Gets whether an update is available at the remote site
*/
public boolean isUpdateAvailable()
{
this.update();
return this.updateAvailable;
}
/**
* Gets the latest version available at the remote site
*/
public String getAvailableVersion()
{
this.update();
return this.availableVersion;
}
/**
* Gets the latest version available at the remote site
*/
public String getAvailableVersionDate()
{
this.update();
return this.availableVersionDate;
}
/**
* Gets the URL to the available version
*/
public String getAvailableVersionURL()
{
this.update();
return this.availableVersionURL;
}
/**
* Check whether an in-progress check has completed and if it has parse the retrieved data
*/
private void update()
{
synchronized (this.lock)
{
if (this.stringRetriever != null && this.stringRetriever.isDone())
{
this.checkComplete = true;
this.checkSuccess = this.stringRetriever.getSuccess();
if (this.checkSuccess)
{
try
{
LiteLoaderLogger.debug("Update site for %s is parsing the update response", this.artefact);
this.parseData(this.stringRetriever.getString());
LiteLoaderLogger.debug("Update site for %s successfully parsed the update response", this.artefact);
}
catch (Exception ex)
{
LiteLoaderLogger.debug("Update site for %s failed parsing the update response: %s:%s", this.artefact, ex.getClass().getSimpleName(), ex.getMessage());
this.checkSuccess = false;
ex.printStackTrace();
}
}
this.stringRetriever = null;
}
}
}
/**
* Parse data receieved from a query
*
* @param json
*/
private void parseData(String json)
{
this.updateAvailable = false;
try
{
Map<?, ?> data = UpdateSite.gson.fromJson(json, Map.class);
if (data.containsKey("versions"))
{
this.handleVersionsData((Map<?, ?>)data.get("versions"));
}
else
{
LiteLoaderLogger.warning("No key 'versions' in update site JSON");
}
}
catch (JsonSyntaxException ex)
{
ex.printStackTrace();
LiteLoaderLogger.warning("Error parsing update site JSON: %s: %s", ex.getClass().getSimpleName(), ex.getMessage());
}
}
/**
* @param versions
*/
private void handleVersionsData(Map<?, ?> versions)
{
if (versions.containsKey(this.targetVersion))
{
for (Entry<?, ?> versionDataEntry : ((Map<?, ?>)versions.get(this.targetVersion)).entrySet())
{
this.handleVersionData(versionDataEntry.getKey(), (Map<?, ?>)versionDataEntry.getValue());
}
}
else
{
LiteLoaderLogger.warning("No version entry for current version '%s' in update site JSON", this.targetVersion);
}
}
/**
* @param key
* @param value
*/
private void handleVersionData(Object key, Map<?, ?> value)
{
if ("artefacts".equals(key))
{
if (value.containsKey(this.artefact))
{
this.handleArtefactData((Map<?, ?>)value.get(this.artefact));
}
else
{
LiteLoaderLogger.warning("No artefacts entry for specified artefact '%s' in update site JSON", this.artefact);
}
}
}
/**
* @param availableArtefacts
*/
@SuppressWarnings("unchecked")
private void handleArtefactData(Map<?, ?> availableArtefacts)
{
if (availableArtefacts.containsKey("latest"))
{
Map<?, ?> latestArtefact = (Map<?, ?>)availableArtefacts.get("latest");
this.checkAndUseRemoteArtefact(latestArtefact, this.currentTimeStamp, false);
}
else
{
LiteLoaderLogger.warning("No key 'latest' in update site JSON");
long bestTimeStamp = this.currentTimeStamp;
Map<?, ?> bestRemoteArtefact = null;
for (Map<?, ?> remoteArtefact : ((Map<?, Map<?, ?>>)availableArtefacts).values())
{
if (this.checkAndUseRemoteArtefact(remoteArtefact, bestTimeStamp, true))
{
bestTimeStamp = Long.parseLong(remoteArtefact.get("timestamp").toString());
bestRemoteArtefact = remoteArtefact;
}
}
if (bestRemoteArtefact != null)
{
this.availableVersion = bestRemoteArtefact.get("version").toString();
this.availableVersionURL = this.createArtefactURL(bestRemoteArtefact.get("file").toString());
this.updateAvailable = this.compareTimeStamps(this.currentTimeStamp, bestTimeStamp);
}
}
}
/**
* @param artefact
* @param bestTimeStamp
* @param checkOnly
*/
private boolean checkAndUseRemoteArtefact(Map<?, ?> artefact, long bestTimeStamp, boolean checkOnly)
{
if (artefact.containsKey("file") && artefact.containsKey("version") && artefact.containsKey("timestamp"))
{
Long remoteTimeStamp = Long.parseLong(artefact.get("timestamp").toString());
if (checkOnly)
{
return this.compareTimeStamps(bestTimeStamp, remoteTimeStamp);
}
this.availableVersion = artefact.get("version").toString();
this.availableVersionDate = DateFormat.getDateTimeInstance().format(new Date(remoteTimeStamp * 1000L));
this.availableVersionURL = this.createArtefactURL(artefact.get("file").toString());
this.updateAvailable = this.compareTimeStamps(bestTimeStamp, remoteTimeStamp);
return true;
}
return false;
}
/**
* @param bestTimeStamp
* @param remoteTimeStamp
*/
private boolean compareTimeStamps(long bestTimeStamp, Long remoteTimeStamp)
{
return this.timeStampComparator.compare(bestTimeStamp, remoteTimeStamp) < 0;
}
/**
* @param file
*/
private String createArtefactURL(String file)
{
return String.format("%s%s/%s/%s", this.updateSiteUrl, this.artefact.replace('.', '/').replace(':', '/'), this.targetVersion, file);
}
/* (non-Javadoc)
* @see java.util.Comparator#compare(java.lang.Object, java.lang.Object)
*/
@Override
public int compare(Long localTimestamp, Long remoteTimestamp)
{
if (localTimestamp == null && remoteTimestamp == null) return 0;
if (localTimestamp == null) return -1;
if (remoteTimestamp == null) return 1;
return (int)(localTimestamp.longValue() - remoteTimestamp.longValue());
}
}