added module to handle log
[ppastats.git] / src / ppastats.h
index f6bace5..b6b12df 100644 (file)
 #ifndef _PPASTATS_PPASTATS_H_
 #define _PPASTATS_PPASTATS_H_
 
-extern int debug;
-
 #include "lp.h"
 
 struct arch_stats {
        char *name;
 
-       struct daily_download_total *daily_download_totals;
        int download_count;
 };
 
@@ -36,7 +33,7 @@ struct distro_stats {
 
        struct arch_stats **archs;
        int download_count;
-       struct daily_download_total *daily_download_totals;
+       struct daily_download_total **ddts;
 };
 
 struct version_stats {
@@ -44,7 +41,7 @@ struct version_stats {
 
        struct distro_stats **distros;
        int download_count;
-       struct daily_download_total *daily_download_totals;
+       struct daily_download_total **daily_download_totals;
 };
 
 struct package_stats {
@@ -52,7 +49,8 @@ struct package_stats {
 
        struct version_stats **versions;
        int download_count;
-       struct daily_download_total *daily_download_totals;
+       struct daily_download_total **daily_download_totals;
+       struct distro_stats **distros;
 };
 
 struct ppa_stats {
@@ -61,10 +59,12 @@ struct ppa_stats {
 
        struct package_stats **packages;
        int download_count;
-       struct daily_download_total *daily_download_totals;
+       struct daily_download_total **daily_download_totals;
 };
 
-struct ppa_stats *create_ppa_stats(const char *owner, const char *ppa);
+struct ppa_stats *create_ppa_stats(const char *owner,
+                                  const char *ppa,
+                                  const char *package_status);
 void ppa_stats_free(struct ppa_stats *ppastats);
 
 #endif