X-Git-Url: https://wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Fppastats.h;h=3c63a01f33b1dfcb1d52329728799b50250b977b;hb=HEAD;hp=4eabf010531089e426a76b118bf7f048dc2d808f;hpb=f2b0384f6231324f53e78aa458b9a46b0e659c43;p=ppastats.git diff --git a/src/ppastats.h b/src/ppastats.h index 4eabf01..3c63a01 100644 --- a/src/ppastats.h +++ b/src/ppastats.h @@ -1,25 +1,75 @@ /* - Copyright (C) 2011 jeanfi@gmail.com + * Copyright (C) 2011-2015 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 + */ - 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. +#ifndef _PPASTATS_PPASTATS_H_ +#define _PPASTATS_PPASTATS_H_ - 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. +#include "lp.h" - 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 -*/ +struct arch_stats { + char *name; -#ifndef _PPASTATS_PPASTATS_H_ -#define _PPASTATS_PPASTATS_H_ + int download_count; +}; + +struct distro_stats { + char *name; + + struct arch_stats **archs; + int download_count; + struct daily_download_total **ddts; +}; + +struct version_stats { + char *version; + time_t date_created; -extern int debug; + struct distro_stats **distros; + int download_count; + struct daily_download_total **daily_download_totals; +}; + +struct package_stats { + char *name; + + struct version_stats **versions; + int download_count; + struct daily_download_total **daily_download_totals; + struct distro_stats **distros; +}; + +struct ppa_stats { + char *name; + char *owner; + + struct package_stats **packages; + int download_count; + struct daily_download_total **daily_download_totals; +}; + +/* + * '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