forked from NetBSDfr/pkgin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.c
335 lines (271 loc) · 6.29 KB
/
tools.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/* $Id: tools.c,v 1.5 2012/08/04 14:23:46 imilh Exp $ */
/*
* Copyright (c) 2009, 2010, 2011 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Emile "iMil" Heitor <[email protected]> .
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
#include "tools.h"
int
charcount(char *str, char c)
{
char *p;
int count = 0;
if (str == NULL)
return 0;
for (p = str; *p != '\0'; p++)
if (*p == c)
count++;
return count;
}
__inline int
trimcr(char *str)
{
uint16_t len;
if (str == NULL)
return (-1);
len = strlen(str);
while (len--)
if ((str[len] == '\r') || (str[len] == '\n'))
str[len] = '\0';
return (0);
}
char **
splitstr(char *str, const char *sep)
{
int i, size;
char *p, *tmp, **split;
for (i = 0, size = 0; str[i] != '\0'; i++)
if (str[i] == *sep)
size++;
/* size = number of separators + 1 member + NULL */
size += 2;
XMALLOC(split, size * sizeof(char *));
i = 0;
for (p = str; p != NULL;)
while ((tmp = strsep(&p, sep)) != NULL) {
if (*tmp != '\0') {
while (*tmp == ' ' || *tmp == '\t')
tmp++;
XSTRDUP(split[i], tmp);
i++;
}
}
split[i] = NULL;
return(split);
}
void
free_list(char **list)
{
int i;
if (list != NULL) {
for (i = 0; list[i] != NULL; i++)
XFREE(list[i]);
XFREE(list);
}
}
void
trunc_str(char *str, char limit, int direction)
{
char *p;
switch(direction) {
case STR_FORWARD:
if ((p = strchr(str, limit)) != NULL)
*p = '\0';
break;
case STR_BACKWARD:
if ((p = strrchr(str, limit)) != NULL)
*p = '\0';
break;
}
}
char *
safe_snprintf(int size, const char *fmt, ...)
{
char *p;
va_list ap;
XMALLOC(p, size * sizeof(char));
va_start(ap, fmt);
(void) vsnprintf(p, size, fmt, ap);
va_end(ap);
return p;
}
__inline int
max(int a, int b)
{
return (a > b ? a : b);
}
__inline int
min(int a, int b)
{
return (a < b ? a : b);
}
int
listlen(const char **list)
{
int i;
for (i = 0; list[i] != NULL; i++);
return(i);
}
/* execute a command and receive result on a char ** */
char **
exec_list(const char *cmd, const char *match)
{
FILE *fp;
int size;
char **res, *rawlist, buf[MAXLEN];
if ((fp = popen(cmd, "r")) == NULL)
return(NULL);
rawlist = NULL;
size = 0;
while (fgets(buf, MAXLEN, fp) != NULL) {
if (match == NULL || strstr(buf, match) != NULL) {
size += (strlen(buf) + 1) * sizeof(char);
XREALLOC(rawlist, size);
strlcat(rawlist, buf, size);
}
}
pclose(fp);
if (rawlist == NULL)
return(NULL);
res = splitstr(rawlist, "\n");
XFREE(rawlist);
return(res);
}
uint8_t
is_listed(const char **list, const char *item)
{
for (; *list != NULL; list++)
if (strcmp(item, *list) == 0)
return(T_TRUE);
return(T_FALSE);
}
void
do_log(const char *path, const char *fmt, ...)
{
FILE *fp;
char buffer[MAXLEN];
va_list args;
va_start(args, fmt);
vsnprintf(buffer, MAXLEN, fmt, args);
fp = fopen(path, "a");
fputs(buffer, fp);
fclose(fp);
va_end(args);
}
/* Return architecture name or NULL in case of failure */
char *
getosarch(void)
{
char *ret;
struct utsname un;
memset(&un, 0, sizeof(un));
if (uname(&un) < 0)
return NULL;
XSTRDUP(ret, un.machine);
return ret;
}
/* Return release numbers or NULL in case of failure */
char *
getosrelease(void)
{
struct utsname un;
char *ret, *p;
memset(&un, 0, sizeof(un));
if (uname(&un) < 0)
return NULL;
#ifdef _MINIX
asprintf(&ret, "%s.%s", un.release, un.version);
#else
XSTRDUP(ret, un.release);
#endif
for (p = ret; isdigit((int)*p) || *p == '.'; p++);
*p = '\0';
return ret;
}
/*
* Find all coincidences found in big string that match oldsub
* substring and replace them with newsub.
* Returns an allocated buffer that needs to be freed later.
*/
char *
strreplace(char *str, const char *from, const char *to)
{
int fromlen, tolen, i;
char *p, *ret, buf[MAXLEN];
memset(buf, 0, MAXLEN);
fromlen = strlen(from);
tolen = strlen(to);
for (i = 0, p = str; *p != '\0';) {
if (strncmp(p, from, fromlen) == 0) {
strncat(buf, to, tolen);
p += fromlen;
i += tolen;
} else {
buf[i] = *p;
p++;
i++;
}
}
buf[i] = '\0';
XSTRDUP(ret, buf);
return(ret);
}
int
check_yesno(uint8_t default_answer)
{
const struct Answer {
const uint8_t numval;
const char charval;
} answer[] = { { ANSW_NO, 'n' }, { ANSW_YES, 'y' } };
uint8_t r, reverse_answer;
int c;
if (yesflag)
return ANSW_YES;
else if (noflag)
return ANSW_NO;
/* reverse answer is default's answer opposite (you don't say!) */
reverse_answer = (default_answer == ANSW_YES) ? ANSW_NO : ANSW_YES;
if (default_answer == answer[ANSW_YES].numval)
printf(MSG_PROCEED_YES);
else
printf(MSG_PROCEED_NO);
c = tolower(getchar());
/* default answer */
if (c == answer[default_answer].charval || c == '\n')
r = answer[default_answer].numval;
/* reverse answer */
else if (c == answer[reverse_answer].charval)
r = answer[reverse_answer].numval;
/* bad key was given, default to No */
else
r = ANSW_NO;
/* avoid residual char */
if (c != '\n')
while((c = getchar()) != '\n' && c != EOF)
continue;
return r;
}