Home | History | Annotate | Line # | Download | only in make
lst.h revision 1.9
      1  1.9       wiz /*	$NetBSD: lst.h,v 1.9 2002/06/15 18:24:57 wiz 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.7  christos  *	from: @(#)lst.h	8.1 (Berkeley) 6/6/93
     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.6  christos #include	<sys/param.h>
     51  1.3       cgd #include	<stdlib.h>
     52  1.9       wiz 
     53  1.8   hubertf #include	"sprite.h"
     54  1.1       cgd 
     55  1.1       cgd /*
     56  1.1       cgd  * basic typedef. This is what the Lst_ functions handle
     57  1.1       cgd  */
     58  1.1       cgd 
     59  1.1       cgd typedef	struct	Lst	*Lst;
     60  1.1       cgd typedef	struct	LstNode	*LstNode;
     61  1.1       cgd 
     62  1.1       cgd #define	NILLST		((Lst) NIL)
     63  1.1       cgd #define	NILLNODE	((LstNode) NIL)
     64  1.1       cgd 
     65  1.1       cgd /*
     66  1.1       cgd  * NOFREE can be used as the freeProc to Lst_Destroy when the elements are
     67  1.1       cgd  *	not to be freed.
     68  1.1       cgd  * NOCOPY performs similarly when given as the copyProc to Lst_Duplicate.
     69  1.1       cgd  */
     70  1.9       wiz #define NOFREE		((void (*)(ClientData)) 0)
     71  1.9       wiz #define NOCOPY		((ClientData (*)(ClientData)) 0)
     72  1.1       cgd 
     73  1.1       cgd #define LST_CONCNEW	0   /* create new LstNode's when using Lst_Concat */
     74  1.1       cgd #define LST_CONCLINK	1   /* relink LstNode's when using Lst_Concat */
     75  1.1       cgd 
     76  1.1       cgd /*
     77  1.1       cgd  * Creation/destruction functions
     78  1.1       cgd  */
     79  1.4       jtc /* Create a new list */
     80  1.9       wiz Lst		Lst_Init(Boolean);
     81  1.4       jtc /* Duplicate an existing list */
     82  1.9       wiz Lst		Lst_Duplicate(Lst, ClientData (*)(ClientData));
     83  1.4       jtc /* Destroy an old one */
     84  1.9       wiz void		Lst_Destroy(Lst, void (*)(ClientData));
     85  1.4       jtc /* True if list is empty */
     86  1.9       wiz Boolean		Lst_IsEmpty(Lst);
     87  1.1       cgd 
     88  1.1       cgd /*
     89  1.1       cgd  * Functions to modify a list
     90  1.1       cgd  */
     91  1.4       jtc /* Insert an element before another */
     92  1.9       wiz ReturnStatus	Lst_Insert(Lst, LstNode, ClientData);
     93  1.4       jtc /* Insert an element after another */
     94  1.9       wiz ReturnStatus	Lst_Append(Lst, LstNode, ClientData);
     95  1.4       jtc /* Place an element at the front of a lst. */
     96  1.9       wiz ReturnStatus	Lst_AtFront(Lst, ClientData);
     97  1.4       jtc /* Place an element at the end of a lst. */
     98  1.9       wiz ReturnStatus	Lst_AtEnd(Lst, ClientData);
     99  1.4       jtc /* Remove an element */
    100  1.9       wiz ReturnStatus	Lst_Remove(Lst, LstNode);
    101  1.4       jtc /* Replace a node with a new value */
    102  1.9       wiz ReturnStatus	Lst_Replace(LstNode, ClientData);
    103  1.4       jtc /* Concatenate two lists */
    104  1.9       wiz ReturnStatus	Lst_Concat(Lst, Lst, int);
    105  1.1       cgd 
    106  1.1       cgd /*
    107  1.1       cgd  * Node-specific functions
    108  1.1       cgd  */
    109  1.4       jtc /* Return first element in list */
    110  1.9       wiz LstNode		Lst_First(Lst);
    111  1.4       jtc /* Return last element in list */
    112  1.9       wiz LstNode		Lst_Last(Lst);
    113  1.4       jtc /* Return successor to given element */
    114  1.9       wiz LstNode		Lst_Succ(LstNode);
    115  1.4       jtc /* Get datum from LstNode */
    116  1.9       wiz ClientData	Lst_Datum(LstNode);
    117  1.1       cgd 
    118  1.1       cgd /*
    119  1.1       cgd  * Functions for entire lists
    120  1.1       cgd  */
    121  1.4       jtc /* Find an element in a list */
    122  1.9       wiz LstNode		Lst_Find(Lst, ClientData, int (*)(ClientData, ClientData));
    123  1.4       jtc /* Find an element starting from somewhere */
    124  1.9       wiz LstNode		Lst_FindFrom(Lst, LstNode, ClientData,
    125  1.9       wiz 			     int (*cProc)(ClientData, ClientData));
    126  1.7  christos /*
    127  1.4       jtc  * See if the given datum is on the list. Returns the LstNode containing
    128  1.4       jtc  * the datum
    129  1.4       jtc  */
    130  1.9       wiz LstNode		Lst_Member(Lst, ClientData);
    131  1.4       jtc /* Apply a function to all elements of a lst */
    132  1.9       wiz void		Lst_ForEach(Lst, int (*)(ClientData, ClientData), ClientData);
    133  1.4       jtc /*
    134  1.4       jtc  * Apply a function to all elements of a lst starting from a certain point.
    135  1.4       jtc  * If the list is circular, the application will wrap around to the
    136  1.4       jtc  * beginning of the list again.
    137  1.4       jtc  */
    138  1.9       wiz void		Lst_ForEachFrom(Lst, LstNode, int (*)(ClientData, ClientData),
    139  1.9       wiz 				ClientData);
    140  1.1       cgd /*
    141  1.1       cgd  * these functions are for dealing with a list as a table, of sorts.
    142  1.1       cgd  * An idea of the "current element" is kept and used by all the functions
    143  1.1       cgd  * between Lst_Open() and Lst_Close().
    144  1.1       cgd  */
    145  1.4       jtc /* Open the list */
    146  1.9       wiz ReturnStatus	Lst_Open(Lst);
    147  1.4       jtc /* Next element please */
    148  1.9       wiz LstNode		Lst_Next(Lst);
    149  1.4       jtc /* Done yet? */
    150  1.9       wiz Boolean		Lst_IsAtEnd(Lst);
    151  1.4       jtc /* Finish table access */
    152  1.9       wiz void		Lst_Close(Lst);
    153  1.1       cgd 
    154  1.1       cgd /*
    155  1.1       cgd  * for using the list as a queue
    156  1.1       cgd  */
    157  1.4       jtc /* Place an element at tail of queue */
    158  1.9       wiz ReturnStatus	Lst_EnQueue(Lst, ClientData);
    159  1.4       jtc /* Remove an element from head of queue */
    160  1.9       wiz ClientData	Lst_DeQueue(Lst);
    161  1.1       cgd 
    162  1.4       jtc #endif /* _LST_H_ */
    163