bmux_plugin 0.0.1-alpha.1

Plugin system for bmux terminal multiplexer
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
//! Host-side typed event bus keyed by `PluginEventKind`.
//!
//! Two delivery modes coexist under the same kind namespace:
//!
//! - **Broadcast channels** (classic transient events). Plugins call
//!   [`EventBus::register_channel::<E>`] to own one; subscribers call
//!   [`EventBus::subscribe::<E>`]. Payloads fan out to every live
//!   subscriber exactly once. Late subscribers miss prior emissions.
//!   Suitable for: bell, recording-started, per-tick animation ticks.
//! - **State channels** (reactive state observation). Plugins call
//!   [`EventBus::register_state_channel::<T>`] with an initial value;
//!   subscribers call [`EventBus::subscribe_state::<T>`] and receive
//!   the current value synchronously plus a [`watch::Receiver`] for
//!   live updates. New subscribers always observe the latest value —
//!   no race windows. Suitable for: focused pane, zoom status,
//!   session list.
//!
//! Both modes share the same [`PluginEventKind`] namespace. Publishing
//! or subscribing with the wrong API surfaces a
//! [`EventBusError::ChannelDeliveryMismatch`] error.
//!
//! The BPDL schema declares delivery mode at the type level: a plain
//! `events T;` generates broadcast bindings; `@state events T;`
//! generates state-channel bindings (`STATE_KIND` + `StatePayload`).
//!
//! # Lifecycle
//!
//! 1. Plugin's `activate` calls either
//!    [`EventBus::register_channel::<E>`] (broadcast) or
//!    [`EventBus::register_state_channel::<T>`] (state) for each
//!    stream it owns, keyed by the BPDL-generated constant.
//! 2. Publishers call [`EventBus::emit::<E>`] (broadcast) or
//!    [`EventBus::publish_state::<T>`] (state); state publishes
//!    replace the retained value atomically.
//! 3. Subscribers call the matching `subscribe` / `subscribe_state`.

use bmux_plugin_sdk::PluginEventKind;
use serde::Serialize;
use serde_json::Value as JsonValue;
use std::any::{Any, TypeId};
use std::collections::HashMap;
use std::sync::{Arc, RwLock};
use tokio::sync::{broadcast, watch};

/// Default capacity for newly-registered broadcast channels.
///
/// Plugins can override via [`EventBus::register_channel_with_capacity`].
pub const DEFAULT_EVENT_BUS_CAPACITY: usize = 1024;

/// Delivery semantics for a registered channel.
///
/// Reported by [`EventBusError::ChannelDeliveryMismatch`] so callers
/// can identify the kind of mismatch when they call the wrong API for
/// a registered kind.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum DeliveryMode {
    /// Broadcast — transient events fanned out to live subscribers.
    Broadcast,
    /// State — last-published value retained and replayed to new
    /// subscribers before they see any live updates.
    State,
}

/// Type-erased JSON projection of a typed plugin event.
///
/// Typed plugin channels remain the source of truth; this is an optional,
/// lazily-produced projection for generic consumers such as decoration scripts.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct JsonPluginEvent {
    pub interface: PluginEventKind,
    pub delivery: DeliveryMode,
    pub payload: JsonValue,
}

/// Controls whether a typed channel exposes a dynamic JSON projection.
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq)]
pub enum JsonProjectionPolicy {
    /// No JSON projection is registered. Typed subscribers remain fully
    /// functional and no JSON serialization is performed.
    #[default]
    Disabled,
    /// JSON is serialized only when a JSON subscriber is active. For state
    /// channels, the current retained state is serialized on first JSON
    /// subscription.
    Lazy,
}

/// Registration options for event-bus channels.
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq)]
pub struct EventBusChannelOptions {
    pub json_projection: JsonProjectionPolicy,
}

impl std::fmt::Display for DeliveryMode {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Broadcast => f.write_str("broadcast"),
            Self::State => f.write_str("state"),
        }
    }
}

/// Error variants the event bus can produce.
#[derive(Debug)]
pub enum EventBusError {
    /// Attempted to emit or subscribe on an interface that no plugin
    /// has registered a channel for.
    ChannelNotRegistered {
        /// The interface id that was queried.
        interface: String,
    },
    /// The stored channel's payload type did not match the caller's
    /// expected type. Indicates a registration/consumer mismatch.
    PayloadTypeMismatch {
        /// The interface id involved.
        interface: String,
        /// The type name the registered channel holds.
        expected: &'static str,
        /// The type name the caller asked for.
        actual: &'static str,
    },
    /// The registered channel uses a different delivery mode than the
    /// caller's API implies (e.g. calling [`EventBus::emit`] on a
    /// state channel, or [`EventBus::subscribe_state`] on a broadcast
    /// channel).
    ChannelDeliveryMismatch {
        /// The interface id involved.
        interface: String,
        /// The delivery mode the caller's API expects.
        expected: DeliveryMode,
        /// The delivery mode the registered channel actually uses.
        actual: DeliveryMode,
    },
    /// The channel exists but was registered without a type-erased JSON projection.
    JsonProjectionUnavailable {
        /// The interface id involved.
        interface: String,
    },
}

impl std::fmt::Display for EventBusError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::ChannelNotRegistered { interface } => {
                write!(f, "no event channel registered for interface `{interface}`")
            }
            Self::PayloadTypeMismatch {
                interface,
                expected,
                actual,
            } => write!(
                f,
                "event channel for `{interface}` has payload type `{expected}`; \
                 caller requested `{actual}`"
            ),
            Self::ChannelDeliveryMismatch {
                interface,
                expected,
                actual,
            } => write!(
                f,
                "event channel for `{interface}` is a {actual} channel; \
                 caller's API is {expected}"
            ),
            Self::JsonProjectionUnavailable { interface } => write!(
                f,
                "event channel for `{interface}` was registered without a JSON projection"
            ),
        }
    }
}

impl std::error::Error for EventBusError {}

/// Result alias for event bus operations.
pub type EventBusResult<T> = std::result::Result<T, EventBusError>;

/// The underlying transport for a registered channel. Internal — the
/// public surface keeps the two modes separate via explicit
/// `register_channel`/`register_state_channel` + their matching
/// `emit`/`publish_state`/`subscribe`/`subscribe_state` methods.
enum ChannelKind {
    /// `tokio::sync::broadcast::Sender<Arc<T>>` erased as `Arc<dyn Any>`.
    Broadcast(Arc<dyn Any + Send + Sync>),
    /// `watch::Sender<Arc<T>>` erased as `Arc<dyn Any>`. Watch state
    /// channels retain the last published value and replay it to new
    /// subscribers.
    State(Arc<dyn Any + Send + Sync>),
}

