[BACK]Return to lst.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Annotation of src/usr.bin/make/lst.h, Revision 1.29

1.20      espie       1: #ifndef _LST_H_
                      2: #define _LST_H_
                      3:
1.29    ! espie       4: /*     $OpenBSD: lst.h,v 1.28 2010/07/19 19:30:37 espie Exp $ */
1.19      espie       5: /*     $NetBSD: lst.h,v 1.7 1996/11/06 17:59:12 christos Exp $ */
1.1       deraadt     6:
                      7: /*
                      8:  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
                      9:  * Copyright (c) 1988, 1989 by Adam de Boor
                     10:  * Copyright (c) 1989 by Berkeley Softworks
                     11:  * All rights reserved.
                     12:  *
                     13:  * This code is derived from software contributed to Berkeley by
                     14:  * Adam de Boor.
                     15:  *
                     16:  * Redistribution and use in source and binary forms, with or without
                     17:  * modification, are permitted provided that the following conditions
                     18:  * are met:
                     19:  * 1. Redistributions of source code must retain the above copyright
                     20:  *    notice, this list of conditions and the following disclaimer.
                     21:  * 2. Redistributions in binary form must reproduce the above copyright
                     22:  *    notice, this list of conditions and the following disclaimer in the
                     23:  *    documentation and/or other materials provided with the distribution.
1.25      millert    24:  * 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    25:  *    may be used to endorse or promote products derived from this software
                     26:  *    without specific prior written permission.
                     27:  *
                     28:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     29:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     30:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     31:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     32:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     33:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     34:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     35:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     36:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     37:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     38:  * SUCH DAMAGE.
                     39:  *
1.19      espie      40:  *     from: @(#)lst.h 8.1 (Berkeley) 6/6/93
1.1       deraadt    41:  */
                     42:
                     43: /*-
                     44:  * lst.h --
                     45:  *     Header for using the list library
                     46:  */
                     47:
1.14      espie      48: /* These data structures are PRIVATE !!!
                     49:  * Here for efficiency, so that some functions can be recoded as inlines,
                     50:  * and so that lst headers don't need dynamic allocation most of the time.  */
1.20      espie      51: struct ListNode_ {
1.19      espie      52:        struct ListNode_    *prevPtr;   /* previous element in list */
                     53:        struct ListNode_    *nextPtr;   /* next in list */
1.14      espie      54:        void                *datum;     /* datum associated with this element */
1.20      espie      55: };
1.14      espie      56:
1.20      espie      57: #ifndef LIST_TYPE
                     58: #include "lst_t.h"
                     59: #endif
1.1       deraadt    60:
1.19      espie      61: typedef void (*SimpleProc)(void *);
                     62: typedef int (*FindProc)(void *, void *);
1.26      espie      63: typedef int (*ForEachNodeWhileProc)(LstNode, void *);
1.19      espie      64: typedef int (*FindProcConst)(void *, const void *);
                     65: typedef void (*ForEachProc)(void *, void *);
                     66: typedef void *(*DuplicateProc)(void *);
1.1       deraadt    67:
                     68: /*
                     69:  * NOFREE can be used as the freeProc to Lst_Destroy when the elements are
                     70:  *     not to be freed.
1.19      espie      71:  * NOCOPY performs similarly when given as the copyProc to Lst_Duplicate.
1.1       deraadt    72:  */
1.19      espie      73: #define NOFREE         ((SimpleProc) 0)
                     74: #define NOCOPY         ((DuplicateProc) 0)
1.1       deraadt    75:
                     76: /*
1.19      espie      77:  * Creation/destruction functions
1.1       deraadt    78:  */
1.16      espie      79: /* Create a new list */
1.24      espie      80: #define Lst_Init(l)    (l)->firstPtr = (l)->lastPtr = NULL
                     81: /* Static lists are already okay */
                     82: #define Static_Lst_Init(l)
                     83:
1.19      espie      84: /* Duplicate an existing list */
                     85: extern Lst             Lst_Clone(Lst, Lst, DuplicateProc);
1.16      espie      86: /* Destroy an old one */
1.19      espie      87: extern void            Lst_Destroy(LIST *, SimpleProc);
1.1       deraadt    88: /* True if list is empty */
1.19      espie      89: #define        Lst_IsEmpty(l)  ((l)->firstPtr == NULL)
1.1       deraadt    90:
                     91: /*
1.19      espie      92:  * Functions to modify a list
1.1       deraadt    93:  */
                     94: /* Insert an element before another */
1.19      espie      95: extern void            Lst_Insert(Lst, LstNode, void *);
                     96: extern void            Lst_AtFront(Lst, void *);
