1 package be
.nikiroo
.fanfix
.library
;
3 import java
.io
.IOException
;
5 import java
.util
.ArrayList
;
7 import java
.util
.HashMap
;
11 import javax
.net
.ssl
.SSLException
;
13 import be
.nikiroo
.fanfix
.Instance
;
14 import be
.nikiroo
.fanfix
.bundles
.Config
;
15 import be
.nikiroo
.fanfix
.data
.Chapter
;
16 import be
.nikiroo
.fanfix
.data
.MetaData
;
17 import be
.nikiroo
.fanfix
.data
.Paragraph
;
18 import be
.nikiroo
.fanfix
.data
.Story
;
19 import be
.nikiroo
.utils
.Progress
;
20 import be
.nikiroo
.utils
.Progress
.ProgressListener
;
21 import be
.nikiroo
.utils
.StringUtils
;
22 import be
.nikiroo
.utils
.Version
;
23 import be
.nikiroo
.utils
.serial
.server
.ConnectActionServerObject
;
24 import be
.nikiroo
.utils
.serial
.server
.ServerObject
;
27 * Create a new remote server that will listen for orders on the given port.
29 * The available commands are given as arrays of objects (first item is the
30 * command, the rest are the arguments).
32 * All the commands are always prefixed by the subkey (which can be EMPTY if
36 * <li>PING: will return the mode if the key is accepted (mode can be: "r/o" or
38 * <li>GET_METADATA *: will return the metadata of all the stories in the
39 * library (array)</li> *
40 * <li>GET_METADATA [luid]: will return the metadata of the story of LUID luid</li>
41 * <li>GET_STORY [luid]: will return the given story if it exists (or NULL if
43 * <li>SAVE_STORY [luid]: save the story (that must be sent just after the
44 * command) with the given LUID, then return the LUID</li>
45 * <li>IMPORT [url]: save the story found at the given URL, then return the LUID
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
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
55 * <li>EXIT: stop the server</li>
60 public class RemoteLibraryServer
extends ServerObject
{
61 private Map
<Long
, String
> commands
= new HashMap
<Long
, String
>();
62 private Map
<Long
, Long
> times
= new HashMap
<Long
, Long
>();
63 private Map
<Long
, Boolean
> wls
= new HashMap
<Long
, Boolean
>();
64 private Map
<Long
, Boolean
> rws
= new HashMap
<Long
, Boolean
>();
67 * Create a new remote server (will not be active until
68 * {@link RemoteLibraryServer#start()} is called).
70 * Note: the key we use here is the encryption key (it must not contain a
74 * the key that will restrict access to this server
76 * the port to listen on
79 * in case of I/O error
81 public RemoteLibraryServer(String key
, int port
) throws IOException
{
82 super("Fanfix remote library", port
, key
);
83 setTraceHandler(Instance
.getTraceHandler());
87 protected Object
onRequest(ConnectActionServerObject action
,
88 Version clientVersion
, Object data
, long id
) throws Exception
{
89 long start
= new Date().getTime();
91 // defaults are positive (as previous versions without the feature)
97 Object
[] args
= new Object
[0];
98 if (data
instanceof Object
[]) {
99 Object
[] dataArray
= (Object
[]) data
;
100 if (dataArray
.length
> 0) {
101 subkey
= "" + dataArray
[0];
103 if (dataArray
.length
> 1) {
104 command
= "" + dataArray
[1];
106 args
= new Object
[dataArray
.length
- 2];
107 for (int i
= 2; i
< dataArray
.length
; i
++) {
108 args
[i
- 2] = dataArray
[i
];
113 List
<String
> whitelist
= Instance
.getConfig().getList(
114 Config
.SERVER_WHITELIST
);
115 if (whitelist
== null) {
116 whitelist
= new ArrayList
<String
>();
119 if (whitelist
.isEmpty()) {
123 rw
= Instance
.getConfig().getBoolean(Config
.SERVER_RW
, rw
);
124 if (!subkey
.isEmpty()) {
125 List
<String
> allowed
= Instance
.getConfig().getList(
126 Config
.SERVER_ALLOWED_SUBKEYS
);
127 if (allowed
.contains(subkey
)) {
128 if ((subkey
+ "|").contains("|rw|")) {
131 if ((subkey
+ "|").contains("|wl|")) {
132 wl
= false; // |wl| = bypass whitelist
133 whitelist
= new ArrayList
<String
>();
138 String mode
= display(wl
, rw
);
140 String trace
= mode
+ "[ " + command
+ "] ";
141 for (Object arg
: args
) {
144 long now
= System
.currentTimeMillis();
145 System
.out
.println(StringUtils
.fromTime(now
) + ": " + trace
);
149 rep
= doRequest(action
, command
, args
, rw
, whitelist
);
150 } catch (IOException e
) {
151 rep
= new RemoteLibraryException(e
, true);
154 commands
.put(id
, command
);
157 times
.put(id
, (new Date().getTime() - start
));
162 private String
display(boolean whitelist
, boolean rw
) {
175 protected void onRequestDone(long id
, long bytesReceived
, long bytesSent
) {
176 boolean whitelist
= wls
.get(id
);
177 boolean rw
= rws
.get(id
);
181 String rec
= StringUtils
.formatNumber(bytesReceived
) + "b";
182 String sent
= StringUtils
.formatNumber(bytesSent
) + "b";
183 long now
= System
.currentTimeMillis();
184 System
.out
.println(StringUtils
.fromTime(now
)
186 + String
.format("%s[>%s]: (%s sent, %s rec) in %d ms",
187 display(whitelist
, rw
), commands
.get(id
), sent
, rec
,
194 private Object
doRequest(ConnectActionServerObject action
, String command
,
195 Object
[] args
, boolean rw
, List
<String
> whitelist
)
196 throws NoSuchFieldException
, NoSuchMethodException
,
197 ClassNotFoundException
, IOException
{
198 if ("PING".equals(command
)) {
199 return rw ?
"r/w" : "r/o";
200 } else if ("GET_METADATA".equals(command
)) {
201 List
<MetaData
> metas
= new ArrayList
<MetaData
>();
203 if ("*".equals(args
[0])) {
204 Progress pg
= createPgForwarder(action
);
206 for (MetaData meta
: Instance
.getLibrary().getMetas(pg
)) {
208 if (meta
.getCover() == null) {
211 light
= meta
.clone();
212 light
.setCover(null);
220 MetaData meta
= Instance
.getLibrary().getInfo((String
) args
[0]);
222 if (meta
.getCover() == null) {
225 light
= meta
.clone();
226 light
.setCover(null);
232 if (!whitelist
.isEmpty()) {
233 for (int i
= 0; i
< metas
.size(); i
++) {
234 if (!whitelist
.contains(metas
.get(i
).getSource())) {
241 return metas
.toArray(new MetaData
[0]);
242 } else if ("GET_STORY".equals(command
)) {
243 MetaData meta
= Instance
.getLibrary().getInfo((String
) args
[0]);
248 if (!whitelist
.isEmpty()) {
249 if (!whitelist
.contains(meta
.getSource())) {
260 Story story
= Instance
.getLibrary()
261 .getStory((String
) args
[0], null);
262 for (Object obj
: breakStory(story
)) {
266 } else if ("SAVE_STORY".equals(command
)) {
268 throw new RemoteLibraryException("Read-Only remote library: "
272 List
<Object
> list
= new ArrayList
<Object
>();
275 Object obj
= action
.rec();
276 while (obj
!= null) {
282 Story story
= rebuildStory(list
);
283 Instance
.getLibrary().save(story
, (String
) args
[0], null);
284 return story
.getMeta().getLuid();
285 } else if ("IMPORT".equals(command
)) {
287 throw new RemoteLibraryException("Read-Only remote library: "
291 Progress pg
= createPgForwarder(action
);
292 Story story
= Instance
.getLibrary().imprt(
293 new URL((String
) args
[0]), pg
);
295 return story
.getMeta().getLuid();
296 } else if ("DELETE_STORY".equals(command
)) {
298 throw new RemoteLibraryException("Read-Only remote library: "
302 Instance
.getLibrary().delete((String
) args
[0]);
303 } else if ("GET_COVER".equals(command
)) {
304 return Instance
.getLibrary().getCover((String
) args
[0]);
305 } else if ("GET_CUSTOM_COVER".equals(command
)) {
306 if ("SOURCE".equals(args
[0])) {
307 return Instance
.getLibrary().getCustomSourceCover(
309 } else if ("AUTHOR".equals(args
[0])) {
310 return Instance
.getLibrary().getCustomAuthorCover(
315 } else if ("SET_COVER".equals(command
)) {
317 throw new RemoteLibraryException("Read-Only remote library: "
318 + args
[0] + ", " + args
[1], false);
321 if ("SOURCE".equals(args
[0])) {
322 Instance
.getLibrary().setSourceCover((String
) args
[1],
324 } else if ("AUTHOR".equals(args
[0])) {
325 Instance
.getLibrary().setAuthorCover((String
) args
[1],
328 } else if ("CHANGE_STA".equals(command
)) {
330 throw new RemoteLibraryException("Read-Only remote library: "
331 + args
[0] + ", " + args
[1], false);
334 Progress pg
= createPgForwarder(action
);
335 Instance
.getLibrary().changeSTA((String
) args
[0], (String
) args
[1],
336 (String
) args
[2], (String
) args
[3], pg
);
338 } else if ("EXIT".equals(command
)) {
340 throw new RemoteLibraryException(
341 "Read-Only remote library: EXIT", false);
351 protected void onError(Exception e
) {
352 if (e
instanceof SSLException
) {
353 long now
= System
.currentTimeMillis();
354 System
.out
.println(StringUtils
.fromTime(now
) + ": "
355 + "[Client connection refused (bad key)]");
357 getTraceHandler().error(e
);
362 * Break a story in multiple {@link Object}s for easier serialisation.
365 * the {@link Story} to break
367 * @return the list of {@link Object}s
369 static List
<Object
> breakStory(Story story
) {
370 List
<Object
> list
= new ArrayList
<Object
>();
372 story
= story
.clone();
375 if (story
.getMeta().isImageDocument()) {
376 for (Chapter chap
: story
) {
378 list
.addAll(chap
.getParagraphs());
379 chap
.setParagraphs(new ArrayList
<Paragraph
>());
381 story
.setChapters(new ArrayList
<Chapter
>());
388 * Rebuild a story from a list of broke up {@link Story} parts.
391 * the list of {@link Story} parts
393 * @return the reconstructed {@link Story}
395 static Story
rebuildStory(List
<Object
> list
) {
399 for (Object obj
: list
) {
400 if (obj
instanceof Story
) {
402 } else if (obj
instanceof Chapter
) {
403 chap
= (Chapter
) obj
;
404 story
.getChapters().add(chap
);
405 } else if (obj
instanceof Paragraph
) {
406 chap
.getParagraphs().add((Paragraph
) obj
);
414 * Update the {@link Progress} with the adequate {@link Object} received
415 * from the network via {@link RemoteLibraryServer}.
418 * the {@link Progress} to update
420 * the object received from the network
422 * @return TRUE if it was a progress event, FALSE if not
424 static boolean updateProgress(Progress pg
, Object rep
) {
425 if (rep
instanceof Integer
[]) {
426 Integer
[] a
= (Integer
[]) rep
;
432 if (min
>= 0 && min
<= max
) {
433 pg
.setMinMax(min
, max
);
434 pg
.setProgress(progress
);
445 * Create a {@link Progress} that will forward its progress over the
449 * the {@link ConnectActionServerObject} to use to forward it
451 * @return the {@link Progress}
453 private Progress
createPgForwarder(final ConnectActionServerObject action
) {
454 final Boolean
[] isDoneForwarded
= new Boolean
[] { false };
455 final Progress pg
= new Progress() {
457 public boolean isDone() {
458 return isDoneForwarded
[0];
462 final Integer
[] p
= new Integer
[] { -1, -1, -1 };
463 final Long
[] lastTime
= new Long
[] { new Date().getTime() };
464 pg
.addProgressListener(new ProgressListener() {
466 public void progress(Progress progress
, String name
) {
467 int min
= pg
.getMin();
468 int max
= pg
.getMax();
469 int relativeProgress
= min
470 + (int) Math
.round(pg
.getRelativeProgress()
473 // Do not re-send the same value twice over the wire,
474 // unless more than 2 seconds have elapsed (to maintain the
476 if ((p
[0] != min
|| p
[1] != max
|| p
[2] != relativeProgress
)
477 || (new Date().getTime() - lastTime
[0] > 2000)) {
480 p
[2] = relativeProgress
;
483 action
.send(new Integer
[] { min
, max
, relativeProgress
});
485 } catch (Exception e
) {
486 getTraceHandler().error(e
);
489 lastTime
[0] = new Date().getTime();
492 isDoneForwarded
[0] = (pg
.getProgress() >= pg
.getMax());
499 // with 30 seconds timeout
500 private void forcePgDoneSent(Progress pg
) {
501 long start
= new Date().getTime();
503 while (!pg
.isDone() && new Date().getTime() - start
< 30000) {
506 } catch (InterruptedException e
) {
507 getTraceHandler().error(e
);