ppa stats graph
[ppastats.git] / src / ppastats.c
index 56a8942..70f6c6f 100644 (file)
@@ -137,6 +137,55 @@ static struct arch_stats *get_arch_stats(struct distro_stats *distro,
 }
 
 
+static struct daily_download_total **
+add_total(struct daily_download_total **totals,
+         struct daily_download_total *total)
+{
+       struct daily_download_total **cur;
+       struct daily_download_total *item;
+
+       cur = totals;
+       while (*cur) {
+               item = *cur;
+
+               if (item->date.tm_year == total->date.tm_year &&
+                   item->date.tm_mon == total->date.tm_mon &&
+                   item->date.tm_mday == total->date.tm_mday) {
+                       item->count += total->count;
+                       return totals;
+               }
+               
+               cur++;
+       }
+
+       item = malloc(sizeof(struct daily_download_total));
+       memcpy(item, total, sizeof(struct daily_download_total));
+
+       return (struct daily_download_total **)
+               list_add((void **)totals, (void *)item);
+}
+
+struct daily_download_total **
+add_totals(struct daily_download_total **total1,
+          struct daily_download_total **total2)
+{
+       struct daily_download_total **cur;
+       struct daily_download_total **result;
+
+       if (!total1)
+               return total2;
+
+       result = total1;
+       cur = total2;
+       while (*cur) {
+               result = add_total(result, *cur);
+
+               cur++;
+       }
+
+       return result;
+}
+
 struct ppa_stats *
 create_ppa_stats(const char *owner,
                 const char *ppa,
@@ -154,6 +203,7 @@ create_ppa_stats(const char *owner,
        struct distro_stats *distro;
        struct arch_stats *arch;
        int count;
+       struct daily_download_total **totals;
 
        ppa_url = get_archive_url(owner, ppa);
        history = get_binary_package_publishing_history_list(ppa_url,
@@ -198,6 +248,14 @@ create_ppa_stats(const char *owner,
 
                ppastats->download_count += count;
 
+               totals = get_daily_download_totals(h->self_link);
+               ppastats->daily_download_totals 
+                       = add_totals(ppastats->daily_download_totals,
+                                    totals);
+
+               if (ppastats->daily_download_totals != totals)
+                       daily_download_total_list_free(totals);
+
                h_cur++;
        }