type JsonEventEncoder =
    Arc<dyn Fn(&(dyn Any + Send + Sync)) -> Option<JsonValue> + Send + Sync + 'static>;
type JsonStateEncoder = Arc<dyn Fn(&ChannelKind) -> Option<JsonValue> + Send + Sync + 'static>;

struct JsonProjection {
    broadcast: broadcast::Sender<Arc<JsonPluginEvent>>,
    state: Option<watch::Sender<Arc<JsonPluginEvent>>>,
    event_encoder: Option<JsonEventEncoder>,
    state_encoder: Option<JsonStateEncoder>,
}

/// Internal handle stored behind an `Arc<dyn Any>`, giving the bus a
/// uniform type to key on even though each channel's payload type
/// differs.
struct ChannelEntry {
    kind: ChannelKind,
    payload_type_id: TypeId,
    payload_type_name: &'static str,
    /// Optional bytes-to-publish trampoline. Registered channels that
    /// want to receive wire-forwarded payloads (e.g. via the
    /// `Request::EmitOnPluginBus` cross-process relay) provide a
    /// decoder at registration time. Channels without a decoder can
    /// still be published to in-process via the typed
    /// [`EventBus::publish_state`] / [`EventBus::emit`] APIs; they
    /// simply can't accept wire-encoded payloads.
    decoder: Option<BytesDecoder>,
    json: Option<JsonProjection>,
}

/// Error surface for `emit_from_bytes` decoder invocation.
#[derive(Debug, thiserror::Error)]
pub enum EventBusBytesError {
    #[error("failed to decode wire payload: {0}")]
    Decode(String),
    #[error(transparent)]
    Bus(#[from] EventBusError),
}

/// Type alias for the bytes-to-publish trampoline stored on a
/// registered channel. Given raw wire bytes, the decoder
/// deserialises them into the channel's typed payload and invokes
/// `publish_state` on the owning event bus.
type BytesDecoder = Arc<dyn Fn(&[u8]) -> Result<(), EventBusBytesError> + Send + Sync + 'static>;

fn event_json_encoder<T>() -> JsonEventEncoder
where
    T: Any + Send + Sync + Serialize + 'static,
{
    Arc::new(|event| serde_json::to_value(event.downcast_ref::<T>()?).ok())
}

fn state_json_encoder<T>() -> JsonStateEncoder
where
    T: Any + Send + Sync + Serialize + 'static,
{
    Arc::new(|kind| {
        let ChannelKind::State(sender) = kind else {
            return None;
        };
        let sender = sender.clone().downcast::<watch::Sender<Arc<T>>>().ok()?;
        serde_json::to_value(sender.borrow().as_ref()).ok()
    })
}

/// Host-side typed event bus.
#[derive(Default)]
pub struct EventBus {
    entries: RwLock<HashMap<PluginEventKind, ChannelEntry>>,
}

impl std::fmt::Debug for EventBus {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let count = self.entries.read().map_or(0, |g| g.len());
        f.debug_struct("EventBus")
            .field("channels", &count)
            .finish()
    }
}

impl EventBus {
    /// Construct an empty event bus.
    #[must_use]
    pub fn new() -> Self {
        Self::default()
    }

    /// Register a broadcast channel for `E` keyed by `interface`.
    ///
    /// Returns the `Sender` so the registering plugin can keep a
    /// handle for direct publishing. Subsequent registrations of the
    /// same interface id replace the channel (last writer wins).
    ///
    /// Uses [`DEFAULT_EVENT_BUS_CAPACITY`] as the broadcast channel
    /// capacity. For explicit control use
    /// [`Self::register_channel_with_capacity`].
    ///
    /// # Panics
    ///
    /// Panics if the registry's internal lock is poisoned.
    pub fn register_channel<E>(&self, interface: PluginEventKind) -> broadcast::Sender<Arc<E>>
    where
        E: Any + Send + Sync + 'static,
    {
        self.register_channel_with_capacity::<E>(interface, DEFAULT_EVENT_BUS_CAPACITY)
    }

    /// Register a broadcast channel with lazy JSON projection enabled.
    ///
    /// # Panics
    ///
    /// Panics if the registry's internal lock is poisoned.
    pub fn register_channel_with_json_projection<E>(
        &self,
        interface: PluginEventKind,
    ) -> broadcast::Sender<Arc<E>>
    where
        E: Any + Send + Sync + Serialize + 'static,
    {
        self.register_channel_with_capacity_and_options::<E>(
            interface,
            DEFAULT_EVENT_BUS_CAPACITY,
            EventBusChannelOptions {
                json_projection: JsonProjectionPolicy::Lazy,
            },
        )
    }

    /// Like [`Self::register_channel`] but with an explicit capacity.
    ///
    /// # Panics
    ///
    /// Panics if the registry's internal lock is poisoned.
    pub fn register_channel_with_capacity<E>(
        &self,
        interface: PluginEventKind,
        capacity: usize,
    ) -> broadcast::Sender<Arc<E>>
    where
        E: Any + Send + Sync + 'static,
    {
        self.register_channel_with_capacity_and_json_encoder::<E>(interface, capacity, None)
    }

    /// Register a broadcast channel with explicit options and capacity.
    ///
    /// # Panics
    ///
    /// Panics if the registry's internal lock is poisoned.
    pub fn register_channel_with_capacity_and_options<E>(
        &self,
        interface: PluginEventKind,
        capacity: usize,
        options: EventBusChannelOptions,
    ) -> broadcast::Sender<Arc<E>>
    where
        E: Any + Send + Sync + Serialize + 'static,
    {
        let event_encoder = (options.json_projection == JsonProjectionPolicy::Lazy)
            .then(|| event_json_encoder::<E>());
        self.register_channel_with_capacity_and_json_encoder::<E>(
            interface,
            capacity,
            event_encoder,
        )
    }

