-
Notifications
You must be signed in to change notification settings - Fork 42
/
tools.c
219 lines (180 loc) · 4.54 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
/*
* Copyright (c) 2009-2015 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;
}
/*
* Remove trailing \n or \r\n, returning length of resulting string.
*/
size_t
trimcr(char *str)
{
size_t len;
if (str == NULL)
return (0);
len = strlen(str);
if (str[len - 1] == '\n')
str[--len] = '\0';
if (str[len - 1] == '\r')
str[--len] = '\0';
return (len);
}
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;
}
}
__attribute__((__format__ (__printf__, 2, 3)))
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)
{
return xstrdup(MACHINE_ARCH);
}
/* 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;
ret = xstrdup(un.release);
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)
{
size_t 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';
ret = xstrdup(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);
fflush(stdout);
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;
}