about summary refs log tree commit diff
path: root/src/c-rbtree/src/c-rbtree.h
blob: 74a402ab544d90a0e1c32044724cf7839811f741 (plain)
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
#pragma once

/*
 * c-rbtree: Standalone Red-Black-Tree Implementation in Standard ISO-C11
 *
 * Main public header of the c-rbtree library.
 */

#ifdef __cplusplus
extern "C" {
#endif

/**
 * DOC:
 *
 * The ``c-rbtree.h`` header exposes the full API of the c-rbtree library. It
 * provides access to the Red-Black Tree structure as well as helper functions
 * to perform standard tree operations.
 *
 * A tree is represented by the :c:struct:`CRBTree` structure. It contains a
 * *single* field, which is a pointer to the root node. If NULL, the tree is
 * empty. If non-NULL, there is at least a single element in the tree.
 *
 * Each node of the tree is represented by the :c:struct:`CRBNode` structure.
 * It has three fields. The ``left`` and ``right`` members can be accessed by
 * the API user directly to traverse the tree. The third member is a
 * combination of the parent pointer and a set of flags. API users are required
 * to embed the :c:struct:`CRBNode` object into their own objects and then use
 * ``offsetof()`` (i.e., ``container_of()`` and friends) to turn
 * :c:struct:`CRBNode` pointers into pointers to their own enclosing type:
 */
/**/

#include <assert.h>
#include <stdalign.h>
#include <stddef.h>

typedef struct CRBNode CRBNode;
typedef struct CRBTree CRBTree;

/* implementation detail */
#define C_RBNODE_RED                    (0x1UL)
#define C_RBNODE_ROOT                   (0x2UL)
#define C_RBNODE_FLAG_MASK              (0x3UL)

/**
 * DOC: Tree Structure
 *
 * The tree structure of c-rbtree is directly exposed in its API. Callers are
 * allowed to access the node and tree structures directly to traverse the
 * tree. Tree modifications, however, should be performed via the functions
 * provided by the library.
 */
/**/

/**
 * struct CRBNode - Node of a Red-Black Tree
 *
 * Each node in an RB-Tree must embed a :c:struct:`CRBNode` object. This object
 * contains pointers to its left and right child, which can be freely accessed
 * by the API user at any time. They are NULL, if the node does not have a
 * left/right child.
 *
 * The ``__parent_and_flags`` field must never be accessed directly. It encodes
 * the pointer to the parent node, and the color of the node. Use the accessor
 * functions instead.
 *
 * There is no reason to initialize a :c:struct:`CRBNode` object before linking
 * it. However, if you need a boolean state that tells you whether the node is
 * linked or not, you should initialize the node via :c:func:`c_rbnode_init()`
 * or :c:macro:`C_RBNODE_INIT()`.
 */
struct CRBNode {
        /* Anonymous union for alignment guarantees */
        union {
                /* Internal state encoding the parent pointer and state */
                unsigned long __parent_and_flags;
                /* enforce >=4-byte alignment for @__parent_and_flags */
                alignas(4) unsigned char __align_dummy;
        };
        /** Left child, or NULL */
        CRBNode *left;
        /** Right child, or NULL */
        CRBNode *right;
};

/**
 * C_RBNODE_INIT() - Initialize RBNode Object
 * @_var:               Backpointer to the variable
 *
 * Set the contents of the specified node to its unlinked, unused state, ready
 * to be linked into a tree.
 *
 * Return: Evaluates to the initializer for `_var`.
 */
#define C_RBNODE_INIT(_var) { .__parent_and_flags = (unsigned long)&(_var) }

CRBNode *c_rbnode_leftmost(CRBNode *n);
CRBNode *c_rbnode_rightmost(CRBNode *n);
CRBNode *c_rbnode_leftdeepest(CRBNode *n);
CRBNode *c_rbnode_rightdeepest(CRBNode *n);
CRBNode *c_rbnode_next(CRBNode *n);
CRBNode *c_rbnode_prev(CRBNode *n);
CRBNode *c_rbnode_next_postorder(CRBNode *n);
CRBNode *c_rbnode_prev_postorder(CRBNode *n);

void c_rbnode_link(CRBNode *p, CRBNode **l, CRBNode *n);
void c_rbnode_unlink_stale(CRBNode *n);

/**
 * struct CRBTree - Red-Black Tree Top-Level Structure
 *
 * Each Red-Black Tree is rooted in an CRBTree object. This object contains a
 * pointer to the root node of the tree. The API user is free to access the
 * ``root`` member at any time, and use it to traverse the tree.
 *
 * To initialize an RB-Tree, set it to NULL / all zero.
 */
struct CRBTree {
        /** Anonymous union for alignment guarantees */
        union {
                /** Pointer to the root node, or NULL */
                CRBNode *root;
                /* enforce >=4-byte alignment for @root */
                alignas(4) unsigned char __align_dummy;
        };
};

/**
 * C_RBTREE_INIT() - Initialize RBTree Object
 *
 * Set the contents of the specified tree to its pristine, empty state.
 *
 * Return: Evaluates to the initializer for a :c:struct:`CRBTree` object.
 */
#define C_RBTREE_INIT {}

CRBNode *c_rbtree_first(CRBTree *t);
CRBNode *c_rbtree_last(CRBTree *t);
CRBNode *c_rbtree_first_postorder(CRBTree *t);
CRBNode *c_rbtree_last_postorder(CRBTree *t);

void c_rbtree_move(CRBTree *to, CRBTree *from);
void c_rbtree_add(CRBTree *t, CRBNode *p, CRBNode **l, CRBNode *n);

/**
 * c_rbnode_init() - Mark a node as unlinked
 * @n:          Node to operate on
 *
 * This marks the node ``n`` as unlinked. The node will be set to a valid state
 * that can never happen if the node is linked in a tree. Furthermore, this
 * state is fully known to the implementation, and as such handled gracefully
 * in all cases.
 *
 * You are *NOT* required to call this on your node. :c:func:`c_rbtree_add()`
 * ca handle uninitialized nodes just fine. However, calling this allows to use
 * :c:func:`c_rbnode_is_linked()` to check for the state of a node.
 * Furthermore, iterators and accessors can be called on initialized (yet
 * unlinked) nodes.
 *
 * Use the :c:macro:`C_RBNODE_INIT` macro if you want to initialize static
 * variables.
 */
static inline void c_rbnode_init(CRBNode *n) {
        *n = (CRBNode)C_RBNODE_INIT(*n);
}

/**
 * c_rbnode_entry() - Get parent container of tree node
 * @_what:              Tree node, or NULL
 * @_t:                 Type of parent container
 * @_m:                 Member name of tree node in ``_t``
 *
 * If the tree node ``_what`` is embedded into a surrounding structure, this
 * will turn the tree node pointer ``_what`` into a pointer to the parent
 * container (using ``offsetof(3)``, or sometimes called
 * ``container_of(3)``).
 *
 * If ``_what`` is NULL, this will also return NULL.
 *
 * Return: Pointer to parent container, or NULL.
 */
#define c_rbnode_entry(_what, _t, _m)                                           \
        /*                                                                      \
         * Note: This was carefully designed to avoid multiple evaluation of    \
         *       `_what`, but avoid context-expression-extensions. That is why  \
         *       it uses the possibly odd style of                              \
         *       `(x ?: offsetof(...)) - offsetof(...))`.                       \
         */                                                                     \
        ((_t *)(void *)(((unsigned long)(void *)(_what) ?:                      \
                         offsetof(_t, _m)) - offsetof(_t, _m)))

/**
 * c_rbnode_parent() - Return parent pointer
 * @n:          Node to access
 *
 * This returns a pointer to the parent of the given node ``n``. If ``n`` does
 * not have a parent, NULL is returned. If ``n`` is not linked, ``n`` itself is
 * returned.
 *
 * You should not call this on unlinked or uninitialized nodes! If you do, you
 * better know its semantics.
 *
 * Return: Pointer to parent.
 */
static inline CRBNode *c_rbnode_parent(CRBNode *n) {
        return (n->__parent_and_flags & C_RBNODE_ROOT) ?
                        NULL :
                        (void *)(n->__parent_and_flags & ~C_RBNODE_FLAG_MASK);
}

/**
 * c_rbnode_is_linked() - Check whether a node is linked
 * @n:          Node to check, or NULL
 *
 * This checks whether the passed node is linked. If you pass NULL, or if the
 * node is not linked into a tree, this will return false. Otherwise, this
 * returns true.
 *
 * Note that you must have either linked the node or initialized it, before
 * calling this function. Never call this function on uninitialized nodes.
 * Furthermore, removing a node via :c:func:`c_rbnode_unlink_stale()` does *NOT*
 * mark the node as unlinked. You have to call :c:func:`c_rbnode_init()`
 * yourself after removal, or use :c:func:`c_rbnode_unlink()`.
 *
 * Return: true if the node is linked, false if not.
 */
static inline _Bool c_rbnode_is_linked(CRBNode *n) {
        return n && c_rbnode_parent(n) != n;
}

/**
 * c_rbnode_unlink() - Safely remove node from tree and reinitialize it
 * @n:          Node to remove, or NULL
 *
 * This is almost the same as :c:func:`c_rbnode_unlink_stale()`, but extends it
 * slightly, to be more convenient to use in many cases:
 *
 *  - If ``n`` is unlinked or NULL, this is a no-op.
 *
 *  - ``n`` is reinitialized after being removed.
 */
static inline void c_rbnode_unlink(CRBNode *n) {
        if (c_rbnode_is_linked(n)) {
                c_rbnode_unlink_stale(n);
                c_rbnode_init(n);
        }
}

/**
 * c_rbtree_init() - Initialize a new RB-Tree
 * @t:          Tree to operate on
 *
 * This initializes a new, empty RB-Tree. An RB-Tree must be initialized before
 * any other functions are called on it. Alternatively, you can zero its memory
 * or assign :c:macro:`C_RBTREE_INIT`.
 */
static inline void c_rbtree_init(CRBTree *t) {
        *t = (CRBTree)C_RBTREE_INIT;
}

/**
 * c_rbtree_is_empty() - Check whether an RB-tree is empty
 * @t:          Tree to operate on
 *
 * This checks whether the passed RB-Tree is empty.
 *
 * Return: True if tree is empty, false otherwise.
 */
static inline _Bool c_rbtree_is_empty(CRBTree *t) {
        return !t->root;
}

/**
 * DOC: Search
 *
 * While the API supports direct traversal via the open-coded structures, it
 * can be cumbersome to use at times. If you, instead, provide a callback to
 * compare entries in the tree, you can use the following helpers to search the
 * tree for specific entries, or slots to insert new entries.
 */
/**/

/**
 * CRBCompareFunc - Function type to compare a node to a key
 *
 * If you use the tree-traversal helpers (which are optional), you need to
 * provide this callback so they can compare nodes in a tree to the key you
 * look for.
 *
 * The tree is provided as optional context ``t`` to this callback. The key you
 * look for is provided as ``k``, the current node that should be compared to
 * is provided as ``n``. This function should work like ``strcmp()``, that is,
 * return <0 if ``key`` orders before ``n``, 0 if both compare equal, and >0 if
 * it orders after ``n``.
 */
typedef int (*CRBCompareFunc) (CRBTree *t, void *k, CRBNode *n);

/**
 * c_rbtree_find_node() - Find node
 * @t:          Tree to search through
 * @f:          Comparison function
 * @k:          Key to search for
 *
 * This searches through ``t`` for a node that compares equal to ``k``. The
 * function ``f`` must be provided by the caller, which is used to compare
 * nodes to ``k``. See the documentation of :c:type:`CRBCompareFunc` for
 * details.
 *
 * If there are multiple entries that compare equal to ``k``, this will return
 * a pseudo-randomly picked node. If you need stable lookup functions for trees
 * where duplicate entries are allowed, you better code your own lookup.
 *
 * Return: Pointer to matching node, or NULL.
 */
static inline CRBNode *c_rbtree_find_node(CRBTree *t, CRBCompareFunc f, const void *k) {
        CRBNode *i;

        assert(t);
        assert(f);

        i = t->root;
        while (i) {
                int v = f(t, (void *)k, i);
                if (v < 0)
                        i = i->left;
                else if (v > 0)
                        i = i->right;
                else
                        return i;
        }

        return NULL;
}

/**
 * c_rbtree_find_entry() - Find entry
 * @_t:         Tree to search through
 * @_f:         Comparison function
 * @_k:         Key to search for
 * @_s:         Type of the structure that embeds the nodes
 * @_m:         Name of the node-member in type @_t
 *
 * This is very similar to :c:func:`c_rbtree_find_node()`, but instead of
 * returning a pointer to the :c:struct:`CRBNode`, it returns a pointer to the
 * surrounding object. This object must embed the :c:struct:`CRBNode` object.
 * The type of the surrounding object must be given as ``_s``, and the name of
 * the embedded :c:struct:`CRBNode` member as ``_m``.
 *
 * See :c:func:`c_rbtree_find_node()` and :c:macro:`c_rbnode_entry()` for more
 * details.
 *
 * Return: Pointer to found entry, NULL if not found.
 */
#define c_rbtree_find_entry(_t, _f, _k, _s, _m) \
        c_rbnode_entry(c_rbtree_find_node((_t), (_f), (_k)), _s, _m)

/**
 * c_rbtree_find_slot() - Find slot to insert new node
 * @t:          Tree to search through
 * @f:          Comparison function
 * @k:          Key to search for
 * @p:          Output storage for parent pointer
 *
 * This searches through ``t`` just like :c:func:`c_rbtree_find_node()` does.
 * However, instead of returning a pointer to a node that compares equal to
 * ``k``, this searches for a slot to insert a node with key ``k``. A pointer
 * to the slot is returned, and a pointer to the parent of the slot is stored
 * in ``p``. Both can be passed directly to :c:func:`c_rbtree_add()`, together
 * with your node to insert.
 *
 * If there already is a node in the tree, that compares equal to ``k``, this
 * will return NULL and store the conflicting node in ``p``. In all other
 * cases, this will return a pointer (non-NULL) to the empty slot to insert the
 * node at. ``p`` will point to the parent node of that slot.
 *
 * If you want trees that allow duplicate nodes, you better code your own
 * insertion function.
 *
 * Return: Pointer to slot to insert node, or NULL on conflicts.
 */
static inline CRBNode **c_rbtree_find_slot(CRBTree *t, CRBCompareFunc f, const void *k, CRBNode **p) {
        CRBNode **i;

        assert(t);
        assert(f);
        assert(p);

        i = &t->root;
        *p = NULL;
        while (*i) {
                int v = f(t, (void *)k, *i);
                *p = *i;
                if (v < 0)
                        i = &(*i)->left;
                else if (v > 0)
                        i = &(*i)->right;
                else
                        return NULL;
        }

        return i;
}

/**
 * DOC: Iterators
 *
 * The ``c_rbtree_for_each*()`` macros provide simple for-loop wrappers to
 * iterate an RB-Tree. They come in a set of flavours:
 *
 * :entry: This combines :c:macro:`c_rbnode_entry()` with the loop iterator, so
 *         the iterator always has the type of the surrounding object, rather
 *         than :c:type:`CRBNode`.
 *
 * :safe: The loop iterator always keeps track of the next element to
 *        visit. This means, you can safely modify the current element,
 *        while retaining loop-integrity.
 *        You still must not touch any other entry of the tree. Otherwise,
 *        the loop-iterator will be corrupted. Also remember to only
 *        modify the tree in a way compatible with your iterator-order.
 *        That is, if you use in-order iteration (default), you can unlink
 *        your current object, including re-balancing the tree. However,
 *        if you use post-order, you must not trigger a tree rebalance
 *        operation, since it is not an invariant of post-order iteration.
 *
 * :postorder: Rather than the default in-order iteration, this iterates
 *             the tree in post-order.
 *
 * :unlink: This unlinks the current element from the tree before the loop
 *          code is run. Note that the tree is not rebalanced. That is,
 *          you must never break out of the loop. If you do so, the tree
 *          is corrupted.
 */
/**/

#define c_rbtree_for_each(_iter, _tree)                                                                 \
        for (_iter = c_rbtree_first(_tree);                                                             \
             _iter;                                                                                     \
             _iter = c_rbnode_next(_iter))

#define c_rbtree_for_each_entry(_iter, _tree, _m)                                                       \
        for (_iter = c_rbnode_entry(c_rbtree_first(_tree), __typeof__(*_iter), _m);                     \
             _iter;                                                                                     \
             _iter = c_rbnode_entry(c_rbnode_next(&_iter->_m), __typeof__(*_iter), _m))

#define c_rbtree_for_each_safe(_iter, _safe, _tree)                                                     \
        for (_iter = c_rbtree_first(_tree), _safe = c_rbnode_next(_iter);                               \
             _iter;                                                                                     \
             _iter = _safe, _safe = c_rbnode_next(_safe))

#define c_rbtree_for_each_entry_safe(_iter, _safe, _tree, _m)                                           \
        for (_iter = c_rbnode_entry(c_rbtree_first(_tree), __typeof__(*_iter), _m),                     \
             _safe = _iter ? c_rbnode_entry(c_rbnode_next(&_iter->_m), __typeof__(*_iter), _m) : NULL;  \
             _iter;                                                                                     \
             _iter = _safe,                                                                             \
             _safe = _safe ? c_rbnode_entry(c_rbnode_next(&_safe->_m), __typeof__(*_iter), _m) : NULL)

#define c_rbtree_for_each_postorder(_iter, _tree)                                                       \
        for (_iter = c_rbtree_first_postorder(_tree);                                                   \
             _iter;                                                                                     \
             _iter = c_rbnode_next_postorder(_iter))                                                    \

#define c_rbtree_for_each_entry_postorder(_iter, _tree, _m)                                             \
        for (_iter = c_rbnode_entry(c_rbtree_first_postorder(_tree), __typeof__(*_iter), _m);           \
             _iter;                                                                                     \
             _iter = c_rbnode_entry(c_rbnode_next_postorder(&_iter->_m), __typeof__(*_iter), _m))

#define c_rbtree_for_each_safe_postorder(_iter, _safe, _tree)                                           \
        for (_iter = c_rbtree_first_postorder(_tree), _safe = c_rbnode_next_postorder(_iter);           \
             _iter;                                                                                     \
             _iter = _safe, _safe = c_rbnode_next_postorder(_safe))

#define c_rbtree_for_each_entry_safe_postorder(_iter, _safe, _tree, _m)                                                 \
        for (_iter = c_rbnode_entry(c_rbtree_first_postorder(_tree), __typeof__(*_iter), _m),                           \
             _safe = _iter ? c_rbnode_entry(c_rbnode_next_postorder(&_iter->_m), __typeof__(*_iter), _m) : NULL;        \
             _iter;                                                                                                     \
             _iter = _safe,                                                                                             \
             _safe = _safe ? c_rbnode_entry(c_rbnode_next_postorder(&_safe->_m), __typeof__(*_iter), _m) : NULL)

#define c_rbtree_for_each_safe_postorder_unlink(_iter, _safe, _tree)                                    \
        for (_iter = c_rbtree_first_postorder(_tree), _safe = c_rbnode_next_postorder(_iter);           \
             _iter ? ((*_iter = (CRBNode)C_RBNODE_INIT(*_iter)), 1) : (((_tree)->root = NULL), 0);      \
             _iter = _safe, _safe = c_rbnode_next_postorder(_safe))                                     \

#define c_rbtree_for_each_entry_safe_postorder_unlink(_iter, _safe, _tree, _m)                                          \
        for (_iter = c_rbnode_entry(c_rbtree_first_postorder(_tree), __typeof__(*_iter), _m),                           \
             _safe = _iter ? c_rbnode_entry(c_rbnode_next_postorder(&_iter->_m), __typeof__(*_iter), _m) : NULL;        \
             _iter ? ((_iter->_m = (CRBNode)C_RBNODE_INIT(_iter->_m)), 1) : (((_tree)->root = NULL), 0);                \
             _iter = _safe,                                                                                             \
             _safe = _safe ? c_rbnode_entry(c_rbnode_next_postorder(&_safe->_m), __typeof__(*_iter), _m) : NULL)

#ifdef __cplusplus
}
#endif