summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-07-24 21:42:56 +0200
committerRichard Braun <rbraun@sceen.net>2017-07-24 21:42:56 +0200
commit3e5bd919e167c0d3ae4ca407fe3d88829d0261b5 (patch)
tree24cb8b2c304cdfece15639e3466463afd12db58e
parent10a647cb57a145c6b6eb91747869b26ff4f2a94a (diff)
hlist: new module
-rw-r--r--Makefile.am15
-rw-r--r--hlist.h421
-rw-r--r--test/test_hlist.c232
3 files changed, 663 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index e3480ca..e08b181 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -31,6 +31,7 @@ librbraun_la_SOURCES = \
fmt.c \
fmt.h \
hash.h \
+ hlist.h \
list.c \
list.h \
macros.h \
@@ -55,11 +56,12 @@ bin_PROGRAMS = \
test_cbuf \
test_fmt_sprintf \
test_fmt_sscanf \
+ test_hlist \
test_plist \
- test_slist \
test_rbtree \
test_rdxtree \
- test_shell
+ test_shell \
+ test_slist
test_avltree_SOURCES = test/test_avltree.c
test_avltree_LDADD = librbraun.la
@@ -73,12 +75,12 @@ test_fmt_sprintf_LDADD = librbraun.la
test_fmt_sscanf_SOURCES = test/test_fmt_sscanf.c
test_fmt_sscanf_LDADD = librbraun.la
+test_hlist_SOURCES = test/test_hlist.c
+test_hlist_LDADD = librbraun.la
+
test_plist_SOURCES = test/test_plist.c
test_plist_LDADD = librbraun.la
-test_slist_SOURCES = test/test_slist.c
-test_slist_LDADD = librbraun.la
-
test_rbtree_SOURCES = test/test_rbtree.c
test_rbtree_LDADD = librbraun.la
@@ -87,3 +89,6 @@ test_rdxtree_LDADD = -lrt -lpthread
test_shell_SOURCES = test/test_shell.c
test_shell_LDADD = librbraun.la
+
+test_slist_SOURCES = test/test_slist.c
+test_slist_LDADD = librbraun.la
diff --git a/hlist.h b/hlist.h
new file mode 100644
index 0000000..256d52f
--- /dev/null
+++ b/hlist.h
@@ -0,0 +1,421 @@
+/*
+ * Copyright (c) 2017 Richard Braun.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ *
+ * Doubly-linked list specialized for forward traversals and O(1) removals.
+ *
+ * Upstream site with license notes :
+ * http://git.sceen.net/rbraun/librbraun.git/
+ */
+
+#ifndef _HLIST_H
+#define _HLIST_H
+
+#include <stdbool.h>
+#include <stddef.h>
+
+#include "macros.h"
+
+/*
+ * List node.
+ *
+ * The pprev member points to another node member instead of another node,
+ * so that it may safely refer to the first member of the list head. Its
+ * main purpose is to allow O(1) removal.
+ */
+struct hlist_node {
+ struct hlist_node *next;
+ struct hlist_node **pprev;
+};
+
+/*
+ * List head.
+ */
+struct hlist {
+ struct hlist_node *first;
+};
+
+/*
+ * Static list initializer.
+ */
+#define HLIST_INITIALIZER(list) { NULL }
+
+/*
+ * Initialize a list.
+ */
+static inline void
+hlist_init(struct hlist *list)
+{
+ list->first = NULL;
+}
+
+/*
+ * Initialize a list node.
+ *
+ * A node is in no list when its pprev member points to NULL.
+ */
+static inline void
+hlist_node_init(struct hlist_node *node)
+{
+ node->pprev = NULL;
+}
+
+/*
+ * Return true if node is in no list.
+ */
+static inline bool
+hlist_node_unlinked(const struct hlist_node *node)
+{
+ return node->pprev == NULL;
+}
+
+/*
+ * Return the first node of a list.
+ */
+static inline struct hlist_node *
+hlist_first(const struct hlist *list)
+{
+ return list->first;
+}
+
+/*
+ * Return the node next to the given node.
+ */
+static inline struct hlist_node *
+hlist_next(const struct hlist_node *node)
+{
+ return node->next;
+}
+
+/*
+ * Return true if node is invalid and denotes the end of the list.
+ */
+static inline bool
+hlist_end(const struct hlist_node *node)
+{
+ return node == NULL;
+}
+
+/*
+ * Return true if list is empty.
+ */
+static inline bool
+hlist_empty(const struct hlist *list)
+{
+ return list->first == NULL;
+}
+
+/*
+ * Return true if list contains exactly one node.
+ */
+static inline bool
+hlist_singular(const struct hlist *list)
+{
+ return !hlist_empty(list) && hlist_end(list->first->next);
+}
+
+/*
+ * Set the new head of a list.
+ *
+ * After completion, old_head is stale.
+ */
+static inline void
+hlist_set_head(struct hlist *new_head, const struct hlist *old_head)
+{
+ *new_head = *old_head;
+
+ if (!hlist_empty(new_head)) {
+ new_head->first->pprev = &new_head->first;
+ }
+}
+
+/*
+ * Insert a node at the head of a list.
+ */
+static inline void
+hlist_insert_head(struct hlist *list, struct hlist_node *node)
+{
+ struct hlist_node *first;
+
+ first = list->first;
+ node->next = first;
+ node->pprev = &list->first;
+
+ if (first != NULL) {
+ first->pprev = &node->next;
+ }
+
+ list->first = node;
+}
+
+/*
+ * Insert a node before another node.
+ */
+static inline void
+hlist_insert_before(struct hlist_node *next, struct hlist_node *node)
+{
+ node->next = next;
+ node->pprev = next->pprev;
+ next->pprev = &node->next;
+ *node->pprev = node;
+}
+
+/*
+ * Insert a node after another node.
+ */
+static inline void
+hlist_insert_after(struct hlist_node *prev, struct hlist_node *node)
+{
+ node->next = prev->next;
+ node->pprev = &prev->next;
+
+ if (node->next != NULL) {
+ node->next->pprev = &node->next;
+ }
+
+ prev->next = node;
+}
+
+/*
+ * Remove a node from a list.
+ */
+static inline void
+hlist_remove(struct hlist_node *node)
+{
+ if (node->next != NULL) {
+ node->next->pprev = node->pprev;
+ }
+
+ *node->pprev = node->next;
+}
+
+/*
+ * Macro that evaluates to the address of the structure containing the
+ * given node based on the given type and member.
+ */
+#define hlist_entry(node, type, member) structof(node, type, member)
+
+/*
+ * Get the first entry of a list.
+ */
+#define hlist_first_entry(list, type, member) \
+MACRO_BEGIN \
+ struct hlist_node *___first; \
+ \
+ ___first = (list)->first; \
+ hlist_end(___first) ? NULL : hlist_entry(___first, type, member); \
+MACRO_END
+
+/*
+ * Get the entry next to the given entry.
+ */
+#define hlist_next_entry(entry, member) \
+MACRO_BEGIN \
+ struct hlist_node *___next; \
+ \
+ ___next = (entry)->member.next; \
+ hlist_end(___next) \
+ ? NULL \
+ : hlist_entry(___next, typeof(*entry), member); \
+MACRO_END
+
+/*
+ * Forge a loop to process all nodes of a list.
+ *
+ * The node must not be altered during the loop.
+ */
+#define hlist_for_each(list, node) \
+for (node = hlist_first(list); \
+ !hlist_end(node); \
+ node = hlist_next(node))
+
+/*
+ * Forge a loop to process all nodes of a list.
+ */
+#define hlist_for_each_safe(list, node, tmp) \
+for (node = hlist_first(list), \
+ tmp = hlist_end(node) ? NULL : hlist_next(node); \
+ !hlist_end(node); \
+ node = tmp, \
+ tmp = hlist_end(node) ? NULL : hlist_next(node))
+
+/*
+ * Forge a loop to process all entries of a list.
+ *
+ * The entry node must not be altered during the loop.
+ */
+#define hlist_for_each_entry(list, entry, member) \
+for (entry = hlist_first_entry(list, typeof(*entry), member); \
+ entry != NULL; \
+ entry = hlist_next_entry(entry, member))
+
+/*
+ * Forge a loop to process all entries of a list.
+ */
+#define hlist_for_each_entry_safe(list, entry, tmp, member) \
+for (entry = hlist_first_entry(list, typeof(*entry), member), \
+ tmp = (entry == NULL) ? NULL : hlist_next_entry(entry, member); \
+ entry != NULL; \
+ entry = tmp, \
+ tmp = (entry == NULL) ? NULL : hlist_next_entry(entry, member)) \
+
+/*
+ * Lockless variants
+ *
+ * The hlist_end() function may be used from read-side critical sections.
+ */
+
+/*
+ * These macros can be replaced by actual functions in an environment
+ * that provides lockless synchronization such as RCU.
+ */
+#define llsync_assign_ptr(ptr, value) ((ptr) = (value))
+#define llsync_read_ptr(ptr) (ptr)
+
+/*
+ * Return the first node of a list.
+ */
+static inline struct hlist_node *
+hlist_llsync_first(const struct hlist *list)
+{
+ return llsync_read_ptr(list->first);
+}
+
+/*
+ * Return the node next to the given node.
+ */
+static inline struct hlist_node *
+hlist_llsync_next(const struct hlist_node *node)
+{
+ return llsync_read_ptr(node->next);
+}
+
+/*
+ * Insert a node at the head of a list.
+ */
+static inline void
+hlist_llsync_insert_head(struct hlist *list, struct hlist_node *node)
+{
+ struct hlist_node *first;
+
+ first = list->first;
+ node->next = first;
+ node->pprev = &list->first;
+
+ if (first != NULL) {
+ first->pprev = &node->next;
+ }
+
+ llsync_assign_ptr(list->first, node);
+}
+
+/*
+ * Insert a node before another node.
+ */
+static inline void
+hlist_llsync_insert_before(struct hlist_node *next, struct hlist_node *node)
+{
+ node->next = next;
+ node->pprev = next->pprev;
+ next->pprev = &node->next;
+ llsync_assign_ptr(*node->pprev, node);
+}
+
+/*
+ * Insert a node after another node.
+ */
+static inline void
+hlist_llsync_insert_after(struct hlist_node *prev, struct hlist_node *node)
+{
+ node->next = prev->next;
+ node->pprev = &prev->next;
+
+ if (node->next != NULL) {
+ node->next->pprev = &node->next;
+ }
+
+ llsync_assign_ptr(prev->next, node);
+}
+
+/*
+ * Remove a node from a list.
+ */
+static inline void
+hlist_llsync_remove(struct hlist_node *node)
+{
+ if (node->next != NULL) {
+ node->next->pprev = node->pprev;
+ }
+
+ llsync_assign_ptr(*node->pprev, node->next);
+}
+
+/*
+ * Macro that evaluates to the address of the structure containing the
+ * given node based on the given type and member.
+ */
+#define hlist_llsync_entry(node, type, member) \
+ structof(llsync_read_ptr(node), type, member)
+
+/*
+ * Get the first entry of a list.
+ */
+#define hlist_llsync_first_entry(list, type, member) \
+MACRO_BEGIN \
+ struct hlist_node *___first; \
+ \
+ ___first = hlist_llsync_first(list); \
+ hlist_end(___first) ? NULL : hlist_entry(___first, type, member); \
+MACRO_END
+
+/*
+ * Get the entry next to the given entry.
+ */
+#define hlist_llsync_next_entry(entry, member) \
+MACRO_BEGIN \
+ struct hlist_node *___next; \
+ \
+ ___next = hlist_llsync_next(&entry->member); \
+ hlist_end(___next) \
+ ? NULL \
+ : hlist_entry(___next, typeof(*entry), member); \
+MACRO_END
+
+/*
+ * Forge a loop to process all nodes of a list.
+ */
+#define hlist_llsync_for_each(list, node) \
+for (node = hlist_llsync_first(list); \
+ !hlist_end(node); \
+ node = hlist_llsync_next(node))
+
+/*
+ * Forge a loop to process all entries of a list.
+ */
+#define hlist_llsync_for_each_entry(list, entry, member) \
+for (entry = hlist_llsync_first_entry(list, typeof(*entry), member); \
+ entry != NULL; \
+ entry = hlist_llsync_next_entry(entry, member))
+
+#endif /* _HLIST_H */
diff --git a/test/test_hlist.c b/test/test_hlist.c
new file mode 100644
index 0000000..559a750
--- /dev/null
+++ b/test/test_hlist.c
@@ -0,0 +1,232 @@
+/*
+ * Copyright (c) 2017 Richard Braun.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "../check.h"
+#include "../macros.h"
+#include "../hlist.h"
+
+struct obj {
+ struct hlist_node node;
+};
+
+static struct obj *
+obj_create(void)
+{
+ struct obj *obj;
+
+ obj = malloc(sizeof(struct obj));
+ hlist_node_init(&obj->node);
+ return obj;
+}
+
+static void
+obj_destroy(struct obj *obj)
+{
+ free(obj);
+}
+
+static void
+add_obj_head(struct hlist *list)
+{
+ struct obj *obj;
+
+ obj = obj_create();
+ check(hlist_node_unlinked(&obj->node));
+ hlist_insert_head(list, &obj->node);
+}
+
+static void
+add_obj_head2(struct hlist *list)
+{
+ struct hlist_node *node;
+ struct obj *obj;
+
+ obj = obj_create();
+ check(hlist_node_unlinked(&obj->node));
+ node = hlist_first(list);
+ hlist_insert_before(node, &obj->node);
+}
+
+static void
+add_obj_second(struct hlist *list)
+{
+ struct hlist_node *node;
+ struct obj *obj;
+
+ obj = obj_create();
+ check(hlist_node_unlinked(&obj->node));
+ node = hlist_first(list);
+ hlist_insert_after(node, &obj->node);
+}
+
+static void
+add_obj_head_llsync(struct hlist *list)
+{
+ struct obj *obj;
+
+ obj = obj_create();
+ hlist_llsync_insert_head(list, &obj->node);
+}
+
+static void
+add_obj_head2_llsync(struct hlist *list)
+{
+ struct hlist_node *node;
+ struct obj *obj;
+
+ obj = obj_create();
+ check(hlist_node_unlinked(&obj->node));
+ node = hlist_first(list);
+ hlist_llsync_insert_before(node, &obj->node);
+}
+
+static void
+add_obj_second_llsync(struct hlist *list)
+{
+ struct hlist_node *node;
+ struct obj *obj;
+
+ obj = obj_create();
+ check(hlist_node_unlinked(&obj->node));
+ node = hlist_first(list);
+ hlist_llsync_insert_after(node, &obj->node);
+}
+
+static void
+walk_all_objs1(struct hlist *list)
+{
+ struct hlist_node *node;
+
+ hlist_for_each(list, node);
+}
+
+static void
+walk_all_objs1_llsync(struct hlist *list)
+{
+ struct hlist_node *node;
+
+ hlist_llsync_for_each(list, node);
+}
+
+static void
+walk_all_objs2(struct hlist *list)
+{
+ struct hlist_node *node, *tmp;
+
+ hlist_for_each_safe(list, node, tmp);
+}
+
+static void
+walk_all_objs3(struct hlist *list)
+{
+ struct obj *obj;
+
+ hlist_for_each_entry(list, obj, node);
+}
+
+static void
+walk_all_objs3_llsync(struct hlist *list)
+{
+ struct obj *obj;
+
+ hlist_llsync_for_each_entry(list, obj, node);
+}
+
+static void
+walk_all_objs4(struct hlist *list)
+{
+ struct obj *obj, *tmp;
+
+ hlist_for_each_entry_safe(list, obj, tmp, node);
+}
+
+static void
+del_all_objs(struct hlist *list)
+{
+ struct obj *obj;
+
+ while (!hlist_empty(list)) {
+ obj = hlist_first_entry(list, struct obj, node);
+ hlist_remove(&obj->node);
+ obj_destroy(obj);
+ }
+}
+
+static void
+del_all_objs_llsync(struct hlist *list)
+{
+ struct obj *obj;
+
+ while (!hlist_empty(list)) {
+ obj = hlist_first_entry(list, struct obj, node);
+ hlist_llsync_remove(&obj->node);
+ obj_destroy(obj);
+ }
+}
+
+int
+main(void)
+{
+ struct hlist list, list2;
+
+ hlist_init(&list);
+ hlist_init(&list2);
+
+ check(!hlist_llsync_first_entry(&list, struct obj, node));
+
+ check(!hlist_singular(&list));
+ add_obj_head(&list);
+ check(hlist_singular(&list));
+ add_obj_head(&list);
+ check(!hlist_singular(&list));
+
+ walk_all_objs1(&list);
+ walk_all_objs1_llsync(&list);
+ walk_all_objs2(&list);
+ walk_all_objs3(&list);
+ walk_all_objs3_llsync(&list);
+ walk_all_objs4(&list);
+
+ del_all_objs(&list);
+
+ add_obj_head(&list);
+ add_obj_head2(&list);
+ add_obj_second(&list);
+ add_obj_head_llsync(&list);
+ add_obj_head2_llsync(&list);
+ add_obj_second_llsync(&list);
+ add_obj_head(&list);
+ add_obj_head(&list);
+ hlist_set_head(&list2, &list);
+ hlist_set_head(&list, &list2);
+
+ del_all_objs_llsync(&list);
+
+ return 0;
+}