X-Git-Url: http://git.scottworley.com/tattlekey/blobdiff_plain/00ca9fa67636580409193bf7a9baf394113b4af8..a4a617fd9b53e294a057d1b01a6a8896658f2be3:/client/press.h diff --git a/client/press.h b/client/press.h index b13f9a8..cd0f81d 100644 --- a/client/press.h +++ b/client/press.h @@ -1,8 +1,26 @@ +/* tattlekey: A one-key UDP keyboard + * Copyright (C) 2023 Scott Worley + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef SENDS_H #define SENDS_H #include "pico/cyw43_arch.h" #include "pico/util/pheap.h" +#include "pico/util/queue.h" typedef struct { uint32_t timestamp; @@ -10,13 +28,33 @@ typedef struct { u8_t send_count; } press_t; -bool next_send_less_than(void *user_data, pheap_node_id_t a, pheap_node_id_t b); +typedef struct { + /* Queues of various sizes that hold presses. There is one queue for each + * send_count. */ + queue_t *presses; + + /* Tracks when each queue will be next ready-to-send. Empty queues are not in + * the heap. */ + pheap_t *sleeps_heap; + + /* The companion-array for the heap. */ + queue_t **sleeps; -void create_press(press_t *presses, pheap_t *sleeps_heap, uint32_t timestamp, - u16_t seq); +} press_pile_t; + +press_pile_t *create_press_pile(); + +/* Adds this press to the pile. + * Copies the contents of `press`. */ +void add_press(press_pile_t *pp, press_t *press); /* When do we next need to send something (in seconds since boot)? * Returns -1 if there's nothing pending. */ -int32_t next_scheduled_send(press_t *presses, pheap_t *sleeps_heap); +int32_t next_scheduled_send(press_pile_t *pp); + +/* Find a press ready for resend at or before `now`. + * Move it out of the press-pile `pp` and into into `press`. + * Or return false if there is no press due for re-send. */ +bool get_press_due_for_resend(press_pile_t *pp, uint32_t now, press_t *press); #endif