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