1 /* $NetBSD: text.c,v 1.3 2014/12/10 04:38:03 christos Exp $ */
4 * Automated Testing Framework (atf)
6 * Copyright (c) 2008 The NetBSD Foundation, Inc.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
19 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
25 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
27 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
29 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include "atf-c/error.h"
44 atf_text_for_each_word(const char *instr
, const char *sep
,
45 atf_error_t (*func
)(const char *, void *),
49 char *str
, *str2
, *last
;
53 err
= atf_no_memory_error();
58 str2
= strtok_r(str
, sep
, &last
);
59 while (str2
!= NULL
&& !atf_is_error(err
)) {
60 err
= func(str2
, data
);
61 str2
= strtok_r(NULL
, sep
, &last
);
70 atf_text_format(char **dest
, const char *fmt
, ...)
76 err
= atf_text_format_ap(dest
, fmt
, ap
);
83 atf_text_format_ap(char **dest
, const char *fmt
, va_list ap
)
90 err
= atf_dynstr_init_ap(&tmp
, fmt
, ap2
);
92 if (!atf_is_error(err
))
93 *dest
= atf_dynstr_fini_disown(&tmp
);
99 atf_text_split(const char *str
, const char *delim
, atf_list_t
*words
)
105 err
= atf_list_init(words
);
106 if (atf_is_error(err
))
109 end
= str
+ strlen(str
);
116 ptr
= strstr(iter
, delim
);
124 err
= atf_dynstr_init_raw(&word
, iter
, ptr
- iter
);
125 if (atf_is_error(err
))
128 err
= atf_list_append(words
, atf_dynstr_fini_disown(&word
), true);
129 if (atf_is_error(err
))
133 iter
= ptr
+ strlen(delim
);
136 INV(!atf_is_error(err
));
140 atf_list_fini(words
);
146 atf_text_to_bool(const char *str
, bool *b
)
150 if (strcasecmp(str
, "yes") == 0 ||
151 strcasecmp(str
, "true") == 0) {
153 err
= atf_no_error();
154 } else if (strcasecmp(str
, "no") == 0 ||
155 strcasecmp(str
, "false") == 0) {
157 err
= atf_no_error();
159 /* XXX Not really a libc error. */
160 err
= atf_libc_error(EINVAL
, "Cannot convert string '%s' "
168 atf_text_to_long(const char *str
, long *l
)
175 tmp
= strtol(str
, &endptr
, 10);
176 if (str
[0] == '\0' || *endptr
!= '\0')
177 err
= atf_libc_error(EINVAL
, "'%s' is not a number", str
);
178 else if (errno
== ERANGE
|| (tmp
== LONG_MAX
|| tmp
== LONG_MIN
))
179 err
= atf_libc_error(ERANGE
, "'%s' is out of range", str
);
182 err
= atf_no_error();