...
[nikiroo-utils.git] / src / be / nikiroo / utils / serial / SerialUtils.java
CommitLineData
db31c358
NR
1package be.nikiroo.utils.serial;
2
564bbbdb 3import java.io.ByteArrayInputStream;
e570f7eb 4import java.io.IOException;
68532958 5import java.io.InputStream;
db31c358 6import java.io.NotSerializableException;
68532958
NR
7import java.io.OutputStream;
8import java.io.UnsupportedEncodingException;
ce0974c4 9import java.lang.reflect.Array;
8c8da42a 10import java.lang.reflect.Constructor;
db31c358 11import java.lang.reflect.Field;
e570f7eb 12import java.lang.reflect.Modifier;
f4053377 13import java.net.URL;
72648e75 14import java.util.ArrayList;
db31c358 15import java.util.HashMap;
72648e75 16import java.util.List;
db31c358 17import java.util.Map;
ce0974c4 18import java.util.UnknownFormatConversionException;
db31c358 19
dc41a952 20import be.nikiroo.utils.IOUtils;
80500544 21import be.nikiroo.utils.Image;
3b4319db 22import be.nikiroo.utils.StringUtils;
52fb9a56
NR
23import be.nikiroo.utils.streams.NextableInputStream;
24import be.nikiroo.utils.streams.NextableInputStreamStep;
e570f7eb 25
db31c358 26/**
8c8da42a 27 * Small class to help with serialisation.
db31c358
NR
28 * <p>
29 * Note that we do not support inner classes (but we do support nested classes)
30 * and all objects require an empty constructor to be deserialised.
5bc55b51
NR
31 * <p>
32 * It is possible to add support to custom types (both the encoder and the
33 * decoder will require the custom classes) -- see {@link CustomSerializer}.
34 * <p>
35 * Default supported types are:
36 * <ul>
37 * <li>NULL (as a null value)</li>
38 * <li>String</li>
39 * <li>Boolean</li>
40 * <li>Byte</li>
41 * <li>Character</li>
42 * <li>Short</li>
43 * <li>Long</li>
44 * <li>Float</li>
45 * <li>Double</li>
46 * <li>Integer</li>
47 * <li>Enum (any enum whose name and value is known by the caller)</li>
48 * <li>java.awt.image.BufferedImage (as a {@link CustomSerializer})</li>
49 * <li>An array of the above (as a {@link CustomSerializer})</li>
f4053377 50 * <li>URL</li>
5bc55b51 51 * </ul>
db31c358
NR
52 *
53 * @author niki
54 */
aad14586 55public class SerialUtils {
db31c358
NR
56 private static Map<String, CustomSerializer> customTypes;
57
58 static {
59 customTypes = new HashMap<String, CustomSerializer>();
ce0974c4
NR
60
61 // Array types:
62 customTypes.put("[]", new CustomSerializer() {
63 @Override
143a64f4
NR
64 protected void toStream(OutputStream out, Object value)
65 throws IOException {
3b4319db
NR
66
67 // TODO: we use \n to separate, and b64 to un-\n
68 // -- but we could use \\n ?
ce0974c4
NR
69 String type = value.getClass().getCanonicalName();
70 type = type.substring(0, type.length() - 2); // remove the []
71
dc41a952 72 write(out, type);
ce0974c4
NR
73 try {
74 for (int i = 0; true; i++) {
75 Object item = Array.get(value, i);
23cf894d 76
ce0974c4 77 // encode it normally if direct value
23cf894d 78 write(out, "\r");
143a64f4 79 if (!SerialUtils.encode(out, item)) {
ce0974c4 80 try {
4d319565
NR
81 // TODO: bad escaping?
82 write(out, "B64:");
83 OutputStream bout = StringUtils.base64(out,
84 false, false);
85 new Exporter(bout).append(item);
ce0974c4
NR
86 } catch (NotSerializableException e) {
87 throw new UnknownFormatConversionException(e
88 .getMessage());
89 }
90 }
ce0974c4
NR
91 }
92 } catch (ArrayIndexOutOfBoundsException e) {
93 // Done.
94 }
ce0974c4
NR
95 }
96
143a64f4
NR
97 @Override
98 protected Object fromStream(InputStream in) throws IOException {
dc41a952 99 NextableInputStream stream = new NextableInputStream(in,
4d319565 100 new NextableInputStreamStep('\r'));
ce0974c4
NR
101
102 try {
dc41a952
NR
103 List<Object> list = new ArrayList<Object>();
104 stream.next();
105 String type = IOUtils.readSmallStream(stream);
106
107 while (stream.next()) {
108 Object value = new Importer().read(stream).getValue();
109 list.add(value);
110 }
111
ce0974c4 112 Object array = Array.newInstance(
dc41a952
NR
113 SerialUtils.getClass(type), list.size());
114 for (int i = 0; i < list.size(); i++) {
115 Array.set(array, i, list.get(i));
ce0974c4
NR
116 }
117
118 return array;
119 } catch (Exception e) {
452f38c8
NR
120 if (e instanceof IOException) {
121 throw (IOException) e;
122 }
123 throw new IOException(e.getMessage());
ce0974c4
NR
124 }
125 }
dc41a952
NR
126
127 @Override
128 protected String getType() {
129 return "[]";
130 }
ce0974c4 131 });
e570f7eb 132
f4053377
NR
133 // URL:
134 customTypes.put("java.net.URL", new CustomSerializer() {
135 @Override
dc41a952
NR
136 protected void toStream(OutputStream out, Object value)
137 throws IOException {
138 String val = "";
f4053377 139 if (value != null) {
dc41a952 140 val = ((URL) value).toString();
f4053377 141 }
dc41a952
NR
142
143 out.write(val.getBytes("UTF-8"));
f4053377
NR
144 }
145
146 @Override
dc41a952
NR
147 protected Object fromStream(InputStream in) throws IOException {
148 String val = IOUtils.readSmallStream(in);
149 if (!val.isEmpty()) {
150 return new URL(val);
f4053377 151 }
dc41a952 152
f4053377
NR
153 return null;
154 }
155
156 @Override
157 protected String getType() {
158 return "java.net.URL";
159 }
160 });
161
e570f7eb 162 // Images (this is currently the only supported image type by default)
80500544 163 customTypes.put("be.nikiroo.utils.Image", new CustomSerializer() {
e570f7eb 164 @Override
dc41a952
NR
165 protected void toStream(OutputStream out, Object value)
166 throws IOException {
167 Image img = (Image) value;
168 OutputStream encoded = StringUtils.base64(out, false, false);
169 try {
170 InputStream in = img.newInputStream();
171 try {
172 IOUtils.write(in, encoded);
173 } finally {
174 in.close();
175 }
176 } finally {
177 encoded.close();
178 }
e570f7eb
NR
179 }
180
181 @Override
182 protected String getType() {
80500544 183 return "be.nikiroo.utils.Image";
e570f7eb
NR
184 }
185
186 @Override
dc41a952 187 protected Object fromStream(InputStream in) throws IOException {
e570f7eb 188 try {
dc41a952 189 return new Image(in);
e570f7eb
NR
190 } catch (IOException e) {
191 throw new UnknownFormatConversionException(e.getMessage());
192 }
193 }
194 });
db31c358 195 }
8c8da42a 196
aad14586
NR
197 /**
198 * Create an empty object of the given type.
199 *
200 * @param type
201 * the object type (its class name)
202 *
203 * @return the new object
204 *
8c8da42a
NR
205 * @throws ClassNotFoundException
206 * if the class cannot be found
207 * @throws NoSuchMethodException
208 * if the given class is not compatible with this code
aad14586 209 */
8c8da42a
NR
210 public static Object createObject(String type)
211 throws ClassNotFoundException, NoSuchMethodException {
aad14586 212
72648e75 213 String desc = null;
aad14586
NR
214 try {
215 Class<?> clazz = getClass(type);
aad14586 216 String className = clazz.getName();
72648e75
NR
217 List<Object> args = new ArrayList<Object>();
218 List<Class<?>> classes = new ArrayList<Class<?>>();
aad14586
NR
219 Constructor<?> ctor = null;
220 if (className.contains("$")) {
72648e75
NR
221 for (String parentName = className.substring(0,
222 className.lastIndexOf('$'));; parentName = parentName
949445ee 223 .substring(0, parentName.lastIndexOf('$'))) {
72648e75
NR
224 Object parent = createObject(parentName);
225 args.add(parent);
226 classes.add(parent.getClass());
949445ee 227
72648e75
NR
228 if (!parentName.contains("$")) {
229 break;
230 }
231 }
232
233 // Better error description in case there is no empty
234 // constructor:
235 desc = "";
236 String end = "";
237 for (Class<?> parent = clazz; parent != null
238 && !parent.equals(Object.class); parent = parent
949445ee 239 .getSuperclass()) {
72648e75
NR
240 if (!desc.isEmpty()) {
241 desc += " [:";
242 end += "]";
243 }
244 desc += parent;
245 }
246 desc += end;
247 //
248
cd26ee07
NR
249 try {
250 ctor = clazz.getDeclaredConstructor(classes
251 .toArray(new Class[] {}));
252 } catch (NoSuchMethodException nsme) {
564bbbdb 253 // TODO: it seems we do not always need a parameter for each
cd26ee07
NR
254 // level, so we currently try "ALL" levels or "FIRST" level
255 // only -> we should check the actual rule and use it
256 ctor = clazz.getDeclaredConstructor(classes.get(0));
257 Object firstParent = args.get(0);
258 args.clear();
259 args.add(firstParent);
260 }
72648e75 261 desc = null;
aad14586 262 } else {
aad14586
NR
263 ctor = clazz.getDeclaredConstructor();
264 }
265
266 ctor.setAccessible(true);
72648e75 267 return ctor.newInstance(args.toArray());
8c8da42a
NR
268 } catch (ClassNotFoundException e) {
269 throw e;
aad14586 270 } catch (NoSuchMethodException e) {
72648e75 271 if (desc != null) {
949445ee
NR
272 throw new NoSuchMethodException("Empty constructor not found: "
273 + desc);
72648e75 274 }
8c8da42a
NR
275 throw e;
276 } catch (Exception e) {
277 throw new NoSuchMethodException("Cannot instantiate: " + type);
aad14586 278 }
aad14586 279 }
db31c358 280
8c8da42a
NR
281 /**
282 * Insert a custom serialiser that will take precedence over the default one
283 * or the target class.
284 *
285 * @param serializer
286 * the custom serialiser
287 */
db31c358
NR
288 static public void addCustomSerializer(CustomSerializer serializer) {
289 customTypes.put(serializer.getType(), serializer);
290 }
291
8c8da42a 292 /**
68532958 293 * Serialise the given object into this {@link OutputStream}.
8c8da42a
NR
294 * <p>
295 * <b>Important: </b>If the operation fails (with a
296 * {@link NotSerializableException}), the {@link StringBuilder} will be
297 * corrupted (will contain bad, most probably not importable data).
298 *
68532958
NR
299 * @param out
300 * the output {@link OutputStream} to serialise to
8c8da42a
NR
301 * @param o
302 * the object to serialise
303 * @param map
304 * the map of already serialised objects (if the given object or
305 * one of its descendant is already present in it, only an ID
306 * will be serialised)
307 *
308 * @throws NotSerializableException
309 * if the object cannot be serialised (in this case, the
310 * {@link StringBuilder} can contain bad, most probably not
311 * importable data)
68532958
NR
312 * @throws IOException
313 * in case of I/O errors
8c8da42a 314 */
68532958
NR
315 static void append(OutputStream out, Object o, Map<Integer, Object> map)
316 throws NotSerializableException, IOException {
db31c358
NR
317
318 Field[] fields = new Field[] {};
319 String type = "";
320 String id = "NULL";
321
322 if (o != null) {
323 int hash = System.identityHashCode(o);
324 fields = o.getClass().getDeclaredFields();
325 type = o.getClass().getCanonicalName();
326 if (type == null) {
72648e75
NR
327 // Anonymous inner classes support
328 type = o.getClass().getName();
db31c358
NR
329 }
330 id = Integer.toString(hash);
331 if (map.containsKey(hash)) {
332 fields = new Field[] {};
333 } else {
334 map.put(hash, o);
335 }
336 }
337
68532958
NR
338 write(out, "{\nREF ");
339 write(out, type);
340 write(out, "@");
341 write(out, id);
342 write(out, ":");
343
344 if (!encode(out, o)) { // check if direct value
ce0974c4
NR
345 try {
346 for (Field field : fields) {
347 field.setAccessible(true);
db31c358 348
e570f7eb
NR
349 if (field.getName().startsWith("this$")
350 || field.isSynthetic()
351 || (field.getModifiers() & Modifier.STATIC) == Modifier.STATIC) {
ce0974c4 352 // Do not keep this links of nested classes
e570f7eb
NR
353 // Do not keep synthetic fields
354 // Do not keep final fields
ce0974c4
NR
355 continue;
356 }
db31c358 357
68532958
NR
358 write(out, "\n");
359 write(out, field.getName());
360 write(out, ":");
db31c358 361
68532958 362 Object value = field.get(o);
db31c358 363
68532958
NR
364 if (!encode(out, value)) {
365 write(out, "\n");
366 append(out, value, map);
ce0974c4 367 }
db31c358 368 }
ce0974c4
NR
369 } catch (IllegalArgumentException e) {
370 e.printStackTrace(); // should not happen (see
371 // setAccessible)
372 } catch (IllegalAccessException e) {
373 e.printStackTrace(); // should not happen (see
374 // setAccessible)
db31c358 375 }
db31c358 376 }
db31c358
NR
377 }
378
5bc55b51 379 /**
68532958
NR
380 * Encode the object into the given {@link OutputStream} if possible and if
381 * supported.
949445ee
NR
382 * <p>
383 * A supported object in this context means an object we can directly
384 * encode, like an Integer or a String. Custom objects and arrays are also
385 * considered supported, but <b>compound objects are not supported here</b>.
386 * <p>
387 * For compound objects, you should use {@link Exporter}.
5bc55b51 388 *
68532958
NR
389 * @param out
390 * the {@link OutputStream} to append to
5bc55b51
NR
391 * @param value
392 * the object to encode (can be NULL, which will be encoded)
393 *
68532958
NR
394 * @return TRUE if success, FALSE if not (the content of the
395 * {@link OutputStream} won't be changed in case of failure)
396 *
397 * @throws IOException
398 * in case of I/O error
5bc55b51 399 */
68532958 400 static boolean encode(OutputStream out, Object value) throws IOException {
db31c358 401 if (value == null) {
68532958 402 write(out, "NULL");
72648e75
NR
403 } else if (value.getClass().getSimpleName().endsWith("[]")) {
404 // Simple name does support [] suffix and do not return NULL for
405 // inner anonymous classes
3b4319db 406 customTypes.get("[]").encode(out, value);
db31c358 407 } else if (customTypes.containsKey(value.getClass().getCanonicalName())) {
3b4319db 408 customTypes.get(value.getClass().getCanonicalName())//
68532958 409 .encode(out, value);
db31c358 410 } else if (value instanceof String) {
68532958 411 encodeString(out, (String) value);
db31c358 412 } else if (value instanceof Boolean) {
68532958 413 write(out, value);
db31c358 414 } else if (value instanceof Byte) {
68532958
NR
415 write(out, value);
416 write(out, "b");
db31c358 417 } else if (value instanceof Character) {
68532958
NR
418 encodeString(out, "" + value);
419 write(out, "c");
db31c358 420 } else if (value instanceof Short) {
68532958
NR
421 write(out, value);
422 write(out, "s");
db31c358 423 } else if (value instanceof Integer) {
68532958 424 write(out, value);
db31c358 425 } else if (value instanceof Long) {
68532958
NR
426 write(out, value);
427 write(out, "L");
db31c358 428 } else if (value instanceof Float) {
68532958
NR
429 write(out, value);
430 write(out, "F");
db31c358 431 } else if (value instanceof Double) {
68532958
NR
432 write(out, value);
433 write(out, "d");
e570f7eb
NR
434 } else if (value instanceof Enum) {
435 String type = value.getClass().getCanonicalName();
68532958
NR
436 write(out, type);
437 write(out, ".");
438 write(out, ((Enum<?>) value).name());
439 write(out, ";");
db31c358
NR
440 } else {
441 return false;
442 }
443
444 return true;
445 }
446
5bc55b51 447 /**
949445ee
NR
448 * Decode the data into an equivalent supported source object.
449 * <p>
450 * A supported object in this context means an object we can directly
451 * encode, like an Integer or a String. Custom objects and arrays are also
452 * considered supported, but <b>compound objects are not supported here</b>.
453 * <p>
454 * For compound objects, you should use {@link Importer}.
5bc55b51
NR
455 *
456 * @param encodedValue
457 * the encoded data, cannot be NULL
458 *
459 * @return the object (can be NULL for NULL encoded values)
460 *
452f38c8 461 * @throws IOException
5bc55b51
NR
462 * if the content cannot be converted
463 */
452f38c8 464 static Object decode(String encodedValue) throws IOException {
5bc55b51 465 try {
452f38c8
NR
466 String cut = "";
467 if (encodedValue.length() > 1) {
468 cut = encodedValue.substring(0, encodedValue.length() - 1);
469 }
470
5bc55b51
NR
471 if (CustomSerializer.isCustom(encodedValue)) {
472 // custom:TYPE_NAME:"content is String-encoded"
473 String type = CustomSerializer.typeOf(encodedValue);
474 if (customTypes.containsKey(type)) {
564bbbdb
NR
475 // TODO: we should start with a stream
476 InputStream streamEncodedValue = new ByteArrayInputStream(
477 encodedValue.getBytes("UTF-8"));
478 try {
479 return customTypes.get(type).decode(streamEncodedValue);
480 } finally {
481 streamEncodedValue.close();
482 }
5bc55b51 483 }
452f38c8 484 throw new IOException("Unknown custom type: " + type);
5bc55b51
NR
485 } else if (encodedValue.equals("NULL")
486 || encodedValue.equals("null")) {
487 return null;
488 } else if (encodedValue.endsWith("\"")) {
489 return decodeString(encodedValue);
490 } else if (encodedValue.equals("true")) {
491 return true;
492 } else if (encodedValue.equals("false")) {
493 return false;
494 } else if (encodedValue.endsWith("b")) {
495 return Byte.parseByte(cut);
496 } else if (encodedValue.endsWith("c")) {
497 return decodeString(cut).charAt(0);
498 } else if (encodedValue.endsWith("s")) {
499 return Short.parseShort(cut);
500 } else if (encodedValue.endsWith("L")) {
501 return Long.parseLong(cut);
502 } else if (encodedValue.endsWith("F")) {
503 return Float.parseFloat(cut);
504 } else if (encodedValue.endsWith("d")) {
505 return Double.parseDouble(cut);
506 } else if (encodedValue.endsWith(";")) {
507 return decodeEnum(encodedValue);
508 } else {
509 return Integer.parseInt(encodedValue);
db31c358 510 }
5bc55b51 511 } catch (Exception e) {
452f38c8
NR
512 if (e instanceof IOException) {
513 throw (IOException) e;
5bc55b51 514 }
452f38c8 515 throw new IOException(e.getMessage());
db31c358
NR
516 }
517 }
8c8da42a 518
68532958
NR
519 /**
520 * Write the given {@link String} into the given {@link OutputStream} in
521 * UTF-8.
522 *
523 * @param out
524 * the {@link OutputStream}
525 * @param data
526 * the data to write, cannot be NULL
527 *
528 * @throws IOException
529 * in case of I/O error
530 */
531 static void write(OutputStream out, Object data) throws IOException {
532 try {
533 out.write(data.toString().getBytes("UTF-8"));
534 } catch (UnsupportedEncodingException e) {
535 // A conforming JVM is required to support UTF-8
536 e.printStackTrace();
537 }
538 }
539
8c8da42a
NR
540 /**
541 * Return the corresponding class or throw an {@link Exception} if it
542 * cannot.
543 *
544 * @param type
545 * the class name to look for
546 *
547 * @return the class (will never be NULL)
548 *
549 * @throws ClassNotFoundException
550 * if the class cannot be found
551 * @throws NoSuchMethodException
552 * if the class cannot be created (usually because it or its
553 * enclosing class doesn't have an empty constructor)
554 */
555 static private Class<?> getClass(String type)
556 throws ClassNotFoundException, NoSuchMethodException {
aad14586
NR
557 Class<?> clazz = null;
558 try {
559 clazz = Class.forName(type);
560 } catch (ClassNotFoundException e) {
561 int pos = type.length();
562 pos = type.lastIndexOf(".", pos);
563 if (pos >= 0) {
564 String parentType = type.substring(0, pos);
565 String nestedType = type.substring(pos + 1);
566 Class<?> javaParent = null;
567 try {
568 javaParent = getClass(parentType);
569 parentType = javaParent.getName();
570 clazz = Class.forName(parentType + "$" + nestedType);
571 } catch (Exception ee) {
572 }
db31c358 573
aad14586
NR
574 if (javaParent == null) {
575 throw new NoSuchMethodException(
576 "Class not found: "
577 + type
578 + " (the enclosing class cannot be created: maybe it doesn't have an empty constructor?)");
579 }
580 }
581 }
582
8c8da42a
NR
583 if (clazz == null) {
584 throw new ClassNotFoundException("Class not found: " + type);
585 }
586
aad14586
NR
587 return clazz;
588 }
8c8da42a 589
e570f7eb 590 @SuppressWarnings({ "unchecked", "rawtypes" })
68532958 591 static private Enum<?> decodeEnum(String escaped) {
e570f7eb
NR
592 // escaped: be.xxx.EnumType.VALUE;
593 int pos = escaped.lastIndexOf(".");
594 String type = escaped.substring(0, pos);
595 String name = escaped.substring(pos + 1, escaped.length() - 1);
596
597 try {
598 return Enum.valueOf((Class<Enum>) getClass(type), name);
599 } catch (Exception e) {
e570f7eb
NR
600 throw new UnknownFormatConversionException("Unknown enum: <" + type
601 + "> " + name);
602 }
603 }
604
db31c358 605 // aa bb -> "aa\tbb"
68532958 606 static void encodeString(OutputStream out, String raw) throws IOException {
3b4319db 607 // TODO: not. efficient.
68532958
NR
608 out.write('\"');
609 // TODO !! utf-8 required
db31c358 610 for (char car : raw.toCharArray()) {
68532958
NR
611 encodeString(out, car);
612 }
613 out.write('\"');
614 }
615
616 // aa bb -> "aa\tbb"
617 static void encodeString(OutputStream out, InputStream raw)
618 throws IOException {
619 out.write('\"');
564bbbdb 620 byte buffer[] = new byte[4096];
68532958
NR
621 for (int len = 0; (len = raw.read(buffer)) > 0;) {
622 for (int i = 0; i < len; i++) {
623 // TODO: not 100% correct, look up howto for UTF-8
624 encodeString(out, (char) buffer[i]);
db31c358
NR
625 }
626 }
68532958
NR
627 out.write('\"');
628 }
629
630 // for encode string, NOT to encode a char by itself!
631 static void encodeString(OutputStream out, char raw) throws IOException {
632 switch (raw) {
633 case '\\':
634 out.write('\\');
635 out.write('\\');
636 break;
637 case '\r':
638 out.write('\\');
639 out.write('r');
640 break;
641 case '\n':
642 out.write('\\');
643 out.write('n');
644 break;
645 case '"':
646 out.write('\\');
647 out.write('\"');
648 break;
649 default:
650 out.write(raw);
651 break;
652 }
db31c358
NR
653 }
654
655 // "aa\tbb" -> aa bb
68532958 656 static String decodeString(String escaped) {
db31c358
NR
657 StringBuilder builder = new StringBuilder();
658
659 boolean escaping = false;
660 for (char car : escaped.toCharArray()) {
661 if (!escaping) {
662 if (car == '\\') {
663 escaping = true;
664 } else {
665 builder.append(car);
666 }
667 } else {
668 switch (car) {
669 case '\\':
670 builder.append('\\');
671 break;
672 case 'r':
673 builder.append('\r');
674 break;
675 case 'n':
676 builder.append('\n');
677 break;
678 case '"':
679 builder.append('"');
680 break;
681 }
682 escaping = false;
683 }
684 }
685
0988831f 686 return builder.substring(1, builder.length() - 1);
db31c358
NR
687 }
688}