libopkg: fix merging PKG_CONFFILES in pkg_merge()
[oweals/opkg-lede.git] / libopkg / opkg_utils.c
1 /* opkg_utils.c - the opkg package management system
2
3    Steven M. Ayer
4
5    Copyright (C) 2002 Compaq Computer Corporation
6
7    This program is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License as
9    published by the Free Software Foundation; either version 2, or (at
10    your option) any later version.
11
12    This program is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16 */
17
18 #include <ctype.h>
19 #include <sys/statvfs.h>
20
21 #include "libbb/libbb.h"
22
23 unsigned long get_available_kbytes(char *filesystem)
24 {
25         struct statvfs f;
26
27         if (statvfs(filesystem, &f) == -1) {
28                 opkg_perror(ERROR, "Failed to statvfs for %s", filesystem);
29                 return 0;
30         }
31         // Actually ((sfs.f_bavail * sfs.f_frsize) / 1024)
32         // and here we try to avoid overflow.
33         if (f.f_frsize >= 1024)
34                 return (f.f_bavail * (f.f_frsize / 1024));
35         else if (f.f_frsize > 0)
36                 return f.f_bavail / (1024 / f.f_frsize);
37
38         opkg_msg(ERROR, "Unknown block size for target filesystem.\n");
39
40         return 0;
41 }
42
43 /* something to remove whitespace, a hash pooper */
44 char *trim_xstrdup(const char *src)
45 {
46         const char *end;
47
48         /* remove it from the front */
49         while (src && isspace(*src) && *src)
50                 src++;
51
52         end = src + (strlen(src) - 1);
53
54         /* and now from the back */
55         while ((end > src) && isspace(*end))
56                 end--;
57
58         end++;
59
60         /* xstrndup will NULL terminate for us */
61         return xstrndup(src, end - src);
62 }
63
64 int line_is_blank(const char *line)
65 {
66         const char *s;
67
68         for (s = line; *s; s++) {
69                 if (!isspace(*s))
70                         return 0;
71         }
72         return 1;
73 }