Commit | Line | Data |
---|---|---|
e42573a0 | 1 | package be.nikiroo.fanfix.library; |
b0e88ebd | 2 | |
b0e88ebd | 3 | import java.io.IOException; |
edf79e5e | 4 | import java.net.URL; |
74a40dfb | 5 | import java.util.ArrayList; |
9b863b20 | 6 | import java.util.Date; |
9b558341 | 7 | import java.util.HashMap; |
68e2c6d2 | 8 | import java.util.List; |
9b558341 | 9 | import java.util.Map; |
b0e88ebd | 10 | |
7e51d91c NR |
11 | import javax.net.ssl.SSLException; |
12 | ||
e42573a0 | 13 | import be.nikiroo.fanfix.Instance; |
fb25273c | 14 | import be.nikiroo.fanfix.bundles.Config; |
74a40dfb | 15 | import be.nikiroo.fanfix.data.Chapter; |
b0e88ebd | 16 | import be.nikiroo.fanfix.data.MetaData; |
74a40dfb | 17 | import be.nikiroo.fanfix.data.Paragraph; |
085a2f9a | 18 | import be.nikiroo.fanfix.data.Story; |
b9ce9cad NR |
19 | import be.nikiroo.utils.Progress; |
20 | import be.nikiroo.utils.Progress.ProgressListener; | |
416c54f8 | 21 | import be.nikiroo.utils.StringUtils; |
fb25273c | 22 | import be.nikiroo.utils.Version; |
62c63b07 NR |
23 | import be.nikiroo.utils.serial.server.ConnectActionServerObject; |
24 | import be.nikiroo.utils.serial.server.ServerObject; | |
b0e88ebd | 25 | |
a85e8077 | 26 | /** |
ea734ab4 | 27 | * Create a new remote server that will listen for orders on the given port. |
a85e8077 | 28 | * <p> |
ea734ab4 N |
29 | * The available commands are given as arrays of objects (first item is the |
30 | * command, the rest are the arguments). | |
2a25f781 | 31 | * <p> |
fb25273c NR |
32 | * All the commands are always prefixed by the subkey (which can be EMPTY if |
33 | * none). | |
34 | * <p> | |
a85e8077 | 35 | * <ul> |
fb25273c NR |
36 | * <li>PING: will return the mode if the key is accepted (mode can be: "r/o" or |
37 | * "r/w")</li> | |
ea734ab4 N |
38 | * <li>GET_METADATA *: will return the metadata of all the stories in the |
39 | * library (array)</li> * | |
37abe20c | 40 | * <li>GET_METADATA [luid]: will return the metadata of the story of LUID luid</li> |
ea734ab4 N |
41 | * <li>GET_STORY [luid]: will return the given story if it exists (or NULL if |
42 | * not)</li> | |
43 | * <li>SAVE_STORY [luid]: save the story (that must be sent just after the | |
0fa0fe95 | 44 | * command) with the given LUID, then return the LUID</li> |
37abe20c NR |
45 | * <li>IMPORT [url]: save the story found at the given URL, then return the LUID |
46 | * </li> | |
ea734ab4 N |
47 | * <li>DELETE_STORY [luid]: delete the story of LUID luid</li> |
48 | * <li>GET_COVER [luid]: return the cover of the story</li> | |
49 | * <li>GET_CUSTOM_COVER ["SOURCE"|"AUTHOR"] [source]: return the cover for this | |
50 | * source/author</li> | |
51 | * <li>SET_COVER ["SOURCE"|"AUTHOR"] [value] [luid]: set the default cover for | |
52 | * the given source/author to the cover of the story denoted by luid</li> | |
53 | * <li>CHANGE_SOURCE [luid] [new source]: change the source of the story of LUID | |
54 | * luid</li> | |
55 | * <li>EXIT: stop the server</li> | |
a85e8077 NR |
56 | * </ul> |
57 | * | |
58 | * @author niki | |
59 | */ | |
62c63b07 | 60 | public class RemoteLibraryServer extends ServerObject { |
9b558341 NR |
61 | private Map<Long, String> commands = new HashMap<Long, String>(); |
62 | private Map<Long, Long> times = new HashMap<Long, Long>(); | |
fb25273c NR |
63 | private Map<Long, Boolean> wls = new HashMap<Long, Boolean>(); |
64 | private Map<Long, Boolean> rws = new HashMap<Long, Boolean>(); | |
9b558341 | 65 | |
a85e8077 NR |
66 | /** |
67 | * Create a new remote server (will not be active until | |
68 | * {@link RemoteLibraryServer#start()} is called). | |
fb25273c NR |
69 | * <p> |
70 | * Note: the key we use here is the encryption key (it must not contain a | |
71 | * subkey). | |
a85e8077 | 72 | * |
2070ced5 NR |
73 | * @param key |
74 | * the key that will restrict access to this server | |
a85e8077 NR |
75 | * @param port |
76 | * the port to listen on | |
77 | * | |
78 | * @throws IOException | |
79 | * in case of I/O error | |
80 | */ | |
2070ced5 | 81 | public RemoteLibraryServer(String key, int port) throws IOException { |
3040c4f0 | 82 | super("Fanfix remote library", port, key); |
d66deb8d | 83 | setTraceHandler(Instance.getInstance().getTraceHandler()); |
b0e88ebd NR |
84 | } |
85 | ||
86 | @Override | |
fb25273c NR |
87 | protected Object onRequest(ConnectActionServerObject action, |
88 | Version clientVersion, Object data, long id) throws Exception { | |
ea734ab4 N |
89 | long start = new Date().getTime(); |
90 | ||
fb25273c NR |
91 | // defaults are positive (as previous versions without the feature) |
92 | boolean rw = true; | |
93 | boolean wl = true; | |
94 | ||
95 | String subkey = ""; | |
085a2f9a NR |
96 | String command = ""; |
97 | Object[] args = new Object[0]; | |
98 | if (data instanceof Object[]) { | |
2070ced5 | 99 | Object[] dataArray = (Object[]) data; |
27eba894 | 100 | if (dataArray.length > 0) { |
fb25273c NR |
101 | subkey = "" + dataArray[0]; |
102 | } | |
103 | if (dataArray.length > 1) { | |
104 | command = "" + dataArray[1]; | |
105 | ||
106 | args = new Object[dataArray.length - 2]; | |
107 | for (int i = 2; i < dataArray.length; i++) { | |
108 | args[i - 2] = dataArray[i]; | |
109 | } | |
110 | } | |
111 | } | |
112 | ||
d66deb8d | 113 | List<String> whitelist = Instance.getInstance().getConfig().getList(Config.SERVER_WHITELIST); |
fb25273c NR |
114 | if (whitelist == null) { |
115 | whitelist = new ArrayList<String>(); | |
116 | } | |
117 | ||
118 | if (whitelist.isEmpty()) { | |
119 | wl = false; | |
120 | } | |
edf79e5e | 121 | |
d66deb8d | 122 | rw = Instance.getInstance().getConfig().getBoolean(Config.SERVER_RW, rw); |
fb25273c | 123 | if (!subkey.isEmpty()) { |
d66deb8d | 124 | List<String> allowed = Instance.getInstance().getConfig().getList(Config.SERVER_ALLOWED_SUBKEYS); |
fb25273c NR |
125 | if (allowed.contains(subkey)) { |
126 | if ((subkey + "|").contains("|rw|")) { | |
127 | rw = true; | |
128 | } | |
129 | if ((subkey + "|").contains("|wl|")) { | |
130 | wl = false; // |wl| = bypass whitelist | |
651072f3 | 131 | whitelist = new ArrayList<String>(); |
2070ced5 | 132 | } |
b0e88ebd NR |
133 | } |
134 | } | |
135 | ||
fb25273c NR |
136 | String mode = display(wl, rw); |
137 | ||
138 | String trace = mode + "[ " + command + "] "; | |
085a2f9a | 139 | for (Object arg : args) { |
b9ce9cad | 140 | trace += arg + " "; |
085a2f9a | 141 | } |
c1bb921e NR |
142 | long now = System.currentTimeMillis(); |
143 | System.out.println(StringUtils.fromTime(now) + ": " + trace); | |
b0e88ebd | 144 | |
c1b31971 | 145 | Object rep = null; |
c1b31971 NR |
146 | try { |
147 | rep = doRequest(action, command, args, rw, whitelist); | |
5db598bc | 148 | } catch (IOException e) { |
533dc2b8 | 149 | rep = new RemoteLibraryException(e, true); |
c1b31971 | 150 | } |
9f51d8ab | 151 | |
9b558341 | 152 | commands.put(id, command); |
fb25273c NR |
153 | wls.put(id, wl); |
154 | rws.put(id, rw); | |
9b558341 | 155 | times.put(id, (new Date().getTime() - start)); |
9f51d8ab NR |
156 | |
157 | return rep; | |
158 | } | |
159 | ||
fb25273c NR |
160 | private String display(boolean whitelist, boolean rw) { |
161 | String mode = ""; | |
162 | if (!rw) { | |
163 | mode += "RO: "; | |
164 | } | |
165 | if (whitelist) { | |
166 | mode += "WL: "; | |
167 | } | |
168 | ||
169 | return mode; | |
170 | } | |
171 | ||
9b558341 NR |
172 | @Override |
173 | protected void onRequestDone(long id, long bytesReceived, long bytesSent) { | |
fb25273c NR |
174 | boolean whitelist = wls.get(id); |
175 | boolean rw = rws.get(id); | |
176 | wls.remove(id); | |
177 | rws.remove(id); | |
178 | ||
9b558341 NR |
179 | String rec = StringUtils.formatNumber(bytesReceived) + "b"; |
180 | String sent = StringUtils.formatNumber(bytesSent) + "b"; | |
c1bb921e NR |
181 | long now = System.currentTimeMillis(); |
182 | System.out.println(StringUtils.fromTime(now) | |
183 | + ": " | |
184 | + String.format("%s[>%s]: (%s sent, %s rec) in %d ms", | |
185 | display(whitelist, rw), commands.get(id), sent, rec, | |
186 | times.get(id))); | |
fb25273c | 187 | |
9b558341 NR |
188 | commands.remove(id); |
189 | times.remove(id); | |
190 | } | |
191 | ||
9f51d8ab | 192 | private Object doRequest(ConnectActionServerObject action, String command, |
fb25273c NR |
193 | Object[] args, boolean rw, List<String> whitelist) |
194 | throws NoSuchFieldException, NoSuchMethodException, | |
9f51d8ab | 195 | ClassNotFoundException, IOException { |
3bbc86a5 | 196 | if ("PING".equals(command)) { |
fb25273c | 197 | return rw ? "r/w" : "r/o"; |
3bbc86a5 | 198 | } else if ("GET_METADATA".equals(command)) { |
651072f3 NR |
199 | List<MetaData> metas = new ArrayList<MetaData>(); |
200 | ||
7efece85 | 201 | if ("*".equals(args[0])) { |
9b863b20 | 202 | Progress pg = createPgForwarder(action); |
9f51d8ab | 203 | |
d66deb8d | 204 | for (MetaData meta : Instance.getInstance().getLibrary().getMetas(pg)) { |
a5d1f0e6 | 205 | metas.add(removeCover(meta)); |
9f51d8ab NR |
206 | } |
207 | ||
9b863b20 | 208 | forcePgDoneSent(pg); |
651072f3 | 209 | } else { |
d66deb8d | 210 | MetaData meta = Instance.getInstance().getLibrary().getInfo((String) args[0]); |
210465c3 NR |
211 | MetaData light; |
212 | if (meta.getCover() == null) { | |
213 | light = meta; | |
214 | } else { | |
215 | light = meta.clone(); | |
216 | light.setCover(null); | |
217 | } | |
218 | ||
219 | metas.add(light); | |
651072f3 NR |
220 | } |
221 | ||
222 | if (!whitelist.isEmpty()) { | |
223 | for (int i = 0; i < metas.size(); i++) { | |
224 | if (!whitelist.contains(metas.get(i).getSource())) { | |
225 | metas.remove(i); | |
226 | i--; | |
227 | } | |
228 | } | |
a85e8077 | 229 | } |
e272f05f | 230 | |
651072f3 | 231 | return metas.toArray(new MetaData[0]); |
a85e8077 | 232 | } else if ("GET_STORY".equals(command)) { |
d66deb8d | 233 | MetaData meta = Instance.getInstance().getLibrary().getInfo((String) args[0]); |
651072f3 NR |
234 | if (meta == null) { |
235 | return null; | |
236 | } | |
237 | ||
238 | if (!whitelist.isEmpty()) { | |
239 | if (!whitelist.contains(meta.getSource())) { | |
240 | return null; | |
241 | } | |
242 | } | |
243 | ||
b9ce9cad NR |
244 | meta = meta.clone(); |
245 | meta.setCover(null); | |
246 | ||
247 | action.send(meta); | |
248 | action.rec(); | |
249 | ||
d66deb8d | 250 | Story story = Instance.getInstance().getLibrary().getStory((String) args[0], null); |
b9ce9cad NR |
251 | for (Object obj : breakStory(story)) { |
252 | action.send(obj); | |
253 | action.rec(); | |
254 | } | |
085a2f9a | 255 | } else if ("SAVE_STORY".equals(command)) { |
651072f3 | 256 | if (!rw) { |
533dc2b8 NR |
257 | throw new RemoteLibraryException("Read-Only remote library: " |
258 | + args[0], false); | |
651072f3 NR |
259 | } |
260 | ||
b9ce9cad NR |
261 | List<Object> list = new ArrayList<Object>(); |
262 | ||
263 | action.send(null); | |
264 | Object obj = action.rec(); | |
265 | while (obj != null) { | |
266 | list.add(obj); | |
267 | action.send(null); | |
268 | obj = action.rec(); | |
269 | } | |
270 | ||
271 | Story story = rebuildStory(list); | |
d66deb8d | 272 | Instance.getInstance().getLibrary().save(story, (String) args[0], null); |
0fa0fe95 | 273 | return story.getMeta().getLuid(); |
edf79e5e | 274 | } else if ("IMPORT".equals(command)) { |
651072f3 | 275 | if (!rw) { |
533dc2b8 NR |
276 | throw new RemoteLibraryException("Read-Only remote library: " |
277 | + args[0], false); | |
651072f3 NR |
278 | } |
279 | ||
9b863b20 | 280 | Progress pg = createPgForwarder(action); |
d66deb8d | 281 | MetaData meta = Instance.getInstance().getLibrary().imprt(new URL((String) args[0]), pg); |
9b863b20 | 282 | forcePgDoneSent(pg); |
b6b65795 | 283 | return meta.getLuid(); |
085a2f9a | 284 | } else if ("DELETE_STORY".equals(command)) { |
651072f3 | 285 | if (!rw) { |
533dc2b8 NR |
286 | throw new RemoteLibraryException("Read-Only remote library: " |
287 | + args[0], false); | |
651072f3 NR |
288 | } |
289 | ||
d66deb8d | 290 | Instance.getInstance().getLibrary().delete((String) args[0]); |
e604986c | 291 | } else if ("GET_COVER".equals(command)) { |
d66deb8d | 292 | return Instance.getInstance().getLibrary().getCover((String) args[0]); |
3989dfc5 NR |
293 | } else if ("GET_CUSTOM_COVER".equals(command)) { |
294 | if ("SOURCE".equals(args[0])) { | |
d66deb8d | 295 | return Instance.getInstance().getLibrary().getCustomSourceCover((String) args[1]); |
3989dfc5 | 296 | } else if ("AUTHOR".equals(args[0])) { |
d66deb8d | 297 | return Instance.getInstance().getLibrary().getCustomAuthorCover((String) args[1]); |
3989dfc5 NR |
298 | } else { |
299 | return null; | |
300 | } | |
301 | } else if ("SET_COVER".equals(command)) { | |
651072f3 | 302 | if (!rw) { |
533dc2b8 NR |
303 | throw new RemoteLibraryException("Read-Only remote library: " |
304 | + args[0] + ", " + args[1], false); | |
651072f3 NR |
305 | } |
306 | ||
3989dfc5 | 307 | if ("SOURCE".equals(args[0])) { |
d66deb8d | 308 | Instance.getInstance().getLibrary().setSourceCover((String) args[1], (String) args[2]); |
3989dfc5 | 309 | } else if ("AUTHOR".equals(args[0])) { |
d66deb8d | 310 | Instance.getInstance().getLibrary().setAuthorCover((String) args[1], (String) args[2]); |
3989dfc5 | 311 | } |
c8d48938 | 312 | } else if ("CHANGE_STA".equals(command)) { |
651072f3 | 313 | if (!rw) { |
d66deb8d | 314 | throw new RemoteLibraryException("Read-Only remote library: " + args[0] + ", " + args[1], false); |
651072f3 NR |
315 | } |
316 | ||
9b863b20 | 317 | Progress pg = createPgForwarder(action); |
d66deb8d NR |
318 | Instance.getInstance().getLibrary().changeSTA((String) args[0], (String) args[1], (String) args[2], |
319 | (String) args[3], pg); | |
9b863b20 | 320 | forcePgDoneSent(pg); |
5e848e6a | 321 | } else if ("EXIT".equals(command)) { |
651072f3 | 322 | if (!rw) { |
533dc2b8 NR |
323 | throw new RemoteLibraryException( |
324 | "Read-Only remote library: EXIT", false); | |
651072f3 NR |
325 | } |
326 | ||
c08c6ca1 | 327 | stop(10000, false); |
b0e88ebd NR |
328 | } |
329 | ||
330 | return null; | |
331 | } | |
74a40dfb | 332 | |
b9ce9cad NR |
333 | @Override |
334 | protected void onError(Exception e) { | |
7e51d91c | 335 | if (e instanceof SSLException) { |
c1bb921e NR |
336 | long now = System.currentTimeMillis(); |
337 | System.out.println(StringUtils.fromTime(now) + ": " | |
338 | + "[Client connection refused (bad key)]"); | |
7e51d91c NR |
339 | } else { |
340 | getTraceHandler().error(e); | |
341 | } | |
b9ce9cad | 342 | } |
74a40dfb | 343 | |
b9ce9cad NR |
344 | /** |
345 | * Break a story in multiple {@link Object}s for easier serialisation. | |
346 | * | |
347 | * @param story | |
348 | * the {@link Story} to break | |
349 | * | |
350 | * @return the list of {@link Object}s | |
351 | */ | |
352 | static List<Object> breakStory(Story story) { | |
353 | List<Object> list = new ArrayList<Object>(); | |
74a40dfb NR |
354 | |
355 | story = story.clone(); | |
b9ce9cad | 356 | list.add(story); |
74a40dfb | 357 | |
b9ce9cad NR |
358 | if (story.getMeta().isImageDocument()) { |
359 | for (Chapter chap : story) { | |
360 | list.add(chap); | |
361 | list.addAll(chap.getParagraphs()); | |
362 | chap.setParagraphs(new ArrayList<Paragraph>()); | |
74a40dfb | 363 | } |
b9ce9cad | 364 | story.setChapters(new ArrayList<Chapter>()); |
74a40dfb | 365 | } |
74a40dfb | 366 | |
b9ce9cad NR |
367 | return list; |
368 | } | |
74a40dfb | 369 | |
b9ce9cad NR |
370 | /** |
371 | * Rebuild a story from a list of broke up {@link Story} parts. | |
372 | * | |
373 | * @param list | |
374 | * the list of {@link Story} parts | |
375 | * | |
376 | * @return the reconstructed {@link Story} | |
377 | */ | |
378 | static Story rebuildStory(List<Object> list) { | |
74a40dfb | 379 | Story story = null; |
b9ce9cad | 380 | Chapter chap = null; |
74a40dfb | 381 | |
b9ce9cad NR |
382 | for (Object obj : list) { |
383 | if (obj instanceof Story) { | |
384 | story = (Story) obj; | |
385 | } else if (obj instanceof Chapter) { | |
386 | chap = (Chapter) obj; | |
387 | story.getChapters().add(chap); | |
388 | } else if (obj instanceof Paragraph) { | |
389 | chap.getParagraphs().add((Paragraph) obj); | |
74a40dfb NR |
390 | } |
391 | } | |
392 | ||
393 | return story; | |
394 | } | |
395 | ||
b9ce9cad NR |
396 | /** |
397 | * Update the {@link Progress} with the adequate {@link Object} received | |
398 | * from the network via {@link RemoteLibraryServer}. | |
399 | * | |
400 | * @param pg | |
401 | * the {@link Progress} to update | |
402 | * @param rep | |
403 | * the object received from the network | |
404 | * | |
405 | * @return TRUE if it was a progress event, FALSE if not | |
406 | */ | |
407 | static boolean updateProgress(Progress pg, Object rep) { | |
1f5a9d0c NR |
408 | boolean updateProgress = false; |
409 | if (rep instanceof Integer[] && ((Integer[]) rep).length == 3) | |
410 | updateProgress = true; | |
411 | if (rep instanceof Object[] && ((Object[]) rep).length >= 5 | |
412 | && "UPDATE".equals(((Object[]) rep)[0])) | |
413 | updateProgress = true; | |
414 | ||
415 | if (updateProgress) { | |
a5d1f0e6 | 416 | Object[] a = (Object[]) rep; |
b9ce9cad | 417 | |
1f5a9d0c NR |
418 | int offset = 0; |
419 | if (a[0] instanceof String) { | |
420 | offset = 1; | |
421 | } | |
422 | ||
423 | int min = (Integer) a[0 + offset]; | |
424 | int max = (Integer) a[1 + offset]; | |
425 | int progress = (Integer) a[2 + offset]; | |
426 | ||
427 | Object meta = null; | |
428 | if (a.length > (3 + offset)) { | |
429 | meta = a[3 + offset]; | |
430 | } | |
95c926ea NR |
431 | |
432 | String name = null; | |
433 | if (a.length > (4 + offset)) { | |
434 | name = a[4 + offset] == null ? "" : a[4 + offset].toString(); | |
435 | } | |
436 | ||
1f5a9d0c NR |
437 | |
438 | if (min >= 0 && min <= max) { | |
95c926ea | 439 | pg.setName(name); |
1f5a9d0c NR |
440 | pg.setMinMax(min, max); |
441 | pg.setProgress(progress); | |
442 | if (meta != null) { | |
443 | pg.put("meta", meta); | |
b9ce9cad | 444 | } |
1f5a9d0c NR |
445 | |
446 | return true; | |
b9ce9cad | 447 | } |
74a40dfb | 448 | } |
b9ce9cad NR |
449 | |
450 | return false; | |
74a40dfb NR |
451 | } |
452 | ||
b9ce9cad NR |
453 | /** |
454 | * Create a {@link Progress} that will forward its progress over the | |
455 | * network. | |
456 | * | |
457 | * @param action | |
458 | * the {@link ConnectActionServerObject} to use to forward it | |
459 | * | |
460 | * @return the {@link Progress} | |
461 | */ | |
49f3dec5 | 462 | private Progress createPgForwarder(final ConnectActionServerObject action) { |
9b863b20 NR |
463 | final Boolean[] isDoneForwarded = new Boolean[] { false }; |
464 | final Progress pg = new Progress() { | |
465 | @Override | |
466 | public boolean isDone() { | |
467 | return isDoneForwarded[0]; | |
468 | } | |
469 | }; | |
470 | ||
b9ce9cad | 471 | final Integer[] p = new Integer[] { -1, -1, -1 }; |
a5d1f0e6 | 472 | final Object[] pMeta = new MetaData[1]; |
95c926ea | 473 | final String[] pName = new String[1]; |
9b863b20 | 474 | final Long[] lastTime = new Long[] { new Date().getTime() }; |
b9ce9cad NR |
475 | pg.addProgressListener(new ProgressListener() { |
476 | @Override | |
477 | public void progress(Progress progress, String name) { | |
a5d1f0e6 NR |
478 | Object meta = pg.get("meta"); |
479 | if (meta instanceof MetaData) { | |
480 | meta = removeCover((MetaData)meta); | |
481 | } | |
482 | ||
b9ce9cad NR |
483 | int min = pg.getMin(); |
484 | int max = pg.getMax(); | |
a5d1f0e6 | 485 | int rel = min |
37abe20c NR |
486 | + (int) Math.round(pg.getRelativeProgress() |
487 | * (max - min)); | |
a5d1f0e6 NR |
488 | |
489 | boolean samePg = p[0] == min && p[1] == max && p[2] == rel; | |
490 | ||
9b863b20 NR |
491 | // Do not re-send the same value twice over the wire, |
492 | // unless more than 2 seconds have elapsed (to maintain the | |
493 | // connection) | |
95c926ea NR |
494 | if (!samePg || !same(pMeta[0], meta) |
495 | || !same(pName[0], name) // | |
9b863b20 | 496 | || (new Date().getTime() - lastTime[0] > 2000)) { |
b9ce9cad NR |
497 | p[0] = min; |
498 | p[1] = max; | |
a5d1f0e6 NR |
499 | p[2] = rel; |
500 | pMeta[0] = meta; | |
95c926ea | 501 | pName[0] = name; |
b9ce9cad NR |
502 | |
503 | try { | |
95c926ea NR |
504 | action.send(new Object[] { "UPDATE", min, max, rel, |
505 | meta, name }); | |
b9ce9cad NR |
506 | action.rec(); |
507 | } catch (Exception e) { | |
49f3dec5 | 508 | getTraceHandler().error(e); |
b9ce9cad | 509 | } |
9b863b20 | 510 | |
9b863b20 | 511 | lastTime[0] = new Date().getTime(); |
b9ce9cad | 512 | } |
652fd9b0 NR |
513 | |
514 | isDoneForwarded[0] = (pg.getProgress() >= pg.getMax()); | |
b9ce9cad NR |
515 | } |
516 | }); | |
517 | ||
518 | return pg; | |
74a40dfb | 519 | } |
a5d1f0e6 NR |
520 | |
521 | private boolean same(Object obj1, Object obj2) { | |
522 | if (obj1 == null || obj2 == null) | |
523 | return obj1 == null && obj2 == null; | |
524 | ||
525 | return obj1.equals(obj2); | |
526 | } | |
9b863b20 NR |
527 | |
528 | // with 30 seconds timeout | |
49f3dec5 | 529 | private void forcePgDoneSent(Progress pg) { |
9b863b20 NR |
530 | long start = new Date().getTime(); |
531 | pg.done(); | |
532 | while (!pg.isDone() && new Date().getTime() - start < 30000) { | |
533 | try { | |
534 | Thread.sleep(100); | |
535 | } catch (InterruptedException e) { | |
49f3dec5 | 536 | getTraceHandler().error(e); |
9b863b20 NR |
537 | } |
538 | } | |
539 | } | |
a5d1f0e6 NR |
540 | |
541 | private MetaData removeCover(MetaData meta) { | |
eccb0cbc NR |
542 | MetaData light = null; |
543 | if (meta != null) { | |
544 | if (meta.getCover() == null) { | |
545 | light = meta; | |
546 | } else { | |
547 | light = meta.clone(); | |
548 | light.setCover(null); | |
549 | } | |
a5d1f0e6 NR |
550 | } |
551 | ||
552 | return light; | |
553 | } | |
b0e88ebd | 554 | } |