feat(audio-rooms): RoomPresence + aggregator for listener-side fan-in

Introduces the data model + in-memory dedup/eviction logic the
participant grid (Tier 2 #1), hand-raise queue (T1 #5), and listener
counter (T1 #8) all consume.

  RoomPresence       — one peer's most recent kind-10312 snapshot.
                       Equality is by pubkey alone so a Set or Map
                       swap on heartbeat update doesn't double-count
                       when only the timestamp changes.
                       `RoomPresence.from(event)` projects every
                       presence tag, with conservative defaults for
                       absent ones (handRaised/publishing default
                       false; muted stays null to distinguish "didn't
                       say" from "explicitly false"; onstage defaults
                       TRUE so pre-onstage clients still render as
                       speakers).

  RoomPresenceAggregator
                     — `apply(event)` dedupes by pubkey, keeps the
                       most recent createdAt (out-of-order events
                       can't overwrite newer state). `evictOlderThan`
                       is the staleness sweep — caller drives the
                       cadence (typically a 60 s tick passing
                       `now - 6*60` to evict on >6 min of silence).

Tests cover: tag projection, the absent-tag defaults, dedup on same
pubkey, out-of-order non-overwrite, multi-pubkey isolation, eviction
window, and the pubkey-only equality contract.

The amethyst-side LocalCache wiring + listener-counter UI come next
in their own commit.
This commit is contained in:
Claude
2026-04-26 21:42:11 +00:00
parent 9c3cbdaee6
commit 87dd8ee2ec
2 changed files with 239 additions and 0 deletions
@@ -0,0 +1,127 @@
/*
* Copyright (c) 2025 Vitor Pamplona
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
* Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.vitorpamplona.amethyst.commons.viewmodels
import com.vitorpamplona.quartz.nip53LiveActivities.presence.MeetingRoomPresenceEvent
import kotlin.test.Test
import kotlin.test.assertEquals
import kotlin.test.assertFalse
import kotlin.test.assertNull
import kotlin.test.assertTrue
class RoomPresenceStateTest {
private val alice = "a".repeat(64)
private val bob = "b".repeat(64)
private val roomA = "30312:${"c".repeat(64)}:my-room"
private fun event(
pubkey: String,
createdAt: Long,
handRaised: Boolean? = null,
muted: Boolean? = null,
publishing: Boolean? = null,
onstage: Boolean? = null,
): MeetingRoomPresenceEvent {
val tags =
buildList<Array<String>> {
add(arrayOf("a", roomA))
handRaised?.let { add(arrayOf("hand", if (it) "1" else "0")) }
muted?.let { add(arrayOf("muted", if (it) "1" else "0")) }
publishing?.let { add(arrayOf("publishing", if (it) "1" else "0")) }
onstage?.let { add(arrayOf("onstage", if (it) "1" else "0")) }
}.toTypedArray()
return MeetingRoomPresenceEvent(
id = "0".repeat(64),
pubKey = pubkey,
createdAt = createdAt,
tags = tags,
content = "",
sig = "0".repeat(128),
)
}
@Test
fun fromEventProjectsAllTags() {
val rp = RoomPresence.from(event(alice, 100L, handRaised = true, muted = false, publishing = true, onstage = true))
assertEquals(alice, rp.pubkey)
assertTrue(rp.handRaised)
assertEquals(false, rp.muted)
assertTrue(rp.publishing)
assertTrue(rp.onstage)
assertEquals(100L, rp.updatedAtSec)
}
@Test
fun fromEventDefaultsAbsentTagsConservatively() {
val rp = RoomPresence.from(event(alice, 100L))
assertFalse(rp.handRaised)
assertNull(rp.muted)
assertFalse(rp.publishing)
// onstage defaults to TRUE for backwards compatibility with
// pre-onstage clients — they all emit kind 10312 implicitly
// as speakers.
assertTrue(rp.onstage)
}
@Test
fun aggregatorDedupesByPubkeyKeepingLatestCreatedAt() {
val agg = RoomPresenceAggregator()
agg.apply(event(alice, 100L, handRaised = false))
agg.apply(event(alice, 200L, handRaised = true))
// Out-of-order arrival: older event must NOT overwrite newer.
val snapshot = agg.apply(event(alice, 150L, handRaised = false))
assertEquals(1, snapshot.size)
assertTrue(snapshot[alice]!!.handRaised)
assertEquals(200L, snapshot[alice]!!.updatedAtSec)
}
@Test
fun aggregatorTracksMultiplePubkeysIndependently() {
val agg = RoomPresenceAggregator()
agg.apply(event(alice, 100L, publishing = true))
val snapshot = agg.apply(event(bob, 100L, publishing = false))
assertEquals(2, snapshot.size)
assertTrue(snapshot[alice]!!.publishing)
assertFalse(snapshot[bob]!!.publishing)
}
@Test
fun evictOlderThanDropsStalePeersAndKeepsFresh() {
val agg = RoomPresenceAggregator()
agg.apply(event(alice, 100L)) // stale
agg.apply(event(bob, 500L)) // fresh
val snapshot = agg.evictOlderThan(olderThanSec = 400L)
assertEquals(setOf(bob), snapshot.keys)
}
@Test
fun roomPresenceEqualityIsPubkeyOnly() {
// Two snapshots of the same peer at different times are
// "equal" so a Set<RoomPresence> deduplicates correctly.
val a1 = RoomPresence.from(event(alice, 100L, handRaised = false))
val a2 = RoomPresence.from(event(alice, 200L, handRaised = true))
assertEquals(a1, a2)
assertEquals(a1.hashCode(), a2.hashCode())
}
}