source: vendor/current/lib/tevent/tevent_util.h

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 4.7 KB
Line 
1/*
2 Unix SMB/CIFS implementation.
3
4 Copyright (C) Andrew Tridgell 1998-2010
5 Copyright (C) Jelmer Vernooij 2005
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
19*/
20
21/* To use these macros you must have a structure containing a next and
22 prev pointer */
23
24#ifndef _DLINKLIST_H
25#define _DLINKLIST_H
26
27/*
28 February 2010 - changed list format to have a prev pointer from the
29 list head. This makes DLIST_ADD_END() O(1) even though we only have
30 one list pointer.
31
32 The scheme is as follows:
33
34 1) with no entries in the list:
35 list_head == NULL
36
37 2) with 1 entry in the list:
38 list_head->next == NULL
39 list_head->prev == list_head
40
41 3) with 2 entries in the list:
42 list_head->next == element2
43 list_head->prev == element2
44 element2->prev == list_head
45 element2->next == NULL
46
47 4) with N entries in the list:
48 list_head->next == element2
49 list_head->prev == elementN
50 elementN->prev == element{N-1}
51 elementN->next == NULL
52
53 This allows us to find the tail of the list by using
54 list_head->prev, which means we can add to the end of the list in
55 O(1) time
56 */
57
58
59/*
60 add an element at the front of a list
61*/
62#define DLIST_ADD(list, p) \
63do { \
64 if (!(list)) { \
65 (p)->prev = (list) = (p); \
66 (p)->next = NULL; \
67 } else { \
68 (p)->prev = (list)->prev; \
69 (list)->prev = (p); \
70 (p)->next = (list); \
71 (list) = (p); \
72 } \
73} while (0)
74
75/*
76 remove an element from a list
77 Note that the element doesn't have to be in the list. If it
78 isn't then this is a no-op
79*/
80#define DLIST_REMOVE(list, p) \
81do { \
82 if ((p) == (list)) { \
83 if ((p)->next) (p)->next->prev = (p)->prev; \
84 (list) = (p)->next; \
85 } else if ((list) && (p) == (list)->prev) { \
86 (p)->prev->next = NULL; \
87 (list)->prev = (p)->prev; \
88 } else { \
89 if ((p)->prev) (p)->prev->next = (p)->next; \
90 if ((p)->next) (p)->next->prev = (p)->prev; \
91 } \
92 if ((p) != (list)) (p)->next = (p)->prev = NULL; \
93} while (0)
94
95/*
96 find the head of the list given any element in it.
97 Note that this costs O(N), so you should avoid this macro
98 if at all possible!
99*/
100#define DLIST_HEAD(p, result_head) \
101do { \
102 (result_head) = (p); \
103 while (DLIST_PREV(result_head)) (result_head) = (result_head)->prev; \
104} while(0)
105
106/* return the last element in the list */
107#define DLIST_TAIL(list) ((list)?(list)->prev:NULL)
108
109/* return the previous element in the list. */
110#define DLIST_PREV(p) (((p)->prev && (p)->prev->next != NULL)?(p)->prev:NULL)
111
112/* insert 'p' after the given element 'el' in a list. If el is NULL then
113 this is the same as a DLIST_ADD() */
114#define DLIST_ADD_AFTER(list, p, el) \
115do { \
116 if (!(list) || !(el)) { \
117 DLIST_ADD(list, p); \
118 } else { \
119 (p)->prev = (el); \
120 (p)->next = (el)->next; \
121 (el)->next = (p); \
122 if ((p)->next) (p)->next->prev = (p); \
123 if ((list)->prev == (el)) (list)->prev = (p); \
124 }\
125} while (0)
126
127
128/*
129 add to the end of a list.
130*/
131#define DLIST_ADD_END(list, p) \
132do { \
133 if (!(list)) { \
134 DLIST_ADD(list, p); \
135 } else { \
136 DLIST_ADD_AFTER(list, p, (list)->prev); \
137 } \
138} while (0)
139
140/* promote an element to the front of a list */
141#define DLIST_PROMOTE(list, p) \
142do { \
143 DLIST_REMOVE(list, p); \
144 DLIST_ADD(list, p); \
145} while (0)
146
147/*
148 demote an element to the end of a list.
149*/
150#define DLIST_DEMOTE(list, p) \
151do { \
152 DLIST_REMOVE(list, p); \
153 DLIST_ADD_END(list, p); \
154} while (0)
155
156/*
157 concatenate two lists - putting all elements of the 2nd list at the
158 end of the first list.
159*/
160#define DLIST_CONCATENATE(list1, list2) \
161do { \
162 if (!(list1)) { \
163 (list1) = (list2); \
164 } else { \
165 (list1)->prev->next = (list2); \
166 if (list2) { \
167 void *_tmplist = (void *)(list1)->prev; \
168 (list1)->prev = (list2)->prev; \
169 (list2)->prev = _tmplist; \
170 } \
171 } \
172} while (0)
173
174#endif /* _DLINKLIST_H */
175
176const char **ev_str_list_add(const char **list, const char *s);
177int ev_set_blocking(int fd, bool set);
178size_t ev_str_list_length(const char **list);
179bool ev_set_close_on_exec(int fd);
180
181/* Defined here so we can build against older talloc versions that don't
182 * have this define yet. */
183#ifndef TALLOC_FREE
184#define TALLOC_FREE(ctx) do { talloc_free(ctx); ctx=NULL; } while(0)
185#endif
Note: See TracBrowser for help on using the repository browser.