JsonIO: fix progress
[fanfix.git] / src / be / nikiroo / fanfix / data / JsonIO.java
index 1f70f0a89adef193e3a5b43fcd719952e49fc4fa..c31ddd00940cd14c287d2401b4ff53bf93813b6d 100644 (file)
@@ -8,6 +8,7 @@ import org.json.JSONException;
 import org.json.JSONObject;
 
 import be.nikiroo.fanfix.data.Paragraph.ParagraphType;
+import be.nikiroo.utils.Progress;
 
 public class JsonIO {
        static public JSONObject toJson(MetaData meta) {
@@ -31,6 +32,8 @@ public class JsonIO {
                put(json, "subject", meta.getSubject());
                put(json, "type", meta.getType());
                put(json, "uuid", meta.getUuid());
+               put(json, "fake_cover", meta.isFakeCover());
+               put(json, "image_document", meta.isImageDocument());
 
                put(json, "resume", toJson(meta.getResume()));
                put(json, "tags", new JSONArray(meta.getTags()));
@@ -68,6 +71,8 @@ public class JsonIO {
                meta.setSubject(getString(json, "subject"));
                meta.setType(getString(json, "type"));
                meta.setUuid(getString(json, "uuid"));
+               meta.setFakeCover(getBoolean(json, "fake_cover", false));
+               meta.setImageDocument(getBoolean(json, "image_document", false));
 
                meta.setResume(toChapter(getJson(json, "resume")));
                meta.setTags(toListString(getJsonArr(json, "tags")));
@@ -196,6 +201,59 @@ public class JsonIO {
                return para;
        }
 
+       static public JSONObject toJson(Progress pg) {
+               return toJson(pg, null);
+       }
+
+       static private JSONObject toJson(Progress pg, Double weight) {
+               if (pg == null) {
+                       return null;
+               }
+
+               JSONObject json = new JSONObject();
+
+               put(json, "", Progress.class.getName());
+               put(json, "name", pg.getName());
+               put(json, "min", pg.getMin());
+               put(json, "max", pg.getMax());
+               put(json, "progress", pg.getRelativeProgress());
+               put(json, "weight", weight);
+
+               List<JSONObject> children = new ArrayList<JSONObject>();
+               for (Progress child : pg.getChildren()) {
+                       children.add(toJson(child, pg.getWeight(child)));
+               }
+               put(json, "children", new JSONArray(children));
+
+               return json;
+       }
+
+       static public Progress toProgress(JSONObject json) {
+               if (json == null) {
+                       return null;
+               }
+
+               Progress pg = new Progress( //
+                               getString(json, "name"), //
+                               getInt(json, "min", 0), //
+                               getInt(json, "max", 100) //
+               );
+
+               pg.setRelativeProgress(getDouble(json, "progress", 0));
+
+               JSONArray jchildren = getJsonArr(json, "children");
+               for (int i = 0; i < jchildren.length(); i++) {
+                       try {
+                               JSONObject jchild = jchildren.getJSONObject(i);
+                               Double weight = getDouble(jchild, "weight", 0);
+                               pg.addProgress(toProgress(jchild), weight);
+                       } catch (Exception e) {
+                       }
+               }
+
+               return pg;
+       }
+
        static public List<String> toListString(JSONArray array) {
                if (array != null) {
                        List<String> values = new ArrayList<String>();
@@ -252,8 +310,44 @@ public class JsonIO {
        static long getLong(JSONObject json, String key, long def) {
                if (json.has(key)) {
                        Object o = json.get(key);
-                       if (o instanceof Long) {
+                       if (o instanceof Byte)
+                               return (Byte) o;
+                       if (o instanceof Short)
+                               return (Short) o;
+                       if (o instanceof Integer)
+                               return (Integer) o;
+                       if (o instanceof Long)
+                               return (Long) o;
+               }
+
+               return def;
+       }
+
+       static double getDouble(JSONObject json, String key, double def) {
+               if (json.has(key)) {
+                       Object o = json.get(key);
+                       if (o instanceof Byte)
+                               return (Byte) o;
+                       if (o instanceof Short)
+                               return (Short) o;
+                       if (o instanceof Integer)
+                               return (Integer) o;
+                       if (o instanceof Long)
                                return (Long) o;
+                       if (o instanceof Float)
+                               return (Float) o;
+                       if (o instanceof Double)
+                               return (Double) o;
+               }
+
+               return def;
+       }
+
+       static boolean getBoolean(JSONObject json, String key, boolean def) {
+               if (json.has(key)) {
+                       Object o = json.get(key);
+                       if (o instanceof Boolean) {
+                               return (Boolean) o;
                        }
                }
 
@@ -263,8 +357,17 @@ public class JsonIO {
        static int getInt(JSONObject json, String key, int def) {
                if (json.has(key)) {
                        Object o = json.get(key);
-                       if (o instanceof Integer) {
+                       if (o instanceof Byte)
+                               return (Byte) o;
+                       if (o instanceof Short)
+                               return (Short) o;
+                       if (o instanceof Integer)
                                return (Integer) o;
+                       if (o instanceof Long) {
+                               try {
+                                       return (int) (long) ((Long) o);
+                               } catch (Exception e) {
+                               }
                        }
                }