livekit-data-stream 0.1.1

Data stream core logic for LiveKit
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
// Copyright 2026 LiveKit, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use bmrng::unbounded::{UnboundedRequestReceiver, UnboundedRequestSender};
use chrono::Utc;
use livekit_common::{
    ClientCapability, ParticipantIdentity, RemoteParticipantRegistry,
    CLIENT_PROTOCOL_DATA_STREAM_V2,
};
use livekit_protocol as proto;
use std::{path::Path, sync::Arc};
use tokio::sync::Mutex;

use crate::{
    info::{ByteStreamInfo, TextStreamInfo},
    types::{ByteHeader, CompressionType, ContentHeader, Header, StreamId, TextHeader},
    utf8_chunk::Utf8AwareChunkExt,
    utils::{SendError, StreamError, StreamResult},
};

use super::{
    constants,
    raw_stream::{RawStream, RawStreamOpenOptions},
    stream_writer::{ByteStreamWriter, TextStreamWriter},
    StreamByteOptions, StreamTextOptions,
};

/// Generates a random stream identifier (UUID v4).
fn create_random_uuid() -> String {
    uuid::Uuid::new_v4().to_string()
}

#[derive(Clone)]
pub struct Manager {
    /// Request channel for sending packets.
    packet_tx: UnboundedRequestSender<proto::DataPacket, Result<(), SendError>>,
}

impl Manager {
    pub fn new() -> (Self, UnboundedRequestReceiver<proto::DataPacket, Result<(), SendError>>) {
        let (packet_tx, packet_rx) = bmrng::unbounded_channel();
        let manager = Self { packet_tx };
        (manager, packet_rx)
    }

    pub async fn stream_text(&self, options: StreamTextOptions) -> StreamResult<TextStreamWriter> {
        // Incremental streams are never inlined or compressed (the content is unknown up front).
        let stream_id: StreamId = options.id.clone().unwrap_or_else(create_random_uuid).into();
        let dests = options.destination_identities.clone();
        let (header, text_header) =
            build_text_header(&options, stream_id, None, None, CompressionType::None);
        enforce_header_size(&header, &dests)?;

        let open_options = RawStreamOpenOptions {
            header: header.clone(),
            destination_identities: dests,
            sender_identity: options.sender_identity.clone(),
            packet_tx: self.packet_tx.clone(),
        };
        let writer = TextStreamWriter::new(
            Arc::new(TextStreamInfo::from_headers(header, text_header)),
            Arc::new(Mutex::new(RawStream::open(open_options).await?)),
        );
        Ok(writer)
    }

    pub async fn stream_bytes(&self, options: StreamByteOptions) -> StreamResult<ByteStreamWriter> {
        let stream_id: StreamId = options.id.clone().unwrap_or_else(create_random_uuid).into();
        let name = options.name.clone().unwrap_or_default();
        let dests = options.destination_identities.clone();
        let (header, byte_header) = build_byte_header(
            &options,
            stream_id,
            name,
            options.total_length,
            None,
            CompressionType::None,
        );
        enforce_header_size(&header, &dests)?;

        let open_options = RawStreamOpenOptions {
            header: header.clone(),
            destination_identities: dests,
            sender_identity: options.sender_identity.clone(),
            packet_tx: self.packet_tx.clone(),
        };
        let writer = ByteStreamWriter::new(
            Arc::new(ByteStreamInfo::from_headers(header, byte_header)),
            Arc::new(Mutex::new(RawStream::open(open_options).await?)),
        );
        Ok(writer)
    }

    pub async fn send_text(
        &self,
        text: &str,
        options: StreamTextOptions,
        remote_participant_registry: &dyn RemoteParticipantRegistry,
    ) -> StreamResult<TextStreamInfo> {
        let stream_id: StreamId = options.id.clone().unwrap_or_else(create_random_uuid).into();
        let total_length = text.len() as u64;

        let eligibility =
            evaluate_eligibility(remote_participant_registry, &options.destination_identities);
        let can_compress = options.compress.unwrap_or(true) && eligibility.compression;

        let text_bytes = text.as_bytes();
        let mut maybe_compressed = MaybeCollectedAsyncReader::from_async_reader(
            async_compression::futures::bufread::DeflateEncoder::new(
                futures_util::io::Cursor::new(text_bytes.to_vec()),
            ),
        );

        // Compress once up front when eligible (the deflate work happens at most once, cached in
        // the returned `Vec`), then decide whether it's worth using.
        let use_compression = can_compress
            && maybe_compressed.as_bytes().await.is_ok_and(|c| c.len() < text_bytes.len());

        // 1. Inline single-packet attempt (no attachments; all recipients are >= v2).
        let (mut header, text_header) = if use_compression {
            build_text_header(
                &options,
                stream_id.clone(),
                Some(total_length),
                Some(maybe_compressed.as_bytes().await?.to_owned()),
                CompressionType::DeflateRaw,
            )
        } else {
            build_text_header(
                &options,
                stream_id.clone(),
                Some(total_length),
                Some(text_bytes.to_vec()),
                CompressionType::None,
            )
        };

        let proto_header = header.clone().into();
        if eligibility.inline
            && options.attached_stream_ids.is_empty()
            && header_packet_fits(&proto_header, &options.destination_identities)
        {
            let mut packet =
                RawStream::create_header_packet(proto_header, options.destination_identities);
            packet.participant_identity =
                options.sender_identity.map(|id| id.into()).unwrap_or_default();
            RawStream::send_packet(&self.packet_tx, packet).await?;
            return Ok(TextStreamInfo::from_headers(header, text_header));
        }

        // 2/3. Chunked, compressed when eligible else uncompressed.
        header.inline_content = None;
        enforce_header_size(&header, &options.destination_identities)?;

        let open_options = RawStreamOpenOptions {
            header: header.clone(),
            destination_identities: options.destination_identities,
            sender_identity: options.sender_identity,
            packet_tx: self.packet_tx.clone(),
        };
        let info = TextStreamInfo::from_headers(header, text_header);
        let mut stream = RawStream::open(open_options).await?;
        if use_compression {
            let compressed_bytes = maybe_compressed.as_bytes().await?;
            stream.write_raw_chunks(compressed_bytes).await?;
        } else {
            for chunk in text_bytes.utf8_aware_chunks(constants::STREAM_CHUNK_SIZE_BYTES) {
                stream.write_chunk(chunk).await?;
            }
        }
        stream.close(None, None).await?;
        Ok(info)
    }

