update copyright end date to 2012
[ppastats.git] / src / lp.h
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 #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         int architecture_specific;
40 };
41
42 struct distro_arch_series {
43         char *display_name;
44         char *title;
45         char *architecture_tag;
46         int is_nominated_arch_indep;
47         char *distroseries_link;
48 };
49
50 struct distro_series {
51         char *displayname;
52         char *name;
53         char *version;
54         char *title;
55 };
56
57 struct distro_series *distro_series_new(const char *name,
58                                         const char *version,
59                                         const char *title,
60                                         const char *displayname);
61
62 void distro_series_free(struct distro_series *distro_series);
63
64 void daily_download_total_list_free(struct daily_download_total **);
65
66 struct distro_arch_series *
67 distro_arch_series_new(const char *display_name,
68                        const char *title,
69                        const char *architecture_tag,
70                        int is_nominated_arch_indep,
71                        const char *distroseries_link);
72
73 void distro_arch_series_free(struct distro_arch_series *);
74
75 void
76 binary_package_publishing_history_free
77 (struct binary_package_publishing_history *b);
78
79 struct binary_package_publishing_history *
80 binary_package_publishing_history_new(const char *binary_package_name,
81                                       const char *binary_package_version,
82                                       const char *distro_arch_series_link,
83                                       const char *self_link,
84                                       int architecture_specific);
85
86 void binary_package_publishing_history_list_free
87 (struct binary_package_publishing_history **list);
88
89
90 char *get_archive_url(const char *owner, const char  *ppa);
91
92 #endif