- Fixed a lot of small things. Tested everything except deletions.
[tinc] / lib / rbl.h
1 /*
2     rbl.h -- header file for rbl.c
3     Copyright (C) 2000 Ivo Timmermans <itimmermans@bigfoot.com>,
4                   2000 Guus Sliepen <guus@sliepen.warande.net>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: rbl.h,v 1.1.2.4 2000/11/19 02:04:29 guus Exp $
21 */
22
23 typedef int (*rbl_compare_t) (const void *, const void *);
24 typedef void (*rbl_action_t) (const void *);
25
26 typedef struct rbl_t
27 {
28   /* 'red-black tree' part */
29
30   struct rbltree_t *tree;
31
32   int color;
33
34   struct rbl_t *parent;
35   struct rbl_t *left;
36   struct rbl_t *right;
37   
38   /* 'linked list' part */
39   
40   struct rbl_t *prev;
41   struct rbl_t *next;
42   
43   /* payload */
44   
45   void *data;
46    
47 } rbl_t;
48
49 typedef struct rbltree_t
50 {
51   /* callback functions */
52
53   rbl_compare_t compare;
54   rbl_action_t delete;
55
56   /* tree part */
57
58   struct rbl_t *top;
59
60   /* linked list */
61
62   struct rbl_t *head;
63   struct rbl_t *tail;
64
65 } rbltree_t;
66
67 enum color
68 {
69   RBL_RED,
70   RBL_BLACK
71 } color;
72
73 extern rbltree_t *new_rbltree(rbl_compare_t, rbl_action_t);
74 extern void free_rbltree(rbltree_t *);
75 extern rbl_t *new_rbl(void);
76 extern void free_rbl(rbl_t *);
77
78 extern rbl_t *rbl_search(rbltree_t *, void *);
79 extern rbl_t *rbl_search_closest(rbltree_t *, void *);
80 extern rbl_t *rbl_insert(rbltree_t *, void *);
81 extern rbl_t *rbl_unlink(rbltree_t *, void *);
82 extern void rbl_delete(rbltree_t *, void *);
83 extern rbl_t *rbl_insert_rbl(rbltree_t *, rbl_t *);
84 extern rbl_t *rbl_unlink_rbl(rbl_t *);
85 extern void rbl_delete_rbl(rbl_t *);
86
87 extern void rbl_foreach(rbltree_t *, rbl_action_t);