improved output
[ppastats.git] / src / lp.c
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
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <string.h>
24
25 #include "lp.h"
26
27 struct distro_series *distro_series_new(const char *name,
28                                         const char *version,
29                                         const char *title,
30                                         const char *displayname)
31 {
32         struct distro_series *d;
33
34         d = malloc(sizeof(struct distro_series));
35
36         d->name = strdup(name);
37         d->version = strdup(version);
38         d->title = strdup(title);
39         d->displayname = strdup(displayname);
40
41         return d;
42 }
43
44 void distro_series_free(struct distro_series *d)
45 {
46         if (d) {
47                 free(d->name);
48                 free(d->version);
49                 free(d->title);
50                 free(d->displayname);
51
52                 free(d);
53         }
54 }
55
56 void
57 binary_package_publishing_history_free \
58 (struct binary_package_publishing_history *b)
59 {
60         if (b) {
61                 free(b->binary_package_name);
62                 free(b->binary_package_version);
63                 free(b->distro_arch_series_link);
64                 free(b->self_link);
65                 free(b);
66         }
67 }
68
69 struct binary_package_publishing_history *
70 binary_package_publishing_history_new(const char *binary_package_name,
71                                       const char *binary_package_version,
72                                       const char *distro_arch_series_link,
73                                       const char *self_link)
74 {
75         struct binary_package_publishing_history *b;
76
77         b = malloc(sizeof(struct binary_package_publishing_history));
78
79         b->binary_package_name = strdup(binary_package_name);
80         b->binary_package_version = strdup(binary_package_version);
81         b->distro_arch_series_link = strdup(distro_arch_series_link);
82         b->self_link = strdup(self_link);
83
84         return b;
85 }
86
87 void
88 binary_package_publishing_history_list_free\
89 (struct binary_package_publishing_history **list)
90 {
91         struct binary_package_publishing_history **l_cur = list;
92
93         while (*l_cur) {
94                 binary_package_publishing_history_free(*l_cur);
95                 l_cur++;
96         }
97
98         free(list);
99 }
100
101 char *get_archive_url(const char *owner, const char *ppa)
102 {
103         char *url = malloc(strlen(URL_BASE_LP)
104                            +strlen("/~")
105                            +strlen(owner)
106                            +strlen("/+archive/")
107                            +strlen(ppa)
108                            +1);
109
110         strcpy(url, URL_BASE_LP);
111         strcat(url, "/~");
112         strcat(url, owner);
113         strcat(url, "/+archive/");
114         strcat(url, ppa);
115
116         return url;
117 }
118
119 struct distro_arch_series *distro_arch_series_new(const char *display_name,
120                                                   const char *title,
121                                                   const char *architecture_tag,
122                                                   int is_nominated_arch_indep,
123                                                   const char *distroseries_link)
124 {
125         struct distro_arch_series *d;
126
127         d = malloc(sizeof(struct distro_arch_series));
128
129         d->display_name = strdup(display_name);
130         d->title = strdup(title);
131         d->architecture_tag = strdup(architecture_tag);
132         d->is_nominated_arch_indep = is_nominated_arch_indep;
133         d->distroseries_link = strdup(distroseries_link);
134
135         return d;
136 }
137
138 void distro_arch_series_free(struct distro_arch_series *d)
139 {
140         free(d->display_name);
141         free(d->title);
142         free(d->architecture_tag);
143         free(d->distroseries_link);
144
145         free(d);
146 }
147
148 void distro_arch_series_list_free(struct distro_arch_series **list)
149 {
150         if (list) {
151                 while (*list) {
152                         distro_arch_series_free(*list);
153                         list++;
154                 }
155                 free(list);
156         }
157 }
158
159 void daily_download_total_list_free(struct daily_download_total **list)
160 {
161         if (list) {
162                 struct daily_download_total **cur = list;
163
164                 while (*cur) {
165                         free(*cur);
166                         cur++;
167                 }
168
169                 free(list);
170         }
171 }
172