    /// Register a state channel for `T` keyed by `interface`, seeded
    /// with `initial`.
    ///
    /// Unlike broadcast channels, state channels retain the last
    /// published value and replay it synchronously to any subscriber
    /// via [`Self::subscribe_state`]. Subsequent registrations of the
    /// same interface id replace the channel and reset the retained
    /// value to the new `initial`.
    ///
    /// Returns the underlying [`watch::Sender`] so the registering
    /// plugin can publish directly without re-looking up the entry.
    ///
    /// # Panics
    ///
    /// Panics if the registry's internal lock is poisoned.
    pub fn register_state_channel<T>(
        &self,
        interface: PluginEventKind,
        initial: T,
    ) -> watch::Sender<Arc<T>>
    where
        T: Any + Send + Sync + 'static,
    {
        let (sender, _) = watch::channel::<Arc<T>>(Arc::new(initial));
        let entry = ChannelEntry {
            kind: ChannelKind::State(Arc::new(sender.clone())),
            payload_type_id: TypeId::of::<T>(),
            payload_type_name: std::any::type_name::<T>(),
            decoder: None,
            json: None,
        };
        let mut guard = self.entries.write().expect("event bus lock poisoned");
        guard.insert(interface, entry);
        sender
    }

    /// Register a state channel with lazy JSON projection enabled.
    ///
    /// # Panics
    ///
    /// Panics if the registry's internal lock is poisoned.
    pub fn register_state_channel_with_json_projection<T>(
        &self,
        interface: PluginEventKind,
        initial: T,
    ) -> watch::Sender<Arc<T>>
    where
        T: Any + Send + Sync + Serialize + 'static,
    {
        self.register_state_channel_with_options(
            interface,
            initial,
            EventBusChannelOptions {
                json_projection: JsonProjectionPolicy::Lazy,
            },
        )
    }

    /// Register a retained state channel with explicit options.
    ///
    /// # Panics
    ///
    /// Panics if the registry's internal lock is poisoned.
    pub fn register_state_channel_with_options<T>(
        &self,
        interface: PluginEventKind,
        initial: T,
        options: EventBusChannelOptions,
    ) -> watch::Sender<Arc<T>>
    where
        T: Any + Send + Sync + Serialize + 'static,
    {
        let (sender, _) = watch::channel::<Arc<T>>(Arc::new(initial));
        let json = if options.json_projection == JsonProjectionPolicy::Lazy {
            let initial_json = JsonPluginEvent {
                interface: interface.clone(),
                delivery: DeliveryMode::State,
                payload: JsonValue::Null,
            };
            let (json_state_sender, _) =
                watch::channel::<Arc<JsonPluginEvent>>(Arc::new(initial_json));
            let (json_broadcast_sender, _) =
                broadcast::channel::<Arc<JsonPluginEvent>>(DEFAULT_EVENT_BUS_CAPACITY);
            Some(JsonProjection {
                broadcast: json_broadcast_sender,
                state: Some(json_state_sender),
                event_encoder: None,
                state_encoder: Some(state_json_encoder::<T>()),
            })
        } else {
            None
        };
        let entry = ChannelEntry {
            kind: ChannelKind::State(Arc::new(sender.clone())),
            payload_type_id: TypeId::of::<T>(),
            payload_type_name: std::any::type_name::<T>(),
            decoder: None,
            json,
        };
        let mut guard = self.entries.write().expect("event bus lock poisoned");
        guard.insert(interface, entry);
        sender
    }

    /// Register a state channel plus a wire-bytes decoder so callers
    /// of [`Self::emit_from_bytes`] can publish on this channel
    /// without knowing its concrete payload type at compile time.
    ///
    /// Use this instead of [`Self::register_state_channel`] when the
    /// channel needs to accept wire-encoded payloads (e.g. via the
    /// cross-process `Request::EmitOnPluginBus` relay). The decoder
    /// takes the JSON-encoded bytes, deserialises them into `T`, and
    /// invokes `publish_state` on the same bus.
    ///
    /// Returns the typed sender so the registering plugin can publish
    /// directly without re-looking up the entry.
    ///
    /// # Panics
    ///
    /// Panics if the registry's internal lock is poisoned.
    #[allow(clippy::needless_pass_by_value)] // Consumed twice via `.clone()` into both the registry and the captured closure.
    pub fn register_state_channel_with_decoder<T>(
        self: &Arc<Self>,
        interface: PluginEventKind,
        initial: T,
    ) -> watch::Sender<Arc<T>>
    where
        T: Any + Send + Sync + 'static + serde::de::DeserializeOwned,
    {
        self.register_state_channel_with_bytes_decoder(interface, initial, |bytes| {
            serde_json::from_slice(bytes).map_err(|err| EventBusBytesError::Decode(err.to_string()))
        })
    }

    /// Register a retained state channel with a custom wire decoder.
    ///
    /// Use this for non-JSON binary state payloads that arrive through
    /// [`Self::emit_from_bytes`]. The decoder converts each byte payload into
    /// the retained state value published on the channel.
    #[allow(clippy::needless_pass_by_value)] // Consumed via `.clone()` for registration and decoder capture; matches state-channel registration APIs.
    pub fn register_state_channel_with_bytes_decoder<T, F>(
        self: &Arc<Self>,
        interface: PluginEventKind,
        initial: T,
        decode: F,
    ) -> watch::Sender<Arc<T>>
    where
        T: Any + Send + Sync + 'static,
        F: Fn(&[u8]) -> Result<T, EventBusBytesError> + Send + Sync + 'static,
    {
        let sender = self.register_state_channel::<T>(interface.clone(), initial);
        self.install_state_bytes_decoder(&interface, decode);
        sender
    }

    fn install_state_bytes_decoder<T, F>(self: &Arc<Self>, interface: &PluginEventKind, decode: F)
    where
        T: Any + Send + Sync + 'static,
        F: Fn(&[u8]) -> Result<T, EventBusBytesError> + Send + Sync + 'static,
    {
        let bus = Arc::downgrade(self);
        let decoder_kind = interface.clone();
        let decoder: BytesDecoder =
            Arc::new(move |bytes: &[u8]| -> Result<(), EventBusBytesError> {
                let Some(bus) = bus.upgrade() else {
                    return Err(EventBusBytesError::Decode("event bus dropped".to_string()));
                };
                let value = decode(bytes)?;
                bus.publish_state::<T>(&decoder_kind, value)?;
                Ok(())
            });
        self.set_bytes_decoder(interface, decoder);
    }

    fn set_bytes_decoder(&self, interface: &PluginEventKind, decoder: BytesDecoder) {
        if let Ok(mut guard) = self.entries.write()
            && let Some(entry) = guard.get_mut(interface)
        {
            entry.decoder = Some(decoder);
        }
    }

