Commit | Line | Data |
---|---|---|
e42573a0 | 1 | package be.nikiroo.fanfix.library; |
b0e88ebd NR |
2 | |
3 | import java.io.File; | |
4 | import java.io.IOException; | |
edf79e5e | 5 | import java.net.URL; |
e6249b0f | 6 | import java.net.UnknownHostException; |
68e2c6d2 NR |
7 | import java.util.ArrayList; |
8 | import java.util.List; | |
b0e88ebd | 9 | |
7e51d91c NR |
10 | import javax.net.ssl.SSLException; |
11 | ||
e42573a0 | 12 | import be.nikiroo.fanfix.Instance; |
b0e88ebd NR |
13 | import be.nikiroo.fanfix.data.MetaData; |
14 | import be.nikiroo.fanfix.data.Story; | |
16a81ef7 | 15 | import be.nikiroo.utils.Image; |
b0e88ebd | 16 | import be.nikiroo.utils.Progress; |
fb25273c | 17 | import be.nikiroo.utils.Version; |
62c63b07 | 18 | import be.nikiroo.utils.serial.server.ConnectActionClientObject; |
b0e88ebd | 19 | |
68e2c6d2 NR |
20 | /** |
21 | * This {@link BasicLibrary} will access a remote server to list the available | |
a85e8077 | 22 | * stories, and download the ones you try to load to the local directory |
68e2c6d2 NR |
23 | * specified in the configuration. |
24 | * | |
25 | * @author niki | |
26 | */ | |
27 | public class RemoteLibrary extends BasicLibrary { | |
5db598bc NR |
28 | interface RemoteAction { |
29 | public void action(ConnectActionClientObject action) throws Exception; | |
30 | } | |
31 | ||
32 | class RemoteConnectAction extends ConnectActionClientObject { | |
33 | public RemoteConnectAction() throws IOException { | |
34 | super(host, port, key); | |
35 | } | |
36 | ||
37 | @Override | |
38 | public Object send(Object data) throws IOException, | |
39 | NoSuchFieldException, NoSuchMethodException, | |
40 | ClassNotFoundException { | |
41 | Object rep = super.send(data); | |
42 | if (rep instanceof RemoteLibraryException) { | |
43 | RemoteLibraryException remoteEx = (RemoteLibraryException) rep; | |
533dc2b8 | 44 | throw remoteEx.unwrapException(); |
5db598bc NR |
45 | } |
46 | ||
47 | return rep; | |
48 | } | |
49 | } | |
50 | ||
b0e88ebd NR |
51 | private String host; |
52 | private int port; | |
ea734ab4 | 53 | private final String key; |
fb25273c NR |
54 | private final String subkey; |
55 | ||
56 | // informative only (server will make the actual checks) | |
57 | private boolean rw; | |
68e2c6d2 NR |
58 | |
59 | /** | |
60 | * Create a {@link RemoteLibrary} linked to the given server. | |
fb25273c NR |
61 | * <p> |
62 | * Note that the key is structured: | |
63 | * <tt><b><i>xxx</i></b>(|<b><i>yyy</i></b>|<b>wl</b>)(|<b>rw</b>)</tt> | |
64 | * <p> | |
65 | * Note that anything before the first pipe (<tt>|</tt>) character is | |
66 | * considered to be the encryption key, anything after that character is | |
67 | * called the subkey (including the other pipe characters and flags!). | |
68 | * <p> | |
69 | * This is important because the subkey (including the pipe characters and | |
70 | * flags) must be present as-is in the server configuration file to be | |
71 | * allowed. | |
72 | * <ul> | |
73 | * <li><b><i>xxx</i></b>: the encryption key used to communicate with the | |
74 | * server</li> | |
75 | * <li><b><i>yyy</i></b>: the secondary key</li> | |
76 | * <li><b>rw</b>: flag to allow read and write access if it is not the | |
77 | * default on this server</li> | |
78 | * <li><b>wl</b>: flag to allow access to all the stories (bypassing the | |
79 | * whitelist if it exists)</li> | |
80 | * </ul> | |
81 | * | |
82 | * Some examples: | |
83 | * <ul> | |
84 | * <li><b>my_key</b>: normal connection, will take the default server | |
85 | * options</li> | |
86 | * <li><b>my_key|agzyzz|wl</b>: will ask to bypass the white list (if it | |
87 | * exists)</li> | |
88 | * <li><b>my_key|agzyzz|rw</b>: will ask read-write access (if the default | |
89 | * is read-only)</li> | |
90 | * <li><b>my_key|agzyzz|wl|rw</b>: will ask both read-write access and white | |
91 | * list bypass</li> | |
92 | * </ul> | |
68e2c6d2 | 93 | * |
2070ced5 NR |
94 | * @param key |
95 | * the key that will allow us to exchange information with the | |
96 | * server | |
68e2c6d2 NR |
97 | * @param host |
98 | * the host to contact or NULL for localhost | |
99 | * @param port | |
100 | * the port to contact it on | |
101 | */ | |
2070ced5 | 102 | public RemoteLibrary(String key, String host, int port) { |
fb25273c NR |
103 | int index = -1; |
104 | if (key != null) { | |
651072f3 | 105 | index = key.indexOf('|'); |
fb25273c NR |
106 | } |
107 | ||
108 | if (index >= 0) { | |
651072f3 NR |
109 | this.key = key.substring(0, index); |
110 | this.subkey = key.substring(index + 1); | |
fb25273c NR |
111 | } else { |
112 | this.key = key; | |
113 | this.subkey = ""; | |
114 | } | |
115 | ||
b0e88ebd NR |
116 | this.host = host; |
117 | this.port = port; | |
b0e88ebd NR |
118 | } |
119 | ||
99ccbdf6 NR |
120 | @Override |
121 | public String getLibraryName() { | |
0bb51c9c | 122 | return (rw ? "[READ-ONLY] " : "") + host + ":" + port; |
99ccbdf6 NR |
123 | } |
124 | ||
e6249b0f NR |
125 | @Override |
126 | public Status getStatus() { | |
99206a39 NR |
127 | Instance.getTraceHandler().trace("Getting remote lib status..."); |
128 | Status status = getStatusDo(); | |
129 | Instance.getTraceHandler().trace("Remote lib status: " + status); | |
130 | return status; | |
131 | } | |
132 | ||
99206a39 | 133 | private Status getStatusDo() { |
e6249b0f NR |
134 | final Status[] result = new Status[1]; |
135 | ||
136 | result[0] = Status.INVALID; | |
137 | ||
e6249b0f | 138 | try { |
5db598bc | 139 | new RemoteConnectAction() { |
e6249b0f | 140 | @Override |
fb25273c NR |
141 | public void action(Version serverVersion) throws Exception { |
142 | Object rep = send(new Object[] { subkey, "PING" }); | |
ea734ab4 | 143 | |
fb25273c NR |
144 | if ("r/w".equals(rep)) { |
145 | rw = true; | |
0bb51c9c | 146 | result[0] = Status.READ_WRITE; |
fb25273c NR |
147 | } else if ("r/o".equals(rep)) { |
148 | rw = false; | |
0bb51c9c | 149 | result[0] = Status.READ_ONLY; |
7e51d91c | 150 | } else { |
99206a39 | 151 | result[0] = Status.UNAUTHORIZED; |
e6249b0f NR |
152 | } |
153 | } | |
154 | ||
155 | @Override | |
156 | protected void onError(Exception e) { | |
210465c3 NR |
157 | if (e instanceof SSLException) { |
158 | result[0] = Status.UNAUTHORIZED; | |
159 | } else { | |
160 | result[0] = Status.UNAVAILABLE; | |
161 | } | |
e6249b0f | 162 | } |
ea734ab4 | 163 | }.connect(); |
e6249b0f NR |
164 | } catch (UnknownHostException e) { |
165 | result[0] = Status.INVALID; | |
166 | } catch (IllegalArgumentException e) { | |
167 | result[0] = Status.INVALID; | |
168 | } catch (Exception e) { | |
169 | result[0] = Status.UNAVAILABLE; | |
170 | } | |
171 | ||
e6249b0f NR |
172 | return result[0]; |
173 | } | |
174 | ||
b0e88ebd | 175 | @Override |
0bb51c9c | 176 | public Image getCover(final String luid) throws IOException { |
16a81ef7 | 177 | final Image[] result = new Image[1]; |
b0e88ebd | 178 | |
5db598bc NR |
179 | connectRemoteAction(new RemoteAction() { |
180 | @Override | |
181 | public void action(ConnectActionClientObject action) | |
182 | throws Exception { | |
183 | Object rep = action.send(new Object[] { subkey, "GET_COVER", | |
184 | luid }); | |
185 | result[0] = (Image) rep; | |
186 | } | |
187 | }); | |
b0e88ebd | 188 | |
b9ce9cad | 189 | return result[0]; |
085a2f9a NR |
190 | } |
191 | ||
192 | @Override | |
0bb51c9c | 193 | public Image getCustomSourceCover(final String source) throws IOException { |
3989dfc5 NR |
194 | return getCustomCover(source, "SOURCE"); |
195 | } | |
196 | ||
197 | @Override | |
0bb51c9c | 198 | public Image getCustomAuthorCover(final String author) throws IOException { |
3989dfc5 NR |
199 | return getCustomCover(author, "AUTHOR"); |
200 | } | |
201 | ||
202 | // type: "SOURCE" or "AUTHOR" | |
0bb51c9c NR |
203 | private Image getCustomCover(final String source, final String type) |
204 | throws IOException { | |
16a81ef7 | 205 | final Image[] result = new Image[1]; |
b9ce9cad | 206 | |
5db598bc NR |
207 | connectRemoteAction(new RemoteAction() { |
208 | @Override | |
209 | public void action(ConnectActionClientObject action) | |
210 | throws Exception { | |
211 | Object rep = action.send(new Object[] { subkey, | |
212 | "GET_CUSTOM_COVER", type, source }); | |
213 | result[0] = (Image) rep; | |
214 | } | |
215 | }); | |
b9ce9cad NR |
216 | |
217 | return result[0]; | |
b0e88ebd | 218 | } |
68e2c6d2 NR |
219 | |
220 | @Override | |
0bb51c9c NR |
221 | public synchronized Story getStory(final String luid, Progress pg) |
222 | throws IOException { | |
b9ce9cad NR |
223 | final Progress pgF = pg; |
224 | final Story[] result = new Story[1]; | |
68e2c6d2 | 225 | |
5db598bc NR |
226 | connectRemoteAction(new RemoteAction() { |
227 | @Override | |
228 | public void action(ConnectActionClientObject action) | |
229 | throws Exception { | |
230 | Progress pg = pgF; | |
231 | if (pg == null) { | |
232 | pg = new Progress(); | |
233 | } | |
b9ce9cad | 234 | |
5db598bc NR |
235 | Object rep = action.send(new Object[] { subkey, "GET_STORY", |
236 | luid }); | |
b9ce9cad | 237 | |
5db598bc NR |
238 | MetaData meta = null; |
239 | if (rep instanceof MetaData) { | |
240 | meta = (MetaData) rep; | |
241 | if (meta.getWords() <= Integer.MAX_VALUE) { | |
242 | pg.setMinMax(0, (int) meta.getWords()); | |
b9ce9cad | 243 | } |
b9ce9cad NR |
244 | } |
245 | ||
5db598bc NR |
246 | List<Object> list = new ArrayList<Object>(); |
247 | for (Object obj = action.send(null); obj != null; obj = action | |
248 | .send(null)) { | |
249 | list.add(obj); | |
250 | pg.add(1); | |
b9ce9cad | 251 | } |
5db598bc NR |
252 | |
253 | result[0] = RemoteLibraryServer.rebuildStory(list); | |
254 | pg.done(); | |
255 | } | |
256 | }); | |
b9ce9cad NR |
257 | |
258 | return result[0]; | |
68e2c6d2 NR |
259 | } |
260 | ||
261 | @Override | |
b9ce9cad NR |
262 | public synchronized Story save(final Story story, final String luid, |
263 | Progress pg) throws IOException { | |
99206a39 | 264 | |
0fa0fe95 NR |
265 | final String[] luidSaved = new String[1]; |
266 | Progress pgSave = new Progress(); | |
267 | Progress pgRefresh = new Progress(); | |
268 | if (pg == null) { | |
269 | pg = new Progress(); | |
270 | } | |
271 | ||
272 | pg.setMinMax(0, 10); | |
273 | pg.addProgress(pgSave, 9); | |
274 | pg.addProgress(pgRefresh, 1); | |
275 | ||
276 | final Progress pgF = pgSave; | |
b9ce9cad | 277 | |
5db598bc | 278 | connectRemoteAction(new RemoteAction() { |
b9ce9cad | 279 | @Override |
5db598bc NR |
280 | public void action(ConnectActionClientObject action) |
281 | throws Exception { | |
b9ce9cad | 282 | Progress pg = pgF; |
b9ce9cad NR |
283 | if (story.getMeta().getWords() <= Integer.MAX_VALUE) { |
284 | pg.setMinMax(0, (int) story.getMeta().getWords()); | |
285 | } | |
286 | ||
5db598bc | 287 | action.send(new Object[] { subkey, "SAVE_STORY", luid }); |
b9ce9cad NR |
288 | |
289 | List<Object> list = RemoteLibraryServer.breakStory(story); | |
290 | for (Object obj : list) { | |
5db598bc | 291 | action.send(obj); |
b9ce9cad NR |
292 | pg.add(1); |
293 | } | |
294 | ||
5db598bc | 295 | luidSaved[0] = (String) action.send(null); |
0fa0fe95 | 296 | |
b9ce9cad NR |
297 | pg.done(); |
298 | } | |
5db598bc | 299 | }); |
085a2f9a NR |
300 | |
301 | // because the meta changed: | |
edf79e5e | 302 | MetaData meta = getInfo(luidSaved[0]); |
efa3c511 NR |
303 | if (story.getMeta().getClass() != null) { |
304 | // If already available locally: | |
305 | meta.setCover(story.getMeta().getCover()); | |
306 | } else { | |
307 | // If required: | |
308 | meta.setCover(getCover(meta.getLuid())); | |
309 | } | |
edf79e5e | 310 | story.setMeta(meta); |
0fa0fe95 NR |
311 | |
312 | pg.done(); | |
085a2f9a NR |
313 | |
314 | return story; | |
68e2c6d2 NR |
315 | } |
316 | ||
317 | @Override | |
b9ce9cad | 318 | public synchronized void delete(final String luid) throws IOException { |
5db598bc | 319 | connectRemoteAction(new RemoteAction() { |
b9ce9cad | 320 | @Override |
5db598bc NR |
321 | public void action(ConnectActionClientObject action) |
322 | throws Exception { | |
323 | action.send(new Object[] { subkey, "DELETE_STORY", luid }); | |
b9ce9cad | 324 | } |
5db598bc | 325 | }); |
68e2c6d2 NR |
326 | } |
327 | ||
328 | @Override | |
0bb51c9c NR |
329 | public void setSourceCover(final String source, final String luid) |
330 | throws IOException { | |
3989dfc5 NR |
331 | setCover(source, luid, "SOURCE"); |
332 | } | |
333 | ||
334 | @Override | |
0bb51c9c NR |
335 | public void setAuthorCover(final String author, final String luid) |
336 | throws IOException { | |
3989dfc5 NR |
337 | setCover(author, luid, "AUTHOR"); |
338 | } | |
339 | ||
340 | // type = "SOURCE" | "AUTHOR" | |
341 | private void setCover(final String value, final String luid, | |
0bb51c9c | 342 | final String type) throws IOException { |
5db598bc NR |
343 | connectRemoteAction(new RemoteAction() { |
344 | @Override | |
345 | public void action(ConnectActionClientObject action) | |
346 | throws Exception { | |
347 | action.send(new Object[] { subkey, "SET_COVER", type, value, | |
348 | luid }); | |
349 | } | |
350 | }); | |
edf79e5e NR |
351 | } |
352 | ||
353 | @Override | |
354 | // Could work (more slowly) without it | |
355 | public Story imprt(final URL url, Progress pg) throws IOException { | |
00f6344a NR |
356 | // Import the file locally if it is actually a file |
357 | if (url == null || url.getProtocol().equalsIgnoreCase("file")) { | |
358 | return super.imprt(url, pg); | |
359 | } | |
360 | ||
361 | // Import it remotely if it is an URL | |
362 | ||
edf79e5e NR |
363 | if (pg == null) { |
364 | pg = new Progress(); | |
365 | } | |
366 | ||
367 | pg.setMinMax(0, 2); | |
368 | Progress pgImprt = new Progress(); | |
369 | Progress pgGet = new Progress(); | |
370 | pg.addProgress(pgImprt, 1); | |
371 | pg.addProgress(pgGet, 1); | |
372 | ||
373 | final Progress pgF = pgImprt; | |
374 | final String[] luid = new String[1]; | |
375 | ||
5db598bc NR |
376 | connectRemoteAction(new RemoteAction() { |
377 | @Override | |
378 | public void action(ConnectActionClientObject action) | |
379 | throws Exception { | |
380 | Progress pg = pgF; | |
edf79e5e | 381 | |
5db598bc NR |
382 | Object rep = action.send(new Object[] { subkey, "IMPORT", |
383 | url.toString() }); | |
edf79e5e | 384 | |
5db598bc NR |
385 | while (true) { |
386 | if (!RemoteLibraryServer.updateProgress(pg, rep)) { | |
387 | break; | |
edf79e5e NR |
388 | } |
389 | ||
5db598bc | 390 | rep = action.send(null); |
edf79e5e NR |
391 | } |
392 | ||
5db598bc NR |
393 | pg.done(); |
394 | luid[0] = (String) rep; | |
395 | } | |
396 | }); | |
edf79e5e NR |
397 | |
398 | if (luid[0] == null) { | |
399 | throw new IOException("Remote failure"); | |
400 | } | |
401 | ||
402 | Story story = getStory(luid[0], pgGet); | |
403 | pgGet.done(); | |
404 | ||
405 | pg.done(); | |
406 | return story; | |
407 | } | |
408 | ||
409 | @Override | |
410 | // Could work (more slowly) without it | |
c8d48938 NR |
411 | protected synchronized void changeSTA(final String luid, |
412 | final String newSource, final String newTitle, | |
413 | final String newAuthor, Progress pg) throws IOException { | |
99206a39 | 414 | |
edf79e5e NR |
415 | final Progress pgF = pg == null ? new Progress() : pg; |
416 | ||
5db598bc NR |
417 | connectRemoteAction(new RemoteAction() { |
418 | @Override | |
419 | public void action(ConnectActionClientObject action) | |
420 | throws Exception { | |
421 | Progress pg = pgF; | |
edf79e5e | 422 | |
5db598bc NR |
423 | Object rep = action.send(new Object[] { subkey, "CHANGE_STA", |
424 | luid, newSource, newTitle, newAuthor }); | |
425 | while (true) { | |
426 | if (!RemoteLibraryServer.updateProgress(pg, rep)) { | |
427 | break; | |
edf79e5e | 428 | } |
edf79e5e | 429 | |
5db598bc | 430 | rep = action.send(null); |
edf79e5e | 431 | } |
5db598bc NR |
432 | } |
433 | }); | |
68e2c6d2 NR |
434 | } |
435 | ||
ff05b828 | 436 | @Override |
2249988a | 437 | public synchronized File getFile(final String luid, Progress pg) { |
ff05b828 NR |
438 | throw new java.lang.InternalError( |
439 | "Operation not supportorted on remote Libraries"); | |
440 | } | |
441 | ||
468b960b NR |
442 | /** |
443 | * Stop the server. | |
533dc2b8 NR |
444 | * |
445 | * @throws IOException | |
446 | * in case of I/O error (including bad key) | |
468b960b | 447 | */ |
0bb51c9c | 448 | public void exit() throws IOException { |
5db598bc NR |
449 | connectRemoteAction(new RemoteAction() { |
450 | @Override | |
451 | public void action(ConnectActionClientObject action) | |
452 | throws Exception { | |
453 | action.send(new Object[] { subkey, "EXIT" }); | |
454 | } | |
455 | }); | |
468b960b NR |
456 | } |
457 | ||
e272f05f | 458 | @Override |
0bb51c9c | 459 | public synchronized MetaData getInfo(String luid) throws IOException { |
e272f05f NR |
460 | List<MetaData> metas = getMetasList(luid, null); |
461 | if (!metas.isEmpty()) { | |
462 | return metas.get(0); | |
463 | } | |
464 | ||
465 | return null; | |
466 | } | |
467 | ||
14b57448 | 468 | @Override |
0bb51c9c | 469 | protected List<MetaData> getMetas(Progress pg) throws IOException { |
e272f05f NR |
470 | return getMetasList("*", pg); |
471 | } | |
472 | ||
473 | @Override | |
efa3c511 NR |
474 | protected void updateInfo(MetaData meta) { |
475 | // Will be taken care of directly server side | |
476 | } | |
477 | ||
478 | @Override | |
c8d48938 | 479 | protected void invalidateInfo(String luid) { |
efa3c511 | 480 | // Will be taken care of directly server side |
e272f05f NR |
481 | } |
482 | ||
483 | // The following methods are only used by Save and Delete in BasicLibrary: | |
484 | ||
485 | @Override | |
486 | protected int getNextId() { | |
487 | throw new java.lang.InternalError("Should not have been called"); | |
488 | } | |
489 | ||
490 | @Override | |
491 | protected void doDelete(String luid) throws IOException { | |
492 | throw new java.lang.InternalError("Should not have been called"); | |
493 | } | |
494 | ||
495 | @Override | |
496 | protected Story doSave(Story story, Progress pg) throws IOException { | |
497 | throw new java.lang.InternalError("Should not have been called"); | |
498 | } | |
499 | ||
500 | // | |
501 | ||
502 | /** | |
503 | * Return the meta of the given story or a list of all known metas if the | |
504 | * luid is "*". | |
9f51d8ab NR |
505 | * <p> |
506 | * Will not get the covers. | |
e272f05f NR |
507 | * |
508 | * @param luid | |
509 | * the luid of the story or * | |
510 | * @param pg | |
511 | * the optional progress | |
512 | * | |
e272f05f | 513 | * @return the metas |
0bb51c9c NR |
514 | * |
515 | * @throws IOException | |
516 | * in case of I/O error or bad key (SSLException) | |
e272f05f | 517 | */ |
0bb51c9c NR |
518 | private List<MetaData> getMetasList(final String luid, Progress pg) |
519 | throws IOException { | |
b9ce9cad NR |
520 | final Progress pgF = pg; |
521 | final List<MetaData> metas = new ArrayList<MetaData>(); | |
74a40dfb | 522 | |
5db598bc NR |
523 | connectRemoteAction(new RemoteAction() { |
524 | @Override | |
525 | public void action(ConnectActionClientObject action) | |
526 | throws Exception { | |
527 | Progress pg = pgF; | |
528 | if (pg == null) { | |
529 | pg = new Progress(); | |
530 | } | |
74a40dfb | 531 | |
5db598bc NR |
532 | Object rep = action.send(new Object[] { subkey, "GET_METADATA", |
533 | luid }); | |
74a40dfb | 534 | |
5db598bc NR |
535 | while (true) { |
536 | if (!RemoteLibraryServer.updateProgress(pg, rep)) { | |
537 | break; | |
ff05b828 | 538 | } |
851dd538 | 539 | |
5db598bc NR |
540 | rep = action.send(null); |
541 | } | |
542 | ||
543 | if (rep instanceof MetaData[]) { | |
544 | for (MetaData meta : (MetaData[]) rep) { | |
545 | metas.add(meta); | |
b9ce9cad | 546 | } |
5db598bc NR |
547 | } else if (rep != null) { |
548 | metas.add((MetaData) rep); | |
549 | } | |
550 | } | |
551 | }); | |
552 | ||
553 | return metas; | |
554 | } | |
555 | ||
0bb51c9c NR |
556 | private void connectRemoteAction(final RemoteAction runAction) |
557 | throws IOException { | |
558 | final IOException[] err = new IOException[1]; | |
5db598bc NR |
559 | try { |
560 | final RemoteConnectAction[] array = new RemoteConnectAction[1]; | |
561 | RemoteConnectAction ra = new RemoteConnectAction() { | |
562 | @Override | |
563 | public void action(Version serverVersion) throws Exception { | |
564 | runAction.action(array[0]); | |
851dd538 NR |
565 | } |
566 | ||
567 | @Override | |
568 | protected void onError(Exception e) { | |
0bb51c9c | 569 | if (!(e instanceof IOException)) { |
7e51d91c | 570 | Instance.getTraceHandler().error(e); |
0bb51c9c | 571 | return; |
7e51d91c | 572 | } |
0bb51c9c NR |
573 | |
574 | err[0] = (IOException) e; | |
ff05b828 | 575 | } |
5db598bc NR |
576 | }; |
577 | array[0] = ra; | |
578 | ra.connect(); | |
ff05b828 | 579 | } catch (Exception e) { |
0bb51c9c NR |
580 | err[0] = (IOException) e; |
581 | } | |
582 | ||
583 | if (err[0] != null) { | |
584 | throw err[0]; | |
ff05b828 | 585 | } |
b9ce9cad | 586 | } |
b0e88ebd | 587 | } |