    /// Send bytes to participants in the room.
    ///
    /// This method sends an in-memory blob of bytes to participants in the room
    /// as a byte stream. It opens a stream using the provided options, writes the
    /// entire buffer, and closes the stream before returning.
    ///
    /// The `total_length` in the header is set from the provided data and is not
    /// overridable by `options.total_length`. The header defaults `name` to `"unknown"`
    /// and `mime_type` to `"application/octet-stream"`.
    pub async fn send_bytes(
        &self,
        data: impl AsRef<[u8]>,
        options: StreamByteOptions,
        remote_participant_registry: &dyn RemoteParticipantRegistry,
    ) -> StreamResult<ByteStreamInfo> {
        if options.total_length.is_some() {
            log::warn!("Ignoring total_length option specified for send_bytes");
        }
        let bytes = data.as_ref();
        let stream_id: StreamId = options.id.clone().unwrap_or_else(create_random_uuid).into();
        let name = options.name.clone().unwrap_or_else(|| constants::BYTE_DEFAULT_NAME.to_owned());
        let total_length = bytes.len() as u64;

        let eligibility =
            evaluate_eligibility(remote_participant_registry, &options.destination_identities);
        let can_compress = options.compress.unwrap_or(true) && eligibility.compression;

        let mut maybe_compressed = MaybeCollectedAsyncReader::from_async_reader(
            async_compression::futures::bufread::DeflateEncoder::new(
                futures_util::io::Cursor::new(bytes.to_vec()),
            ),
        );

        // Compress once up front when eligible (the deflate work happens at most once, cached in
        // the returned `Vec`), then decide whether it's worth using.
        let use_compression =
            can_compress && maybe_compressed.as_bytes().await.is_ok_and(|c| c.len() < bytes.len());

        // 1. Inline single-packet attempt (if all recipients are >= v2).
        let (mut header, byte_header) = if use_compression {
            build_byte_header(
                &options,
                stream_id.clone(),
                name.clone(),
                Some(total_length), // NOTE: this is purposely always uncompressed length
                Some(maybe_compressed.as_bytes().await?.to_owned()),
                CompressionType::DeflateRaw,
            )
        } else {
            build_byte_header(
                &options,
                stream_id.clone(),
                name.clone(),
                Some(total_length), // NOTE: this is purposely always uncompressed length
                Some(bytes.to_vec()),
                CompressionType::None,
            )
        };

        let proto_header = header.clone().into();
        if eligibility.inline && header_packet_fits(&proto_header, &options.destination_identities)
        {
            let mut packet =
                RawStream::create_header_packet(proto_header, options.destination_identities);
            packet.participant_identity =
                options.sender_identity.map(|id| id.into()).unwrap_or_default();
            RawStream::send_packet(&self.packet_tx, packet).await?;
            return Ok(ByteStreamInfo::from_headers(header, byte_header));
        }

        // 2/3. Chunked, compressed when eligible else uncompressed.
        header.inline_content = None;
        enforce_header_size(&header, &options.destination_identities)?;

        let open_options = RawStreamOpenOptions {
            header: header.clone(),
            destination_identities: options.destination_identities,
            sender_identity: options.sender_identity,
            packet_tx: self.packet_tx.clone(),
        };
        let info = ByteStreamInfo::from_headers(header, byte_header);
        let mut stream = RawStream::open(open_options).await?;
        if use_compression {
            let compressed_bytes = maybe_compressed.as_bytes().await?;
            stream.write_raw_chunks(compressed_bytes).await?;
        } else {
            stream.write_raw_chunks(bytes).await?;
        }
        stream.close(None, None).await?;
        Ok(info)
    }

    /// Streams a file from disk to participants as a byte stream.
    ///
    /// Never uses the inline single-packet path (deciding inline-eligibility would require
    /// buffering and compressing the whole file up front). Compresses when every recipient
    /// supports it. The whole file is never buffered in memory at once.
    pub async fn send_file(
        &self,
        path: impl AsRef<Path>,
        options: StreamByteOptions,
        remote_participant_registry: &dyn RemoteParticipantRegistry,
    ) -> StreamResult<ByteStreamInfo> {
        let path = path.as_ref();
        let file_size = tokio::fs::metadata(path)
            .await
            .map(|metadata| metadata.len())
            .map_err(StreamError::from)?;
        let name = options.name.clone().unwrap_or_else(|| {
            path.file_name().and_then(|n| n.to_str()).unwrap_or_default().to_owned()
        });
        let stream_id: StreamId = options.id.clone().unwrap_or_else(create_random_uuid).into();
        let dests = options.destination_identities.clone();

        let eligibility = evaluate_eligibility(remote_participant_registry, &dests);
        let should_compress = options.compress.unwrap_or(true) && eligibility.compression;
        let compression =
            if should_compress { CompressionType::DeflateRaw } else { CompressionType::None };

        let (header, byte_header) =
            build_byte_header(&options, stream_id, name, Some(file_size), None, compression);
        enforce_header_size(&header, &dests)?;

        let open_options = RawStreamOpenOptions {
            header: header.clone(),
            destination_identities: dests,
            sender_identity: options.sender_identity.clone(),
            packet_tx: self.packet_tx.clone(),
        };
        let info = ByteStreamInfo::from_headers(header, byte_header);
        let mut stream = RawStream::open(open_options).await?;
        stream.write_file(path, should_compress).await?;
        stream.close(None, None).await?;
        Ok(info)
    }
}

/// Inline / compression eligibility evaluated over a send's recipients.
struct SendEligibility {
    /// Every recipient advertises `clientProtocol >= 2`.
    inline: bool,
    /// Inline-eligible AND every recipient advertises `CAP_COMPRESSION_DEFLATE_RAW`.
    compression: bool,
}

/// Evaluates inline/compression eligibility over a send's recipients.
///
/// Recipients are the named `destinations`, or every remote participant for a broadcast
/// (empty `destinations`). An empty recipient set (empty room) is eligible for everything.
fn evaluate_eligibility(
    registry: &dyn RemoteParticipantRegistry,
    destinations: &[ParticipantIdentity],
) -> SendEligibility {
    let recipients: Vec<ParticipantIdentity> =
        if destinations.is_empty() { registry.remote_identities() } else { destinations.to_vec() };
    let inline = recipients
        .iter()
        .all(|id| registry.remote_client_protocol(id) >= CLIENT_PROTOCOL_DATA_STREAM_V2);
    let compression = inline
        && recipients.iter().all(|id| {
            registry.remote_capabilities(id).contains(&ClientCapability::CompressionDeflateRaw)
        });

    SendEligibility { inline, compression }
}

/// Wraps an [`AsyncRead`] whose bytes are produced lazily (e.g. a deflate encoder), caching them
/// on first [`Self::collect`] so the underlying work runs at most once. Later `collect` calls
/// return the cached bytes without re-reading.
///
/// (The streaming, still-a-reader-after-collect variant needed by `send_file` will be added when
/// that path is migrated; today's callers only need `collect`.)
enum MaybeCollectedAsyncReader<Reader: futures_util::io::AsyncRead + Unpin> {
    Reader(Reader),
    Collected(Vec<u8>),
}

impl<Reader: futures_util::io::AsyncRead + Unpin> MaybeCollectedAsyncReader<Reader> {
    fn from_async_reader(reader: Reader) -> Self {
        Self::Reader(reader)
    }

    async fn as_bytes(&mut self) -> Result<&[u8], std::io::Error> {
        use futures_util::io::AsyncReadExt;
        match self {
            Self::Collected(_) => { /* no-op, handled below */ }
            Self::Reader(reader) => {
                let mut buf = Vec::new();
                reader.read_to_end(&mut buf).await?;
                *self = Self::Collected(buf);
            }
        }
        let Self::Collected(bytes) = self else { unreachable!("just set to Collected") };
        Ok(bytes)
    }
}

