9bc93a04b3e74eac6df885391768316132111dae
[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 "lp_ws.h"
31 #include "config.h"
32 #include "ppastats.h"
33
34 int debug;
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(_("Copyright (C) %s jeanfi@gmail.com\n\
103 License GPLv2: GNU GPL version 2 or later \
104 <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n\
105 This is free software: you are free to change and redistribute it.\n\
106 There is NO WARRANTY, to the extent permitted by law.\n"),
107                  "2011-2012");
108 }
109
110 static void print_help()
111 {
112         printf(_("Usage: %s [OPTION]... PPA_OWNER PPA_NAME\n"), program_name);
113
114         puts(_("ppastats is a command application"
115                " for generating PPA statistics.\n"));
116
117         puts(_("Prints number of downloads for each published packages of a "
118                "PPA or generates an HTML page containing a graph "
119                "representation."));
120
121         puts("");
122         puts(_("Options:"));
123         puts(_("\
124   -h, --help          display this help and exit\n\
125   -v, --version       display version information and exit"));
126
127         puts("");
128
129         puts(_("\
130   -o, --output-dir=[PATH]       generates HTML pages into 'PATH'."));
131
132         puts(_("\
133   -s, --status=[STATUS]         retrieves only package of the given status\n\
134                                 (possible values are: Pending, Published, \n\
135                                 Superseded, Deleted or Obsolete)."));
136
137         puts(_("\
138   -S, --skip-js-css             skip installation of js and css files"));
139         puts("");
140
141         printf(_("Report bugs to: %s\n"), PACKAGE_BUGREPORT);
142         puts("");
143         printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
144 }
145
146 int main(int argc, char **argv)
147 {
148         char *owner, *ppa;
149         int optc;
150         int output_html = 0;
151         char *package_status = NULL;
152         int cmdok = 1;
153         char *output_dir = NULL;
154         int install_static_files = 1;
155
156         program_name = argv[0];
157
158         setlocale(LC_ALL, "");
159         bindtextdomain(PACKAGE, LOCALEDIR);
160         textdomain(PACKAGE);
161
162         while ((optc = getopt_long(argc, argv, "vho:ds:S", long_options,
163                                    NULL)) != -1) {
164                 switch (optc) {
165                 case 'o':
166                         output_html = 1;
167                         output_dir = strdup(optarg);
168                         break;
169                 case 'd':
170                         debug = 1;
171                         break;
172                 case 'h':
173                         print_help();
174                         exit(EXIT_SUCCESS);
175                 case 'v':
176                         print_version();
177                         exit(EXIT_SUCCESS);
178                 case 's':
179                         if (optarg)
180                                 package_status = strdup(optarg);
181                         break;
182                 case 'S':
183                         install_static_files = 0;
184                         break;
185                 default:
186                         cmdok = 0;
187                         break;
188                 }
189         }
190
191         if (!cmdok || optind + 2 != argc) {
192                 fprintf(stderr, _("Try `%s --help' for more information.\n"),
193                         program_name);
194                 exit(EXIT_FAILURE);
195         }
196
197         owner = argv[optind];
198         ppa = argv[optind+1];
199
200         if (output_html)
201                 ppa_to_html(owner, ppa, package_status, output_dir,
202                             install_static_files);
203         else
204                 display_published_binaries(owner, ppa, package_status);
205
206         /* for valgrind.... */
207         free(package_status);
208         free(output_dir);
209         lp_ws_cleanup();
210         cache_cleanup();
211
212         exit(EXIT_SUCCESS);
213 }