X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Fppastats.h;h=e88893dbd983a85eab77d0412ea80140399e886e;hb=c75862be119ac38a67f841fcc7da339be423973a;hp=f6bace5a5b1437123c1e669606b6c8ff68bf4cc7;hpb=05efb0b6dfba33b3dc441b4bbb795d056d404399;p=ppastats.git diff --git a/src/ppastats.h b/src/ppastats.h index f6bace5..e88893d 100644 --- a/src/ppastats.h +++ b/src/ppastats.h @@ -1,33 +1,30 @@ /* - Copyright (C) 2011 jeanfi@gmail.com - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301 USA -*/ + * Copyright (C) 2011-2012 jeanfi@gmail.com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301 USA + */ #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,16 @@ 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); +/* + * 'ws_size': size of the reply array of the getPublishedBinaries request. + */ +struct ppa_stats *create_ppa_stats(const char *owner, + const char *ppa, + const char *package_status, + int ws_size); void ppa_stats_free(struct ppa_stats *ppastats); #endif