28 #ifndef MINHEAP_INTERNAL_H_INCLUDED_
29 #define MINHEAP_INTERNAL_H_INCLUDED_
31 #include "event2/event-config.h"
32 #include "evconfig-private.h"
36 #include "util-internal.h"
37 #include "mm-internal.h"
45 static inline void min_heap_ctor_(
min_heap_t* s);
46 static inline void min_heap_dtor_(
min_heap_t* s);
47 static inline void min_heap_elem_init_(
struct event* e);
48 static inline int min_heap_elt_is_top_(
const struct event *e);
49 static inline int min_heap_empty_(
min_heap_t* s);
50 static inline unsigned min_heap_size_(
min_heap_t* s);
52 static inline int min_heap_reserve_(
min_heap_t* s,
unsigned n);
57 static inline void min_heap_shift_up_(
min_heap_t* s,
unsigned hole_index,
struct event* e);
58 static inline void min_heap_shift_up_unconditional_(
min_heap_t* s,
unsigned hole_index,
struct event* e);
59 static inline void min_heap_shift_down_(
min_heap_t* s,
unsigned hole_index,
struct event* e);
61 #define min_heap_elem_greater(a, b) \
62 (evutil_timercmp(&(a)->ev_timeout, &(b)->ev_timeout, >))
64 void min_heap_ctor_(
min_heap_t* s) { s->p = 0; s->n = 0; s->a = 0; }
65 void min_heap_dtor_(
min_heap_t* s) {
if (s->p) mm_free(s->p); }
66 void min_heap_elem_init_(
struct event* e) { e->ev_timeout_pos.min_heap_idx = -1; }
67 int min_heap_empty_(
min_heap_t* s) {
return 0u == s->n; }
68 unsigned min_heap_size_(
min_heap_t* s) {
return s->n; }
73 if (s->n == UINT32_MAX || min_heap_reserve_(s, s->n + 1))
75 min_heap_shift_up_(s, s->n++, e);
83 struct event* e = *s->p;
84 min_heap_shift_down_(s, 0u, s->p[--s->n]);
85 e->ev_timeout_pos.min_heap_idx = -1;
91 int min_heap_elt_is_top_(
const struct event *e)
93 return e->ev_timeout_pos.min_heap_idx == 0;
98 if (-1 != e->ev_timeout_pos.min_heap_idx)
100 struct event *last = s->p[--s->n];
101 unsigned parent = (e->ev_timeout_pos.min_heap_idx - 1) / 2;
107 if (e->ev_timeout_pos.min_heap_idx > 0 && min_heap_elem_greater(s->p[parent], last))
108 min_heap_shift_up_unconditional_(s, e->ev_timeout_pos.min_heap_idx, last);
110 min_heap_shift_down_(s, e->ev_timeout_pos.min_heap_idx, last);
111 e->ev_timeout_pos.min_heap_idx = -1;
119 if (-1 == e->ev_timeout_pos.min_heap_idx) {
120 return min_heap_push_(s, e);
122 unsigned parent = (e->ev_timeout_pos.min_heap_idx - 1) / 2;
125 if (e->ev_timeout_pos.min_heap_idx > 0 && min_heap_elem_greater(s->p[parent], e))
126 min_heap_shift_up_unconditional_(s, e->ev_timeout_pos.min_heap_idx, e);
128 min_heap_shift_down_(s, e->ev_timeout_pos.min_heap_idx, e);
133 int min_heap_reserve_(
min_heap_t* s,
unsigned n)
138 unsigned a = s->a ? s->a * 2 : 8;
141 #if (SIZE_MAX == UINT32_MAX)
142 if (a > SIZE_MAX /
sizeof *p)
145 if (!(p = (
struct event**)mm_realloc(s->p, a *
sizeof *p)))
153 void min_heap_shift_up_unconditional_(
min_heap_t* s,
unsigned hole_index,
struct event* e)
155 unsigned parent = (hole_index - 1) / 2;
158 (s->p[hole_index] = s->p[parent])->ev_timeout_pos.min_heap_idx = hole_index;
160 parent = (hole_index - 1) / 2;
161 }
while (hole_index && min_heap_elem_greater(s->p[parent], e));
162 (s->p[hole_index] = e)->ev_timeout_pos.min_heap_idx = hole_index;
165 void min_heap_shift_up_(
min_heap_t* s,
unsigned hole_index,
struct event* e)
167 unsigned parent = (hole_index - 1) / 2;
168 while (hole_index && min_heap_elem_greater(s->p[parent], e))
170 (s->p[hole_index] = s->p[parent])->ev_timeout_pos.min_heap_idx = hole_index;
172 parent = (hole_index - 1) / 2;
174 (s->p[hole_index] = e)->ev_timeout_pos.min_heap_idx = hole_index;
177 void min_heap_shift_down_(
min_heap_t* s,
unsigned hole_index,
struct event* e)
179 unsigned min_child = 2 * (hole_index + 1);
180 while (min_child <= s->n)
182 min_child -= min_child == s->n || min_heap_elem_greater(s->p[min_child], s->p[min_child - 1]);
183 if (!(min_heap_elem_greater(e, s->p[min_child])))
185 (s->p[hole_index] = s->p[min_child])->ev_timeout_pos.min_heap_idx = hole_index;
186 hole_index = min_child;
187 min_child = 2 * (hole_index + 1);
189 (s->p[hole_index] = e)->ev_timeout_pos.min_heap_idx = hole_index;
Definition: event_struct.h:123
Definition: minheap-internal.h:40