/// Whether the serialized header `DataPacket` fits within the MTU budget.
fn header_packet_fits(
    header: &proto::data_stream::Header,
    destinations: &[ParticipantIdentity],
) -> bool {
    use prost::Message;
    let packet = RawStream::create_header_packet(header.clone(), destinations.to_vec());
    packet.encoded_len() <= constants::STREAM_CHUNK_SIZE_BYTES
}

/// Enforces the header-packet MTU budget on the chunked path (the inline path falls back
/// gracefully instead of erroring).
fn enforce_header_size(header: &Header, destinations: &[ParticipantIdentity]) -> StreamResult<()> {
    let proto_header: proto::data_stream::Header = header.clone().into();
    if header_packet_fits(&proto_header, destinations) {
        Ok(())
    } else {
        Err(StreamError::HeaderTooLarge)
    }
}

fn build_text_header(
    options: &StreamTextOptions,
    stream_id: StreamId,
    total_length: Option<u64>,
    inline_content: Option<Vec<u8>>,
    compression: CompressionType,
) -> (Header, TextHeader) {
    let text_header = TextHeader {
        operation_type: options.operation_type.unwrap_or_default(),
        version: options.version.unwrap_or_default(),
        reply_to_stream_id: options.reply_to_stream_id.clone().map(StreamId::from),
        attached_stream_ids: options
            .attached_stream_ids
            .clone()
            .into_iter()
            .map(StreamId::from)
            .collect(),
        generated: options.generated.unwrap_or_default(),
    };
    let header = Header {
        stream_id,
        timestamp: Utc::now().timestamp_millis(),
        topic: options.topic.clone(),
        mime_type: constants::TEXT_MIME_TYPE.to_owned(),
        total_length,
        attributes: options.attributes.clone(),
        content_header: Some(ContentHeader::TextHeader(text_header.clone().into())),
        inline_content,
        compression,
    };
    (header, text_header)
}

