lst.h revision 1.6 1 1.6 christos /* $NetBSD: lst.h,v 1.6 1996/02/04 22:20:46 christos Exp $ */
2 1.5 christos
3 1.1 cgd /*
4 1.1 cgd * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
5 1.1 cgd * Copyright (c) 1988, 1989 by Adam de Boor
6 1.1 cgd * Copyright (c) 1989 by Berkeley Softworks
7 1.1 cgd * All rights reserved.
8 1.1 cgd *
9 1.1 cgd * This code is derived from software contributed to Berkeley by
10 1.1 cgd * Adam de Boor.
11 1.1 cgd *
12 1.1 cgd * Redistribution and use in source and binary forms, with or without
13 1.1 cgd * modification, are permitted provided that the following conditions
14 1.1 cgd * are met:
15 1.1 cgd * 1. Redistributions of source code must retain the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer.
17 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
18 1.1 cgd * notice, this list of conditions and the following disclaimer in the
19 1.1 cgd * documentation and/or other materials provided with the distribution.
20 1.1 cgd * 3. All advertising materials mentioning features or use of this software
21 1.1 cgd * must display the following acknowledgement:
22 1.1 cgd * This product includes software developed by the University of
23 1.1 cgd * California, Berkeley and its contributors.
24 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
25 1.1 cgd * may be used to endorse or promote products derived from this software
26 1.1 cgd * without specific prior written permission.
27 1.1 cgd *
28 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 1.1 cgd * SUCH DAMAGE.
39 1.1 cgd *
40 1.2 mycroft * from: @(#)lst.h 5.3 (Berkeley) 6/1/90
41 1.1 cgd */
42 1.1 cgd
43 1.1 cgd /*-
44 1.1 cgd * lst.h --
45 1.1 cgd * Header for using the list library
46 1.1 cgd */
47 1.1 cgd #ifndef _LST_H_
48 1.1 cgd #define _LST_H_
49 1.1 cgd
50 1.1 cgd #include <sprite.h>
51 1.6 christos #include <sys/param.h>
52 1.3 cgd #if __STDC__
53 1.3 cgd #include <stdlib.h>
54 1.3 cgd #endif
55 1.1 cgd
56 1.1 cgd /*
57 1.1 cgd * basic typedef. This is what the Lst_ functions handle
58 1.1 cgd */
59 1.1 cgd
60 1.1 cgd typedef struct Lst *Lst;
61 1.1 cgd typedef struct LstNode *LstNode;
62 1.1 cgd
63 1.1 cgd #define NILLST ((Lst) NIL)
64 1.1 cgd #define NILLNODE ((LstNode) NIL)
65 1.1 cgd
66 1.1 cgd /*
67 1.1 cgd * NOFREE can be used as the freeProc to Lst_Destroy when the elements are
68 1.1 cgd * not to be freed.
69 1.1 cgd * NOCOPY performs similarly when given as the copyProc to Lst_Duplicate.
70 1.1 cgd */
71 1.4 jtc #define NOFREE ((void (*) __P((ClientData))) 0)
72 1.4 jtc #define NOCOPY ((ClientData (*) __P((ClientData))) 0)
73 1.1 cgd
74 1.1 cgd #define LST_CONCNEW 0 /* create new LstNode's when using Lst_Concat */
75 1.1 cgd #define LST_CONCLINK 1 /* relink LstNode's when using Lst_Concat */
76 1.1 cgd
77 1.1 cgd /*
78 1.1 cgd * Creation/destruction functions
79 1.1 cgd */
80 1.4 jtc /* Create a new list */
81 1.4 jtc Lst Lst_Init __P((Boolean));
82 1.4 jtc /* Duplicate an existing list */
83 1.4 jtc Lst Lst_Duplicate __P((Lst, ClientData (*)(ClientData)));
84 1.4 jtc /* Destroy an old one */
85 1.4 jtc void Lst_Destroy __P((Lst, void (*)(ClientData)));
86 1.4 jtc /* True if list is empty */
87 1.4 jtc Boolean Lst_IsEmpty __P((Lst));
88 1.1 cgd
89 1.1 cgd /*
90 1.1 cgd * Functions to modify a list
91 1.1 cgd */
92 1.4 jtc /* Insert an element before another */
93 1.4 jtc ReturnStatus Lst_Insert __P((Lst, LstNode, ClientData));
94 1.4 jtc /* Insert an element after another */
95 1.4 jtc ReturnStatus Lst_Append __P((Lst, LstNode, ClientData));
96 1.4 jtc /* Place an element at the front of a lst. */
97 1.4 jtc ReturnStatus Lst_AtFront __P((Lst, ClientData));
98 1.4 jtc /* Place an element at the end of a lst. */
99 1.4 jtc ReturnStatus Lst_AtEnd __P((Lst, ClientData));
100 1.4 jtc /* Remove an element */
101 1.4 jtc ReturnStatus Lst_Remove __P((Lst, LstNode));
102 1.4 jtc /* Replace a node with a new value */
103 1.4 jtc ReturnStatus Lst_Replace __P((LstNode, ClientData));
104 1.4 jtc /* Concatenate two lists */
105 1.4 jtc ReturnStatus Lst_Concat __P((Lst, Lst, int));
106 1.1 cgd
107 1.1 cgd /*
108 1.1 cgd * Node-specific functions
109 1.1 cgd */
110 1.4 jtc /* Return first element in list */
111 1.4 jtc LstNode Lst_First __P((Lst));
112 1.4 jtc /* Return last element in list */
113 1.4 jtc LstNode Lst_Last __P((Lst));
114 1.4 jtc /* Return successor to given element */
115 1.4 jtc LstNode Lst_Succ __P((LstNode));
116 1.4 jtc /* Get datum from LstNode */
117 1.4 jtc ClientData Lst_Datum __P((LstNode));
118 1.1 cgd
119 1.1 cgd /*
120 1.1 cgd * Functions for entire lists
121 1.1 cgd */
122 1.4 jtc /* Find an element in a list */
123 1.4 jtc LstNode Lst_Find __P((Lst, ClientData,
124 1.4 jtc int (*)(ClientData, ClientData)));
125 1.4 jtc /* Find an element starting from somewhere */
126 1.4 jtc LstNode Lst_FindFrom __P((Lst, LstNode, ClientData,
127 1.4 jtc int (*cProc)(ClientData, ClientData)));
128 1.4 jtc /*
129 1.4 jtc * See if the given datum is on the list. Returns the LstNode containing
130 1.4 jtc * the datum
131 1.4 jtc */
132 1.4 jtc LstNode Lst_Member __P((Lst, ClientData));
133 1.4 jtc /* Apply a function to all elements of a lst */
134 1.4 jtc void Lst_ForEach __P((Lst, int (*)(ClientData, ClientData),
135 1.4 jtc ClientData));
136 1.4 jtc /*
137 1.4 jtc * Apply a function to all elements of a lst starting from a certain point.
138 1.4 jtc * If the list is circular, the application will wrap around to the
139 1.4 jtc * beginning of the list again.
140 1.4 jtc */
141 1.4 jtc void Lst_ForEachFrom __P((Lst, LstNode,
142 1.4 jtc int (*)(ClientData, ClientData),
143 1.4 jtc ClientData));
144 1.1 cgd /*
145 1.1 cgd * these functions are for dealing with a list as a table, of sorts.
146 1.1 cgd * An idea of the "current element" is kept and used by all the functions
147 1.1 cgd * between Lst_Open() and Lst_Close().
148 1.1 cgd */
149 1.4 jtc /* Open the list */
150 1.4 jtc ReturnStatus Lst_Open __P((Lst));
151 1.4 jtc /* Next element please */
152 1.4 jtc LstNode Lst_Next __P((Lst));
153 1.4 jtc /* Done yet? */
154 1.4 jtc Boolean Lst_IsAtEnd __P((Lst));
155 1.4 jtc /* Finish table access */
156 1.4 jtc void Lst_Close __P((Lst));
157 1.1 cgd
158 1.1 cgd /*
159 1.1 cgd * for using the list as a queue
160 1.1 cgd */
161 1.4 jtc /* Place an element at tail of queue */
162 1.4 jtc ReturnStatus Lst_EnQueue __P((Lst, ClientData));
163 1.4 jtc /* Remove an element from head of queue */
164 1.4 jtc ClientData Lst_DeQueue __P((Lst));
165 1.1 cgd
166 1.4 jtc #endif /* _LST_H_ */
167