2 * Automated Testing Framework (atf)
4 * Copyright (c) 2008 The NetBSD Foundation, Inc.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #include "atf-c/error.h"
42 atf_text_for_each_word(const char *instr
, const char *sep
,
43 atf_error_t (*func
)(const char *, void *),
47 char *str
, *str2
, *last
;
51 err
= atf_no_memory_error();
56 str2
= strtok_r(str
, sep
, &last
);
57 while (str2
!= NULL
&& !atf_is_error(err
)) {
58 err
= func(str2
, data
);
59 str2
= strtok_r(NULL
, sep
, &last
);
68 atf_text_format(char **dest
, const char *fmt
, ...)
74 err
= atf_text_format_ap(dest
, fmt
, ap
);
81 atf_text_format_ap(char **dest
, const char *fmt
, va_list ap
)
88 err
= atf_dynstr_init_ap(&tmp
, fmt
, ap2
);
90 if (!atf_is_error(err
))
91 *dest
= atf_dynstr_fini_disown(&tmp
);
97 atf_text_split(const char *str
, const char *delim
, atf_list_t
*words
)
103 err
= atf_list_init(words
);
104 if (atf_is_error(err
))
107 end
= str
+ strlen(str
);
114 ptr
= strstr(iter
, delim
);
122 err
= atf_dynstr_init_raw(&word
, iter
, ptr
- iter
);
123 if (atf_is_error(err
))
126 err
= atf_list_append(words
, atf_dynstr_fini_disown(&word
), true);
127 if (atf_is_error(err
))
131 iter
= ptr
+ strlen(delim
);
134 INV(!atf_is_error(err
));
138 atf_list_fini(words
);
144 atf_text_to_bool(const char *str
, bool *b
)
148 if (strcasecmp(str
, "yes") == 0 ||
149 strcasecmp(str
, "true") == 0) {
151 err
= atf_no_error();
152 } else if (strcasecmp(str
, "no") == 0 ||
153 strcasecmp(str
, "false") == 0) {
155 err
= atf_no_error();
157 /* XXX Not really a libc error. */
158 err
= atf_libc_error(EINVAL
, "Cannot convert string '%s' "
166 atf_text_to_long(const char *str
, long *l
)
173 tmp
= strtol(str
, &endptr
, 10);
174 if (str
[0] == '\0' || *endptr
!= '\0')
175 err
= atf_libc_error(EINVAL
, "'%s' is not a number", str
);
176 else if (errno
== ERANGE
|| (tmp
== LONG_MAX
|| tmp
== LONG_MIN
))
177 err
= atf_libc_error(ERANGE
, "'%s' is out of range", str
);
180 err
= atf_no_error();