1 package be
.nikiroo
.fanfix
.library
;
4 import java
.io
.IOException
;
6 import java
.net
.UnknownHostException
;
7 import java
.util
.ArrayList
;
10 import javax
.net
.ssl
.SSLException
;
12 import be
.nikiroo
.fanfix
.Instance
;
13 import be
.nikiroo
.fanfix
.data
.MetaData
;
14 import be
.nikiroo
.fanfix
.data
.Story
;
15 import be
.nikiroo
.utils
.Image
;
16 import be
.nikiroo
.utils
.Progress
;
17 import be
.nikiroo
.utils
.Version
;
18 import be
.nikiroo
.utils
.serial
.server
.ConnectActionClientObject
;
21 * This {@link BasicLibrary} will access a remote server to list the available
22 * stories, and download the ones you try to load to the local directory
23 * specified in the configuration.
25 * This remote library uses a custom fanfix:// protocol.
29 public class RemoteLibrary
extends BasicLibrary
{
30 interface RemoteAction
{
31 public void action(ConnectActionClientObject action
) throws Exception
;
34 class RemoteConnectAction
extends ConnectActionClientObject
{
35 public RemoteConnectAction() throws IOException
{
36 super(host
, port
, key
);
40 public Object
send(Object data
)
41 throws IOException
, NoSuchFieldException
, NoSuchMethodException
,
42 ClassNotFoundException
{
43 Object rep
= super.send(data
);
44 if (rep
instanceof RemoteLibraryException
) {
45 RemoteLibraryException remoteEx
= (RemoteLibraryException
) rep
;
46 throw remoteEx
.unwrapException();
55 private final String key
;
56 private final String subkey
;
58 // informative only (server will make the actual checks)
62 * Create a {@link RemoteLibrary} linked to the given server.
64 * Note that the key is structured:
65 * <tt><b><i>xxx</i></b>(|<b><i>yyy</i></b>(|<b>wl</b>)(|<b>bl</b>)(|<b>rw</b>)</tt>
67 * Note that anything before the first pipe (<tt>|</tt>) character is
68 * considered to be the encryption key, anything after that character is
69 * called the subkey (including the other pipe characters and flags!).
71 * This is important because the subkey (including the pipe characters and
72 * flags) must be present as-is in the server configuration file to be
75 * <li><b><i>xxx</i></b>: the encryption key used to communicate with the
77 * <li><b><i>yyy</i></b>: the secondary key</li>
78 * <li><b>rw</b>: flag to allow read and write access if it is not the
79 * default on this server</li>
80 * <li><b>bl</b>: flag to bypass the blacklist (if it exists)</li>
81 * <li><b>wl</b>: flag to bypass the whitelist if it exists</li>
86 * <li><b>my_key</b>: normal connection, will take the default server
88 * <li><b>my_key|agzyzz|wl|bl</b>: will ask to bypass the black list and the
89 * white list (if it exists)</li>
90 * <li><b>my_key|agzyzz|rw</b>: will ask read-write access (if the default
92 * <li><b>my_key|agzyzz|wl|rw</b>: will ask both read-write access and white
97 * the key that will allow us to exchange information with the
100 * the host to contact or NULL for localhost
102 * the port to contact it on
104 public RemoteLibrary(String key
, String host
, int port
) {
107 index
= key
.indexOf('|');
111 this.key
= key
.substring(0, index
);
112 this.subkey
= key
.substring(index
+ 1);
118 if (host
.startsWith("fanfix://")) {
119 host
= host
.substring("fanfix://".length());
127 public String
getLibraryName() {
128 return (rw ?
"[READ-ONLY] " : "") + "fanfix://" + host
+ ":" + port
;
132 public Status
getStatus() {
133 Instance
.getInstance().getTraceHandler()
134 .trace("Getting remote lib status...");
135 Status status
= getStatusDo();
136 Instance
.getInstance().getTraceHandler()
137 .trace("Remote lib status: " + status
);
141 private Status
getStatusDo() {
142 final Status
[] result
= new Status
[1];
146 new RemoteConnectAction() {
148 public void action(Version serverVersion
) throws Exception
{
149 Object rep
= send(new Object
[] { subkey
, "PING" });
151 if ("r/w".equals(rep
)) {
153 result
[0] = Status
.READ_WRITE
;
154 } else if ("r/o".equals(rep
)) {
156 result
[0] = Status
.READ_ONLY
;
158 result
[0] = Status
.UNAUTHORIZED
;
163 protected void onError(Exception e
) {
164 if (e
instanceof SSLException
) {
165 result
[0] = Status
.UNAUTHORIZED
;
167 result
[0] = Status
.UNAVAILABLE
;
171 } catch (UnknownHostException e
) {
172 result
[0] = Status
.INVALID
;
173 } catch (IllegalArgumentException e
) {
174 result
[0] = Status
.INVALID
;
175 } catch (Exception e
) {
176 result
[0] = Status
.UNAVAILABLE
;
183 public Image
getCover(final String luid
) throws IOException
{
184 final Image
[] result
= new Image
[1];
186 connectRemoteAction(new RemoteAction() {
188 public void action(ConnectActionClientObject action
)
191 .send(new Object
[] { subkey
, "GET_COVER", luid
});
192 result
[0] = (Image
) rep
;
200 public Image
getCustomSourceCover(final String source
) throws IOException
{
201 return getCustomCover(source
, "SOURCE");
205 public Image
getCustomAuthorCover(final String author
) throws IOException
{
206 return getCustomCover(author
, "AUTHOR");
209 // type: "SOURCE" or "AUTHOR"
210 private Image
getCustomCover(final String source
, final String type
)
212 final Image
[] result
= new Image
[1];
214 connectRemoteAction(new RemoteAction() {
216 public void action(ConnectActionClientObject action
)
218 Object rep
= action
.send(new Object
[] { subkey
,
219 "GET_CUSTOM_COVER", type
, source
});
220 result
[0] = (Image
) rep
;
228 public synchronized Story
getStory(final String luid
, Progress pg
)
230 final Progress pgF
= pg
;
231 final Story
[] result
= new Story
[1];
233 connectRemoteAction(new RemoteAction() {
235 public void action(ConnectActionClientObject action
)
243 .send(new Object
[] { subkey
, "GET_STORY", luid
});
245 MetaData meta
= null;
246 if (rep
instanceof MetaData
) {
247 meta
= (MetaData
) rep
;
248 if (meta
.getWords() <= Integer
.MAX_VALUE
) {
249 pg
.setMinMax(0, (int) meta
.getWords());
253 List
<Object
> list
= new ArrayList
<Object
>();
254 for (Object obj
= action
.send(null); obj
!= null; obj
= action
260 result
[0] = RemoteLibraryServer
.rebuildStory(list
);
269 public synchronized Story
save(final Story story
, final String luid
,
270 Progress pg
) throws IOException
{
272 final String
[] luidSaved
= new String
[1];
273 Progress pgSave
= new Progress();
274 Progress pgRefresh
= new Progress();
280 pg
.addProgress(pgSave
, 9);
281 pg
.addProgress(pgRefresh
, 1);
283 final Progress pgF
= pgSave
;
285 connectRemoteAction(new RemoteAction() {
287 public void action(ConnectActionClientObject action
)
290 if (story
.getMeta().getWords() <= Integer
.MAX_VALUE
) {
291 pg
.setMinMax(0, (int) story
.getMeta().getWords());
294 action
.send(new Object
[] { subkey
, "SAVE_STORY", luid
});
296 List
<Object
> list
= RemoteLibraryServer
.breakStory(story
);
297 for (Object obj
: list
) {
302 luidSaved
[0] = (String
) action
.send(null);
308 // because the meta changed:
309 MetaData meta
= getInfo(luidSaved
[0]);
310 if (story
.getMeta().getClass() != null) {
311 // If already available locally:
312 meta
.setCover(story
.getMeta().getCover());
315 meta
.setCover(getCover(meta
.getLuid()));
325 public synchronized void delete(final String luid
) throws IOException
{
326 connectRemoteAction(new RemoteAction() {
328 public void action(ConnectActionClientObject action
)
330 action
.send(new Object
[] { subkey
, "DELETE_STORY", luid
});
336 public void setSourceCover(final String source
, final String luid
)
338 setCover(source
, luid
, "SOURCE");
342 public void setAuthorCover(final String author
, final String luid
)
344 setCover(author
, luid
, "AUTHOR");
347 // type = "SOURCE" | "AUTHOR"
348 private void setCover(final String value
, final String luid
,
349 final String type
) throws IOException
{
350 connectRemoteAction(new RemoteAction() {
352 public void action(ConnectActionClientObject action
)
354 action
.send(new Object
[] { subkey
, "SET_COVER", type
, value
,
361 // Could work (more slowly) without it
362 public MetaData
imprt(final URL url
, Progress pg
) throws IOException
{
363 // Import the file locally if it is actually a file
365 if (url
== null || url
.getProtocol().equalsIgnoreCase("file")) {
366 return super.imprt(url
, pg
);
369 // Import it remotely if it is an URL
375 final Progress pgF
= pg
;
376 final String
[] luid
= new String
[1];
378 connectRemoteAction(new RemoteAction() {
380 public void action(ConnectActionClientObject action
)
384 Object rep
= action
.send(
385 new Object
[] { subkey
, "IMPORT", url
.toString() });
388 if (!RemoteLibraryServer
.updateProgress(pg
, rep
)) {
392 rep
= action
.send(null);
396 luid
[0] = (String
) rep
;
400 if (luid
[0] == null) {
401 throw new IOException("Remote failure");
405 return getInfo(luid
[0]);
409 // Could work (more slowly) without it
410 protected synchronized void changeSTA(final String luid
,
411 final String newSource
, final String newTitle
,
412 final String newAuthor
, Progress pg
) throws IOException
{
414 final Progress pgF
= pg
== null ?
new Progress() : pg
;
416 connectRemoteAction(new RemoteAction() {
418 public void action(ConnectActionClientObject action
)
422 Object rep
= action
.send(new Object
[] { subkey
, "CHANGE_STA",
423 luid
, newSource
, newTitle
, newAuthor
});
425 if (!RemoteLibraryServer
.updateProgress(pg
, rep
)) {
429 rep
= action
.send(null);
436 public File
getFile(final String luid
, Progress pg
) {
437 throw new java
.lang
.InternalError(
438 "Operation not supportorted on remote Libraries");
444 * @throws IOException
445 * in case of I/O errors
446 * @throws SSLException
447 * when the key was not accepted
449 public void exit() throws IOException
, SSLException
{
450 connectRemoteAction(new RemoteAction() {
452 public void action(ConnectActionClientObject action
)
454 action
.send(new Object
[] { subkey
, "EXIT" });
461 public MetaData
getInfo(String luid
) throws IOException
{
462 List
<MetaData
> metas
= getMetasList(luid
, null);
463 if (!metas
.isEmpty()) {
471 protected List
<MetaData
> getMetas(Progress pg
) throws IOException
{
472 return getMetasList("*", pg
);
476 protected void updateInfo(MetaData meta
) {
477 // Will be taken care of directly server side
481 protected void invalidateInfo(String luid
) {
482 // Will be taken care of directly server side
485 // The following methods are only used by Save and Delete in BasicLibrary:
488 protected String
getNextId() {
489 throw new java
.lang
.InternalError("Should not have been called");
493 protected void doDelete(String luid
) throws IOException
{
494 throw new java
.lang
.InternalError("Should not have been called");
498 protected Story
doSave(Story story
, Progress pg
) throws IOException
{
499 throw new java
.lang
.InternalError("Should not have been called");
505 * Return the meta of the given story or a list of all known metas if the
508 * Will not get the covers.
511 * the luid of the story or *
513 * the optional progress
517 * @throws IOException
518 * in case of I/O error or bad key (SSLException)
520 private List
<MetaData
> getMetasList(final String luid
, Progress pg
)
522 final Progress pgF
= pg
;
523 final List
<MetaData
> metas
= new ArrayList
<MetaData
>();
525 connectRemoteAction(new RemoteAction() {
527 public void action(ConnectActionClientObject action
)
535 .send(new Object
[] { subkey
, "GET_METADATA", luid
});
538 if (!RemoteLibraryServer
.updateProgress(pg
, rep
)) {
542 rep
= action
.send(null);
545 if (rep
instanceof MetaData
[]) {
546 for (MetaData meta
: (MetaData
[]) rep
) {
549 } else if (rep
!= null) {
550 metas
.add((MetaData
) rep
);
558 private void connectRemoteAction(final RemoteAction runAction
)
560 final IOException
[] err
= new IOException
[1];
562 final RemoteConnectAction
[] array
= new RemoteConnectAction
[1];
563 RemoteConnectAction ra
= new RemoteConnectAction() {
565 public void action(Version serverVersion
) throws Exception
{
566 runAction
.action(array
[0]);
570 protected void onError(Exception e
) {
571 if (!(e
instanceof IOException
)) {
572 Instance
.getInstance().getTraceHandler().error(e
);
576 err
[0] = (IOException
) e
;
581 } catch (Exception e
) {
582 err
[0] = (IOException
) e
;
585 if (err
[0] != null) {