10 #undef a_que_push_fore
11 #undef a_que_push_back
12 #undef a_que_pull_fore
13 #undef a_que_pull_back
15 static a_que_node
*a_que_node_new(a_que
*ctx
)
17 a_que_node
*node
= A_NULL
;
20 node
= ctx
->ptr_
[--ctx
->cur_
];
24 node
= (a_que_node
*)a_alloc(A_NULL
, sizeof(a_que_node
));
25 if (a_unlikely(!node
)) { return node
; }
30 node
->data_
= a_alloc(A_NULL
, ctx
->siz_
);
31 if (a_unlikely(!node
->data_
))
41 static int a_que_node_die(a_que
*ctx
, a_que_node
*node
)
43 if (!node
) { return A_INVALID
; }
44 if (ctx
->mem_
<= ctx
->cur_
)
46 a_size
const mem
= ctx
->mem_
+ (ctx
->mem_
>> 1) + 1;
47 a_que_node
**const ptr
= (a_que_node
**)a_alloc(ctx
->ptr_
, sizeof(void *) * mem
);
48 if (a_unlikely(!ptr
)) { return A_FAILURE
; }
52 ctx
->ptr_
[ctx
->cur_
++] = node
;
57 static void a_que_drop_(a_que
*ctx
)
59 while (ctx
->head_
.next
!= &ctx
->head_
)
61 a_que_node
*const node
= (a_que_node
*)ctx
->head_
.next
;
62 if (a_unlikely(a_que_node_die(ctx
, node
))) { break; }
63 a_list_del_node(&node
->node_
);
64 a_list_dtor(&node
->node_
);
68 a_que
*a_que_new(a_size size
)
70 a_que
*const ctx
= (a_que
*)a_alloc(A_NULL
, sizeof(a_que
));
71 if (ctx
) { a_que_ctor(ctx
, size
); }
75 void a_que_die(a_que
*ctx
, void (*dtor
)(void *))
79 a_que_dtor(ctx
, dtor
);
84 void a_que_ctor(a_que
*ctx
, a_size size
)
86 a_list_ctor(&ctx
->head_
);
87 ctx
->siz_
= size
? size
: sizeof(a_cast
);
94 void a_que_dtor(a_que
*ctx
, void (*dtor
)(void *))
101 for (; ctx
->cur_
; --ctx
->cur_
)
103 dtor((**node
).data_
);
104 a_alloc((**node
).data_
, 0);
110 for (; ctx
->cur_
; --ctx
->cur_
)
112 a_alloc((**node
).data_
, 0);
116 a_alloc(ctx
->ptr_
, 0);
122 void a_que_move(a_que
*ctx
, a_que
*obj
)
124 a_copy(ctx
, obj
, sizeof(*obj
));
125 a_zero(obj
, sizeof(*obj
));
128 void *a_que_at(a_que
const *ctx
, a_imax idx
)
134 a_list_foreach_next(it
, &ctx
->head_
)
138 ptr
= ((a_que_node
*)it
)->data_
;
145 a_list_foreach_prev(it
, &ctx
->head_
)
149 ptr
= ((a_que_node
*)it
)->data_
;
157 void a_que_drop(a_que
*ctx
, void (*dtor
)(void *))
164 for (a_size cur
= ctx
->cur_
; cur
; ++node
, --cur
)
166 dtor((**node
).data_
);
167 a_alloc((**node
).data_
, 0);
168 (**node
).data_
= A_NULL
;
173 for (a_size cur
= ctx
->cur_
; cur
; ++node
, --cur
)
175 a_alloc((**node
).data_
, 0);
176 (**node
).data_
= A_NULL
;
181 void a_que_edit(a_que
*ctx
, a_size size
, void (*dtor
)(void *))
183 size
= size
? size
: sizeof(a_cast
);
184 a_que_drop(ctx
, dtor
);
188 int a_que_swap_(a_que
const *ctx
, void *lhs
, void *rhs
)
191 a_que_node
*l
= A_NULL
;
192 a_que_node
*r
= A_NULL
;
193 if (lhs
== rhs
) { return A_SUCCESS
; }
194 a_list_foreach_next(it
, &ctx
->head_
)
196 a_que_node
*const node
= (a_que_node
*)it
;
197 if (node
->data_
== lhs
|| node
->data_
== rhs
)
210 a_list_swap_node(&l
->node_
, &r
->node_
);
218 void a_que_swap(a_que
const *ctx
, a_size lhs
, a_size rhs
)
221 a_size
const num
= ctx
->num_
- 1;
222 lhs
= lhs
< ctx
->num_
? lhs
: num
;
223 rhs
= rhs
< ctx
->num_
? rhs
: num
;
226 a_que_node
*l
= A_NULL
;
227 a_que_node
*r
= A_NULL
;
228 a_list_foreach_next(it
, &ctx
->head_
)
230 if (cur
== lhs
|| cur
== rhs
)
232 // because lhs less than num
233 // it's never a null pointer
236 l
= (a_que_node
*)it
;
240 r
= (a_que_node
*)it
;
246 a_list_swap_node(&l
->node_
, &r
->node_
);
254 void a_que_sort_fore(a_que
const *ctx
, int (*cmp
)(void const *, void const *))
259 a_list
*const it
= ctx
->head_
.next
;
260 for (a_list
*at
= it
->next
; at
!= &ctx
->head_
; at
= at
->next
)
262 void *const lhs
= ((a_que_node
*)it
)->data_
;
263 void *const rhs
= ((a_que_node
*)at
)->data_
;
264 if (cmp(lhs
, rhs
) > 0) { pt
= at
; }
269 /* a<->it<->b<->pt<->a */
270 a_list_link(it
->prev
, it
->next
); // a<->b
271 a_list_link(it
, pt
->next
); // it<->a
272 a_list_link(pt
, it
); // pt<->it
273 /* a<->b<->pt<->it<->a */
278 void a_que_sort_back(a_que
const *ctx
, int (*cmp
)(void const *, void const *))
283 a_list
*const it
= ctx
->head_
.prev
;
284 for (a_list
*at
= it
->prev
; at
!= &ctx
->head_
; at
= at
->prev
)
286 void *const lhs
= ((a_que_node
*)at
)->data_
;
287 void *const rhs
= ((a_que_node
*)it
)->data_
;
288 if (cmp(lhs
, rhs
) > 0) { pt
= at
; }
293 /* a<->pt<->b<->it<->a */
294 a_list_link(it
->prev
, it
->next
); // b<->a
295 a_list_link(pt
->prev
, it
); // a<->it
296 a_list_link(it
, pt
); // it<->pt
297 /* a<->it<->pt<->b<->a */
302 void *a_que_push_fore(a_que
*ctx
)
304 a_que_node
*const node
= a_que_node_new(ctx
);
305 if (a_unlikely(!node
)) { return node
; }
306 a_list_add_next(&ctx
->head_
, &node
->node_
);
310 void *a_que_push_back(a_que
*ctx
)
312 a_que_node
*const node
= a_que_node_new(ctx
);
313 if (a_unlikely(!node
)) { return node
; }
314 a_list_add_prev(&ctx
->head_
, &node
->node_
);
318 void *a_que_pull_fore(a_que
*ctx
)
321 if (ctx
->head_
.next
!= &ctx
->head_
)
323 a_que_node
*const node
= (a_que_node
*)ctx
->head_
.next
;
324 if (a_que_node_die(ctx
, node
) == A_SUCCESS
)
326 a_list_del_node(&node
->node_
);
327 a_list_dtor(&node
->node_
);
334 void *a_que_pull_back(a_que
*ctx
)
337 if (ctx
->head_
.prev
!= &ctx
->head_
)
339 a_que_node
*const node
= (a_que_node
*)ctx
->head_
.prev
;
340 if (a_que_node_die(ctx
, node
) == A_SUCCESS
)
342 a_list_del_node(&node
->node_
);
343 a_list_dtor(&node
->node_
);
350 void *a_que_insert(a_que
*ctx
, a_size idx
)
355 a_que_node
*const node
= a_que_node_new(ctx
);
356 if (a_unlikely(!node
)) { return node
; }
357 a_list_foreach_next(it
, &ctx
->head_
)
361 a_list_add_prev(it
, &node
->node_
);
367 return a_que_push_back(ctx
);
370 void *a_que_remove(a_que
*ctx
, a_size idx
)
375 a_que_node
*node
= A_NULL
;
376 a_list_foreach_next(it
, &ctx
->head_
)
380 // because idx less than num
381 // it's never a null pointer
382 node
= (a_que_node
*)it
;
386 if (a_unlikely(a_que_node_die(ctx
, node
))) { return A_NULL
; }
387 a_list_del_node(&node
->node_
);
388 a_list_dtor(&node
->node_
);
391 return a_que_pull_back(ctx
);