    /// Publish a wire-encoded payload on the channel registered for
    /// `interface`. The channel must have been registered with a
    /// decoder via [`Self::register_state_channel_with_decoder`];
    /// otherwise the payload is silently dropped (returns
    /// `Ok(false)`) so early wire events before a subscribing plugin
    /// activates don't fail loudly.
    ///
    /// Returns `Ok(true)` when a decoder ran and published, `Ok(false)`
    /// when no channel or no decoder is registered.
    ///
    /// # Errors
    ///
    /// Returns [`EventBusBytesError::Decode`] when the decoder fails
    /// to parse the payload or when the underlying
    /// [`Self::publish_state`] rejects the type.
    pub fn emit_from_bytes(
        &self,
        interface: &PluginEventKind,
        payload: &[u8],
    ) -> Result<bool, EventBusBytesError> {
        let decoder = self
            .entries
            .read()
            .map_err(|_| EventBusBytesError::Decode("event bus lock poisoned".to_string()))?
            .get(interface)
            .and_then(|entry| entry.decoder.as_ref().map(Arc::clone));
        let Some(decoder) = decoder else {
            return Ok(false);
        };
        decoder(payload)?;
        Ok(true)
    }

    /// Emit an event on the broadcast channel registered for
    /// `interface`.
    ///
    /// Returns the number of subscribers the event was queued for
    /// (same semantics as [`broadcast::Sender::send`]'s `Ok` path).
    ///
    /// # Errors
    ///
    /// Returns [`EventBusError::ChannelNotRegistered`] when no plugin
    /// has registered the interface yet;
    /// [`EventBusError::PayloadTypeMismatch`] when the registered
    /// channel's payload type differs from `E`;
    /// [`EventBusError::ChannelDeliveryMismatch`] when the registered
    /// channel is a state channel (caller should use
    /// [`Self::publish_state`] instead). If all subscribers have been
    /// dropped, the underlying broadcast `send` error is swallowed
    /// and `Ok(0)` is returned (matching the "fire and forget" event
    /// model).
    pub fn emit<E>(&self, interface: &PluginEventKind, event: E) -> EventBusResult<usize>
    where
        E: Any + Send + Sync + 'static,
    {
        let sender = self.broadcast_sender::<E>(interface)?;
        let event = Arc::new(event);
        let json_payload = if self.json_projection_observed(interface, DeliveryMode::Broadcast) {
            self.project_json_event(interface, event.as_ref())
        } else {
            None
        };
        let count = sender.send(event).unwrap_or(0);
        if let Some(payload) = json_payload {
            self.publish_json_projection(interface, DeliveryMode::Broadcast, payload);
        }
        Ok(count)
    }

    /// Publish a new value on the state channel registered for
    /// `interface`. Replaces the retained value atomically; all live
    /// subscribers' [`watch::Receiver::changed`] futures wake.
    ///
    /// # Errors
    ///
    /// Same error conditions as [`Self::emit`], except the delivery
    /// mismatch surfaces when the registered channel is a broadcast
    /// channel (caller should use [`Self::emit`] instead). Publish
    /// succeeds even when no subscribers are live — the retained
    /// value is still updated for future subscribers.
    pub fn publish_state<T>(&self, interface: &PluginEventKind, value: T) -> EventBusResult<()>
    where
        T: Any + Send + Sync + 'static,
    {
        let sender = self.state_sender::<T>(interface)?;
        // `send_replace` always updates the retained value, even when
        // no receivers are live. Using `send` would return an error
        // in that case and leave late subscribers with stale data.
        sender.send_replace(Arc::new(value));
        self.publish_json_projection_from_state_if_observed(interface);
        Ok(())
    }

    /// Subscribe to events emitted on the broadcast channel for
    /// `interface`.
    ///
    /// # Errors
    ///
    /// Same error conditions as [`Self::emit`] minus the "no
    /// subscribers" case (a subscription always succeeds if the
    /// channel is registered and the payload type matches).
    pub fn subscribe<E>(
        &self,
        interface: &PluginEventKind,
    ) -> EventBusResult<broadcast::Receiver<Arc<E>>>
    where
        E: Any + Send + Sync + 'static,
    {
        let sender = self.broadcast_sender::<E>(interface)?;
        Ok(sender.subscribe())
    }

    /// Subscribe to the state channel for `interface`, returning the
    /// current retained value plus a [`watch::Receiver`] for live
    /// updates.
    ///
    /// The initial value reflects whatever was most recently passed
    /// to [`Self::register_state_channel`] or
    /// [`Self::publish_state`], whichever was last. The returned
    /// receiver fires on every subsequent `publish_state` call.
    ///
    /// # Errors
    ///
    /// Same as [`Self::subscribe`] but surfaces delivery mismatch
    /// when the registered channel is a broadcast channel.
    pub fn subscribe_state<T>(
        &self,
        interface: &PluginEventKind,
    ) -> EventBusResult<(Arc<T>, watch::Receiver<Arc<T>>)>
    where
        T: Any + Send + Sync + 'static,
    {
        let sender = self.state_sender::<T>(interface)?;
        let rx = sender.subscribe();
        let current = rx.borrow().clone();
        Ok((current, rx))
    }

    /// Subscribe to a type-erased JSON projection of a broadcast channel.
    ///
    /// # Errors
    ///
    /// Returns the same registration/delivery errors as typed
    /// [`Self::subscribe`], but without payload type checks.
    ///
    /// # Panics
    ///
    /// Panics if the registry's internal lock is poisoned.
    #[allow(clippy::significant_drop_tightening)] // We clone the sender out while holding the registry guard, then subscribe after the guard drops.
    pub fn subscribe_json(
        &self,
        interface: &PluginEventKind,
    ) -> EventBusResult<broadcast::Receiver<Arc<JsonPluginEvent>>> {
        let sender = {
            let guard = self.entries.read().expect("event bus lock poisoned");
            let entry =
                guard
                    .get(interface)
                    .ok_or_else(|| EventBusError::ChannelNotRegistered {
                        interface: interface.as_str().to_string(),
                    })?;
            if !matches!(entry.kind, ChannelKind::Broadcast(_)) {
                return Err(EventBusError::ChannelDeliveryMismatch {
                    interface: interface.as_str().to_string(),
                    expected: DeliveryMode::Broadcast,
                    actual: DeliveryMode::State,
                });
            }
            let Some(json) = entry.json.as_ref() else {
                return Err(EventBusError::JsonProjectionUnavailable {
                    interface: interface.as_str().to_string(),
                });
            };
            json.broadcast.clone()
        };
        Ok(sender.subscribe())
    }

