X-Git-Url: http://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Flp_json.h;h=ca082dd9e8a673f19a8dfbd0fd2ef7245fbefaa3;hb=2a5acf4e9e701b60e600b86366687c267fb64d9d;hp=7f1cdab1f8b88f31e44eac2e1d2e194febeb7208;hpb=301be453975067183367ea8c29069476bf1b45ff;p=ppastats.git diff --git a/src/lp_json.h b/src/lp_json.h index 7f1cdab..ca082dd 100644 --- a/src/lp_json.h +++ b/src/lp_json.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011-2012 jeanfi@gmail.com + * Copyright (C) 2011-2014 jeanfi@gmail.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -20,15 +20,20 @@ #ifndef _PPASTATS_LP_JSON_H_ #define _PPASTATS_LP_JSON_H_ -#include +#include -#include "lp.h" +#include + +/* Declares json_bool to have consistent code even with + old json lib releases using boolean instead of json_bool.*/ +#ifndef HAVE_JSON_BOOL +typedef int json_bool; +#endif -struct binary_package_publishing_history * -json_object_to_binary_package_publishing_history(json_object * o); +#include "lp.h" -struct binary_package_publishing_history * * -json_object_to_binary_package_publishing_history_list(json_object *o); +struct bpph **json_object_to_bpph_list(json_object *o); +json_object *bpph_list_to_json(struct bpph **); struct distro_arch_series *json_object_to_distro_arch_series(json_object *o); struct distro_series *json_object_to_distro_series(json_object *o); @@ -36,4 +41,8 @@ struct distro_series *json_object_to_distro_series(json_object *o); struct daily_download_total * * json_object_to_daily_download_totals(json_object *o); +json_object *ddts_to_json(struct daily_download_total **); + +struct json_object *date_to_json(struct tm *tm); + #endif