9aac447aac72ff84a6447df6d3bb9b2223c9a0ca
[ppastats.git] / src / main.c
1 /*
2  * Copyright (C) 2011-2012 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19
20 #include <libintl.h>
21 #define _(String) gettext(String)
22
23 #include <getopt.h>
24 #include <stdlib.h>
25 #include <stdio.h>
26 #include <string.h>
27
28 #include "cache.h"
29 #include "html.h"
30 #include "log.h"
31 #include "lp_ws.h"
32 #include "config.h"
33 #include "ppastats.h"
34
35 static const char *program_name;
36
37 static void display_published_binaries(const char *owner,
38                                        const char *ppa,
39                                        const char *package_status)
40 {
41         struct ppa_stats *ppastats;
42         struct package_stats **packages;
43         struct version_stats **versions;
44         struct distro_stats **distros;
45         struct arch_stats **archs;
46
47         ppastats = create_ppa_stats(owner, ppa, package_status);
48         packages = ppastats->packages;
49         while (packages && *packages) {
50                 struct package_stats *p = *packages;
51
52                 printf("%s (%d)\n", p->name, p->download_count);
53
54                 versions = p->versions;
55
56                 while (*versions) {
57                         printf("\t%s (%d)\n", (*versions)->version,
58                                (*versions)->download_count);
59
60                         distros = (*versions)->distros;
61
62                         while (*distros) {
63                                 printf("\t\t%s (%d)\n",
64                                        (*distros)->name,
65                                        (*distros)->download_count);
66
67                                 archs = (*distros)->archs;
68
69                                 while (*archs) {
70                                         printf("\t\t\t%s (%d)\n",
71                                                (*archs)->name,
72                                                (*archs)->download_count);
73
74                                         archs++;
75                                 }
76
77                                 distros++;
78                         }
79
80                         versions++;
81                 }
82
83                 packages++;
84         }
85
86         ppa_stats_free(ppastats);
87 }
88
89 static struct option long_options[] = {
90         {"version", no_argument, 0, 'v'},
91         {"help", no_argument, 0, 'h'},
92         {"output-dir", required_argument, 0, 'o'},
93         {"debug", no_argument, 0, 'd'},
94         {"status", required_argument, 0, 's'},
95         {"skip-js-css", no_argument, 0, 'S'},
96         {0, 0, 0, 0}
97 };
98
99 static void print_version()
100 {
101         printf("ppastats %s\n", VERSION);
102         printf(_(
103 "Copyright (C) %s jeanfi@gmail.com\n"
104 "License GPLv2: GNU GPL version 2 or later\n"
105 "<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n"
106 "This is free software: you are free to change and redistribute it.\n"
107 "There is NO WARRANTY, to the extent permitted by law.\n"),
108                "2011-2012");
109 }
110
111 static void print_help()
112 {
113         printf(_("Usage: %s [OPTION]... PPA_OWNER PPA_NAME\n"), program_name);
114
115         puts(_(
116 "ppastats is a command application for generating PPA statistics.\n"));
117
118         puts(_(
119 "Prints number of downloads for each published packages of a PPA or generates\n"
120 "an HTML page containing a graph representation."));
121
122         puts("");
123         puts(_("Options:"));
124         puts(_(
125 "  -h, --help          display this help and exit\n"
126 "  -v, --version       display version information and exit"));
127
128         puts("");
129
130         puts(_(
131 "  -o, --output-dir=[PATH]  generates HTML pages into 'PATH'."));
132
133         puts(_(
134 "  -s, --status=[STATUS]    retrieves only package of the given status\n"
135 "                           (possible values are: Pending, Published,\n"
136 "                           Superseded, Deleted or Obsolete)."));
137
138         puts(_(
139 " -S, --skip-js-css         skip installation of js and css files"));
140         puts("");
141
142         printf(_("Report bugs to: %s\n"), PACKAGE_BUGREPORT);
143         puts("");
144         printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
145 }
146
147 int main(int argc, char **argv)
148 {
149         char *owner, *ppa, *package_status, *output_dir;
150         int optc, output_html, cmdok, install_static_files;
151
152         program_name = argv[0];
153
154         setlocale(LC_ALL, "");
155         bindtextdomain(PACKAGE, LOCALEDIR);
156         textdomain(PACKAGE);
157
158         cmdok = 1;
159         install_static_files = 1;
160         output_dir = NULL;
161         package_status = NULL;
162         output_html = 0;
163
164         while ((optc = getopt_long(argc, argv, "vho:ds:S", long_options,
165                                    NULL)) != -1) {
166                 switch (optc) {
167                 case 'o':
168                         output_html = 1;
169                         output_dir = strdup(optarg);
170                         break;
171                 case 'd':
172                         log_level = LOG_DEBUG;
173                         break;
174                 case 'h':
175                         print_help();
176                         exit(EXIT_SUCCESS);
177                 case 'v':
178                         print_version();
179                         exit(EXIT_SUCCESS);
180                 case 's':
181                         if (optarg)
182                                 package_status = strdup(optarg);
183                         break;
184                 case 'S':
185                         install_static_files = 0;
186                         break;
187                 default:
188                         cmdok = 0;
189                         break;
190                 }
191         }
192
193         if (!cmdok || optind + 2 != argc) {
194                 fprintf(stderr, _("Try `%s --help' for more information.\n"),
195                         program_name);
196                 exit(EXIT_FAILURE);
197         }
198
199         owner = argv[optind];
200         ppa = argv[optind+1];
201
202         if (output_html)
203                 ppa_to_html(owner, ppa, package_status, output_dir,
204                             install_static_files);
205         else
206                 display_published_binaries(owner, ppa, package_status);
207
208         /* for valgrind.... */
209         free(package_status);
210         free(output_dir);
211         lp_ws_cleanup();
212         cache_cleanup();
213
214         exit(EXIT_SUCCESS);
215 }