    /// Subscribe to a type-erased JSON projection of a state channel.
    /// Returns the current retained JSON value plus live updates.
    ///
    /// # Errors
    ///
    /// Returns the same registration/delivery errors as typed
    /// [`Self::subscribe_state`], but without payload type checks.
    ///
    /// # Panics
    ///
    /// Panics if the registry's internal lock is poisoned.
    #[allow(clippy::significant_drop_tightening)] // We clone the sender out while holding the registry guard, then subscribe after the guard drops.
    pub fn subscribe_state_json(
        &self,
        interface: &PluginEventKind,
    ) -> EventBusResult<(Arc<JsonPluginEvent>, watch::Receiver<Arc<JsonPluginEvent>>)> {
        let (sender, current) = {
            let guard = self.entries.read().expect("event bus lock poisoned");
            let entry =
                guard
                    .get(interface)
                    .ok_or_else(|| EventBusError::ChannelNotRegistered {
                        interface: interface.as_str().to_string(),
                    })?;
            let Some(json) = entry.json.as_ref() else {
                return Err(EventBusError::JsonProjectionUnavailable {
                    interface: interface.as_str().to_string(),
                });
            };
            let Some(sender) = json.state.as_ref() else {
                return Err(EventBusError::ChannelDeliveryMismatch {
                    interface: interface.as_str().to_string(),
                    expected: DeliveryMode::State,
                    actual: DeliveryMode::Broadcast,
                });
            };
            let Some(encoder) = json.state_encoder.as_ref() else {
                return Err(EventBusError::ChannelDeliveryMismatch {
                    interface: interface.as_str().to_string(),
                    expected: DeliveryMode::State,
                    actual: DeliveryMode::Broadcast,
                });
            };
            let payload = encoder(&entry.kind).unwrap_or(JsonValue::Null);
            let current = Arc::new(JsonPluginEvent {
                interface: interface.clone(),
                delivery: DeliveryMode::State,
                payload,
            });
            sender.send_replace(Arc::clone(&current));
            (sender.clone(), current)
        };
        let rx = sender.subscribe();
        Ok((current, rx))
    }

    /// Number of distinct interfaces currently registered.
    ///
    /// # Panics
    ///
    /// Panics if the registry's internal lock is poisoned.
    #[must_use]
    pub fn len(&self) -> usize {
        self.entries.read().expect("event bus lock poisoned").len()
    }

    /// `true` when no interfaces have registered channels.
    #[must_use]
    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }

    // clippy's `significant_drop_tightening` cannot see that the
    // `guard.get(...)` reference is what extends the guard's
    // lifetime; the scoped clone-out pattern here is intentional.
    #[allow(clippy::significant_drop_tightening)]
    fn broadcast_sender<E>(
        &self,
        interface: &PluginEventKind,
    ) -> EventBusResult<broadcast::Sender<Arc<E>>>
    where
        E: Any + Send + Sync + 'static,
    {
        let (sender_arc, payload_type_id, payload_type_name) = {
            let guard = self.entries.read().expect("event bus lock poisoned");
            let entry =
                guard
                    .get(interface)
                    .ok_or_else(|| EventBusError::ChannelNotRegistered {
                        interface: interface.as_str().to_string(),
                    })?;
            match &entry.kind {
                ChannelKind::Broadcast(sender) => (
                    sender.clone(),
                    entry.payload_type_id,
                    entry.payload_type_name,
                ),
                ChannelKind::State(_) => {
                    return Err(EventBusError::ChannelDeliveryMismatch {
                        interface: interface.as_str().to_string(),
                        expected: DeliveryMode::Broadcast,
                        actual: DeliveryMode::State,
                    });
                }
            }
        };
        if payload_type_id != TypeId::of::<E>() {
            return Err(EventBusError::PayloadTypeMismatch {
                interface: interface.as_str().to_string(),
                expected: payload_type_name,
                actual: std::any::type_name::<E>(),
            });
        }
        let downcast = sender_arc
            .downcast::<broadcast::Sender<Arc<E>>>()
            .map_err(|_| EventBusError::PayloadTypeMismatch {
                interface: interface.as_str().to_string(),
                expected: payload_type_name,
                actual: std::any::type_name::<E>(),
            })?;
        Ok((*downcast).clone())
    }

    fn register_channel_with_capacity_and_json_encoder<E>(
        &self,
        interface: PluginEventKind,
        capacity: usize,
        event_encoder: Option<JsonEventEncoder>,
    ) -> broadcast::Sender<Arc<E>>
    where
        E: Any + Send + Sync + 'static,
    {
        let (sender, _) = broadcast::channel::<Arc<E>>(capacity);
        let json = event_encoder.map(|event_encoder| {
            let (json_sender, _) = broadcast::channel::<Arc<JsonPluginEvent>>(capacity);
            JsonProjection {
                broadcast: json_sender,
                state: None,
                event_encoder: Some(event_encoder),
                state_encoder: None,
            }
        });
        let entry = ChannelEntry {
            kind: ChannelKind::Broadcast(Arc::new(sender.clone())),
            payload_type_id: TypeId::of::<E>(),
            payload_type_name: std::any::type_name::<E>(),
            decoder: None,
            json,
        };
        let mut guard = self.entries.write().expect("event bus lock poisoned");
        guard.insert(interface, entry);
        sender
    }

    fn json_projection_observed(
        &self,
        interface: &PluginEventKind,
        delivery: DeliveryMode,
    ) -> bool {
        self.entries.read().is_ok_and(|guard| {
            let Some(json) = guard.get(interface).and_then(|entry| entry.json.as_ref()) else {
                return false;
            };
            match delivery {
                DeliveryMode::Broadcast => json.broadcast.receiver_count() > 0,
                DeliveryMode::State => {
                    json.broadcast.receiver_count() > 0
                        || json
                            .state
                            .as_ref()
                            .is_some_and(|sender| sender.receiver_count() > 0)
                }
            }
        })
    }

    fn project_json_event(
        &self,
        interface: &PluginEventKind,
        event: &(dyn Any + Send + Sync),
    ) -> Option<JsonValue> {
        let encoder = {
            let guard = self.entries.read().ok()?;
            guard.get(interface)?.json.as_ref()?.event_encoder.clone()?
        };
        encoder(event)
    }

    fn publish_json_projection_from_state_if_observed(&self, interface: &PluginEventKind) {
        let payload = {
            let Ok(guard) = self.entries.read() else {
                return;
            };
            let Some(entry) = guard.get(interface) else {
                return;
            };
            let Some(json) = entry.json.as_ref() else {
                return;
            };
            let observed = json.broadcast.receiver_count() > 0
                || json
                    .state
                    .as_ref()
                    .is_some_and(|sender| sender.receiver_count() > 0);
            if !observed {
                return;
            }
            let Some(encoder) = json.state_encoder.as_ref() else {
                return;
            };
            encoder(&entry.kind).unwrap_or(JsonValue::Null)
        };
        self.publish_json_projection(interface, DeliveryMode::State, payload);
    }

    fn publish_json_projection(
        &self,
        interface: &PluginEventKind,
        delivery: DeliveryMode,
        payload: JsonValue,
    ) {
        let event = Arc::new(JsonPluginEvent {
            interface: interface.clone(),
            delivery,
            payload,
        });
        let Ok(guard) = self.entries.read() else {
            return;
        };
        let Some(entry) = guard.get(interface) else {
            return;
        };
        let Some(json) = entry.json.as_ref() else {
            return;
        };
        let _ = json.broadcast.send(event.clone());
        if let Some(sender) = json.state.as_ref() {
            sender.send_replace(event);
        }
    }

    #[allow(clippy::significant_drop_tightening)]
    fn state_sender<T>(&self, interface: &PluginEventKind) -> EventBusResult<watch::Sender<Arc<T>>>
    where
        T: Any + Send + Sync + 'static,
    {
        let (sender_arc, payload_type_id, payload_type_name) = {
            let guard = self.entries.read().expect("event bus lock poisoned");
            let entry =
                guard
                    .get(interface)
                    .ok_or_else(|| EventBusError::ChannelNotRegistered {
                        interface: interface.as_str().to_string(),
                    })?;
            match &entry.kind {
                ChannelKind::State(sender) => (
                    sender.clone(),
                    entry.payload_type_id,
                    entry.payload_type_name,
                ),
                ChannelKind::Broadcast(_) => {
                    return Err(EventBusError::ChannelDeliveryMismatch {
                        interface: interface.as_str().to_string(),
                        expected: DeliveryMode::State,
                        actual: DeliveryMode::Broadcast,
                    });
                }
            }
        };
        if payload_type_id != TypeId::of::<T>() {
            return Err(EventBusError::PayloadTypeMismatch {
                interface: interface.as_str().to_string(),
                expected: payload_type_name,
                actual: std::any::type_name::<T>(),
            });
        }
        let downcast = sender_arc
            .downcast::<watch::Sender<Arc<T>>>()
            .map_err(|_| EventBusError::PayloadTypeMismatch {
                interface: interface.as_str().to_string(),
                expected: payload_type_name,
                actual: std::any::type_name::<T>(),
            })?;
        Ok((*downcast).clone())
    }
}

