odyssey/sources/list.h

69 lines
1.2 KiB
C
Raw Normal View History

#ifndef OD_LIST_H
#define OD_LIST_H
/*
2017-07-05 12:42:49 +00:00
* Odissey.
*
2017-07-05 12:42:49 +00:00
* Advanced PostgreSQL connection pooler.
*/
typedef struct od_list od_list_t;
struct od_list
{
od_list_t *next, *prev;
};
static inline void
2017-05-24 12:13:44 +00:00
od_list_init(od_list_t *list)
{
list->next = list->prev = list;
}
static inline void
2017-05-24 12:13:44 +00:00
od_list_append(od_list_t *list, od_list_t *node)
{
node->next = list;
node->prev = list->prev;
node->prev->next = node;
node->next->prev = node;
}
static inline void
2017-05-24 12:13:44 +00:00
od_list_unlink(od_list_t *node)
{
node->prev->next = node->next;
node->next->prev = node->prev;
}
static inline void
2017-05-24 12:13:44 +00:00
od_list_push(od_list_t *list, od_list_t *node)
{
node->next = list->next;
node->prev = list;
node->prev->next = node;
node->next->prev = node;
}
static inline od_list_t*
2017-05-24 12:13:44 +00:00
od_list_pop(od_list_t *list)
{
register od_list_t *pop = list->next;
2017-05-24 12:13:44 +00:00
od_list_unlink(pop);
return pop;
}
static inline int
2017-05-24 12:13:44 +00:00
od_list_empty(od_list_t *list)
{
return list->next == list && list->prev == list;
}
2017-05-24 12:13:44 +00:00
#define od_list_foreach(LIST, I) \
for (I = (LIST)->next; I != LIST; I = (I)->next)
2017-05-24 12:13:44 +00:00
#define od_list_foreach_safe(LIST, I, N) \
for (I = (LIST)->next; I != LIST && (N = I->next); I = N)
#endif /* OD_LIST_H */