X-Git-Url: http://git.wpitchoune.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fppastats.c;fp=src%2Fppastats.c;h=70f6c6fa979d5ec00c05e75fb4fef2057082ca06;hb=cacd81cd1065cf9a145bb2fbe66c383ad3c90206;hp=56a89428754165d6b75207586b75c7695ca5522c;hpb=f5fbf6bcfcac7e2b6df90e00f618c642539d013d;p=ppastats.git diff --git a/src/ppastats.c b/src/ppastats.c index 56a8942..70f6c6f 100644 --- a/src/ppastats.c +++ b/src/ppastats.c @@ -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++; }