/// Process-wide shared event bus instance.
///
/// Plugins register channels into this singleton during `activate`;
/// any code holding a reference to it can later emit or subscribe.
#[must_use]
pub fn global_event_bus() -> Arc<EventBus> {
    use std::sync::OnceLock;
    static GLOBAL: OnceLock<Arc<EventBus>> = OnceLock::new();
    GLOBAL.get_or_init(|| Arc::new(EventBus::new())).clone()
}

#[cfg(test)]
mod tests {
    use super::*;
    use bmux_plugin_sdk::PluginEventKind;
    use serde::Serializer;
    use std::sync::atomic::{AtomicUsize, Ordering};

    #[derive(Debug, Clone, PartialEq, Eq, Serialize)]
    struct SampleEvent {
        payload: u32,
    }

    #[derive(Debug, Clone, PartialEq, Eq, Serialize)]
    struct OtherEvent {
        value: String,
    }

    #[derive(Debug, Clone, PartialEq, Eq)]
    struct NonSerializeEvent {
        payload: u32,
    }

    #[derive(Debug, Clone, PartialEq, Eq, Serialize)]
    struct FocusSnapshot {
        focused: Option<u64>,
        revision: u64,
    }

    static JSON_EVENT_SERIALIZE_COUNT: AtomicUsize = AtomicUsize::new(0);
    static JSON_STATE_SERIALIZE_COUNT: AtomicUsize = AtomicUsize::new(0);

    #[derive(Debug, Clone, PartialEq, Eq)]
    struct CountingEvent {
        value: u64,
    }

    impl Serialize for CountingEvent {
        fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
        where
            S: Serializer,
        {
            JSON_EVENT_SERIALIZE_COUNT.fetch_add(1, Ordering::SeqCst);
            serializer.serialize_u64(self.value)
        }
    }

    #[derive(Debug, Clone, PartialEq, Eq)]
    struct CountingSnapshot {
        value: u64,
    }

    impl Serialize for CountingSnapshot {
        fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
        where
            S: Serializer,
        {
            JSON_STATE_SERIALIZE_COUNT.fetch_add(1, Ordering::SeqCst);
            serializer.serialize_u64(self.value)
        }
    }

    const TEST_IFACE: PluginEventKind = PluginEventKind::from_static("test.plugin/test-events");
    const OTHER_IFACE: PluginEventKind = PluginEventKind::from_static("test.plugin/other-events");
    const STATE_IFACE: PluginEventKind = PluginEventKind::from_static("test.plugin/focus-state");

    #[tokio::test]
    async fn register_emit_subscribe_round_trip() {
        let bus = EventBus::new();
        let _sender = bus.register_channel::<SampleEvent>(TEST_IFACE);
        let mut subscriber = bus.subscribe::<SampleEvent>(&TEST_IFACE).unwrap();

        bus.emit(&TEST_IFACE, SampleEvent { payload: 42 }).unwrap();

        let received = subscriber.recv().await.expect("should receive event");
        assert_eq!(received.as_ref(), &SampleEvent { payload: 42 });
    }

    #[tokio::test]
    async fn non_json_broadcast_channels_do_not_require_serialize() {
        let bus = EventBus::new();
        bus.register_channel::<NonSerializeEvent>(TEST_IFACE);
        let mut subscriber = bus.subscribe::<NonSerializeEvent>(&TEST_IFACE).unwrap();

        bus.emit(&TEST_IFACE, NonSerializeEvent { payload: 42 })
            .unwrap();

        let received = subscriber.recv().await.expect("should receive event");
        assert_eq!(received.as_ref(), &NonSerializeEvent { payload: 42 });
    }

