]> git.scottworley.com Git - tattlekey/blame - client/press.c
client: xcalloc
[tattlekey] / client / press.c
CommitLineData
00ca9fa6 1#include "press.h"
e3ff9e0d 2#include "blink.h"
2dcbb2a0 3
17461dec 4static uint32_t next_send(press_t *s) {
2dcbb2a0
SW
5 return s->timestamp + (1 << s->send_count) - 1;
6}
7
e3ff9e0d
SW
8static bool next_send_less_than(void *user_data, pheap_node_id_t a,
9 pheap_node_id_t b) {
17461dec
SW
10 press_t *presses = (press_t *)user_data;
11 return next_send(&presses[a]) < next_send(&presses[b]);
2dcbb2a0 12}
67001c93 13
6e43b84f
SW
14static void *xcalloc(size_t nmemb, size_t size) {
15 void *p = calloc(nmemb, size);
16 if (p == NULL)
e3ff9e0d 17 signal_error_by_blinking();
6e43b84f
SW
18 return p;
19}
20
21press_pile_t *create_press_pile() {
22 press_pile_t *pp = (press_pile_t *)xcalloc(1, sizeof(press_pile_t));
23 pp->presses = (press_t *)xcalloc(PICO_PHEAP_MAX_ENTRIES, sizeof(press_t));
e3ff9e0d
SW
24 pp->sleeps_heap =
25 ph_create(PICO_PHEAP_MAX_ENTRIES, next_send_less_than, pp->presses);
26 if (pp->sleeps_heap == NULL)
27 signal_error_by_blinking();
28 return pp;
29}
30
f68e05b2 31void add_press(press_pile_t *pp, press_t *press) {
e3ff9e0d 32 pheap_node_id_t i = ph_new_node(pp->sleeps_heap);
67001c93
SW
33 if (i == 0) {
34 /* TODO: Don't drop new presses just because sleeps_heap is full of old
35 * presses. */
36 return;
37 }
f68e05b2 38 pp->presses[i] = *press;
e3ff9e0d 39 ph_insert_node(pp->sleeps_heap, i);
67001c93 40}
b512ec26 41
e3ff9e0d
SW
42int32_t next_scheduled_send(press_pile_t *pp) {
43 pheap_node_id_t i = ph_peek_head(pp->sleeps_heap);
b512ec26
SW
44 if (i == 0)
45 return -1;
e3ff9e0d 46 return next_send(&pp->presses[i]);
b512ec26 47}
9ae691e9
SW
48
49bool get_press_due_for_resend(press_pile_t *pp, uint32_t now, press_t *press) {
50 pheap_node_id_t i = ph_peek_head(pp->sleeps_heap);
51 if (i == 0 || next_send(&pp->presses[i]) > now)
52 return false;
53 if (ph_remove_head(pp->sleeps_heap, true) != i)
54 signal_error_by_blinking();
55 *press = pp->presses[i];
56 return true;
57}