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
.getInstance().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
.getInstance().getConfig().getList(Config
.SERVER_WHITELIST
);
114 if (whitelist
== null) {
115 whitelist
= new ArrayList
<String
>();
118 if (whitelist
.isEmpty()) {
122 rw
= Instance
.getInstance().getConfig().getBoolean(Config
.SERVER_RW
, rw
);
123 if (!subkey
.isEmpty()) {
124 List
<String
> allowed
= Instance
.getInstance().getConfig().getList(Config
.SERVER_ALLOWED_SUBKEYS
);
125 if (allowed
.contains(subkey
)) {
126 if ((subkey
+ "|").contains("|rw|")) {
129 if ((subkey
+ "|").contains("|wl|")) {
130 wl
= false; // |wl| = bypass whitelist
131 whitelist
= new ArrayList
<String
>();
136 String mode
= display(wl
, rw
);
138 String trace
= mode
+ "[ " + command
+ "] ";
139 for (Object arg
: args
) {
142 long now
= System
.currentTimeMillis();
143 System
.out
.println(StringUtils
.fromTime(now
) + ": " + trace
);
147 rep
= doRequest(action
, command
, args
, rw
, whitelist
);
148 } catch (IOException e
) {
149 rep
= new RemoteLibraryException(e
, true);
152 commands
.put(id
, command
);
155 times
.put(id
, (new Date().getTime() - start
));
160 private String
display(boolean whitelist
, boolean rw
) {
173 protected void onRequestDone(long id
, long bytesReceived
, long bytesSent
) {
174 boolean whitelist
= wls
.get(id
);
175 boolean rw
= rws
.get(id
);
179 String rec
= StringUtils
.formatNumber(bytesReceived
) + "b";
180 String sent
= StringUtils
.formatNumber(bytesSent
) + "b";
181 long now
= System
.currentTimeMillis();
182 System
.out
.println(StringUtils
.fromTime(now
)
184 + String
.format("%s[>%s]: (%s sent, %s rec) in %d ms",
185 display(whitelist
, rw
), commands
.get(id
), sent
, rec
,
192 private Object
doRequest(ConnectActionServerObject action
, String command
,
193 Object
[] args
, boolean rw
, List
<String
> whitelist
)
194 throws NoSuchFieldException
, NoSuchMethodException
,
195 ClassNotFoundException
, IOException
{
196 if ("PING".equals(command
)) {
197 return rw ?
"r/w" : "r/o";
198 } else if ("GET_METADATA".equals(command
)) {
199 List
<MetaData
> metas
= new ArrayList
<MetaData
>();
201 if ("*".equals(args
[0])) {
202 Progress pg
= createPgForwarder(action
);
204 for (MetaData meta
: Instance
.getInstance().getLibrary().getMetas(pg
)) {
206 if (meta
.getCover() == null) {
209 light
= meta
.clone();
210 light
.setCover(null);
218 MetaData meta
= Instance
.getInstance().getLibrary().getInfo((String
) args
[0]);
220 if (meta
.getCover() == null) {
223 light
= meta
.clone();
224 light
.setCover(null);
230 if (!whitelist
.isEmpty()) {
231 for (int i
= 0; i
< metas
.size(); i
++) {
232 if (!whitelist
.contains(metas
.get(i
).getSource())) {
239 return metas
.toArray(new MetaData
[0]);
240 } else if ("GET_STORY".equals(command
)) {
241 MetaData meta
= Instance
.getInstance().getLibrary().getInfo((String
) args
[0]);
246 if (!whitelist
.isEmpty()) {
247 if (!whitelist
.contains(meta
.getSource())) {
258 Story story
= Instance
.getInstance().getLibrary().getStory((String
) args
[0], null);
259 for (Object obj
: breakStory(story
)) {
263 } else if ("SAVE_STORY".equals(command
)) {
265 throw new RemoteLibraryException("Read-Only remote library: "
269 List
<Object
> list
= new ArrayList
<Object
>();
272 Object obj
= action
.rec();
273 while (obj
!= null) {
279 Story story
= rebuildStory(list
);
280 Instance
.getInstance().getLibrary().save(story
, (String
) args
[0], null);
281 return story
.getMeta().getLuid();
282 } else if ("IMPORT".equals(command
)) {
284 throw new RemoteLibraryException("Read-Only remote library: "
288 Progress pg
= createPgForwarder(action
);
289 MetaData meta
= Instance
.getInstance().getLibrary().imprt(new URL((String
) args
[0]), pg
);
291 return meta
.getLuid();
292 } else if ("DELETE_STORY".equals(command
)) {
294 throw new RemoteLibraryException("Read-Only remote library: "
298 Instance
.getInstance().getLibrary().delete((String
) args
[0]);
299 } else if ("GET_COVER".equals(command
)) {
300 return Instance
.getInstance().getLibrary().getCover((String
) args
[0]);
301 } else if ("GET_CUSTOM_COVER".equals(command
)) {
302 if ("SOURCE".equals(args
[0])) {
303 return Instance
.getInstance().getLibrary().getCustomSourceCover((String
) args
[1]);
304 } else if ("AUTHOR".equals(args
[0])) {
305 return Instance
.getInstance().getLibrary().getCustomAuthorCover((String
) args
[1]);
309 } else if ("SET_COVER".equals(command
)) {
311 throw new RemoteLibraryException("Read-Only remote library: "
312 + args
[0] + ", " + args
[1], false);
315 if ("SOURCE".equals(args
[0])) {
316 Instance
.getInstance().getLibrary().setSourceCover((String
) args
[1], (String
) args
[2]);
317 } else if ("AUTHOR".equals(args
[0])) {
318 Instance
.getInstance().getLibrary().setAuthorCover((String
) args
[1], (String
) args
[2]);
320 } else if ("CHANGE_STA".equals(command
)) {
322 throw new RemoteLibraryException("Read-Only remote library: " + args
[0] + ", " + args
[1], false);
325 Progress pg
= createPgForwarder(action
);
326 Instance
.getInstance().getLibrary().changeSTA((String
) args
[0], (String
) args
[1], (String
) args
[2],
327 (String
) args
[3], pg
);
329 } else if ("EXIT".equals(command
)) {
331 throw new RemoteLibraryException(
332 "Read-Only remote library: EXIT", false);
342 protected void onError(Exception e
) {
343 if (e
instanceof SSLException
) {
344 long now
= System
.currentTimeMillis();
345 System
.out
.println(StringUtils
.fromTime(now
) + ": "
346 + "[Client connection refused (bad key)]");
348 getTraceHandler().error(e
);
353 * Break a story in multiple {@link Object}s for easier serialisation.
356 * the {@link Story} to break
358 * @return the list of {@link Object}s
360 static List
<Object
> breakStory(Story story
) {
361 List
<Object
> list
= new ArrayList
<Object
>();
363 story
= story
.clone();
366 if (story
.getMeta().isImageDocument()) {
367 for (Chapter chap
: story
) {
369 list
.addAll(chap
.getParagraphs());
370 chap
.setParagraphs(new ArrayList
<Paragraph
>());
372 story
.setChapters(new ArrayList
<Chapter
>());
379 * Rebuild a story from a list of broke up {@link Story} parts.
382 * the list of {@link Story} parts
384 * @return the reconstructed {@link Story}
386 static Story
rebuildStory(List
<Object
> list
) {
390 for (Object obj
: list
) {
391 if (obj
instanceof Story
) {
393 } else if (obj
instanceof Chapter
) {
394 chap
= (Chapter
) obj
;
395 story
.getChapters().add(chap
);
396 } else if (obj
instanceof Paragraph
) {
397 chap
.getParagraphs().add((Paragraph
) obj
);
405 * Update the {@link Progress} with the adequate {@link Object} received
406 * from the network via {@link RemoteLibraryServer}.
409 * the {@link Progress} to update
411 * the object received from the network
413 * @return TRUE if it was a progress event, FALSE if not
415 static boolean updateProgress(Progress pg
, Object rep
) {
416 if (rep
instanceof Integer
[]) {
417 Integer
[] a
= (Integer
[]) rep
;
423 if (min
>= 0 && min
<= max
) {
424 pg
.setMinMax(min
, max
);
425 pg
.setProgress(progress
);
436 * Create a {@link Progress} that will forward its progress over the
440 * the {@link ConnectActionServerObject} to use to forward it
442 * @return the {@link Progress}
444 private Progress
createPgForwarder(final ConnectActionServerObject action
) {
445 final Boolean
[] isDoneForwarded
= new Boolean
[] { false };
446 final Progress pg
= new Progress() {
448 public boolean isDone() {
449 return isDoneForwarded
[0];
453 final Integer
[] p
= new Integer
[] { -1, -1, -1 };
454 final Long
[] lastTime
= new Long
[] { new Date().getTime() };
455 pg
.addProgressListener(new ProgressListener() {
457 public void progress(Progress progress
, String name
) {
458 int min
= pg
.getMin();
459 int max
= pg
.getMax();
460 int relativeProgress
= min
461 + (int) Math
.round(pg
.getRelativeProgress()
464 // Do not re-send the same value twice over the wire,
465 // unless more than 2 seconds have elapsed (to maintain the
467 if ((p
[0] != min
|| p
[1] != max
|| p
[2] != relativeProgress
)
468 || (new Date().getTime() - lastTime
[0] > 2000)) {
471 p
[2] = relativeProgress
;
474 action
.send(new Integer
[] { min
, max
, relativeProgress
});
476 } catch (Exception e
) {
477 getTraceHandler().error(e
);
480 lastTime
[0] = new Date().getTime();
483 isDoneForwarded
[0] = (pg
.getProgress() >= pg
.getMax());
490 // with 30 seconds timeout
491 private void forcePgDoneSent(Progress pg
) {
492 long start
= new Date().getTime();
494 while (!pg
.isDone() && new Date().getTime() - start
< 30000) {
497 } catch (InterruptedException e
) {
498 getTraceHandler().error(e
);