    #[tokio::test]
    async fn multiple_subscribers_receive_fanout() {
        let bus = EventBus::new();
        bus.register_channel::<SampleEvent>(TEST_IFACE);

        let mut s1 = bus.subscribe::<SampleEvent>(&TEST_IFACE).unwrap();
        let mut s2 = bus.subscribe::<SampleEvent>(&TEST_IFACE).unwrap();

        let count = bus.emit(&TEST_IFACE, SampleEvent { payload: 7 }).unwrap();
        assert_eq!(count, 2, "both subscribers should be counted");

        assert_eq!(s1.recv().await.unwrap().payload, 7);
        assert_eq!(s2.recv().await.unwrap().payload, 7);
    }

    #[tokio::test]
    async fn broadcast_json_subscriber_receives_serialized_payload() {
        let bus = EventBus::new();
        bus.register_channel_with_json_projection::<SampleEvent>(TEST_IFACE);
        let mut rx = bus.subscribe_json(&TEST_IFACE).unwrap();

        bus.emit(&TEST_IFACE, SampleEvent { payload: 99 }).unwrap();

        let event = rx.recv().await.unwrap();
        assert_eq!(event.interface, TEST_IFACE);
        assert_eq!(event.delivery, DeliveryMode::Broadcast);
        assert_eq!(event.payload["payload"], 99);
    }

    #[test]
    fn emit_on_unregistered_interface_errors() {
        let bus = EventBus::new();
        let result = bus.emit(&TEST_IFACE, SampleEvent { payload: 1 });
        assert!(matches!(
            result,
            Err(EventBusError::ChannelNotRegistered { .. })
        ));
    }

    #[test]
    fn subscribe_on_unregistered_interface_errors() {
        let bus = EventBus::new();
        let result = bus.subscribe::<SampleEvent>(&TEST_IFACE);
        assert!(matches!(
            result,
            Err(EventBusError::ChannelNotRegistered { .. })
        ));
    }

    #[test]
    fn payload_type_mismatch_is_detected() {
        let bus = EventBus::new();
        bus.register_channel::<SampleEvent>(TEST_IFACE);
        let result = bus.subscribe::<OtherEvent>(&TEST_IFACE);
        assert!(matches!(
            result,
            Err(EventBusError::PayloadTypeMismatch { .. })
        ));
    }

    #[tokio::test]
    async fn emit_with_no_subscribers_returns_zero() {
        let bus = EventBus::new();
        bus.register_channel::<SampleEvent>(TEST_IFACE);
        let count = bus.emit(&TEST_IFACE, SampleEvent { payload: 0 }).unwrap();
        assert_eq!(count, 0);
    }

    #[tokio::test]
    async fn independent_interfaces_do_not_interfere() {
        let bus = EventBus::new();
        bus.register_channel::<SampleEvent>(TEST_IFACE);
        bus.register_channel::<OtherEvent>(OTHER_IFACE);

        let mut sub = bus.subscribe::<OtherEvent>(&OTHER_IFACE).unwrap();
        bus.emit(&TEST_IFACE, SampleEvent { payload: 1 }).unwrap();
        bus.emit(
            &OTHER_IFACE,
            OtherEvent {
                value: "hello".to_string(),
            },
        )
        .unwrap();

        let received = sub.recv().await.unwrap();
        assert_eq!(received.value, "hello");
    }

    #[tokio::test]
    async fn global_bus_returns_same_instance() {
        let a = global_event_bus();
        let b = global_event_bus();
        assert!(Arc::ptr_eq(&a, &b));
    }

    // ── State-channel primitive tests ───────────────────────────────

    #[tokio::test]
    async fn state_channel_subscribe_returns_initial_value_before_any_publish() {
        let bus = EventBus::new();
        bus.register_state_channel::<FocusSnapshot>(
            STATE_IFACE,
            FocusSnapshot {
                focused: None,
                revision: 0,
            },
        );
        let (initial, _rx) = bus.subscribe_state::<FocusSnapshot>(&STATE_IFACE).unwrap();
        assert_eq!(
            initial.as_ref(),
            &FocusSnapshot {
                focused: None,
                revision: 0,
            },
        );
    }

    #[tokio::test]
    async fn state_channel_replays_latest_value_to_late_subscribers() {
        let bus = EventBus::new();
        bus.register_state_channel::<FocusSnapshot>(
            STATE_IFACE,
            FocusSnapshot {
                focused: None,
                revision: 0,
            },
        );
        // Publish before anyone subscribes. Classic broadcast would
        // drop these; state channel retains them.
        bus.publish_state(
            &STATE_IFACE,
            FocusSnapshot {
                focused: Some(7),
                revision: 1,
            },
        )
        .unwrap();
        bus.publish_state(
            &STATE_IFACE,
            FocusSnapshot {
                focused: Some(8),
                revision: 2,
            },
        )
        .unwrap();

        // A subscriber arriving now should see the most recent
        // snapshot, not the initial value and not an intermediate.
        let (initial, _rx) = bus.subscribe_state::<FocusSnapshot>(&STATE_IFACE).unwrap();
        assert_eq!(
            initial.as_ref(),
            &FocusSnapshot {
                focused: Some(8),
                revision: 2,
            },
        );
    }

    #[tokio::test]
    async fn state_channel_without_json_projection_rejects_json_subscriber() {
        let bus = EventBus::new();
        bus.register_state_channel::<FocusSnapshot>(
            STATE_IFACE,
            FocusSnapshot {
                focused: None,
                revision: 0,
            },
        );
        let err = bus.subscribe_state_json(&STATE_IFACE).unwrap_err();
        assert!(matches!(
            err,
            EventBusError::JsonProjectionUnavailable { .. }
        ));
    }

