* v0.0.3
[ppastats.git] / src / ppastats.c
index baca55c..032a537 100644 (file)
@@ -137,6 +137,52 @@ 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;
+
+       if (totals) {
+               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;
+
+       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 +200,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,
@@ -181,6 +228,7 @@ create_ppa_stats(const char *owner,
                        = get_distro_arch_series(h->distro_arch_series_link);
                distro_series
                        = get_distro_series(arch_series->distroseries_link);
+
                count = get_download_count(h->self_link);
 
                package = get_package_stats(ppastats, package_name);
@@ -197,6 +245,22 @@ 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);
+
+               package->daily_download_totals
+                       = add_totals(package->daily_download_totals,
+                                    totals);
+
+               version->daily_download_totals
+                       = add_totals(version->daily_download_totals,
+                                    totals);
+
+               daily_download_total_list_free(totals);
+
                h_cur++;
        }
 
@@ -278,5 +342,7 @@ void ppa_stats_free(struct ppa_stats *ppastats)
        free(ppastats->owner);
        free(ppastats->name);
 
+       daily_download_total_list_free(ppastats->daily_download_totals);
+
        free(ppastats);
 }