2010-10-27 19:51:49 +02:00
|
|
|
/*
|
2011-03-05 13:44:21 +01:00
|
|
|
* This software is licensed under the terms of the MIT-License
|
2017-02-11 04:52:08 +01:00
|
|
|
* See COPYING for further information.
|
2011-03-05 13:44:21 +01:00
|
|
|
* ---
|
2019-01-23 21:10:43 +01:00
|
|
|
* Copyright (c) 2011-2019, Lukas Weber <laochailan@web.de>.
|
|
|
|
* Copyright (c) 2012-2019, Andrei Alexeyev <akari@alienslab.net>.
|
2010-10-27 19:51:49 +02:00
|
|
|
*/
|
|
|
|
|
2019-01-23 21:10:43 +01:00
|
|
|
#ifndef IGUARD_list_h
|
|
|
|
#define IGUARD_list_h
|
|
|
|
|
2017-11-25 20:45:11 +01:00
|
|
|
#include "taisei.h"
|
2010-10-27 19:51:49 +02:00
|
|
|
|
2019-02-02 12:25:06 +01:00
|
|
|
#define LIST_ALIGN alignas(alignof(max_align_t))
|
|
|
|
|
2017-12-24 07:16:25 +01:00
|
|
|
typedef struct ListInterface ListInterface;
|
|
|
|
typedef struct List List;
|
2018-06-01 20:40:18 +02:00
|
|
|
typedef struct ListAnchorInterface ListAnchorInterface;
|
|
|
|
typedef struct ListAnchor ListAnchor;
|
2017-12-24 07:16:25 +01:00
|
|
|
typedef struct ListContainer ListContainer;
|
|
|
|
|
2019-02-02 12:25:06 +01:00
|
|
|
#define LIST_INTERFACE_BASE(typename) LIST_ALIGN struct { \
|
2018-01-12 19:26:07 +01:00
|
|
|
typename *next; \
|
|
|
|
typename *prev; \
|
2017-12-23 22:56:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#define LIST_INTERFACE(typename) union { \
|
2018-01-12 19:26:07 +01:00
|
|
|
ListInterface list_interface; \
|
|
|
|
LIST_INTERFACE_BASE(typename); \
|
2017-12-23 22:56:14 +01:00
|
|
|
}
|
|
|
|
|
2017-12-24 07:16:25 +01:00
|
|
|
struct ListInterface {
|
2018-01-12 19:26:07 +01:00
|
|
|
LIST_INTERFACE_BASE(ListInterface);
|
2017-12-24 07:16:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct List {
|
2018-01-12 19:26:07 +01:00
|
|
|
LIST_INTERFACE(List);
|
2017-12-24 07:16:25 +01:00
|
|
|
};
|
2017-09-29 21:03:49 +02:00
|
|
|
|
2018-06-01 20:40:18 +02:00
|
|
|
#define LIST_ANCHOR_INTERFACE_BASE(typename) struct { \
|
|
|
|
typename *first; \
|
|
|
|
typename *last; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define LIST_ANCHOR_INTERFACE(typename) union { \
|
|
|
|
ListAnchorInterface list_anchor_interface; \
|
|
|
|
LIST_ANCHOR_INTERFACE_BASE(typename); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define LIST_ANCHOR(typename) struct { \
|
|
|
|
LIST_ANCHOR_INTERFACE(typename); \
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ListAnchorInterface {
|
|
|
|
LIST_ANCHOR_INTERFACE_BASE(ListInterface);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ListAnchor {
|
|
|
|
LIST_ANCHOR_INTERFACE(List);
|
|
|
|
};
|
|
|
|
|
2017-12-24 07:16:25 +01:00
|
|
|
struct ListContainer {
|
2018-01-12 19:26:07 +01:00
|
|
|
LIST_INTERFACE(ListContainer);
|
|
|
|
void *data;
|
2017-12-24 07:16:25 +01:00
|
|
|
};
|
2017-03-02 11:23:30 +01:00
|
|
|
|
2017-11-21 15:45:01 +01:00
|
|
|
typedef void* (*ListForeachCallback)(List **head, List *elem, void *arg);
|
2018-06-01 20:40:18 +02:00
|
|
|
typedef void* (*ListAnchorForeachCallback)(ListAnchor *list, List *elem, void *arg);
|
2017-11-23 16:27:41 +01:00
|
|
|
typedef List* (*ListInsertionRule)(List **dest, List *elem);
|
2018-06-01 20:40:18 +02:00
|
|
|
typedef List* (*ListAnchorInsertionRule)(ListAnchor *dest, List *elem);
|
|
|
|
typedef int (*ListPriorityFunc)(List *elem);
|
2017-11-21 15:45:01 +01:00
|
|
|
|
2018-04-12 16:08:48 +02:00
|
|
|
List* list_insert(List **dest, List *elem) attr_nonnull(1, 2);
|
|
|
|
List* list_push(List **dest, List *elem) attr_nonnull(1, 2);
|
|
|
|
List* list_append(List **dest, List *elem) attr_nonnull(1, 2);
|
|
|
|
List* list_insert_at_priority_head(List **dest, List *elem, int prio, ListPriorityFunc prio_func) attr_hot attr_nonnull(1, 2, 4);
|
|
|
|
List* list_insert_at_priority_tail(List **dest, List *elem, int prio, ListPriorityFunc prio_func) attr_hot attr_nonnull(1, 2, 4);
|
|
|
|
List* list_pop(List **dest) attr_nonnull(1);
|
|
|
|
List* list_unlink(List **dest, List *elem) attr_nonnull(1, 2);
|
|
|
|
void* list_foreach(List **dest, ListForeachCallback callback, void *arg) attr_nonnull(1, 2);
|
2017-11-21 15:45:01 +01:00
|
|
|
void* list_callback_free_element(List **dest, List *elem, void *arg);
|
2018-04-12 16:08:48 +02:00
|
|
|
void list_free_all(List **dest) attr_nonnull(1);
|
2018-06-01 20:40:18 +02:00
|
|
|
|
|
|
|
List* alist_insert(ListAnchor *list, List *ref, List *elem) attr_nonnull(1, 3);
|
|
|
|
List* alist_push(ListAnchor *list, List *elem) attr_nonnull(1, 2);
|
|
|
|
List* alist_append(ListAnchor *list, List *elem) attr_nonnull(1, 2);
|
|
|
|
List* alist_insert_at_priority_head(ListAnchor *list, List *elem, int prio, ListPriorityFunc prio_func) attr_hot attr_nonnull(1, 2, 4);
|
|
|
|
List* alist_insert_at_priority_tail(ListAnchor *list, List *elem, int prio, ListPriorityFunc prio_func) attr_hot attr_nonnull(1, 2, 4);
|
|
|
|
List* alist_pop(ListAnchor *list) attr_nonnull(1);
|
|
|
|
List* alist_unlink(ListAnchor *list, List *elem) attr_nonnull(1, 2);
|
|
|
|
void* alist_foreach(ListAnchor *list, ListAnchorForeachCallback callback, void *arg) attr_nonnull(1, 2);
|
|
|
|
void* alist_callback_free_element(ListAnchor *list, List *elem, void *arg);
|
|
|
|
void alist_free_all(ListAnchor *list) attr_nonnull(1);
|
|
|
|
|
2018-04-12 16:08:48 +02:00
|
|
|
ListContainer* list_wrap_container(void *data) attr_nodiscard;
|
2017-11-21 15:45:01 +01:00
|
|
|
|
|
|
|
// type-generic macros
|
|
|
|
|
2017-12-24 07:16:25 +01:00
|
|
|
#ifdef USE_GNU_EXTENSIONS
|
2018-01-12 19:26:07 +01:00
|
|
|
// thorough safeguard
|
2018-06-01 20:40:18 +02:00
|
|
|
|
2019-02-02 12:25:06 +01:00
|
|
|
#define LIST_CAST(expr) (__extension__ ({ \
|
|
|
|
static_assert(__builtin_types_compatible_p(ListInterface, __typeof__((*(expr)).list_interface)), \
|
|
|
|
"struct must implement ListInterface (use the LIST_INTERFACE macro)"); \
|
|
|
|
static_assert(__builtin_offsetof(__typeof__(*(expr)), list_interface) == 0, \
|
|
|
|
"list_interface must be the first member in struct"); \
|
|
|
|
CASTPTR_ASSUME_ALIGNED((expr), List); \
|
|
|
|
}))
|
|
|
|
|
|
|
|
#define LIST_CAST_2(expr) (__extension__ ({ \
|
|
|
|
static_assert(__builtin_types_compatible_p(ListInterface, __typeof__((**(expr)).list_interface)), \
|
2018-01-12 19:26:07 +01:00
|
|
|
"struct must implement ListInterface (use the LIST_INTERFACE macro)"); \
|
2019-02-02 12:25:06 +01:00
|
|
|
static_assert(__builtin_offsetof(__typeof__(**(expr)), list_interface) == 0, \
|
2018-01-12 19:26:07 +01:00
|
|
|
"list_interface must be the first member in struct"); \
|
2019-02-02 12:25:06 +01:00
|
|
|
CASTPTR_ASSUME_ALIGNED((expr), List*); \
|
2018-01-12 19:26:07 +01:00
|
|
|
}))
|
2018-06-01 20:40:18 +02:00
|
|
|
|
2019-02-02 12:25:06 +01:00
|
|
|
#define LIST_ANCHOR_CAST(expr) (__extension__ ({ \
|
|
|
|
static_assert(__builtin_types_compatible_p(ListAnchorInterface, __typeof__((*(expr)).list_anchor_interface)), \
|
2018-06-01 20:40:18 +02:00
|
|
|
"struct must implement ListAnchorInterface (use the LIST_ANCHOR_INTERFACE macro)"); \
|
2019-02-02 12:25:06 +01:00
|
|
|
static_assert(__builtin_offsetof(__typeof__(*(expr)), list_anchor_interface) == 0, \
|
2018-06-01 20:40:18 +02:00
|
|
|
"list_anchor_interface must be the first member in struct"); \
|
2019-02-02 12:25:06 +01:00
|
|
|
CASTPTR_ASSUME_ALIGNED((expr), ListAnchor); \
|
2018-06-01 20:40:18 +02:00
|
|
|
}))
|
|
|
|
|
2019-02-02 12:25:06 +01:00
|
|
|
#define LIST_CAST_RETURN(e_typekey, e_return) CASTPTR_ASSUME_ALIGNED((e_return), __typeof__(*(e_typekey)))
|
2017-12-24 07:16:25 +01:00
|
|
|
#else
|
2018-01-12 19:26:07 +01:00
|
|
|
// basic safeguard
|
2019-02-02 12:25:06 +01:00
|
|
|
#define LIST_CAST(expr, ptrlevel) ((void)sizeof((*(expr)).list_interface), (List*)(expr))
|
|
|
|
#define LIST_CAST_2(expr, ptrlevel) ((void)sizeof((**(expr)).list_interface), (List**)(expr))
|
|
|
|
#define LIST_ANCHOR_CAST(expr) ((void)sizeof((*(expr)).list_anchor_interface), (ListAnchor*)(expr))
|
2018-01-12 19:26:07 +01:00
|
|
|
// don't even think about adding a void* cast here
|
2019-02-02 12:25:06 +01:00
|
|
|
#define LIST_CAST_RETURN(e_typekey, e_return) (e_return)
|
2017-12-24 07:16:25 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define list_insert(dest,elem) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(elem, list_insert(LIST_CAST_2(dest), LIST_CAST(elem))))
|
2017-12-24 07:16:25 +01:00
|
|
|
|
2018-06-01 20:40:18 +02:00
|
|
|
#define alist_insert(dest,ref,elem) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(elem, alist_insert(LIST_ANCHOR_CAST(dest), LIST_CAST(ref), LIST_CAST(elem))))
|
2018-06-01 20:40:18 +02:00
|
|
|
|
2017-12-24 07:16:25 +01:00
|
|
|
#define list_push(dest,elem) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(elem, list_push(LIST_CAST_2(dest), LIST_CAST(elem))))
|
2017-12-24 07:16:25 +01:00
|
|
|
|
2018-06-01 20:40:18 +02:00
|
|
|
#define alist_push(dest,elem) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(elem, alist_push(LIST_ANCHOR_CAST(dest), LIST_CAST(elem))))
|
2018-06-01 20:40:18 +02:00
|
|
|
|
2017-12-24 07:16:25 +01:00
|
|
|
#define list_append(dest,elem) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(elem, list_append(LIST_CAST_2(dest), LIST_CAST(elem))))
|
2017-12-24 07:16:25 +01:00
|
|
|
|
2018-06-01 20:40:18 +02:00
|
|
|
#define alist_append(dest,elem) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(elem, alist_append(LIST_ANCHOR_CAST(dest), LIST_CAST(elem))))
|
2018-06-01 20:40:18 +02:00
|
|
|
|
2018-01-09 20:52:20 +01:00
|
|
|
#define list_insert_at_priority_head(dest,elem,prio,prio_func) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(elem, list_insert_at_priority_head(LIST_CAST_2(dest), LIST_CAST(elem), prio, prio_func)))
|
2018-01-09 20:52:20 +01:00
|
|
|
|
2018-06-01 20:40:18 +02:00
|
|
|
#define alist_insert_at_priority_head(dest,elem,prio,prio_func) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(elem, alist_insert_at_priority_head(LIST_ANCHOR_CAST(dest), LIST_CAST(elem), prio, prio_func)))
|
2018-06-01 20:40:18 +02:00
|
|
|
|
2018-01-09 20:52:20 +01:00
|
|
|
#define list_insert_at_priority_tail(dest,elem,prio,prio_func) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(elem, list_insert_at_priority_tail(LIST_CAST_2(dest), LIST_CAST(elem), prio, prio_func)))
|
2017-12-24 07:16:25 +01:00
|
|
|
|
2018-06-01 20:40:18 +02:00
|
|
|
#define alist_insert_at_priority_tail(dest,elem,prio,prio_func) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(elem, alist_insert_at_priority_tail(LIST_ANCHOR_CAST(dest), LIST_CAST(elem), prio, prio_func)))
|
2018-06-01 20:40:18 +02:00
|
|
|
|
2017-12-24 07:16:25 +01:00
|
|
|
#define list_pop(dest) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(*(dest), list_pop(LIST_CAST_2(dest))))
|
2017-12-24 07:16:25 +01:00
|
|
|
|
2018-06-01 20:40:18 +02:00
|
|
|
#define alist_pop(dest) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN((dest)->first, alist_pop(LIST_ANCHOR_CAST(dest))))
|
2018-06-01 20:40:18 +02:00
|
|
|
|
2017-12-24 07:16:25 +01:00
|
|
|
#define list_unlink(dest,elem) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(elem, list_unlink(LIST_CAST_2(dest), LIST_CAST(elem))))
|
2017-12-24 07:16:25 +01:00
|
|
|
|
2018-06-01 20:40:18 +02:00
|
|
|
#define alist_unlink(dest,elem) \
|
2019-02-02 12:25:06 +01:00
|
|
|
(LIST_CAST_RETURN(elem, alist_unlink(LIST_ANCHOR_CAST(dest), LIST_CAST(elem))))
|
2018-06-01 20:40:18 +02:00
|
|
|
|
2017-12-24 07:16:25 +01:00
|
|
|
#define list_foreach(dest,callback,arg) \
|
2019-02-02 12:25:06 +01:00
|
|
|
list_foreach(LIST_CAST_2(dest), callback, arg)
|
2017-12-24 07:16:25 +01:00
|
|
|
|
2018-06-01 20:40:18 +02:00
|
|
|
#define alist_foreach(dest,callback,arg) \
|
2019-02-02 12:25:06 +01:00
|
|
|
alist_foreach(LIST_ANCHOR_CAST(dest), callback, arg)
|
2018-06-01 20:40:18 +02:00
|
|
|
|
2017-12-24 07:16:25 +01:00
|
|
|
#define list_free_all(dest) \
|
2019-02-02 12:25:06 +01:00
|
|
|
list_free_all(LIST_CAST_2(dest))
|
2017-11-21 15:45:01 +01:00
|
|
|
|
2018-06-01 20:40:18 +02:00
|
|
|
#define alist_free_all(dest) \
|
2019-02-02 12:25:06 +01:00
|
|
|
alist_free_all(LIST_ANCHOR_CAST(dest))
|
2018-06-01 20:40:18 +02:00
|
|
|
|
2019-01-23 21:10:43 +01:00
|
|
|
#endif // IGUARD_list_h
|