1 /* $NetBSD: list.h,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.
32 #if !defined(ATF_C_LIST_H)
39 #include <atf-c/error_fwd.h>
41 /* ---------------------------------------------------------------------
42 * The "atf_list_citer" type.
43 * --------------------------------------------------------------------- */
45 struct atf_list_citer
{
46 const struct atf_list
*m_list
;
49 typedef struct atf_list_citer atf_list_citer_t
;
52 const void *atf_list_citer_data(const atf_list_citer_t
);
53 atf_list_citer_t
atf_list_citer_next(const atf_list_citer_t
);
56 bool atf_equal_list_citer_list_citer(const atf_list_citer_t
,
57 const atf_list_citer_t
);
59 /* ---------------------------------------------------------------------
60 * The "atf_list_iter" type.
61 * --------------------------------------------------------------------- */
63 struct atf_list_iter
{
64 struct atf_list
*m_list
;
67 typedef struct atf_list_iter atf_list_iter_t
;
70 void *atf_list_iter_data(const atf_list_iter_t
);
71 atf_list_iter_t
atf_list_iter_next(const atf_list_iter_t
);
74 bool atf_equal_list_iter_list_iter(const atf_list_iter_t
,
75 const atf_list_iter_t
);
77 /* ---------------------------------------------------------------------
78 * The "atf_list" type.
79 * --------------------------------------------------------------------- */
87 typedef struct atf_list atf_list_t
;
89 /* Constructors and destructors */
90 atf_error_t
atf_list_init(atf_list_t
*);
91 void atf_list_fini(atf_list_t
*);
94 atf_list_iter_t
atf_list_begin(atf_list_t
*);
95 atf_list_citer_t
atf_list_begin_c(const atf_list_t
*);
96 atf_list_iter_t
atf_list_end(atf_list_t
*);
97 atf_list_citer_t
atf_list_end_c(const atf_list_t
*);
98 void *atf_list_index(atf_list_t
*, const size_t);
99 const void *atf_list_index_c(const atf_list_t
*, const size_t);
100 size_t atf_list_size(const atf_list_t
*);
101 char **atf_list_to_charpp(const atf_list_t
*);
104 atf_error_t
atf_list_append(atf_list_t
*, void *, bool);
105 void atf_list_append_list(atf_list_t
*, atf_list_t
*);
108 #define atf_list_for_each(iter, list) \
109 for (iter = atf_list_begin(list); \
110 !atf_equal_list_iter_list_iter((iter), atf_list_end(list)); \
111 iter = atf_list_iter_next(iter))
112 #define atf_list_for_each_c(iter, list) \
113 for (iter = atf_list_begin_c(list); \
114 !atf_equal_list_citer_list_citer((iter), atf_list_end_c(list)); \
115 iter = atf_list_citer_next(iter))
117 #endif /* ATF_C_LIST_H */