fn build_byte_header(
    options: &StreamByteOptions,
    stream_id: StreamId,
    name: String,
    total_length: Option<u64>,
    inline_content: Option<Vec<u8>>,
    compression: CompressionType,
) -> (Header, ByteHeader) {
    let byte_header = ByteHeader { name };
    let header = Header {
        stream_id,
        timestamp: Utc::now().timestamp_millis(),
        topic: options.topic.clone(),
        mime_type: options
            .mime_type
            .clone()
            .unwrap_or_else(|| constants::BYTE_MIME_TYPE.to_owned()),
        total_length,
        attributes: options.attributes.clone(),
        content_header: Some(byte_header.clone().into()),
        inline_content,
        compression,
    };
    (header, byte_header)
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{backend::somewhat_compressible, outgoing::StreamWriter};
    use livekit_common::{CLIENT_PROTOCOL_DATA_STREAM_RPC, CLIENT_PROTOCOL_DEFAULT};
    use std::{collections::HashMap, sync::Mutex as StdMutex};

    // --- Fake recipient registry ---------------------------------------------------------

    struct FakeRegistry {
        remotes: HashMap<String, (i32, Vec<ClientCapability>)>,
    }

    impl FakeRegistry {
        fn new() -> Self {
            Self { remotes: HashMap::new() }
        }

        fn add(mut self, id: &str, client_protocol: i32, caps: &[ClientCapability]) -> Self {
            self.remotes.insert(id.to_string(), (client_protocol, caps.to_vec()));
            self
        }
    }

    impl RemoteParticipantRegistry for FakeRegistry {
        fn remote_client_protocol(&self, identity: &ParticipantIdentity) -> i32 {
            self.remotes.get(&identity.0).map(|(p, _)| *p).unwrap_or(0)
        }
        fn remote_capabilities(&self, identity: &ParticipantIdentity) -> Vec<ClientCapability> {
            self.remotes.get(&identity.0).map(|(_, c)| c.clone()).unwrap_or_default()
        }
        fn remote_identities(&self) -> Vec<ParticipantIdentity> {
            self.remotes.keys().map(|k| ParticipantIdentity(k.clone())).collect()
        }
    }

    fn pre_v2_room() -> FakeRegistry {
        FakeRegistry::new()
            .add("alice", CLIENT_PROTOCOL_DEFAULT, &[])
            .add("bob", CLIENT_PROTOCOL_DEFAULT, &[])
            .add("jim", CLIENT_PROTOCOL_DATA_STREAM_RPC, &[])
    }

    fn all_v2_room() -> FakeRegistry {
        FakeRegistry::new()
            .add(
                "alice",
                CLIENT_PROTOCOL_DATA_STREAM_V2,
                &[ClientCapability::CompressionDeflateRaw],
            )
            .add("bob", CLIENT_PROTOCOL_DATA_STREAM_V2, &[ClientCapability::CompressionDeflateRaw])
            .add("noCompression", CLIENT_PROTOCOL_DATA_STREAM_V2, &[])
    }

    fn mixed_room() -> FakeRegistry {
        FakeRegistry::new()
            .add("alice", CLIENT_PROTOCOL_DEFAULT, &[])
            .add("bob", CLIENT_PROTOCOL_DATA_STREAM_V2, &[ClientCapability::CompressionDeflateRaw])
            .add("jim", CLIENT_PROTOCOL_DATA_STREAM_V2, &[ClientCapability::CompressionDeflateRaw])
            .add("mallory", CLIENT_PROTOCOL_DEFAULT, &[])
            .add("noCompression", CLIENT_PROTOCOL_DATA_STREAM_V2, &[])
    }

    /// A room where every participant is v2 AND advertises the compression capability.
    fn all_v2_capable_room() -> FakeRegistry {
        FakeRegistry::new()
            .add(
                "alice",
                CLIENT_PROTOCOL_DATA_STREAM_V2,
                &[ClientCapability::CompressionDeflateRaw],
            )
            .add("bob", CLIENT_PROTOCOL_DATA_STREAM_V2, &[ClientCapability::CompressionDeflateRaw])
    }

    // --- Capture harness -----------------------------------------------------------------

    type Sent = Arc<StdMutex<Vec<proto::DataPacket>>>;

    fn setup() -> (Manager, Sent) {
        let (manager, mut packet_rx) = Manager::new();
        let sent: Sent = Arc::new(StdMutex::new(Vec::new()));
        let sink = sent.clone();
        tokio::spawn(async move {
            while let Ok((packet, responder)) = packet_rx.recv().await {
                sink.lock().unwrap().push(packet);
                let _ = responder.respond(Ok(()));
            }
        });
        (manager, sent)
    }

    fn ids(list: &[&str]) -> Vec<ParticipantIdentity> {
        list.iter().map(|s| ParticipantIdentity(s.to_string())).collect()
    }

    fn text_opts(topic: &str, dests: &[&str]) -> StreamTextOptions {
        StreamTextOptions::new_with_topic(topic).with_destination_identities(ids(dests))
    }

    fn byte_opts(topic: &str, dests: &[&str]) -> StreamByteOptions {
        StreamByteOptions::new_with_topic(topic).with_destination_identities(ids(dests))
    }

    fn header(p: &proto::DataPacket) -> &proto::data_stream::Header {
        match p.value.as_ref().unwrap() {
            proto::data_packet::Value::StreamHeader(h) => h,
            _ => panic!("expected stream header"),
        }
    }

    fn chunk(p: &proto::DataPacket) -> &proto::data_stream::Chunk {
        match p.value.as_ref().unwrap() {
            proto::data_packet::Value::StreamChunk(c) => c,
            _ => panic!("expected stream chunk"),
        }
    }

    fn is_text_header(h: &proto::data_stream::Header) -> bool {
        matches!(h.content_header, Some(proto::data_stream::header::ContentHeader::TextHeader(_)))
    }

    fn is_byte_header(h: &proto::data_stream::Header) -> bool {
        matches!(h.content_header, Some(proto::data_stream::header::ContentHeader::ByteHeader(_)))
    }

    fn assert_trailer(p: &proto::DataPacket) {
        match p.value.as_ref().unwrap() {
            proto::data_packet::Value::StreamTrailer(t) => assert_eq!(t.reason, ""),
            _ => panic!("expected stream trailer"),
        }
    }

    /// Uniform random bytes — genuinely incompressible (unlike `pseudo_random_text`'s ascii).
    fn random_bytes(len: usize) -> Vec<u8> {
        use rand::{rngs::StdRng, Rng, SeedableRng};
        let mut rng = StdRng::seed_from_u64(0xdead_beef);
        (0..len).map(|_| rng.random::<u8>()).collect()
    }

    fn text_content_header(h: &proto::data_stream::Header) -> &proto::data_stream::TextHeader {
        match h.content_header.as_ref().unwrap() {
            proto::data_stream::header::ContentHeader::TextHeader(t) => t,
            _ => panic!("expected text header"),
        }
    }

    mod room_with_pre_data_streams_v2_participants {
        use super::*;

        #[tokio::test]
        async fn pre_v2_short_text_is_legacy_multipacket() {
            let (m, sent) = setup();
            m.send_text("hello world", text_opts("chat", &[]), &pre_v2_room()).await.unwrap();
            let p = sent.lock().unwrap().clone();
            assert_eq!(p.len(), 3);
            let h = header(&p[0]);
            assert!(is_text_header(h));
            assert_eq!(h.topic, "chat");
            assert_eq!(h.compression(), proto::data_stream::CompressionType::None);
            assert!(h.inline_content.is_none());
            let c = chunk(&p[1]);
            assert_eq!(c.chunk_index, 0);
            assert_eq!(c.content, b"hello world");
            assert_trailer(&p[2]);
        }

        #[tokio::test]
        async fn pre_v2_long_text_splits_at_mtu() {
            let (m, sent) = setup();
            let text = "A".repeat(40_000);
            m.send_text(&text, text_opts("chat", &[]), &pre_v2_room()).await.unwrap();
            let p = sent.lock().unwrap().clone();
            assert_eq!(p.len(), 5); // header + 3 chunks + trailer
            assert_eq!(header(&p[0]).compression(), proto::data_stream::CompressionType::None);
            assert_eq!(chunk(&p[1]).content.len(), 15_000);
            assert_eq!(chunk(&p[2]).content.len(), 15_000);
            assert_eq!(chunk(&p[3]).content.len(), 10_000);
            assert_eq!(chunk(&p[1]).chunk_index, 0);
            assert_eq!(chunk(&p[3]).chunk_index, 2);
            assert_trailer(&p[4]);
        }

        #[tokio::test]
        async fn pre_v2_bytes_is_legacy_multipacket() {
            let (m, sent) = setup();
            m.send_bytes([0u8, 1, 2, 3], byte_opts("blob", &[]), &pre_v2_room()).await.unwrap();
            let p = sent.lock().unwrap().clone();
            assert_eq!(p.len(), 3);
            let h = header(&p[0]);
            assert!(is_byte_header(h));
            assert_eq!(h.compression(), proto::data_stream::CompressionType::None);
            assert!(h.inline_content.is_none());
            assert_eq!(chunk(&p[1]).content, vec![0, 1, 2, 3]);
            assert_trailer(&p[2]);
        }

        #[tokio::test]
        async fn pre_v2_empty_text_sends_header_and_trailer() {
            let (m, sent) = setup();
            m.send_text("", text_opts("chat", &[]), &pre_v2_room()).await.unwrap();
            // A well-formed (if contentless) stream: header declaring zero length, then the trailer.
            let p = sent.lock().unwrap().clone();
            assert_eq!(p.len(), 2);
            assert_eq!(header(&p[0]).total_length, Some(0));
            assert_trailer(&p[1]);
        }
    }

    mod room_with_all_data_streams_v2_participants {
        use super::*;

        mod send_text {
            use super::*;

            #[tokio::test]
            async fn v2_short_compressible_text_inlines_compressed() {
                let (m, sent) = setup();
                let text = "hello hello compressible world";
                m.send_text(text, text_opts("chat", &["alice", "bob"]), &all_v2_room())
                    .await
                    .unwrap();
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 1);
                let h = header(&p[0]);
                assert!(is_text_header(h));
                assert_eq!(h.compression(), proto::data_stream::CompressionType::DeflateRaw);
                let inline = h.inline_content.as_ref().unwrap();
                assert_ne!(inline.as_slice(), text.as_bytes()); // compressed, not raw
            }

            #[tokio::test]
            async fn v2_short_incompressible_text_inlines_raw() {
                let (m, sent) = setup();
                m.send_text("short", text_opts("chat", &["alice", "bob"]), &all_v2_room())
                    .await
                    .unwrap();
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 1);
                let h = header(&p[0]);
                assert_eq!(h.compression(), proto::data_stream::CompressionType::None);
                assert_eq!(h.inline_content.as_ref().unwrap().as_slice(), b"short");
            }

            #[tokio::test]
            async fn v2_no_compression_cap_inlines_raw() {
                let (m, sent) = setup();
                let text = "hello hello compressible world";
                m.send_text(text, text_opts("chat", &["noCompression"]), &all_v2_room())
                    .await
                    .unwrap();
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 1); // inline (gated on protocol) still happens
                let h = header(&p[0]);
                assert_eq!(h.compression(), proto::data_stream::CompressionType::None); // compression gated off by missing cap
                assert_eq!(h.inline_content.as_ref().unwrap().as_slice(), text.as_bytes());
            }

            #[tokio::test]
            async fn v2_large_highly_compressible_text_still_inlines() {
                let (m, sent) = setup();
                let text = "hello world".repeat(20_000);
                m.send_text(&text, text_opts("chat", &["alice", "bob"]), &all_v2_room())
                    .await
                    .unwrap();
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 1);
                let h = header(&p[0]);
                assert_eq!(h.compression(), proto::data_stream::CompressionType::DeflateRaw);
                assert!(h.inline_content.as_ref().unwrap().len() < text.len());
            }

            #[tokio::test]
            async fn v2_somewhat_compressible_text_is_compressed_multipacket() {
                let (m, sent) = setup();
                let text = somewhat_compressible(50_000);
                m.send_text(&text, text_opts("chat", &["alice", "bob"]), &all_v2_room())
                    .await
                    .unwrap();
                let p = sent.lock().unwrap().clone();
                let h = header(&p[0]);
                assert_eq!(h.compression(), proto::data_stream::CompressionType::DeflateRaw);
                assert!(h.inline_content.is_none());
                let chunks: Vec<_> = p[1..p.len() - 1].iter().map(chunk).collect();
                // Multi-packet, but fewer chunks than an uncompressed send would need (ceil(len/15000)).
                let uncompressed_chunks = text.len().div_ceil(constants::STREAM_CHUNK_SIZE_BYTES);
                assert!(chunks.len() >= 2);
                assert!(chunks.len() < uncompressed_chunks);
                assert_eq!(chunks[0].content.len(), constants::STREAM_CHUNK_SIZE_BYTES); // first chunk is full MTU
                let total: usize = chunks.iter().map(|c| c.content.len()).sum();
                assert!(total < text.len()); // compressed
                assert_trailer(p.last().unwrap());
            }

            #[tokio::test]
            async fn v2_compress_false_short_inlines_raw() {
                let (m, sent) = setup();
                let text = "hello hello compressible world";
                let opts = text_opts("chat", &["alice", "bob"]).with_compress(false);
                m.send_text(text, opts, &all_v2_room()).await.unwrap();
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 1);
                let h = header(&p[0]);
                assert_eq!(h.compression(), proto::data_stream::CompressionType::None);
                assert_eq!(h.inline_content.as_ref().unwrap().as_slice(), text.as_bytes());
            }

            #[tokio::test]
            async fn v2_compress_false_large_is_uncompressed_multipacket() {
                let (m, sent) = setup();
                let text = "B".repeat(50_000);
                let opts = text_opts("chat", &["alice", "bob"]).with_compress(false);
                m.send_text(&text, opts, &all_v2_room()).await.unwrap();
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 6); // header + 4 chunks + trailer
                assert_eq!(header(&p[0]).compression(), proto::data_stream::CompressionType::None);
                assert_eq!(chunk(&p[1]).content.len(), 15_000);
            }

            #[tokio::test]
            async fn v2_send_text_with_attachments_never_inlines() {
                let (m, sent) = setup();
                let opts = text_opts("chat", &["alice", "bob"]).with_attached_stream_id("att1");
                m.send_text("hello hello compressible world", opts, &all_v2_room()).await.unwrap();
                let p = sent.lock().unwrap().clone();
                // Attachments disable the single-packet path even when every recipient is v2.
                assert_eq!(p.len(), 3); // header + 1 chunk + trailer
                let h = header(&p[0]);
                assert!(h.inline_content.is_none());
                assert_eq!(text_content_header(h).attached_stream_ids, vec!["att1".to_string()]);
                assert_trailer(&p[2]);
            }

            #[tokio::test]
            async fn v2_large_text_to_uncapable_recipient_is_uncompressed_multipacket() {
                let (m, sent) = setup();
                let text = "A".repeat(40_000);
                m.send_text(&text, text_opts("chat", &["noCompression"]), &all_v2_room())
                    .await
                    .unwrap();
                // Inline is attempted (recipient is v2) but the raw payload overflows the MTU, and
                // compression is gated off by the missing capability — so this falls back to an
                // uncompressed multi-packet stream split at STREAM_CHUNK_SIZE_BYTES.
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 5);
                let h = header(&p[0]);
                assert_eq!(h.compression(), proto::data_stream::CompressionType::None);
                assert!(h.inline_content.is_none());
                assert_eq!(chunk(&p[1]).content.len(), 15_000);
                assert_eq!(chunk(&p[2]).content.len(), 15_000);
                assert_eq!(chunk(&p[3]).content.len(), 10_000);
                assert_trailer(&p[4]);
            }

            #[tokio::test]
            async fn v2_empty_text_sends_single_inline_packet() {
                let (m, sent) = setup();
                m.send_text("", text_opts("chat", &["alice", "bob"]), &all_v2_room())
                    .await
                    .unwrap();
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 1);
                let h = header(&p[0]);
                // Deflate framing can't shrink an empty payload, so the raw (empty) bytes are kept.
                assert_eq!(h.compression(), proto::data_stream::CompressionType::None);
                assert_eq!(h.inline_content.as_deref(), Some(&[][..]));
                assert_eq!(h.total_length, Some(0));
            }
        }

        mod send_bytes {
            use super::*;

            #[tokio::test]
            async fn v2_send_bytes_short_incompressible_inlines_raw() {
                let (m, sent) = setup();
                m.send_bytes([0u8, 1, 2, 3], byte_opts("blob", &["alice", "bob"]), &all_v2_room())
                    .await
                    .unwrap();
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 1);
                let h = header(&p[0]);
                // Tiny payload doesn't shrink under DEFLATE framing, so it's sent raw.
                assert_eq!(h.compression(), proto::data_stream::CompressionType::None);
                assert_eq!(h.inline_content.as_ref().unwrap().as_slice(), &[0u8, 1, 2, 3]);
            }

            #[tokio::test]
            async fn v2_send_bytes_no_compression_cap_inlines_raw() {
                let (m, sent) = setup();
                let payload = "hello hello compressible world".as_bytes();
                m.send_bytes(payload, byte_opts("blob", &["noCompression"]), &all_v2_room())
                    .await
                    .unwrap();
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 1); // inline is gated on clientProtocol alone
                let h = header(&p[0]);
                assert_eq!(h.compression(), proto::data_stream::CompressionType::None); // compression gated off by the missing cap
                assert_eq!(h.inline_content.as_ref().unwrap().as_slice(), payload);
            }

            #[tokio::test]
            async fn v2_send_bytes_large_highly_compressible_inlines() {
                let (m, sent) = setup();
                let payload = vec![0x01u8; 50_000];
                m.send_bytes(&payload, byte_opts("blob", &["alice", "bob"]), &all_v2_room())
                    .await
                    .unwrap();
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 1); // compresses well under the MTU, so it still goes inline
                let h = header(&p[0]);
                assert_eq!(h.compression(), proto::data_stream::CompressionType::DeflateRaw);
                assert!(h.inline_content.as_ref().unwrap().len() < payload.len());
                assert_eq!(h.total_length, Some(50_000)); // always the PRE-compression length
            }

            #[tokio::test]
            async fn v2_send_bytes_somewhat_compressible_is_compressed_multipacket() {
                let (m, sent) = setup();
                let payload = somewhat_compressible(50_000).into_bytes();
                m.send_bytes(&payload, byte_opts("blob", &["alice", "bob"]), &all_v2_room())
                    .await
                    .unwrap();
                let p = sent.lock().unwrap().clone();
                let h = header(&p[0]);
                assert!(is_byte_header(h));
                assert_eq!(h.compression(), proto::data_stream::CompressionType::DeflateRaw);
                assert!(h.inline_content.is_none());
                let chunks: Vec<_> = p[1..p.len() - 1].iter().map(chunk).collect();
                assert!(chunks.len() >= 2);
                assert!(chunks.len() < payload.len().div_ceil(constants::STREAM_CHUNK_SIZE_BYTES));
                assert_eq!(chunks[0].content.len(), constants::STREAM_CHUNK_SIZE_BYTES);
                assert_trailer(p.last().unwrap());
            }

            #[tokio::test]
            async fn v2_send_bytes_compress_false_large_is_uncompressed_multipacket() {
                let (m, sent) = setup();
                let payload = vec![0x07u8; 40_000];
                let opts = byte_opts("blob", &["alice", "bob"]).with_compress(false);
                m.send_bytes(&payload, opts, &all_v2_room()).await.unwrap();
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 5); // header + 15k/15k/10k chunks + trailer
                let h = header(&p[0]);
                assert_eq!(h.compression(), proto::data_stream::CompressionType::None);
                assert!(h.inline_content.is_none());
                assert_eq!(chunk(&p[1]).content.len(), 15_000);
                assert_eq!(chunk(&p[2]).content.len(), 15_000);
                assert_eq!(chunk(&p[3]).content.len(), 10_000);
                assert!(chunk(&p[3]).content.iter().all(|b| *b == 0x07));
                assert_trailer(&p[4]);
            }

            #[tokio::test]
            async fn v2_send_bytes_short_compressible_inlines_compressed() {
                let (m, sent) = setup();
                let payload = "hello hello compressible world".as_bytes().to_vec();
                let mut opts = byte_opts("blob", &["alice", "bob"]);
                opts.attributes.insert("foo".to_string(), "bar".to_string());
                let info = m.send_bytes(&payload, opts, &all_v2_room()).await.unwrap();
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 1);
                let h = header(&p[0]);
                assert!(is_byte_header(h));
                assert_eq!(h.compression(), proto::data_stream::CompressionType::DeflateRaw);
                assert_ne!(h.inline_content.as_ref().unwrap().as_slice(), payload.as_slice());
                assert_eq!(info.name, "unknown");
                assert_eq!(info.mime_type, "application/octet-stream");
                assert_eq!(info.total_length, Some(payload.len() as u64));
                assert_eq!(info.attributes().get("foo"), Some(&"bar".to_string()));
            }
        }

        mod send_file {
            use super::*;

            async fn write_temp_file(bytes: &[u8]) -> std::path::PathBuf {
                let path =
                    std::env::temp_dir().join(format!("lk_ds_test_{}.bin", create_random_uuid()));
                tokio::fs::write(&path, bytes).await.unwrap();
                path
            }

            #[tokio::test]
            async fn send_file_never_inlines_and_compresses_when_eligible() {
                let (m, sent) = setup();
                let path = write_temp_file(&vec![0x01u8; 10_000]).await;
                m.send_file(&path, byte_opts("file", &["alice", "bob"]), &all_v2_room())
                    .await
                    .unwrap();
                let _ = tokio::fs::remove_file(&path).await;
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 3); // header + 1 chunk + trailer, NOT inline
                let h = header(&p[0]);
                assert!(is_byte_header(h));
                assert_eq!(h.compression(), proto::data_stream::CompressionType::DeflateRaw);
                assert!(h.inline_content.is_none());
                assert!(chunk(&p[1]).content.len() < 10_000); // compressed
                assert_trailer(&p[2]);
            }

            #[tokio::test]
            async fn send_file_uncompressed_splits_at_mtu() {
                let (m, sent) = setup();
                let path = write_temp_file(&vec![0x07u8; 20_000]).await;
                m.send_file(&path, byte_opts("file", &[]).with_compress(false), &all_v2_room())
                    .await
                    .unwrap();
                let _ = tokio::fs::remove_file(&path).await;
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 4); // header + 15000 + 5000 + trailer
                assert_eq!(header(&p[0]).compression(), proto::data_stream::CompressionType::None);
                assert_eq!(chunk(&p[1]).content.len(), 15_000);
                assert_eq!(chunk(&p[2]).content.len(), 5_000);
                assert_eq!(chunk(&p[2]).chunk_index, 1);
                assert_trailer(&p[3]);
            }

            #[tokio::test]
            async fn send_file_incompressible_compressed_expands() {
                let (m, sent) = setup();
                let data = random_bytes(50_000);
                let path = write_temp_file(&data).await;
                m.send_file(&path, byte_opts("file", &["alice", "bob"]), &all_v2_room())
                    .await
                    .unwrap();
                let _ = tokio::fs::remove_file(&path).await;

                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 6); // header + 4 chunks + trailer
                let h = header(&p[0]);
                assert_eq!(h.compression(), proto::data_stream::CompressionType::DeflateRaw);
                assert_eq!(chunk(&p[1]).content.len(), 15_000);
                // Deflate adds slight overhead on incompressible data — the accepted trade-off for
                // streaming the file instead of buffering it to make an inline/compression decision.
                let total: usize =
                    p[1..p.len() - 1].iter().map(|packet| chunk(packet).content.len()).sum();
                assert!(total > data.len());
                assert_trailer(p.last().unwrap());
            }

            #[tokio::test]
            async fn send_file_to_no_compression_recipient_is_uncompressed() {
                let (m, sent) = setup();
                let path = write_temp_file(&vec![0x07u8; 10_000]).await;
                m.send_file(&path, byte_opts("file", &["noCompression"]), &all_v2_room())
                    .await
                    .unwrap();
                let _ = tokio::fs::remove_file(&path).await;

                // v2 recipient without the compression capability in a v2 room: uncompressed
                // multi-packet (and never inline).
                let p = sent.lock().unwrap().clone();
                assert_eq!(p.len(), 3);
                let h = header(&p[0]);
                assert!(is_byte_header(h));
                assert_eq!(h.compression(), proto::data_stream::CompressionType::None);
                assert!(h.inline_content.is_none());
                let c = chunk(&p[1]);
                assert_eq!(c.content.len(), 10_000);
                assert!(c.content.iter().all(|b| *b == 0x07));
                assert_trailer(&p[2]);
            }

            #[tokio::test]
            async fn send_file_empty_file() {
                let (m, sent) = setup();
                let path = write_temp_file(&[]).await;
                m.send_file(&path, byte_opts("file", &["alice", "bob"]), &all_v2_room())
                    .await
                    .unwrap();
                let _ = tokio::fs::remove_file(&path).await;

                // An empty file still produces a well-formed compressed stream: a header declaring zero
                // length, the deflate stream's final block, and a trailer.
                let p = sent.lock().unwrap().clone();
                let h = header(&p[0]);
                assert!(is_byte_header(h));
                assert_eq!(h.total_length, Some(0));
                assert_eq!(h.compression(), proto::data_stream::CompressionType::DeflateRaw);
                assert_trailer(p.last().unwrap());
            }
        }

        #[tokio::test]
        async fn v2_broadcast_all_capable_inlines_compressed() {
            let (m, sent) = setup();
            // No destinations: eligibility is evaluated over every remote participant.
            m.send_text(
                "hello hello compressible world",
                text_opts("chat", &[]),
                &all_v2_capable_room(),
            )
            .await
            .unwrap();
            let p = sent.lock().unwrap().clone();
            assert_eq!(p.len(), 1);
            assert_eq!(
                header(&p[0]).compression(),
                proto::data_stream::CompressionType::DeflateRaw
            );
        }

        #[tokio::test]
        async fn v2_broadcast_with_uncapable_member_inlines_raw() {
            let (m, sent) = setup();
            let text = "hello hello compressible world";
            // all_v2_room includes "noCompression": inline still applies, compression does not.
            m.send_text(text, text_opts("chat", &[]), &all_v2_room()).await.unwrap();
            let p = sent.lock().unwrap().clone();
            assert_eq!(p.len(), 1);
            let h = header(&p[0]);
            assert_eq!(h.compression(), proto::data_stream::CompressionType::None);
            assert_eq!(h.inline_content.as_ref().unwrap().as_slice(), text.as_bytes());
        }

        #[tokio::test]
        async fn empty_room_broadcast_is_v2_eligible() {
            let (m, sent) = setup();
            // Nobody to receive it, so nothing gates the v2 fast path.
            m.send_text(
                "hello hello compressible world",
                text_opts("chat", &[]),
                &FakeRegistry::new(),
            )
            .await
            .unwrap();
            let p = sent.lock().unwrap().clone();
            assert_eq!(p.len(), 1);
            assert_eq!(
                header(&p[0]).compression(),
                proto::data_stream::CompressionType::DeflateRaw
            );
        }
    }

    mod room_with_mixed_participants {
        use super::*;

        #[tokio::test]
        async fn mixed_broadcast_falls_back_to_legacy() {
            let (m, sent) = setup();
            m.send_text("hello world", text_opts("chat", &[]), &mixed_room()).await.unwrap();
            let p = sent.lock().unwrap().clone();
            assert_eq!(p.len(), 3);
            assert_eq!(header(&p[0]).compression(), proto::data_stream::CompressionType::None);
            assert!(header(&p[0]).inline_content.is_none());
            assert_eq!(chunk(&p[1]).content, b"hello world");
        }

        #[tokio::test]
        async fn mixed_targeted_v2_subset_inlines_compressed() {
            let (m, sent) = setup();
            let text = "hello hello compressible world";
            m.send_text(text, text_opts("chat", &["bob", "jim"]), &mixed_room()).await.unwrap();
            let p = sent.lock().unwrap().clone();
            assert_eq!(p.len(), 1);
            let h = header(&p[0]);
            assert_eq!(h.compression(), proto::data_stream::CompressionType::DeflateRaw);
            assert_ne!(h.inline_content.as_ref().unwrap().as_slice(), text.as_bytes());
        }

        #[tokio::test]
        async fn mixed_targeted_subset_missing_cap_inlines_uncompressed() {
            let (m, sent) = setup();
            let text = "hello hello compressible world";
            m.send_text(text, text_opts("chat", &["bob", "jim", "noCompression"]), &mixed_room())
                .await
                .unwrap();
            let p = sent.lock().unwrap().clone();
            assert_eq!(p.len(), 1);
            let h = header(&p[0]);
            assert_eq!(h.compression(), proto::data_stream::CompressionType::None);
            assert_eq!(h.inline_content.as_ref().unwrap().as_slice(), text.as_bytes());
        }
    }

    // --- Sender identity ------------------------------------------------------------------

    #[tokio::test]
    async fn stream_text_with_sender_identity_stamps_every_packet() {
        let (m, sent) = setup();
        let opts = text_opts("chat", &[]).with_sender_identity("impostor");
        let writer = m.stream_text(opts).await.unwrap();
        writer.write("hello").await.unwrap();
        writer.close().await.unwrap();
        let p = sent.lock().unwrap().clone();
        assert_eq!(p.len(), 3);
        assert!(p.iter().all(|pkt| pkt.participant_identity == "impostor"));
    }

    #[tokio::test]
    async fn send_text_inline_with_sender_identity_stamps_packet() {
        let (m, sent) = setup();
        let opts = text_opts("chat", &["alice", "bob"]).with_sender_identity("impostor");
        m.send_text("hello hello compressible world", opts, &all_v2_room()).await.unwrap();
        let p = sent.lock().unwrap().clone();
        assert_eq!(p.len(), 1);
        assert_eq!(p[0].participant_identity, "impostor");
    }

    #[tokio::test]
    async fn packets_carry_no_identity_when_sender_identity_unset() {
        let (m, sent) = setup();
        let writer = m.stream_text(text_opts("chat", &[])).await.unwrap();
        writer.close().await.unwrap();
        let p = sent.lock().unwrap().clone();
        assert!(p.iter().all(|pkt| pkt.participant_identity.is_empty()));
    }

    // --- Incremental writers never compress or inline ------------------------------------

    #[tokio::test]
    async fn stream_text_never_compresses_or_inlines() {
        let (m, sent) = setup();
        let writer = m.stream_text(text_opts("chat", &["noCompression"])).await.unwrap();
        assert_eq!(sent.lock().unwrap().len(), 1);
        let h0 = sent.lock().unwrap()[0].clone();
        assert!(is_text_header(header(&h0)));
        assert_eq!(header(&h0).compression(), proto::data_stream::CompressionType::None);
        assert!(header(&h0).inline_content.is_none());

        writer.write("hello world").await.unwrap();
        assert_eq!(sent.lock().unwrap().len(), 2);
        assert_eq!(chunk(&sent.lock().unwrap()[1]).content, b"hello world");

        writer.close().await.unwrap();
        let p = sent.lock().unwrap().clone();
        assert_eq!(p.len(), 3);
        assert_trailer(&p[2]);
    }

    #[tokio::test]
    async fn stream_bytes_never_compresses_or_inlines() {
        let (m, sent) = setup();
        let writer = m.stream_bytes(byte_opts("blob", &["noCompression"])).await.unwrap();
        assert_eq!(sent.lock().unwrap().len(), 1);
        assert_eq!(
            header(&sent.lock().unwrap()[0]).compression(),
            proto::data_stream::CompressionType::None
        );

        writer.write(&[0u8, 1, 2, 3]).await.unwrap();
        assert_eq!(chunk(&sent.lock().unwrap()[1]).content, vec![0, 1, 2, 3]);

        writer.close().await.unwrap();
        let p = sent.lock().unwrap().clone();
        assert_eq!(p.len(), 3);
        assert_trailer(&p[2]);
    }

    mod header_size_limit {
        use super::*;

        #[tokio::test]
        async fn oversized_attributes_on_chunked_path_errors() {
            let (m, _sent) = setup();
            let mut opts = text_opts("chat", &[]); // pre-v2 below => chunked path
            opts.attributes.insert("big".to_string(), "x".repeat(20_000));
            let result = m.send_text("hello", opts, &pre_v2_room()).await;
            assert!(matches!(result, Err(StreamError::HeaderTooLarge)));
        }

        /// Builds a minimal text header carrying the given attributes.
        fn header_with_attributes(attributes: HashMap<String, String>) -> Header {
            Header {
                stream_id: "s1".into(),
                timestamp: 0,
                topic: "chat".to_string(),
                mime_type: constants::TEXT_MIME_TYPE.to_owned(),
                total_length: None,
                attributes,
                content_header: Some(ContentHeader::TextHeader(TextHeader::default())),
                inline_content: None,
                compression: CompressionType::None,
            }
        }

        #[test]
        fn enforce_header_size_accepts_small_header() {
            // A minimal header serializes well under the MTU budget, so it is accepted.
            let header = header_with_attributes(HashMap::new());
            assert!(enforce_header_size(&header, &[]).is_ok());
        }

        #[test]
        fn enforce_header_size_rejects_large_header() {
            // A giant attribute value pushes the serialized header past the MTU budget.
            let mut attributes = HashMap::new();
            attributes.insert("big".to_string(), "x".repeat(20_000));
            let header = header_with_attributes(attributes);
            assert!(matches!(enforce_header_size(&header, &[]), Err(StreamError::HeaderTooLarge)));
        }
    }

    // Regression test for CLT-2773: dropping a `RawStream` on a thread that has
    // no Tokio runtime in TLS (e.g. the .NET GC finalizer thread in the Unity
    // SDK) used to panic because `Drop` called `tokio::spawn` unconditionally.
    #[test]
    fn drop_raw_stream_on_non_tokio_thread_does_not_panic() {
        let rt = tokio::runtime::Runtime::new().unwrap();

        let raw_stream = rt.block_on(async {
            let (packet_tx, mut packet_rx) =
                bmrng::unbounded_channel::<proto::DataPacket, Result<(), SendError>>();

            tokio::spawn(async move {
                while let Ok((_packet, responder)) = packet_rx.recv().await {
                    let _ = responder.respond(Ok(()));
                }
            });

            let header = Header {
                stream_id: "gc-test-stream".into(),
                timestamp: 0,
                topic: "gc-test-topic".to_string(),
                mime_type: constants::TEXT_MIME_TYPE.to_owned(),
                total_length: None,
                attributes: HashMap::new(),
                content_header: None,
                // Data streams v2 fields
                inline_content: None,
                compression: CompressionType::None,
            };

            RawStream::open(RawStreamOpenOptions {
                header,
                destination_identities: vec![],
                sender_identity: None,
                packet_tx,
            })
            .await
            .expect("RawStream should open")
        });

        let drop_thread = std::thread::spawn(move || drop(raw_stream));

        drop_thread.join().expect("Dropping RawStream on a non-Tokio thread must not panic");
    }

    // --- Additional spec-conformance cases ------------------------------------------------

    mod stream_text_bytes {
        use super::*;

        #[tokio::test]
        async fn stream_bytes_multi_write_splits_at_mtu() {
            let (m, sent) = setup();
            let writer = m.stream_bytes(byte_opts("blob", &[])).await.unwrap();
            writer.write(&vec![0x01u8; 20_000]).await.unwrap();
            writer.write(&vec![0x01u8; 20_000]).await.unwrap();
            writer.close().await.unwrap();

            // Each write splits into a 15k + 5k chunk; indices are contiguous ACROSS writes.
            let p = sent.lock().unwrap().clone();
            assert_eq!(p.len(), 6); // header + 4 chunks + trailer
            for (i, expected_len) in [15_000usize, 5_000, 15_000, 5_000].iter().enumerate() {
                let c = chunk(&p[i + 1]);
                assert_eq!(c.chunk_index, i as u64);
                assert_eq!(c.content.len(), *expected_len);
                assert!(c.content.iter().all(|b| *b == 0x01));
            }
            assert_trailer(&p[5]);
        }

        #[tokio::test]
        async fn close_with_options_sends_trailer_attributes() {
            let (m, sent) = setup();
            let writer = m.stream_text(text_opts("chat", &[])).await.unwrap();
            writer.write("hello").await.unwrap();
            let attributes = HashMap::from([("result".to_string(), "ok".to_string())]);
            writer.close_with_options(None, Some(attributes.clone())).await.unwrap();

            let p = sent.lock().unwrap().clone();
            let trailer = match p.last().unwrap().value.as_ref().unwrap() {
                proto::data_packet::Value::StreamTrailer(t) => t,
                _ => panic!("expected stream trailer"),
            };
            assert_eq!(trailer.reason, "");
            assert_eq!(trailer.attributes, attributes);
        }

        #[tokio::test]
        async fn close_with_options_sends_reason_and_attributes() {
            let (m, sent) = setup();
            let writer = m.stream_text(text_opts("chat", &[])).await.unwrap();
            let attributes = HashMap::from([("cause".to_string(), "cancelled".to_string())]);
            writer.close_with_options(Some("aborted"), Some(attributes.clone())).await.unwrap();

            let p = sent.lock().unwrap().clone();
            let trailer = match p.last().unwrap().value.as_ref().unwrap() {
                proto::data_packet::Value::StreamTrailer(t) => t,
                _ => panic!("expected stream trailer"),
            };
            assert_eq!(trailer.reason, "aborted");
            assert_eq!(trailer.attributes, attributes);
        }

        #[tokio::test]
        async fn stream_text_oversized_attributes_errors() {
            let (m, sent) = setup();
            let mut opts = text_opts("chat", &[]);
            opts.attributes.insert("big".to_string(), "x".repeat(20_000));
            let result = m.stream_text(opts).await;
            assert!(matches!(result, Err(StreamError::HeaderTooLarge)));
            // The error must be raised before anything hits the wire.
            assert!(sent.lock().unwrap().is_empty());
        }

        #[tokio::test]
        async fn stream_text_splits_on_utf8_boundaries_at_mtu() {
            let (m, sent) = setup();
            // 14 999 single-byte chars put the 4-byte emoji straddling the 15 000-byte MTU boundary.
            let text = format!("{}😀{}", "a".repeat(14_999), "b".repeat(10));
            let writer = m.stream_text(text_opts("chat", &[])).await.unwrap();
            writer.write(&text).await.unwrap();
            writer.close().await.unwrap();

            let p = sent.lock().unwrap().clone();
            assert_eq!(p.len(), 4); // header + 2 chunks + trailer
            let first = chunk(&p[1]);
            let second = chunk(&p[2]);
            // The split backs off below the MTU rather than bisecting the emoji, so each chunk
            // decodes independently.
            assert_eq!(first.content.len(), 14_999);
            let first_str =
                std::str::from_utf8(&first.content).expect("chunk 0 must be valid UTF-8");
            let second_str =
                std::str::from_utf8(&second.content).expect("chunk 1 must be valid UTF-8");
            assert_eq!(format!("{first_str}{second_str}"), text);
        }
    }
}