import private svn
[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 };
46
47 void daily_download_total_list_free(struct daily_download_total **);
48
49 struct distro_arch_series *distro_arch_series_new(const char *display_name,
50                                                   const char *title,
51                                                   const char *architecture_tag);
52
53 void distro_arch_series_free(struct distro_arch_series *);
54
55 void
56 binary_package_publishing_history_free
57 (struct binary_package_publishing_history *b);
58
59 struct binary_package_publishing_history *
60 binary_package_publishing_history_new(const char *binary_package_name,
61                                       const char *binary_package_version,
62                                       const char *distro_arch_series_link,
63                                       const char *self_link);
64
65 void binary_package_publishing_history_list_free
66 (struct binary_package_publishing_history **list);
67
68
69 char *get_archive_url(const char *owner, const char  *ppa);
70
71 int list_length(void **list);
72
73 #endif