lst.h revision 1.86 1 /* $NetBSD: lst.h,v 1.86 2020/11/24 19:46:29 rillig Exp $ */
2
3 /*
4 * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * from: @(#)lst.h 8.1 (Berkeley) 6/6/93
35 */
36
37 /*
38 * Copyright (c) 1988, 1989 by Adam de Boor
39 * Copyright (c) 1989 by Berkeley Softworks
40 * All rights reserved.
41 *
42 * This code is derived from software contributed to Berkeley by
43 * Adam de Boor.
44 *
45 * Redistribution and use in source and binary forms, with or without
46 * modification, are permitted provided that the following conditions
47 * are met:
48 * 1. Redistributions of source code must retain the above copyright
49 * notice, this list of conditions and the following disclaimer.
50 * 2. Redistributions in binary form must reproduce the above copyright
51 * notice, this list of conditions and the following disclaimer in the
52 * documentation and/or other materials provided with the distribution.
53 * 3. All advertising materials mentioning features or use of this software
54 * must display the following acknowledgement:
55 * This product includes software developed by the University of
56 * California, Berkeley and its contributors.
57 * 4. Neither the name of the University nor the names of its contributors
58 * may be used to endorse or promote products derived from this software
59 * without specific prior written permission.
60 *
61 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
62 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
63 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
64 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
65 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
66 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
67 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
68 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
69 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
70 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
71 * SUCH DAMAGE.
72 *
73 * from: @(#)lst.h 8.1 (Berkeley) 6/6/93
74 */
75
76 /* Doubly-linked lists of arbitrary pointers. */
77
78 #ifndef MAKE_LST_H
79 #define MAKE_LST_H
80
81 #include <sys/param.h>
82 #include <stdint.h>
83 #include <stdlib.h>
84
85 /* A doubly-linked list of pointers. */
86 typedef struct List List;
87 /* A single node in the doubly-linked list. */
88 typedef struct ListNode ListNode;
89
90 struct ListNode {
91 ListNode *prev; /* previous node in list, or NULL */
92 ListNode *next; /* next node in list, or NULL */
93 union {
94 void *datum; /* datum associated with this element */
95 const struct GNode *priv_gnode; /* alias, just for debugging */
96 const char *priv_str; /* alias, just for debugging */
97 };
98 };
99
100 struct List {
101 ListNode *first; /* first node in list */
102 ListNode *last; /* last node in list */
103 };
104
105 /* Free the datum of a node, called before freeing the node itself. */
106 typedef void LstFreeProc(void *);
107 /* An action for Lst_ForEachUntil and Lst_ForEachUntilConcurrent. */
108 typedef int LstActionUntilProc(void *datum, void *args);
109
110 /* Create or destroy a list */
111
112 /* Create a new list. */
113 List *Lst_New(void);
114 /* Free the list, leaving the node data unmodified. */
115 void Lst_Free(List *);
116 /* Free the list, freeing the node data using the given function. */
117 void Lst_Destroy(List *, LstFreeProc);
118
119 /* Get information about a list */
120
121 MAKE_INLINE Boolean
122 Lst_IsEmpty(List *list)
123 { return list->first == NULL; }
124
125 /* Find the first node that contains the given datum, or NULL. */
126 ListNode *Lst_FindDatum(List *, const void *);
127
128 /* Modify a list */
129
130 /* Insert a datum before the given node. */
131 void Lst_InsertBefore(List *, ListNode *, void *);
132 /* Place a datum at the front of the list. */
133 void Lst_Prepend(List *, void *);
134 /* Place a datum at the end of the list. */
135 void Lst_Append(List *, void *);
136 /* Remove the node from the list. */
137 void Lst_Remove(List *, ListNode *);
138 void Lst_PrependAll(List *, List *);
139 void Lst_AppendAll(List *, List *);
140 void Lst_MoveAll(List *, List *);
141
142 /* Node-specific functions */
143
144 /* Replace the value of the node. */
145 void LstNode_Set(ListNode *, void *);
146 /* Set the value of the node to NULL. Having NULL in a list is unusual. */
147 void LstNode_SetNull(ListNode *);
148
149 /* Iterating over a list, using a callback function */
150
151 /* Run the action for each datum of the list, until the action returns
152 * non-zero.
153 *
154 * During this iteration, the list must not be modified structurally. */
155 int Lst_ForEachUntil(List *, LstActionUntilProc, void *);
156
157 /* Using the list as a queue */
158
159 /* Add a datum at the tail of the queue. */
160 void Lst_Enqueue(List *, void *);
161 /* Remove the head node of the queue and return its datum. */
162 void *Lst_Dequeue(List *);
163
164 /* A vector is an ordered collection of items, allowing for fast indexed
165 * access. */
166 typedef struct Vector {
167 void *items; /* memory holding the items */
168 size_t itemSize; /* size of a single item in bytes */
169 size_t len; /* number of actually usable elements */
170 size_t priv_cap; /* capacity */
171 } Vector;
172
173 void Vector_Init(Vector *, size_t);
174
175 /* Return the pointer to the given item in the vector.
176 * The returned data is valid until the next modifying operation. */
177 MAKE_INLINE void *
178 Vector_Get(Vector *v, size_t i)
179 {
180 unsigned char *items = v->items;
181 return items + i * v->itemSize;
182 }
183
184 void *Vector_Push(Vector *);
185 void *Vector_Pop(Vector *);
186 void Vector_Done(Vector *);
187
188 #endif /* MAKE_LST_H */
189