]> git.scottworley.com Git - tattlekey/commitdiff
client: get_press_due_for_resend()
authorScott Worley <scottworley@scottworley.com>
Tue, 10 Oct 2023 06:05:13 +0000 (23:05 -0700)
committerScott Worley <scottworley@scottworley.com>
Wed, 11 Oct 2023 01:49:35 +0000 (18:49 -0700)
This removes the last references to pp's internals outside press.c.

client/press.c
client/press.h
client/tattlekey.c

index 56d95eaaabc32b4fe69a8d725246c0905d9f17e4..e1eddfcfbc66f010d53f28f66940bcf42a2ba733 100644 (file)
@@ -42,3 +42,13 @@ int32_t next_scheduled_send(press_pile_t *pp) {
     return -1;
   return next_send(&pp->presses[i]);
 }
+
+bool get_press_due_for_resend(press_pile_t *pp, uint32_t now, press_t *press) {
+  pheap_node_id_t i = ph_peek_head(pp->sleeps_heap);
+  if (i == 0 || next_send(&pp->presses[i]) > now)
+    return false;
+  if (ph_remove_head(pp->sleeps_heap, true) != i)
+    signal_error_by_blinking();
+  *press = pp->presses[i];
+  return true;
+}
index 898bb1a85a4334c3cbb1e83046813100da251aac..69789e0984100a522f79f456ac1122a40d56c7aa 100644 (file)
@@ -25,4 +25,9 @@ void add_press(press_pile_t *pp, press_t *press);
  * Returns -1 if there's nothing pending. */
 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
index 88bdd9159f7c958649bef438920bb7dbe2ed6b80..9f28e455ba9993cbf7a295ddc74e7d0ed69c87ab 100644 (file)
@@ -75,15 +75,15 @@ void service_sleeps(int alarm, press_pile_t *pp) {
       set_resend_alarm(alarm, now, act_time);
       return;
     }
-    pheap_node_id_t i = ph_remove_head(pp->sleeps_heap, false);
-    press_t *press = &pp->presses[i];
-    uint32_t ago = now - press->timestamp;
-    send_report_packet(press->seq, ago);
-    press->send_count++;
-    if (press->send_count < config_resend_count)
-      ph_insert_node(pp->sleeps_heap, i);
-    else
-      ph_free_node(pp->sleeps_heap, i);
+    press_t press;
+    if (!get_press_due_for_resend(pp, now, &press))
+      signal_error_by_blinking();
+    uint32_t ago = now - press.timestamp;
+    send_report_packet(press.seq, ago);
+    press.send_count++;
+    if (press.send_count < config_resend_count) {
+      add_press(pp, &press);
+    }
   }
 }