1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
// -*-c++-*-
/* $Id: list.h,v 1.4 1998/11/23 02:26:20 dm Exp $ */
/*
*
* Copyright (C) 1998 David Mazieres (dm@uun.org)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
*/
#ifndef _LIST_H_INCLUDED_
#define _LIST_H_INCLUDED_ 1
template<class T>
struct list_entry {
T *next;
T **pprev;
};
template<class T, list_entry<T> T::*field>
struct list {
T *first;
list() {first = NULL;}
void insert_head (T *elm) {
if (((elm->*field).next = first))
(first->*field).pprev = &(elm->*field).next;
first = elm;
(elm->*field).pprev = &first;
}
static T *remove (T *elm) {
if ((elm->*field).next)
((elm->*field).next->*field).pprev = (elm->*field).pprev;
*(elm->*field).pprev = (elm->*field).next;
return elm;
}
static T *next (T *elm) {
return (elm->*field).next;
}
void traverse (callback<void, T*>::ref cb) const {
T *p, *np;
for (p = first; p; p = np) {
np = (p->*field).next;
(*cb) (p);
}
}
};
#if 0
template<class T> inline void
list_remove (T *elm, list_entry<T> T::*field)
{
list<T, field>::remove (elm);
}
#endif
template<class T>
struct tailq_entry {
T *next;
T **pprev;
};
template<class T, tailq_entry<T> T::*field>
struct tailq {
T *first;
T **plast;
tailq () {first = NULL; plast = &first;}
void insert_head (T *elm) {
if (((elm->*field).next = first))
(first->*field).pprev = &(elm->*field).next;
else
plast = &(elm->*field).next;
first = elm;
(elm->*field).pprev = &first;
}
void insert_tail (T *elm) {
(elm->*field).next = NULL;
(elm->*field).pprev = plast;
*plast = elm;
plast = &(elm->*field).next;
}
T *remove (T *elm) {
if ((elm->*field).next)
((elm->*field).next->*field).pprev = (elm->*field).pprev;
else
plast = (elm->*field).pprev;
*(elm->*field).pprev = (elm->*field).next;
return elm;
}
static T *next (T *elm) {
return (elm->*field).next;
}
void traverse (callback<void, T *>::ref cb) const {
T *p, *np;
for (p = first; p; p = np) {
np = (p->*field).next;
(*cb) (p);
}
}
};
#endif /* !_LIST_H_INCLUDED_ */
|