added is_nominated_arch_dep info
[ppastats.git] / src / lp.h
1 /*
2     Copyright (C) 2011 jeanfi@gmail.com
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU 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 #ifndef _PPASTATS_LP_H_
21 #define _PPASTATS_LP_H_
22
23 #define URL_BASE_LP "https://api.launchpad.net/1.0"
24
25 #define _XOPEN_SOURCE
26 #include <time.h>
27
28 struct daily_download_total {
29         int count;
30
31         struct tm date;
32 };
33
34 struct binary_package_publishing_history {
35         char *binary_package_name;
36         char *binary_package_version;
37         char *distro_arch_series_link;
38         char *self_link;
39 };
40
41 struct distro_arch_series {
42         char *display_name;
43         char *title;
44         char *architecture_tag;
45         int is_nominated_arch_indep;
46 };
47
48 void daily_download_total_list_free(struct daily_download_total **);
49
50 struct distro_arch_series *distro_arch_series_new(const char *display_name,
51                                                   const char *title,
52                                                   const char *architecture_tag,
53                                                   int is_nominated_arch_indep);
54
55 void distro_arch_series_free(struct distro_arch_series *);
56
57 void
58 binary_package_publishing_history_free
59 (struct binary_package_publishing_history *b);
60
61 struct binary_package_publishing_history *
62 binary_package_publishing_history_new(const char *binary_package_name,
63                                       const char *binary_package_version,
64                                       const char *distro_arch_series_link,
65                                       const char *self_link);
66
67 void binary_package_publishing_history_list_free
68 (struct binary_package_publishing_history **list);
69
70
71 char *get_archive_url(const char *owner, const char  *ppa);
72
73 int list_length(void **list);
74
75 #endif