1.1       deraadt    97: /* Insert an element after another */
1.19      espie      98: extern void            Lst_Append(Lst, LstNode, void *);
                     99: extern void            Lst_AtEnd(Lst, void *);
1.1       deraadt   100: /* Remove an element */
1.19      espie     101: extern void            Lst_Remove(Lst, LstNode);
1.1       deraadt   102: /* Replace a node with a new value */
1.19      espie     103: extern void            Lst_Replace(LstNode, void *);
                    104: /* Concatenate two lists, destructive. */
                    105: extern void            Lst_ConcatDestroy(Lst, Lst);
                    106: /* Concatenate two lists, non-destructive.  */
                    107: extern void            Lst_Concat(Lst, Lst);
1.27      espie     108: /* requeue element already in list at front of list */
                    109: extern void            Lst_Requeue(Lst, LstNode);
1.1       deraadt   110:
                    111: /*
1.19      espie     112:  * Node-specific functions
1.1       deraadt   113:  */
                    114: /* Return first element in list */
                    115: /* Return last element in list */
                    116: /* Return successor to given element */
1.19      espie     117: extern LstNode         Lst_Succ(LstNode);
1.1       deraadt   118:
                    119: /*
1.19      espie     120:  * Functions for entire lists
1.1       deraadt   121:  */
                    122: /* Find an element starting from somewhere */
1.19      espie     123: extern LstNode         Lst_FindFrom(LstNode, FindProc, void *);
1.1       deraadt   124: /*
1.19      espie     125:  * See if the given datum is on the list. Returns the LstNode containing
                    126:  * the datum
1.1       deraadt   127:  */
1.19      espie     128: extern LstNode         Lst_Member(Lst, void *);
                    129: /* Apply a function to elements of a lst starting from a certain point.  */
                    130: extern void            Lst_ForEachFrom(LstNode, ForEachProc, void *);
                    131: extern void            Lst_Every(Lst, SimpleProc);
1.26      espie     132:
                    133: extern void            Lst_ForEachNodeWhile(Lst, ForEachNodeWhileProc, void *);
1.1       deraadt   134:
1.20      espie     135: extern bool            Lst_AddNew(Lst, void *);
1.1       deraadt   136: /*
1.19      espie     137:  * for using the list as a queue
1.1       deraadt   138:  */
                    139: /* Place an element at tail of queue */
1.19      espie     140: #define Lst_EnQueue    Lst_AtEnd
                    141: #define Lst_QueueNew   Lst_AddNew
                    142:
1.20      espie     143: /*
                    144:  * for using the list as a stack
                    145:  */
                    146: #define Lst_Push       Lst_AtFront
                    147: #define Lst_Pop                Lst_DeQueue
                    148:
1.1       deraadt   149: /* Remove an element from head of queue */
1.19      espie     150: extern void *  Lst_DeQueue(Lst);
                    151:
                    152: #define Lst_Datum(ln)  ((ln)->datum)
                    153: #define Lst_First(l)   ((l)->firstPtr)
                    154: #define Lst_Last(l)    ((l)->lastPtr)
                    155: #define Lst_ForEach(l, proc, d) Lst_ForEachFrom(Lst_First(l), proc, d)
                    156: #define Lst_Find(l, cProc, d)  Lst_FindFrom(Lst_First(l), cProc, d)
                    157: #define Lst_Adv(ln)    ((ln)->nextPtr)
                    158: #define Lst_Rev(ln)    ((ln)->prevPtr)
                    159:
                    160:
1.20      espie     161: /* Inlines are preferable to macros here because of the type checking. */
1.19      espie     162: #ifdef HAS_INLINES
                    163: static INLINE LstNode
                    164: Lst_FindConst(Lst l, FindProcConst cProc, const void *d)
                    165: {
                    166:        return Lst_FindFrom(Lst_First(l), (FindProc)cProc, (void *)d);
                    167: }
                    168:
                    169: static INLINE LstNode
                    170: Lst_FindFromConst(LstNode ln, FindProcConst cProc, const void *d)
                    171: {
                    172:        return Lst_FindFrom(ln, (FindProc)cProc, (void *)d);
                    173: }
                    174: #else
                    175: #define Lst_FindConst(l, cProc, d) \
                    176:        Lst_FindFrom(Lst_First(l), (FindProc)cProc, (void *)d)
                    177: #define Lst_FindFromConst(ln, cProc, d) \
                    178:        Lst_FindFrom(ln, (FindProc)cProc, (void *)d)
                    179: #endif
1.1       deraadt   180:
                    181: #endif /* _LST_H_ */