    #[tokio::test]
    async fn lazy_json_projection_serializes_state_only_when_observed() {
        JSON_STATE_SERIALIZE_COUNT.store(0, Ordering::SeqCst);
        let bus = EventBus::new();
        bus.register_state_channel_with_json_projection::<CountingSnapshot>(
            STATE_IFACE,
            CountingSnapshot { value: 0 },
        );
        assert_eq!(JSON_STATE_SERIALIZE_COUNT.load(Ordering::SeqCst), 0);

        bus.publish_state(&STATE_IFACE, CountingSnapshot { value: 1 })
            .unwrap();
        assert_eq!(JSON_STATE_SERIALIZE_COUNT.load(Ordering::SeqCst), 0);

        let (initial, mut rx) = bus.subscribe_state_json(&STATE_IFACE).unwrap();
        assert_eq!(initial.payload, JsonValue::from(1));
        assert_eq!(JSON_STATE_SERIALIZE_COUNT.load(Ordering::SeqCst), 1);

        bus.publish_state(&STATE_IFACE, CountingSnapshot { value: 2 })
            .unwrap();
        rx.changed().await.unwrap();
        assert_eq!(rx.borrow().payload, JsonValue::from(2));
        assert_eq!(JSON_STATE_SERIALIZE_COUNT.load(Ordering::SeqCst), 2);
    }

    #[tokio::test]
    async fn lazy_json_projection_serializes_broadcast_only_when_observed() {
        JSON_EVENT_SERIALIZE_COUNT.store(0, Ordering::SeqCst);
        let bus = EventBus::new();
        bus.register_channel_with_json_projection::<CountingEvent>(TEST_IFACE);

        bus.emit(&TEST_IFACE, CountingEvent { value: 1 }).unwrap();
        assert_eq!(JSON_EVENT_SERIALIZE_COUNT.load(Ordering::SeqCst), 0);

        let mut rx = bus.subscribe_json(&TEST_IFACE).unwrap();
        bus.emit(&TEST_IFACE, CountingEvent { value: 2 }).unwrap();
        let event = rx.recv().await.unwrap();
        assert_eq!(event.payload, JsonValue::from(2));
        assert_eq!(JSON_EVENT_SERIALIZE_COUNT.load(Ordering::SeqCst), 1);
    }

    #[tokio::test]
    async fn state_json_subscriber_receives_initial_and_live_payloads() {
        let bus = EventBus::new();
        bus.register_state_channel_with_json_projection::<FocusSnapshot>(
            STATE_IFACE,
            FocusSnapshot {
                focused: None,
                revision: 0,
            },
        );
        let (initial, mut rx) = bus.subscribe_state_json(&STATE_IFACE).unwrap();
        assert_eq!(initial.delivery, DeliveryMode::State);
        assert_eq!(initial.payload["revision"], 0);

        bus.publish_state(
            &STATE_IFACE,
            FocusSnapshot {
                focused: Some(12),
                revision: 1,
            },
        )
        .unwrap();

        rx.changed().await.unwrap();
        let event = rx.borrow().clone();
        assert_eq!(event.payload["focused"], 12);
        assert_eq!(event.payload["revision"], 1);
    }

    #[tokio::test]
    async fn state_channel_pushes_live_updates_to_existing_subscribers() {
        let bus = EventBus::new();
        bus.register_state_channel::<FocusSnapshot>(
            STATE_IFACE,
            FocusSnapshot {
                focused: None,
                revision: 0,
            },
        );
        let (_initial, mut rx) = bus.subscribe_state::<FocusSnapshot>(&STATE_IFACE).unwrap();
        bus.publish_state(
            &STATE_IFACE,
            FocusSnapshot {
                focused: Some(1),
                revision: 1,
            },
        )
        .unwrap();
        rx.changed().await.expect("watch should fire");
        let snapshot = rx.borrow().clone();
        assert_eq!(
            snapshot.as_ref(),
            &FocusSnapshot {
                focused: Some(1),
                revision: 1,
            },
        );
    }

    #[test]
    fn emit_on_state_channel_errors_with_delivery_mismatch() {
        let bus = EventBus::new();
        bus.register_state_channel::<FocusSnapshot>(
            STATE_IFACE,
            FocusSnapshot {
                focused: None,
                revision: 0,
            },
        );
        let err = bus
            .emit(
                &STATE_IFACE,
                FocusSnapshot {
                    focused: Some(1),
                    revision: 1,
                },
            )
            .expect_err("emit on state channel must fail");
        match err {
            EventBusError::ChannelDeliveryMismatch {
                expected, actual, ..
            } => {
                assert_eq!(expected, DeliveryMode::Broadcast);
                assert_eq!(actual, DeliveryMode::State);
            }
            other => panic!("expected delivery mismatch, got {other:?}"),
        }
    }

    #[test]
    fn publish_state_on_broadcast_channel_errors_with_delivery_mismatch() {
        let bus = EventBus::new();
        bus.register_channel::<SampleEvent>(TEST_IFACE);
        let err = bus
            .publish_state(&TEST_IFACE, SampleEvent { payload: 1 })
            .expect_err("publish_state on broadcast channel must fail");
        match err {
            EventBusError::ChannelDeliveryMismatch {
                expected, actual, ..
            } => {
                assert_eq!(expected, DeliveryMode::State);
                assert_eq!(actual, DeliveryMode::Broadcast);
            }
            other => panic!("expected delivery mismatch, got {other:?}"),
        }
    }

    #[test]
    fn subscribe_state_on_broadcast_channel_errors_with_delivery_mismatch() {
        let bus = EventBus::new();
        bus.register_channel::<SampleEvent>(TEST_IFACE);
        let err = bus
            .subscribe_state::<SampleEvent>(&TEST_IFACE)
            .expect_err("subscribe_state on broadcast channel must fail");
        assert!(matches!(err, EventBusError::ChannelDeliveryMismatch { .. }));
    }

    #[test]
    fn subscribe_on_state_channel_errors_with_delivery_mismatch() {
        let bus = EventBus::new();
        bus.register_state_channel::<FocusSnapshot>(
            STATE_IFACE,
            FocusSnapshot {
                focused: None,
                revision: 0,
            },
        );
        let err = bus
            .subscribe::<FocusSnapshot>(&STATE_IFACE)
            .expect_err("subscribe on state channel must fail");
        assert!(matches!(err, EventBusError::ChannelDeliveryMismatch { .. }));
    }

    #[test]
    fn state_channel_payload_type_mismatch_is_detected() {
        let bus = EventBus::new();
        bus.register_state_channel::<FocusSnapshot>(
            STATE_IFACE,
            FocusSnapshot {
                focused: None,
                revision: 0,
            },
        );
        let err = bus
            .subscribe_state::<SampleEvent>(&STATE_IFACE)
            .expect_err("wrong payload type should fail");
        assert!(matches!(err, EventBusError::PayloadTypeMismatch { .. }));
    }
}