beta-0.89.2
[luatex.git] / source / libs / cairo / cairo-src / src / cairo-list-inline.h
blob0955178d24fd00538bfb08fd7ab8325977b19374
1 /* cairo - a vector graphics library with display and print output
3 * Copyright © 2009 Chris Wilson
5 * This library is free software; you can redistribute it and/or
6 * modify it either under the terms of the GNU Lesser General Public
7 * License version 2.1 as published by the Free Software Foundation
8 * (the "LGPL") or, at your option, under the terms of the Mozilla
9 * Public License Version 1.1 (the "MPL"). If you do not alter this
10 * notice, a recipient may use your version of this file under either
11 * the MPL or the LGPL.
13 * You should have received a copy of the LGPL along with this library
14 * in the file COPYING-LGPL-2.1; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
16 * You should have received a copy of the MPL along with this library
17 * in the file COPYING-MPL-1.1
19 * The contents of this file are subject to the Mozilla Public License
20 * Version 1.1 (the "License"); you may not use this file except in
21 * compliance with the License. You may obtain a copy of the License at
22 * http://www.mozilla.org/MPL/
24 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
25 * OF ANY KIND, either express or implied. See the LGPL or the MPL for
26 * the specific language governing rights and limitations.
28 * The Original Code is the cairo graphics library.
30 * The Initial Developer of the Original Code is Chris Wilson.
32 * Contributor(s):
33 * Chris Wilson <chris@chris-wilson.co.uk>
37 #ifndef CAIRO_LIST_INLINE_H
38 #define CAIRO_LIST_INLINE_H
40 #include "cairo-list-private.h"
42 #define cairo_list_entry(ptr, type, member) \
43 cairo_container_of(ptr, type, member)
45 #define cairo_list_first_entry(ptr, type, member) \
46 cairo_list_entry((ptr)->next, type, member)
48 #define cairo_list_last_entry(ptr, type, member) \
49 cairo_list_entry((ptr)->prev, type, member)
51 #define cairo_list_foreach(pos, head) \
52 for (pos = (head)->next; pos != (head); pos = pos->next)
54 #define cairo_list_foreach_entry(pos, type, head, member) \
55 for (pos = cairo_list_entry((head)->next, type, member);\
56 &pos->member != (head); \
57 pos = cairo_list_entry(pos->member.next, type, member))
59 #define cairo_list_foreach_entry_safe(pos, n, type, head, member) \
60 for (pos = cairo_list_entry ((head)->next, type, member),\
61 n = cairo_list_entry (pos->member.next, type, member);\
62 &pos->member != (head); \
63 pos = n, n = cairo_list_entry (n->member.next, type, member))
65 #define cairo_list_foreach_entry_reverse(pos, type, head, member) \
66 for (pos = cairo_list_entry((head)->prev, type, member);\
67 &pos->member != (head); \
68 pos = cairo_list_entry(pos->member.prev, type, member))
70 #define cairo_list_foreach_entry_reverse_safe(pos, n, type, head, member) \
71 for (pos = cairo_list_entry((head)->prev, type, member),\
72 n = cairo_list_entry (pos->member.prev, type, member);\
73 &pos->member != (head); \
74 pos = n, n = cairo_list_entry (n->member.prev, type, member))
76 #ifdef CAIRO_LIST_DEBUG
77 static inline void
78 _cairo_list_validate (const cairo_list_t *link)
80 assert (link->next->prev == link);
81 assert (link->prev->next == link);
83 static inline void
84 cairo_list_validate (const cairo_list_t *head)
86 cairo_list_t *link;
88 cairo_list_foreach (link, head)
89 _cairo_list_validate (link);
91 static inline cairo_bool_t
92 cairo_list_is_empty (const cairo_list_t *head);
93 static inline void
94 cairo_list_validate_is_empty (const cairo_list_t *head)
96 assert (head->next == NULL || (cairo_list_is_empty (head) && head->next == head->prev));
98 #else
99 #define _cairo_list_validate(link)
100 #define cairo_list_validate(head)
101 #define cairo_list_validate_is_empty(head)
102 #endif
104 static inline void
105 cairo_list_init (cairo_list_t *entry)
107 entry->next = entry;
108 entry->prev = entry;
111 static inline void
112 __cairo_list_add (cairo_list_t *entry,
113 cairo_list_t *prev,
114 cairo_list_t *next)
116 next->prev = entry;
117 entry->next = next;
118 entry->prev = prev;
119 prev->next = entry;
122 static inline void
123 cairo_list_add (cairo_list_t *entry, cairo_list_t *head)
125 cairo_list_validate (head);
126 cairo_list_validate_is_empty (entry);
127 __cairo_list_add (entry, head, head->next);
128 cairo_list_validate (head);
131 static inline void
132 cairo_list_add_tail (cairo_list_t *entry, cairo_list_t *head)
134 cairo_list_validate (head);
135 cairo_list_validate_is_empty (entry);
136 __cairo_list_add (entry, head->prev, head);
137 cairo_list_validate (head);
140 static inline void
141 __cairo_list_del (cairo_list_t *prev, cairo_list_t *next)
143 next->prev = prev;
144 prev->next = next;
147 static inline void
148 _cairo_list_del (cairo_list_t *entry)
150 __cairo_list_del (entry->prev, entry->next);
153 static inline void
154 cairo_list_del (cairo_list_t *entry)
156 _cairo_list_del (entry);
157 cairo_list_init (entry);
160 static inline void
161 cairo_list_move (cairo_list_t *entry, cairo_list_t *head)
163 cairo_list_validate (head);
164 __cairo_list_del (entry->prev, entry->next);
165 __cairo_list_add (entry, head, head->next);
166 cairo_list_validate (head);
169 static inline void
170 cairo_list_move_tail (cairo_list_t *entry, cairo_list_t *head)
172 cairo_list_validate (head);
173 __cairo_list_del (entry->prev, entry->next);
174 __cairo_list_add (entry, head->prev, head);
175 cairo_list_validate (head);
178 static inline void
179 cairo_list_swap (cairo_list_t *entry, cairo_list_t *other)
181 __cairo_list_add (entry, other->prev, other->next);
182 cairo_list_init (other);
185 static inline cairo_bool_t
186 cairo_list_is_first (const cairo_list_t *entry,
187 const cairo_list_t *head)
189 cairo_list_validate (head);
190 return entry->prev == head;
193 static inline cairo_bool_t
194 cairo_list_is_last (const cairo_list_t *entry,
195 const cairo_list_t *head)
197 cairo_list_validate (head);
198 return entry->next == head;
201 static inline cairo_bool_t
202 cairo_list_is_empty (const cairo_list_t *head)
204 cairo_list_validate (head);
205 return head->next == head;
208 static inline cairo_bool_t
209 cairo_list_is_singular (const cairo_list_t *head)
211 cairo_list_validate (head);
212 return head->next == head || head->next == head->prev;
215 #endif /* CAIRO_LIST_INLINE_H */