save bpph list into file cache
[ppastats.git] / src / lp_json.c
index 6034120..a2b88f6 100644 (file)
 #define _XOPEN_SOURCE
 #include <time.h>
 
-
 #include <stdlib.h>
 #include <stdio.h>
+#include <string.h>
+#include <time.h>
 
 #include "lp_json.h"
 #include "lp_ws.h"
 
-struct bpph *json_object_to_bpph(json_object *o)
+static struct bpph *json_to_bpph(json_object *o)
 {
        const char *binary_package_name;
        const char *binary_package_version;
        const char *distro_arch_series_link;
        const char *self_link;
        int architecture_specific;
+       const char *date_created;
+       struct bpph *bpph;
 
        binary_package_name = json_object_get_string
                (json_object_object_get(o, "binary_package_name"));
@@ -53,11 +56,63 @@ struct bpph *json_object_to_bpph(json_object *o)
        else
                architecture_specific = 0;
 
-       return bpph_new(binary_package_name,
-                       binary_package_version,
-                       distro_arch_series_link,
-                       self_link,
-                       architecture_specific);
+       bpph =  bpph_new(binary_package_name,
+                        binary_package_version,
+                        distro_arch_series_link,
+                        self_link,
+                        architecture_specific);
+
+       date_created = json_object_get_string
+               (json_object_object_get(o, "date_created"));
+       if (date_created) {
+               bpph->date_created.tm_isdst = -1;
+               strptime(date_created, "%FT%T%z", &bpph->date_created);
+       }
+
+       return bpph;
+}
+
+static json_object *bpph_to_json(struct bpph *bpph)
+{
+       json_object *json;
+       char *date;
+
+       json = json_object_new_object();
+
+       json_object_object_add
+               (json,
+                "binary_package_name",
+                json_object_new_string(bpph->binary_package_name));
+
+       json_object_object_add
+               (json,
+                "binary_package_version",
+                json_object_new_string(bpph->binary_package_version));
+
+       json_object_object_add
+               (json,
+                "distro_arch_series_link",
+                json_object_new_string(bpph->distro_arch_series_link));
+
+       json_object_object_add
+               (json,
+                "architecture_specific",
+                json_object_new_boolean(bpph->architecture_specific));
+
+       date = malloc(strlen("YY-MM-DDThh:mm:ss+xxx") + 1);
+       strftime(date,
+                strlen("YY-MM-DDThh:mm:ss+xxx") + 1,
+                "%FT%T%z",
+                &bpph->date_created);
+
+       json_object_object_add
+               (json,
+                "date_created",
+                json_object_new_string(date));
+
+       free(date);
+
+       return json;
 }
 
 struct distro_arch_series *json_object_to_distro_arch_series(json_object *o)
@@ -68,7 +123,6 @@ struct distro_arch_series *json_object_to_distro_arch_series(json_object *o)
        boolean is_nominated_arch_indep;
        const char *distroseries_link;
 
-
        display_name = json_object_get_string
                (json_object_object_get(o, "display_name"));
 
@@ -134,8 +188,8 @@ struct bpph **json_object_to_bpph_list(json_object *o)
                (sizeof(struct bpph *)*(n+1));
 
        for (i = 0, i2 = 0; i < n; i++) {
-               h = json_object_to_bpph(json_object_array_get_idx(o_entries,
-                                                                 i));
+               h = json_to_bpph(json_object_array_get_idx(o_entries,
+                                                          i));
 
                if (!h->architecture_specific) {
                        distro = get_distro_arch_series
@@ -155,6 +209,22 @@ struct bpph **json_object_to_bpph_list(json_object *o)
        return entries;
 }
 
+json_object *bpph_list_to_json(struct bpph **list)
+{
+       json_object *result, *entries;
+       struct bpph **cur;
+
+       result = json_object_new_object();
+
+       entries = json_object_new_array();
+       json_object_object_add(result, "entries", entries);
+
+       for (cur = list; *cur; cur++)
+               json_object_array_add(entries, bpph_to_json(*cur));
+
+       return result;
+}
+
 struct daily_download_total *
 json_object_to_daily_download_total(const char *d, json_object *o_c)
 {