remove double key handling
[fanfix.git] / src / be / nikiroo / fanfix / library / RemoteLibraryServer.java
CommitLineData
e42573a0 1package be.nikiroo.fanfix.library;
b0e88ebd 2
b0e88ebd 3import java.io.IOException;
edf79e5e 4import java.net.URL;
74a40dfb 5import java.util.ArrayList;
9b863b20 6import java.util.Date;
68e2c6d2 7import java.util.List;
b0e88ebd 8
e42573a0 9import be.nikiroo.fanfix.Instance;
74a40dfb 10import be.nikiroo.fanfix.data.Chapter;
b0e88ebd 11import be.nikiroo.fanfix.data.MetaData;
74a40dfb 12import be.nikiroo.fanfix.data.Paragraph;
085a2f9a 13import be.nikiroo.fanfix.data.Story;
b9ce9cad
NR
14import be.nikiroo.utils.Progress;
15import be.nikiroo.utils.Progress.ProgressListener;
416c54f8 16import be.nikiroo.utils.StringUtils;
b0e88ebd 17import be.nikiroo.utils.Version;
62c63b07
NR
18import be.nikiroo.utils.serial.server.ConnectActionServerObject;
19import be.nikiroo.utils.serial.server.ServerObject;
b0e88ebd 20
a85e8077 21/**
ea734ab4 22 * Create a new remote server that will listen for orders on the given port.
a85e8077 23 * <p>
ea734ab4
N
24 * The available commands are given as arrays of objects (first item is the
25 * command, the rest are the arguments).
2a25f781 26 * <p>
a85e8077 27 * <ul>
ea734ab4
N
28 * <li>PING: will return PONG if the key is accepted</li>
29 * <li>GET_METADATA *: will return the metadata of all the stories in the
30 * library (array)</li> *
37abe20c 31 * <li>GET_METADATA [luid]: will return the metadata of the story of LUID luid</li>
ea734ab4
N
32 * <li>GET_STORY [luid]: will return the given story if it exists (or NULL if
33 * not)</li>
34 * <li>SAVE_STORY [luid]: save the story (that must be sent just after the
0fa0fe95 35 * command) with the given LUID, then return the LUID</li>
37abe20c
NR
36 * <li>IMPORT [url]: save the story found at the given URL, then return the LUID
37 * </li>
ea734ab4
N
38 * <li>DELETE_STORY [luid]: delete the story of LUID luid</li>
39 * <li>GET_COVER [luid]: return the cover of the story</li>
40 * <li>GET_CUSTOM_COVER ["SOURCE"|"AUTHOR"] [source]: return the cover for this
41 * source/author</li>
42 * <li>SET_COVER ["SOURCE"|"AUTHOR"] [value] [luid]: set the default cover for
43 * the given source/author to the cover of the story denoted by luid</li>
44 * <li>CHANGE_SOURCE [luid] [new source]: change the source of the story of LUID
45 * luid</li>
46 * <li>EXIT: stop the server</li>
a85e8077
NR
47 * </ul>
48 *
49 * @author niki
50 */
62c63b07 51public class RemoteLibraryServer extends ServerObject {
a85e8077
NR
52 /**
53 * Create a new remote server (will not be active until
54 * {@link RemoteLibraryServer#start()} is called).
55 *
2070ced5
NR
56 * @param key
57 * the key that will restrict access to this server
a85e8077
NR
58 * @param port
59 * the port to listen on
60 *
61 * @throws IOException
62 * in case of I/O error
63 */
2070ced5 64 public RemoteLibraryServer(String key, int port) throws IOException {
3040c4f0 65 super("Fanfix remote library", port, key);
b9ce9cad
NR
66
67 setTraceHandler(Instance.getTraceHandler());
b0e88ebd
NR
68 }
69
70 @Override
62c63b07 71 protected Object onRequest(ConnectActionServerObject action,
b0e88ebd 72 Version clientVersion, Object data) throws Exception {
ea734ab4
N
73 long start = new Date().getTime();
74
085a2f9a
NR
75 String command = "";
76 Object[] args = new Object[0];
77 if (data instanceof Object[]) {
2070ced5 78 Object[] dataArray = (Object[]) data;
27eba894 79 if (dataArray.length > 0) {
ea734ab4 80 command = "" + dataArray[0];
edf79e5e 81
ea734ab4
N
82 args = new Object[dataArray.length - 1];
83 for (int i = 1; i < dataArray.length; i++) {
84 args[i - 1] = dataArray[i];
2070ced5 85 }
b0e88ebd
NR
86 }
87 }
88
652fd9b0 89 String trace = "[ " + command + "] ";
085a2f9a 90 for (Object arg : args) {
b9ce9cad 91 trace += arg + " ";
085a2f9a 92 }
49f3dec5 93 System.out.println(trace);
b0e88ebd 94
9f51d8ab
NR
95 Object rep = doRequest(action, command, args);
96
37abe20c
NR
97 String rec = StringUtils.formatNumber(action.getBytesReceived()) + "b";
98 String sent = StringUtils.formatNumber(action.getBytesSent()) + "b";
49f3dec5
NR
99 System.out.println(String.format("[>%s]: (%s sent, %s rec) in %d ms",
100 command, sent, rec, (new Date().getTime() - start)));
9f51d8ab
NR
101
102 return rep;
103 }
104
105 private Object doRequest(ConnectActionServerObject action, String command,
106 Object[] args) throws NoSuchFieldException, NoSuchMethodException,
107 ClassNotFoundException, IOException {
3bbc86a5
NR
108 if ("PING".equals(command)) {
109 return "PONG";
110 } else if ("GET_METADATA".equals(command)) {
7efece85 111 if ("*".equals(args[0])) {
9b863b20 112 Progress pg = createPgForwarder(action);
9f51d8ab
NR
113
114 List<MetaData> metas = new ArrayList<MetaData>();
652fd9b0 115
9f51d8ab
NR
116 for (MetaData meta : Instance.getLibrary().getMetas(pg)) {
117 MetaData light;
118 if (meta.getCover() == null) {
119 light = meta;
120 } else {
121 light = meta.clone();
122 light.setCover(null);
123 }
124
125 metas.add(light);
126 }
127
9b863b20 128 forcePgDoneSent(pg);
a85e8077
NR
129 return metas.toArray(new MetaData[] {});
130 }
e272f05f 131
37abe20c
NR
132 return new MetaData[] { Instance.getLibrary().getInfo(
133 (String) args[0]) };
a85e8077 134 } else if ("GET_STORY".equals(command)) {
7efece85 135 MetaData meta = Instance.getLibrary().getInfo((String) args[0]);
b9ce9cad
NR
136 meta = meta.clone();
137 meta.setCover(null);
138
139 action.send(meta);
140 action.rec();
141
37abe20c
NR
142 Story story = Instance.getLibrary()
143 .getStory((String) args[0], null);
b9ce9cad
NR
144 for (Object obj : breakStory(story)) {
145 action.send(obj);
146 action.rec();
147 }
085a2f9a 148 } else if ("SAVE_STORY".equals(command)) {
b9ce9cad
NR
149 List<Object> list = new ArrayList<Object>();
150
151 action.send(null);
152 Object obj = action.rec();
153 while (obj != null) {
154 list.add(obj);
155 action.send(null);
156 obj = action.rec();
157 }
158
159 Story story = rebuildStory(list);
7efece85 160 Instance.getLibrary().save(story, (String) args[0], null);
0fa0fe95 161 return story.getMeta().getLuid();
edf79e5e 162 } else if ("IMPORT".equals(command)) {
9b863b20 163 Progress pg = createPgForwarder(action);
37abe20c
NR
164 Story story = Instance.getLibrary().imprt(
165 new URL((String) args[0]), pg);
9b863b20 166 forcePgDoneSent(pg);
edf79e5e 167 return story.getMeta().getLuid();
085a2f9a 168 } else if ("DELETE_STORY".equals(command)) {
7efece85 169 Instance.getLibrary().delete((String) args[0]);
e604986c 170 } else if ("GET_COVER".equals(command)) {
7efece85 171 return Instance.getLibrary().getCover((String) args[0]);
3989dfc5
NR
172 } else if ("GET_CUSTOM_COVER".equals(command)) {
173 if ("SOURCE".equals(args[0])) {
37abe20c
NR
174 return Instance.getLibrary().getCustomSourceCover(
175 (String) args[1]);
3989dfc5 176 } else if ("AUTHOR".equals(args[0])) {
37abe20c
NR
177 return Instance.getLibrary().getCustomAuthorCover(
178 (String) args[1]);
3989dfc5
NR
179 } else {
180 return null;
181 }
182 } else if ("SET_COVER".equals(command)) {
183 if ("SOURCE".equals(args[0])) {
184 Instance.getLibrary().setSourceCover((String) args[1],
185 (String) args[2]);
186 } else if ("AUTHOR".equals(args[0])) {
187 Instance.getLibrary().setAuthorCover((String) args[1],
188 (String) args[2]);
189 }
c8d48938 190 } else if ("CHANGE_STA".equals(command)) {
9b863b20 191 Progress pg = createPgForwarder(action);
c8d48938
NR
192 Instance.getLibrary().changeSTA((String) args[0], (String) args[1],
193 (String) args[2], (String) args[3], pg);
9b863b20 194 forcePgDoneSent(pg);
5e848e6a
NR
195 } else if ("EXIT".equals(command)) {
196 stop(0, false);
b0e88ebd
NR
197 }
198
199 return null;
200 }
74a40dfb 201
b9ce9cad
NR
202 @Override
203 protected void onError(Exception e) {
204 getTraceHandler().error(e);
205 }
74a40dfb 206
b9ce9cad
NR
207 /**
208 * Break a story in multiple {@link Object}s for easier serialisation.
209 *
210 * @param story
211 * the {@link Story} to break
212 *
213 * @return the list of {@link Object}s
214 */
215 static List<Object> breakStory(Story story) {
216 List<Object> list = new ArrayList<Object>();
74a40dfb
NR
217
218 story = story.clone();
b9ce9cad 219 list.add(story);
74a40dfb 220
b9ce9cad
NR
221 if (story.getMeta().isImageDocument()) {
222 for (Chapter chap : story) {
223 list.add(chap);
224 list.addAll(chap.getParagraphs());
225 chap.setParagraphs(new ArrayList<Paragraph>());
74a40dfb 226 }
b9ce9cad 227 story.setChapters(new ArrayList<Chapter>());
74a40dfb 228 }
74a40dfb 229
b9ce9cad
NR
230 return list;
231 }
74a40dfb 232
b9ce9cad
NR
233 /**
234 * Rebuild a story from a list of broke up {@link Story} parts.
235 *
236 * @param list
237 * the list of {@link Story} parts
238 *
239 * @return the reconstructed {@link Story}
240 */
241 static Story rebuildStory(List<Object> list) {
74a40dfb 242 Story story = null;
b9ce9cad 243 Chapter chap = null;
74a40dfb 244
b9ce9cad
NR
245 for (Object obj : list) {
246 if (obj instanceof Story) {
247 story = (Story) obj;
248 } else if (obj instanceof Chapter) {
249 chap = (Chapter) obj;
250 story.getChapters().add(chap);
251 } else if (obj instanceof Paragraph) {
252 chap.getParagraphs().add((Paragraph) obj);
74a40dfb
NR
253 }
254 }
255
256 return story;
257 }
258
b9ce9cad
NR
259 /**
260 * Update the {@link Progress} with the adequate {@link Object} received
261 * from the network via {@link RemoteLibraryServer}.
262 *
263 * @param pg
264 * the {@link Progress} to update
265 * @param rep
266 * the object received from the network
267 *
268 * @return TRUE if it was a progress event, FALSE if not
269 */
270 static boolean updateProgress(Progress pg, Object rep) {
271 if (rep instanceof Integer[]) {
272 Integer[] a = (Integer[]) rep;
273 if (a.length == 3) {
274 int min = a[0];
275 int max = a[1];
276 int progress = a[2];
277
278 if (min >= 0 && min <= max) {
279 pg.setMinMax(min, max);
280 pg.setProgress(progress);
281
282 return true;
283 }
284 }
74a40dfb 285 }
b9ce9cad
NR
286
287 return false;
74a40dfb
NR
288 }
289
b9ce9cad
NR
290 /**
291 * Create a {@link Progress} that will forward its progress over the
292 * network.
293 *
294 * @param action
295 * the {@link ConnectActionServerObject} to use to forward it
296 *
297 * @return the {@link Progress}
298 */
49f3dec5 299 private Progress createPgForwarder(final ConnectActionServerObject action) {
9b863b20
NR
300 final Boolean[] isDoneForwarded = new Boolean[] { false };
301 final Progress pg = new Progress() {
302 @Override
303 public boolean isDone() {
304 return isDoneForwarded[0];
305 }
306 };
307
b9ce9cad 308 final Integer[] p = new Integer[] { -1, -1, -1 };
9b863b20 309 final Long[] lastTime = new Long[] { new Date().getTime() };
b9ce9cad
NR
310 pg.addProgressListener(new ProgressListener() {
311 @Override
312 public void progress(Progress progress, String name) {
313 int min = pg.getMin();
314 int max = pg.getMax();
37abe20c
NR
315 int relativeProgress = min
316 + (int) Math.round(pg.getRelativeProgress()
317 * (max - min));
b9ce9cad 318
9b863b20
NR
319 // Do not re-send the same value twice over the wire,
320 // unless more than 2 seconds have elapsed (to maintain the
321 // connection)
322 if ((p[0] != min || p[1] != max || p[2] != relativeProgress)
323 || (new Date().getTime() - lastTime[0] > 2000)) {
b9ce9cad
NR
324 p[0] = min;
325 p[1] = max;
326 p[2] = relativeProgress;
327
328 try {
37abe20c 329 action.send(new Integer[] { min, max, relativeProgress });
b9ce9cad
NR
330 action.rec();
331 } catch (Exception e) {
49f3dec5 332 getTraceHandler().error(e);
b9ce9cad 333 }
9b863b20 334
9b863b20 335 lastTime[0] = new Date().getTime();
b9ce9cad 336 }
652fd9b0
NR
337
338 isDoneForwarded[0] = (pg.getProgress() >= pg.getMax());
b9ce9cad
NR
339 }
340 });
341
342 return pg;
74a40dfb 343 }
9b863b20
NR
344
345 // with 30 seconds timeout
49f3dec5 346 private void forcePgDoneSent(Progress pg) {
9b863b20
NR
347 long start = new Date().getTime();
348 pg.done();
349 while (!pg.isDone() && new Date().getTime() - start < 30000) {
350 try {
351 Thread.sleep(100);
352 } catch (InterruptedException e) {
49f3dec5 353 getTraceHandler().error(e);
9b863b20
NR
354 }
355 }
356 }
b0e88ebd 357}