regenerate build files
[ppastats.git] / src / ppastats.c
index 3f94038..38f6dd0 100644 (file)
@@ -90,6 +90,7 @@ static struct distro_stats *distro_stats_new(const char *name)
        d->name = strdup(name);
        d->archs = NULL;
        d->download_count = 0;
+       d->ddts = NULL;
 
        return d;
 }
@@ -194,7 +195,8 @@ struct daily_download_total **add_totals
 static void
 pkg_add_distro(struct package_stats *pkg,
               const char *distro_name,
-              int distro_count)
+              int distro_count,
+              struct daily_download_total **ddts)
 {
        struct distro_stats **pkg_distros, *pkg_distro;
 
@@ -219,6 +221,7 @@ pkg_add_distro(struct package_stats *pkg,
        }
 
        pkg_distro->download_count += distro_count;
+       pkg_distro->ddts = add_totals(pkg_distro->ddts, ddts);
 }
 
 struct ppa_stats *
@@ -255,11 +258,20 @@ create_ppa_stats(const char *owner,
        ppa->daily_download_totals = NULL;
        ppa->download_count = 0;
 
-       h_cur = history;
-       while (*h_cur) {
+       for (h_cur = history; *h_cur; ++h_cur) {
                h = *h_cur;
                totals = get_daily_download_totals(h->self_link);
+               if (!totals) {
+                       fprintf(stderr, "Failed to retrieve download totals"
+                               " for %s\n", h->self_link);
+                       continue;
+               }
                count = get_download_count(h->self_link);
+               if (count == -1) {
+                       fprintf(stderr, "Failed to retrieve download count"
+                               " for %s\n", h->self_link);
+                       count = 0;
+               }
                pkg_name = h->binary_package_name;
                pkg_version = h->binary_package_version;
                arch_series
@@ -287,11 +299,9 @@ create_ppa_stats(const char *owner,
                arch = get_arch_stats(distro, arch_series->architecture_tag);
                arch->download_count += count;
 
-               pkg_add_distro(pkg, distro_series->name, count);
+               pkg_add_distro(pkg, distro_series->name, count, totals);
 
                daily_download_total_list_free(totals);
-
-               h_cur++;
        }
 
        binary_package_publishing_history_list_free(history);