zerodds-py 1.0.0-rc.6

PyO3 bindings for the ZeroDDS DCPS API
Documentation
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
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
// SPDX-License-Identifier: Apache-2.0
// Copyright 2026 ZeroDDS Contributors

//! PyO3 FFI module. Only active with `--features extension-module`.
//!
//! Current scope: raw-bytes topic. This is deliberately a thin
//! wrapper layer — the heavy lifting (QoS, discovery, wire) lives in
//! `zerodds-dcps`. No Python-specific logic here apart from
//! Rust↔Python conversion.
//!
//! # SAFETY
//!
//! The `unsafe` expansions of `#[pymodule]` / `#[pyclass]` are
//! PyO3-macro-internal; we write no explicit `unsafe` here.
//! Thread safety: DataReader/Writer hold `Arc` and `Mutex` internally,
//! so that the GIL release during `write`/`take` is safe.

#![allow(clippy::missing_errors_doc)]
#![allow(unsafe_code)] // PyO3 macros expand to unsafe
#![allow(unsafe_op_in_unsafe_fn)] // Rust 2024: PyO3 macros cannot wrap
#![allow(clippy::useless_conversion)] // PyO3-macro-generated `.into()` calls
#![allow(clippy::needless_lifetimes)] // PyO3 signatures with Bound<'py, T>
#![allow(clippy::new_without_default)] // #[new] constructors are Python constructors, not Rust Default

use std::sync::Arc;
use std::time::Duration;

use pyo3::exceptions::{PyRuntimeError, PyTimeoutError};
use pyo3::prelude::*;
use pyo3::types::{PyBytes, PyList};

use zerodds_dcps::condition::{GuardCondition, WaitSet};
use zerodds_dcps::interop::ShapeType;
use zerodds_dcps::runtime::RuntimeConfig;
use zerodds_dcps::sample::Sample;
use zerodds_dcps::sample_info::{InstanceStateKind, SampleStateKind, ViewStateKind};
use zerodds_dcps::{
    DataReader, DataReaderQos, DataWriter, DataWriterQos, DdsError, DomainParticipant,
    DomainParticipantFactory, DomainParticipantQos, Publisher, PublisherQos, RawBytes, Subscriber,
    SubscriberQos, Topic, TopicQos,
};

fn dds_err_to_py(e: DdsError) -> PyErr {
    match e {
        DdsError::Timeout => PyTimeoutError::new_err("dds timeout"),
        other => PyRuntimeError::new_err(format!("{other:?}")),
    }
}

/// Converts a `Vec<Sample<RawBytes>>` into a Python `list[(bytes, SampleInfo)]`.
fn bytes_samples_with_info<'py>(
    py: Python<'py>,
    samples: Vec<Sample<RawBytes>>,
) -> PyResult<Bound<'py, PyList>> {
    let list = PyList::empty(py);
    for s in samples {
        let info = Py::new(py, PySampleInfo::from_info(&s.info))?;
        let data = PyBytes::new(py, &s.data.data);
        list.append((data, info))?;
    }
    Ok(list)
}

/// Converts a `Vec<Sample<ShapeType>>` into a Python `list[(Shape, SampleInfo)]`.
fn shape_samples_with_info<'py>(
    py: Python<'py>,
    samples: Vec<Sample<ShapeType>>,
) -> PyResult<Bound<'py, PyList>> {
    let list = PyList::empty(py);
    for s in samples {
        let info = Py::new(py, PySampleInfo::from_info(&s.info))?;
        let shape = Py::new(py, PyShape::from(s.data))?;
        list.append((shape, info))?;
    }
    Ok(list)
}

// =============================================================================
// SampleInfo (Spec §2.2.2.5.1) — read-back metadata incl. instance_state
// =============================================================================

/// Python view of a DDS `SampleInfo` (DDS 1.4 §2.2.2.5.1). Carries the
/// per-sample lifecycle metadata that `take()`/`read()` cannot express
/// through `bytes` alone — most importantly `instance_state`
/// (ALIVE / NOT_ALIVE_DISPOSED / NOT_ALIVE_NO_WRITERS) and `valid_data`
/// for keyed lifecycle observability.
#[pyclass(name = "SampleInfo", module = "zerodds_py", skip_from_py_object)]
#[derive(Clone)]
struct PySampleInfo {
    /// Instance lifecycle state as a string:
    /// `"Alive"` | `"NotAliveDisposed"` | `"NotAliveNoWriters"`.
    #[pyo3(get)]
    instance_state: &'static str,
    /// Sample state: `"Read"` | `"NotRead"`.
    #[pyo3(get)]
    sample_state: &'static str,
    /// View state: `"New"` | `"NotNew"`.
    #[pyo3(get)]
    view_state: &'static str,
    /// `false` when the sample carries only a dispose/unregister marker
    /// (no payload). Spec §2.2.2.5.1.13.
    #[pyo3(get)]
    valid_data: bool,
    /// Per-instance handle (derived from the key hash). `0` for an
    /// unkeyed type.
    #[pyo3(get)]
    instance_handle: u64,
    /// Handle of the publication (writer) that produced the sample.
    #[pyo3(get)]
    publication_handle: u64,
    /// Source timestamp in seconds (DDS `Time` → f64).
    #[pyo3(get)]
    source_timestamp_secs: f64,
    /// Spec §2.2.2.5.1 generation counters.
    #[pyo3(get)]
    disposed_generation_count: i32,
    /// Spec §2.2.2.5.1 generation counters.
    #[pyo3(get)]
    no_writers_generation_count: i32,
}

impl PySampleInfo {
    fn from_info(info: &zerodds_dcps::sample_info::SampleInfo) -> Self {
        let instance_state = match info.instance_state {
            InstanceStateKind::Alive => "Alive",
            InstanceStateKind::NotAliveDisposed => "NotAliveDisposed",
            InstanceStateKind::NotAliveNoWriters => "NotAliveNoWriters",
        };
        let sample_state = match info.sample_state {
            SampleStateKind::Read => "Read",
            SampleStateKind::NotRead => "NotRead",
        };
        let view_state = match info.view_state {
            ViewStateKind::New => "New",
            ViewStateKind::NotNew => "NotNew",
        };
        Self {
            instance_state,
            sample_state,
            view_state,
            valid_data: info.valid_data,
            instance_handle: info.instance_handle.as_raw(),
            publication_handle: info.publication_handle.as_raw(),
            source_timestamp_secs: f64::from(info.source_timestamp.seconds())
                + f64::from(info.source_timestamp.nanoseconds()) / 1e9,
            disposed_generation_count: info.disposed_generation_count,
            no_writers_generation_count: info.no_writers_generation_count,
        }
    }
}

#[pymethods]
impl PySampleInfo {
    fn __repr__(&self) -> String {
        format!(
            "SampleInfo(instance_state={:?}, valid_data={}, instance_handle={}, sample_state={:?}, view_state={:?})",
            self.instance_state,
            self.valid_data,
            self.instance_handle,
            self.sample_state,
            self.view_state
        )
    }
}

// =============================================================================
// Factory
// =============================================================================

/// Python wrapper around `DomainParticipantFactory`.
#[pyclass(name = "DomainParticipantFactory", module = "zerodds_py")]
struct PyFactory;

#[pymethods]
impl PyFactory {
    /// Singleton.
    #[staticmethod]
    fn instance() -> Self {
        Self
    }

    /// Offline participant (no UDP bind) — ideal for unit tests.
    fn create_participant_offline(&self, domain_id: i32) -> PyParticipant {
        let p = DomainParticipantFactory::instance()
            .create_participant_offline(domain_id, DomainParticipantQos::default());
        PyParticipant { inner: p }
    }

    /// Live participant with UDP + SPDP/SEDP.
    fn create_participant(&self, domain_id: i32) -> PyResult<PyParticipant> {
        let p = DomainParticipantFactory::instance()
            .create_participant(domain_id, DomainParticipantQos::default())
            .map_err(dds_err_to_py)?;
        Ok(PyParticipant { inner: p })
    }

    /// Live participant with tuned timings (fast discovery).
    fn create_participant_fast(&self, domain_id: i32) -> PyResult<PyParticipant> {
        let cfg = RuntimeConfig {
            tick_period: Duration::from_millis(20),
            spdp_period: Duration::from_millis(100),
            ..RuntimeConfig::default()
        };
        let p = DomainParticipantFactory::instance()
            .create_participant_with_config(domain_id, DomainParticipantQos::default(), cfg)
            .map_err(dds_err_to_py)?;
        Ok(PyParticipant { inner: p })
    }
}

// =============================================================================
// DomainParticipant
// =============================================================================

#[pyclass(name = "DomainParticipant", module = "zerodds_py")]
struct PyParticipant {
    inner: DomainParticipant,
}

#[pymethods]
impl PyParticipant {
    #[getter]
    fn domain_id(&self) -> i32 {
        self.inner.domain_id()
    }

    /// Topic registry size.
    fn topics_len(&self) -> usize {
        self.inner.topics_len()
    }

    /// Number of remote participants discovered via SPDP.
    fn discovered_participants_count(&self) -> usize {
        self.inner.discovered_participants_count()
    }

    /// Bytes topic (type name `zerodds::RawBytes`). For untyped
    /// payload transfer.
    fn create_bytes_topic(&self, name: &str) -> PyResult<PyBytesTopic> {
        let topic = self
            .inner
            .create_topic::<RawBytes>(name, TopicQos::default())
            .map_err(dds_err_to_py)?;
        Ok(PyBytesTopic { inner: topic })
    }

    /// ShapesDemo topic (type name `ShapeType`). For interop tests
    /// against Cyclone/Fast-DDS ShapesDemo.
    fn create_shape_topic(&self, name: &str) -> PyResult<PyShapeTopic> {
        let topic = self
            .inner
            .create_topic::<ShapeType>(name, TopicQos::default())
            .map_err(dds_err_to_py)?;
        Ok(PyShapeTopic { inner: topic })
    }

    /// Keyed conformance topic (`conformance::Reading`, keyed by `id`).
    /// For behavioral keyed-lifecycle demonstration (dispose/unregister +
    /// `take_with_info` instance_state).
    fn create_keyed_topic(&self, name: &str) -> PyResult<PyKeyedTopic> {
        let topic = self
            .inner
            .create_topic::<KeyedReading>(name, TopicQos::default())
            .map_err(dds_err_to_py)?;
        Ok(PyKeyedTopic { inner: topic })
    }

    fn create_publisher(&self) -> PyPublisher {
        PyPublisher {
            inner: Arc::new(self.inner.create_publisher(PublisherQos::default())),
        }
    }

    fn create_subscriber(&self) -> PySubscriber {
        PySubscriber {
            inner: Arc::new(self.inner.create_subscriber(SubscriberQos::default())),
        }
    }

    /// Asserts liveliness for all manual_by_participant writers.
    fn assert_liveliness(&self) {
        if let Some(rt) = self.inner.runtime() {
            rt.assert_liveliness();
        }
    }

    /// Ignore a remote participant by InstanceHandle (Spec §2.2.2.2.1.14).
    fn ignore_participant(&self, handle: u64) -> PyResult<()> {
        self.inner
            .ignore_participant(zerodds_dcps::instance_handle::InstanceHandle::from_raw(
                handle,
            ))
            .map_err(dds_err_to_py)
    }
    /// Ignore topic.
    fn ignore_topic(&self, handle: u64) -> PyResult<()> {
        self.inner
            .ignore_topic(zerodds_dcps::instance_handle::InstanceHandle::from_raw(
                handle,
            ))
            .map_err(dds_err_to_py)
    }
    /// Ignore publication.
    fn ignore_publication(&self, handle: u64) -> PyResult<()> {
        self.inner
            .ignore_publication(zerodds_dcps::instance_handle::InstanceHandle::from_raw(
                handle,
            ))
            .map_err(dds_err_to_py)
    }
    /// Ignore subscription.
    fn ignore_subscription(&self, handle: u64) -> PyResult<()> {
        self.inner
            .ignore_subscription(zerodds_dcps::instance_handle::InstanceHandle::from_raw(
                handle,
            ))
            .map_err(dds_err_to_py)
    }
    /// `contains_entity(handle)` — Spec §2.2.2.2.1.10.
    fn contains_entity(&self, handle: u64) -> bool {
        self.inner
            .contains_entity(zerodds_dcps::instance_handle::InstanceHandle::from_raw(
                handle,
            ))
    }
    /// Returns the InstanceHandles of all discovered topics.
    fn get_discovered_topics(&self) -> Vec<u64> {
        self.inner
            .get_discovered_topics()
            .into_iter()
            .map(|h| h.as_raw())
            .collect()
    }
    /// Returns the InstanceHandles of all discovered participants.
    fn get_discovered_participants(&self) -> Vec<u64> {
        self.inner
            .get_discovered_participants()
            .into_iter()
            .map(|h| h.as_raw())
            .collect()
    }

    /// Spec §2.2.2.2.1.13 `create_contentfilteredtopic`. Creates a
    /// content-filtered view of a `BytesTopic`.
    ///
    /// The Python binding accepts a *callable predicate* `bytes -> bool`
    /// (more idiomatic than a SQL expression over an unkeyed/opaque
    /// `RawBytes` payload, which carries no named fields). The predicate
    /// is evaluated on every sample in the reader's `take()`/`read()`
    /// path; returning `False` discards the sample (Spec §2.2.2.5.4).
    fn create_bytes_contentfilteredtopic(
        &self,
        name: &str,
        related_topic: &PyBytesTopic,
        predicate: Py<PyAny>,
    ) -> PyResult<PyBytesContentFilteredTopic> {
        if name.is_empty() {
            return Err(PyRuntimeError::new_err("content-filtered-topic name empty"));
        }
        Ok(PyBytesContentFilteredTopic {
            name: name.to_string(),
            related: related_topic.inner.clone(),
            predicate,
        })
    }
}

// =============================================================================
// ContentFilteredTopic (Spec §2.2.2.3.3 / §2.2.2.5.4)
// =============================================================================

/// Python content-filtered topic over a `BytesTopic`. Holds the related
/// topic and a Python predicate `bytes -> bool` that the reader applies
/// to every sample (DDS 1.4 §2.2.2.5.4).
#[pyclass(name = "BytesContentFilteredTopic", module = "zerodds_py")]
struct PyBytesContentFilteredTopic {
    name: String,
    related: Topic<RawBytes>,
    predicate: Py<PyAny>,
}

#[pymethods]
impl PyBytesContentFilteredTopic {
    #[getter]
    fn name(&self) -> String {
        self.name.clone()
    }
    #[getter]
    fn related_topic_name(&self) -> String {
        self.related.name().to_string()
    }
    #[getter]
    fn type_name(&self) -> &'static str {
        <RawBytes as zerodds_dcps::DdsType>::TYPE_NAME
    }
}

// =============================================================================
// Topics
// =============================================================================

#[pyclass(name = "BytesTopic", module = "zerodds_py")]
struct PyBytesTopic {
    inner: Topic<RawBytes>,
}

#[pymethods]
impl PyBytesTopic {
    #[getter]
    fn name(&self) -> String {
        self.inner.name().to_string()
    }
    #[getter]
    fn type_name(&self) -> &'static str {
        <RawBytes as zerodds_dcps::DdsType>::TYPE_NAME
    }
}

#[pyclass(name = "ShapeTopic", module = "zerodds_py")]
struct PyShapeTopic {
    inner: Topic<ShapeType>,
}

#[pymethods]
impl PyShapeTopic {
    #[getter]
    fn name(&self) -> String {
        self.inner.name().to_string()
    }
    #[getter]
    fn type_name(&self) -> &'static str {
        <ShapeType as zerodds_dcps::DdsType>::TYPE_NAME
    }
}

// =============================================================================
// Publisher + Subscriber
// =============================================================================

#[pyclass(name = "Publisher", module = "zerodds_py")]
struct PyPublisher {
    inner: Arc<Publisher>,
}

#[pymethods]
impl PyPublisher {
    fn create_bytes_writer(&self, topic: &PyBytesTopic) -> PyResult<PyBytesWriter> {
        let w = self
            .inner
            .create_datawriter::<RawBytes>(&topic.inner, DataWriterQos::default())
            .map_err(dds_err_to_py)?;
        Ok(PyBytesWriter { inner: Arc::new(w) })
    }

    fn create_shape_writer(&self, topic: &PyShapeTopic) -> PyResult<PyShapeWriter> {
        let w = self
            .inner
            .create_datawriter::<ShapeType>(&topic.inner, DataWriterQos::default())
            .map_err(dds_err_to_py)?;
        Ok(PyShapeWriter { inner: Arc::new(w) })
    }

    /// §6.2 — explicit QoS selection. Spec: DDS 1.4 §2.2.2.4.1.5.
    fn create_bytes_writer_with_qos(
        &self,
        topic: &PyBytesTopic,
        qos: &crate::qos::PyDataWriterQos,
    ) -> PyResult<PyBytesWriter> {
        let w = self
            .inner
            .create_datawriter::<RawBytes>(&topic.inner, qos.cloned_inner())
            .map_err(dds_err_to_py)?;
        Ok(PyBytesWriter { inner: Arc::new(w) })
    }

    /// §6.2 — explicit QoS selection for ShapeType topics.
    fn create_shape_writer_with_qos(
        &self,
        topic: &PyShapeTopic,
        qos: &crate::qos::PyDataWriterQos,
    ) -> PyResult<PyShapeWriter> {
        let w = self
            .inner
            .create_datawriter::<ShapeType>(&topic.inner, qos.cloned_inner())
            .map_err(dds_err_to_py)?;
        Ok(PyShapeWriter { inner: Arc::new(w) })
    }

    /// Keyed conformance writer (`conformance::Reading`).
    fn create_keyed_writer(&self, topic: &PyKeyedTopic) -> PyResult<PyKeyedWriter> {
        let w = self
            .inner
            .create_datawriter::<KeyedReading>(&topic.inner, DataWriterQos::default())
            .map_err(dds_err_to_py)?;
        Ok(PyKeyedWriter { inner: Arc::new(w) })
    }

    /// Keyed conformance writer with explicit QoS.
    fn create_keyed_writer_with_qos(
        &self,
        topic: &PyKeyedTopic,
        qos: &crate::qos::PyDataWriterQos,
    ) -> PyResult<PyKeyedWriter> {
        let w = self
            .inner
            .create_datawriter::<KeyedReading>(&topic.inner, qos.cloned_inner())
            .map_err(dds_err_to_py)?;
        Ok(PyKeyedWriter { inner: Arc::new(w) })
    }
}

#[pyclass(name = "Subscriber", module = "zerodds_py")]
struct PySubscriber {
    inner: Arc<Subscriber>,
}

#[pymethods]
impl PySubscriber {
    fn create_bytes_reader(&self, topic: &PyBytesTopic) -> PyResult<PyBytesReader> {
        let r = self
            .inner
            .create_datareader::<RawBytes>(&topic.inner, DataReaderQos::default())
            .map_err(dds_err_to_py)?;
        Ok(PyBytesReader { inner: Arc::new(r) })
    }

    fn create_shape_reader(&self, topic: &PyShapeTopic) -> PyResult<PyShapeReader> {
        let r = self
            .inner
            .create_datareader::<ShapeType>(&topic.inner, DataReaderQos::default())
            .map_err(dds_err_to_py)?;
        Ok(PyShapeReader { inner: Arc::new(r) })
    }

    /// §6.2 — explicit QoS selection. Spec: DDS 1.4 §2.2.2.5.1.5.
    fn create_bytes_reader_with_qos(
        &self,
        topic: &PyBytesTopic,
        qos: &crate::qos::PyDataReaderQos,
    ) -> PyResult<PyBytesReader> {
        let r = self
            .inner
            .create_datareader::<RawBytes>(&topic.inner, qos.cloned_inner())
            .map_err(dds_err_to_py)?;
        Ok(PyBytesReader { inner: Arc::new(r) })
    }

    /// §6.2 — explicit QoS selection for ShapeType topics.
    fn create_shape_reader_with_qos(
        &self,
        topic: &PyShapeTopic,
        qos: &crate::qos::PyDataReaderQos,
    ) -> PyResult<PyShapeReader> {
        let r = self
            .inner
            .create_datareader::<ShapeType>(&topic.inner, qos.cloned_inner())
            .map_err(dds_err_to_py)?;
        Ok(PyShapeReader { inner: Arc::new(r) })
    }

    /// Spec §2.2.2.5.4 — creates a DataReader on a
    /// `BytesContentFilteredTopic`. The reader applies the topic's Python
    /// predicate to every sample in `take()`/`read()`; samples for which
    /// the predicate returns `False` are discarded.
    fn create_bytes_reader_cft(
        &self,
        cft: &PyBytesContentFilteredTopic,
    ) -> PyResult<PyBytesReader> {
        self.create_bytes_reader_cft_with_qos_impl(cft, DataReaderQos::default())
    }

    /// As `create_bytes_reader_cft`, with explicit DataReaderQos.
    fn create_bytes_reader_cft_with_qos(
        &self,
        cft: &PyBytesContentFilteredTopic,
        qos: &crate::qos::PyDataReaderQos,
    ) -> PyResult<PyBytesReader> {
        self.create_bytes_reader_cft_with_qos_impl(cft, qos.cloned_inner())
    }

    /// Keyed conformance reader (`conformance::Reading`).
    fn create_keyed_reader(&self, topic: &PyKeyedTopic) -> PyResult<PyKeyedReader> {
        let r = self
            .inner
            .create_datareader::<KeyedReading>(&topic.inner, DataReaderQos::default())
            .map_err(dds_err_to_py)?;
        Ok(PyKeyedReader { inner: Arc::new(r) })
    }

    /// Keyed conformance reader with explicit QoS.
    fn create_keyed_reader_with_qos(
        &self,
        topic: &PyKeyedTopic,
        qos: &crate::qos::PyDataReaderQos,
    ) -> PyResult<PyKeyedReader> {
        let r = self
            .inner
            .create_datareader::<KeyedReading>(&topic.inner, qos.cloned_inner())
            .map_err(dds_err_to_py)?;
        Ok(PyKeyedReader { inner: Arc::new(r) })
    }
}

impl PySubscriber {
    fn create_bytes_reader_cft_with_qos_impl(
        &self,
        cft: &PyBytesContentFilteredTopic,
        qos: DataReaderQos,
    ) -> PyResult<PyBytesReader> {
        // Clone the Python predicate into the filter closure. The closure
        // re-acquires the GIL on each sample (it runs on the take path,
        // where the GIL was released via `py.detach`).
        let predicate: Py<PyAny> = Python::attach(|py| cft.predicate.clone_ref(py));
        let r = self
            .inner
            .create_datareader::<RawBytes>(&cft.related, qos)
            .map_err(dds_err_to_py)?
            .with_filter(move |sample: &RawBytes| {
                Python::attach(|py| {
                    let arg = PyBytes::new(py, &sample.data);
                    match predicate.call1(py, (arg,)) {
                        Ok(res) => res.is_truthy(py).unwrap_or(true),
                        // A predicate that raises is treated as "pass"
                        // (fail-open) to avoid silently dropping data.
                        Err(_) => true,
                    }
                })
            });
        Ok(PyBytesReader { inner: Arc::new(r) })
    }
}

// =============================================================================
// Bytes-Writer / -Reader
// =============================================================================

#[pyclass(name = "BytesWriter", module = "zerodds_py")]
struct PyBytesWriter {
    inner: Arc<DataWriter<RawBytes>>,
}

#[pymethods]
impl PyBytesWriter {
    /// Writes bytes as a sample. The GIL is released during the send.
    fn write(&self, py: Python<'_>, data: &[u8]) -> PyResult<()> {
        let sample = RawBytes::new(data.to_vec());
        let writer = Arc::clone(&self.inner);
        py.detach(|| writer.write(&sample)).map_err(dds_err_to_py)
    }

    fn wait_for_matched_subscription(
        &self,
        py: Python<'_>,
        min_count: usize,
        timeout_secs: f64,
    ) -> PyResult<()> {
        let writer = Arc::clone(&self.inner);
        py.detach(|| {
            writer.wait_for_matched_subscription(min_count, Duration::from_secs_f64(timeout_secs))
        })
        .map_err(dds_err_to_py)
    }

    fn matched_subscription_count(&self) -> usize {
        self.inner.matched_subscription_count()
    }

    /// Spec §2.2.2.4.2.5 `register_instance`. `RawBytes` is an unkeyed
    /// type (`HAS_KEY=false`), so there is a single notional instance and
    /// this returns `HANDLE_NIL` (0). The method exists for spec-shaped
    /// API parity; keyed lifecycle is exercised via `ShapeWriter`.
    fn register_instance(&self, py: Python<'_>, data: &[u8]) -> PyResult<u64> {
        let sample = RawBytes::new(data.to_vec());
        let writer = Arc::clone(&self.inner);
        py.detach(|| writer.register_instance(&sample))
            .map(|h| h.as_raw())
            .map_err(dds_err_to_py)
    }

    /// Spec §2.2.2.4.2.14 `lookup_instance`. Returns `HANDLE_NIL` (0) for
    /// the unkeyed `RawBytes` type.
    fn lookup_instance(&self, py: Python<'_>, data: &[u8]) -> u64 {
        let sample = RawBytes::new(data.to_vec());
        let writer = Arc::clone(&self.inner);
        py.detach(|| writer.lookup_instance(&sample)).as_raw()
    }

    /// Spec §2.2.2.4.2.10 `dispose`. Sends a wire-lifecycle marker; for a
    /// keyed type readers then observe `NOT_ALIVE_DISPOSED`. `RawBytes` is
    /// unkeyed, so this is a no-op marker (no per-instance state). Use
    /// `ShapeWriter.dispose` for behaviorally observable keyed disposal.
    fn dispose(&self, py: Python<'_>, data: &[u8]) -> PyResult<()> {
        let sample = RawBytes::new(data.to_vec());
        let writer = Arc::clone(&self.inner);
        py.detach(|| {
            let handle = writer.lookup_instance(&sample);
            writer.dispose(&sample, handle)
        })
        .map_err(dds_err_to_py)
    }

    /// Spec §2.2.2.4.2.7 `unregister_instance`. No-op for unkeyed
    /// `RawBytes`; see `ShapeWriter.unregister_instance` for keyed
    /// behavior (NOT_ALIVE_NO_WRITERS).
    fn unregister_instance(&self, py: Python<'_>, data: &[u8]) -> PyResult<()> {
        let sample = RawBytes::new(data.to_vec());
        let writer = Arc::clone(&self.inner);
        py.detach(|| {
            let handle = writer.lookup_instance(&sample);
            writer.unregister_instance(&sample, handle)
        })
        .map_err(dds_err_to_py)
    }
    // NOTE: `RawBytes` is unkeyed → `lookup_instance` is `HANDLE_NIL` and
    // dispose/unregister are no-op markers (the unkeyed DCPS path accepts a
    // nil handle without error). Keyed lifecycle is exercised via
    // `ShapeWriter` (keyed by color).

    /// `get_publication_matched_status` — (current_count, current_count, last_handle=0).
    /// RC1: ZeroDDS-DCPS exposes only `matched_subscription_count`; total/change maintenance follows.
    fn publication_matched_status(&self) -> (i32, i32, i32, i32, u64) {
        let n = self.inner.matched_subscription_count() as i32;
        (n, 0, n, 0, 0)
    }
    /// `get_liveliness_lost_status` — (count, 0).
    fn liveliness_lost_status(&self) -> (i32, i32) {
        (self.inner.liveliness_lost_count() as i32, 0)
    }
    /// `get_offered_deadline_missed_status` — (count, 0).
    fn offered_deadline_missed_status(&self) -> (i32, i32) {
        (self.inner.offered_deadline_missed_count() as i32, 0)
    }

    /// §6.5 — attach a listener with all status kinds.
    /// `mask` = StatusMask (u32, DDS 1.4 §2.2.4.1). 0 = all bits active.
    fn set_listener(&self, listener: &crate::listener::PyDataWriterListener, mask: u32) {
        let bridge = crate::listener::PyDataWriterListenerBridge::from_pyclass(listener);
        self.inner.set_listener(Some(bridge), mask);
    }

    /// §6.5 — clear the listener slot (Spec §2.2.2.4.2.x).
    fn clear_listener(&self) {
        self.inner.set_listener(None, 0);
    }
}

#[pyclass(name = "BytesReader", module = "zerodds_py")]
struct PyBytesReader {
    inner: Arc<DataReader<RawBytes>>,
}

#[pymethods]
impl PyBytesReader {
    /// Takes all available samples as `list[bytes]`.
    fn take<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyList>> {
        let reader = Arc::clone(&self.inner);
        let samples = py.detach(|| reader.take()).map_err(dds_err_to_py)?;
        let list = PyList::empty(py);
        for s in samples {
            list.append(PyBytes::new(py, &s.data))?;
        }
        Ok(list)
    }

    /// `take_with_info` — Spec §2.2.2.5.3.5. Returns
    /// `list[(bytes, SampleInfo)]` so that per-sample lifecycle metadata
    /// (most importantly `instance_state` and `valid_data`) is observable
    /// from Python — required to read back keyed dispose/unregister
    /// markers (NOT_ALIVE_DISPOSED / NOT_ALIVE_NO_WRITERS).
    fn take_with_info<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyList>> {
        let reader = Arc::clone(&self.inner);
        let samples = py
            .detach(|| reader.take_with_info())
            .map_err(dds_err_to_py)?;
        bytes_samples_with_info(py, samples)
    }

    /// `read_with_info` — Spec §2.2.2.5.3.4. Non-consuming variant of
    /// `take_with_info`.
    fn read_with_info<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyList>> {
        let reader = Arc::clone(&self.inner);
        let samples = py
            .detach(|| reader.read_with_info())
            .map_err(dds_err_to_py)?;
        bytes_samples_with_info(py, samples)
    }

    fn wait_for_data(&self, py: Python<'_>, timeout_secs: f64) -> PyResult<()> {
        let reader = Arc::clone(&self.inner);
        py.detach(|| reader.wait_for_data(Duration::from_secs_f64(timeout_secs)))
            .map_err(dds_err_to_py)
    }

    fn wait_for_matched_publication(
        &self,
        py: Python<'_>,
        min_count: usize,
        timeout_secs: f64,
    ) -> PyResult<()> {
        let reader = Arc::clone(&self.inner);
        py.detach(|| {
            reader.wait_for_matched_publication(min_count, Duration::from_secs_f64(timeout_secs))
        })
        .map_err(dds_err_to_py)
    }

    fn matched_publication_count(&self) -> usize {
        self.inner.matched_publication_count()
    }

    /// `get_subscription_matched_status` — (current_count, 0, current, 0, last=0).
    fn subscription_matched_status(&self) -> (i32, i32, i32, i32, u64) {
        let n = self.inner.matched_publication_count() as i32;
        (n, 0, n, 0, 0)
    }
    /// `get_sample_lost_status` — (count, 0).
    fn sample_lost_status(&self) -> (i32, i32) {
        (self.inner.sample_lost_count() as i32, 0)
    }
    /// `get_requested_deadline_missed_status` — (count, 0).
    fn requested_deadline_missed_status(&self) -> (i32, i32) {
        (self.inner.requested_deadline_missed_count() as i32, 0)
    }
    /// `get_liveliness_changed_status` — Spec §2.2.4.2.14
    /// `LIVELINESS_CHANGED_STATUS`. Returns
    /// `(alive_now: bool, alive_count: int, not_alive_count: int)`.
    fn liveliness_changed_status(&self) -> (bool, u64, u64) {
        self.inner.liveliness_changed_status()
    }

    /// §6.5 — attach a listener with all status kinds.
    fn set_listener(&self, listener: &crate::listener::PyDataReaderListener, mask: u32) {
        let bridge = crate::listener::PyDataReaderListenerBridge::from_pyclass(listener);
        self.inner.set_listener(Some(bridge), mask);
    }

    /// §6.5 — clear the listener slot.
    fn clear_listener(&self) {
        self.inner.set_listener(None, 0);
    }
}

// =============================================================================
// Shape writer / reader (for ShapesDemo interop)
// =============================================================================

/// Python repr of a ShapeType instance. A plain dict would also be
/// possible, but a dedicated class makes `isinstance` checks and
/// getter/setter cleaner.
#[pyclass(name = "Shape", module = "zerodds_py", from_py_object)]
#[derive(Clone)]
struct PyShape {
    /// Color / instance key.
    #[pyo3(get, set)]
    color: String,
    /// X coordinate.
    #[pyo3(get, set)]
    x: i32,
    /// Y coordinate.
    #[pyo3(get, set)]
    y: i32,
    /// Size in pixels.
    #[pyo3(get, set)]
    shapesize: i32,
}

#[pymethods]
impl PyShape {
    #[new]
    #[pyo3(signature = (color, x, y, shapesize=30))]
    fn new(color: String, x: i32, y: i32, shapesize: i32) -> Self {
        Self {
            color,
            x,
            y,
            shapesize,
        }
    }

    fn __repr__(&self) -> String {
        format!(
            "Shape(color={:?}, x={}, y={}, shapesize={})",
            self.color, self.x, self.y, self.shapesize
        )
    }
}

impl From<&PyShape> for ShapeType {
    fn from(s: &PyShape) -> Self {
        ShapeType::new(&*s.color, s.x, s.y, s.shapesize)
    }
}

impl From<ShapeType> for PyShape {
    fn from(s: ShapeType) -> Self {
        Self {
            color: s.color,
            x: s.x,
            y: s.y,
            shapesize: s.shapesize,
        }
    }
}

#[pyclass(name = "ShapeWriter", module = "zerodds_py")]
struct PyShapeWriter {
    inner: Arc<DataWriter<ShapeType>>,
}

#[pymethods]
impl PyShapeWriter {
    fn write(&self, py: Python<'_>, shape: &PyShape) -> PyResult<()> {
        let sample: ShapeType = shape.into();
        let writer = Arc::clone(&self.inner);
        py.detach(|| writer.write(&sample)).map_err(dds_err_to_py)
    }

    /// Spec §2.2.2.4.2.5 `register_instance`. Returns an
    /// instance handle that can later be used for dispose/unregister.
    fn register_instance(&self, py: Python<'_>, shape: &PyShape) -> PyResult<u64> {
        let sample: ShapeType = shape.into();
        let writer = Arc::clone(&self.inner);
        py.detach(|| writer.register_instance(&sample))
            .map(|h| h.as_raw())
            .map_err(dds_err_to_py)
    }

    /// Spec §2.2.2.4.2.10 `dispose`. Sends a wire-lifecycle
    /// marker — readers see the instance as `NotAliveDisposed`.
    ///
    /// Spec §2.2.2.4.2.4: `write` implicitly registers the instance, but
    /// the DCPS live `write` path is fire-and-forget and skips the
    /// instance tracker. We therefore register the instance here if it is
    /// not yet known, so `dispose` always resolves a valid handle.
    fn dispose(&self, py: Python<'_>, shape: &PyShape) -> PyResult<()> {
        let sample: ShapeType = shape.into();
        let writer = Arc::clone(&self.inner);
        py.detach(|| {
            let mut handle = writer.lookup_instance(&sample);
            if handle.is_nil() {
                handle = writer.register_instance(&sample)?;
            }
            writer.dispose(&sample, handle)
        })
        .map_err(dds_err_to_py)
    }

    /// Spec §2.2.2.4.2.7 `unregister_instance`. With
    /// WriterDataLifecycle.autodispose=true (default), implicitly also
    /// disposes.
    fn unregister_instance(&self, py: Python<'_>, shape: &PyShape) -> PyResult<()> {
        let sample: ShapeType = shape.into();
        let writer = Arc::clone(&self.inner);
        py.detach(|| {
            let mut handle = writer.lookup_instance(&sample);
            if handle.is_nil() {
                handle = writer.register_instance(&sample)?;
            }
            writer.unregister_instance(&sample, handle)
        })
        .map_err(dds_err_to_py)
    }

    fn wait_for_matched_subscription(
        &self,
        py: Python<'_>,
        min_count: usize,
        timeout_secs: f64,
    ) -> PyResult<()> {
        let writer = Arc::clone(&self.inner);
        py.detach(|| {
            writer.wait_for_matched_subscription(min_count, Duration::from_secs_f64(timeout_secs))
        })
        .map_err(dds_err_to_py)
    }

    /// §6.5 — attach a listener with all status kinds.
    fn set_listener(&self, listener: &crate::listener::PyDataWriterListener, mask: u32) {
        let bridge = crate::listener::PyDataWriterListenerBridge::from_pyclass(listener);
        self.inner.set_listener(Some(bridge), mask);
    }

    fn clear_listener(&self) {
        self.inner.set_listener(None, 0);
    }
}

#[pyclass(name = "ShapeReader", module = "zerodds_py")]
struct PyShapeReader {
    inner: Arc<DataReader<ShapeType>>,
}

#[pymethods]
impl PyShapeReader {
    fn take<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyList>> {
        let reader = Arc::clone(&self.inner);
        let samples = py.detach(|| reader.take()).map_err(dds_err_to_py)?;
        let list = PyList::empty(py);
        for s in samples {
            list.append(Py::new(py, PyShape::from(s))?)?;
        }
        Ok(list)
    }

    /// `take_with_info` — Spec §2.2.2.5.3.5. Returns
    /// `list[(Shape, SampleInfo)]`. For the keyed `ShapeType`,
    /// `info.instance_state` reflects the per-color instance lifecycle —
    /// e.g. `NotAliveDisposed` after `ShapeWriter.dispose`, with
    /// `info.valid_data == false` for the pure marker.
    fn take_with_info<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyList>> {
        let reader = Arc::clone(&self.inner);
        let samples = py
            .detach(|| reader.take_with_info())
            .map_err(dds_err_to_py)?;
        shape_samples_with_info(py, samples)
    }

    /// `read_with_info` — Spec §2.2.2.5.3.4. Non-consuming variant.
    fn read_with_info<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyList>> {
        let reader = Arc::clone(&self.inner);
        let samples = py
            .detach(|| reader.read_with_info())
            .map_err(dds_err_to_py)?;
        shape_samples_with_info(py, samples)
    }

    fn wait_for_data(&self, py: Python<'_>, timeout_secs: f64) -> PyResult<()> {
        let reader = Arc::clone(&self.inner);
        py.detach(|| reader.wait_for_data(Duration::from_secs_f64(timeout_secs)))
            .map_err(dds_err_to_py)
    }

    fn wait_for_matched_publication(
        &self,
        py: Python<'_>,
        min_count: usize,
        timeout_secs: f64,
    ) -> PyResult<()> {
        let reader = Arc::clone(&self.inner);
        py.detach(|| {
            reader.wait_for_matched_publication(min_count, Duration::from_secs_f64(timeout_secs))
        })
        .map_err(dds_err_to_py)
    }

    /// `get_liveliness_changed_status` — Spec §2.2.4.2.14.
    /// `(alive_now: bool, alive_count: int, not_alive_count: int)`.
    fn liveliness_changed_status(&self) -> (bool, u64, u64) {
        self.inner.liveliness_changed_status()
    }

    /// §6.5 — attach a listener with all status kinds.
    fn set_listener(&self, listener: &crate::listener::PyDataReaderListener, mask: u32) {
        let bridge = crate::listener::PyDataReaderListenerBridge::from_pyclass(listener);
        self.inner.set_listener(Some(bridge), mask);
    }

    fn clear_listener(&self) {
        self.inner.set_listener(None, 0);
    }
}

// =============================================================================
// KeyedReading — a binding-local keyed DdsType for behavioral keyed-lifecycle
// =============================================================================
//
// Mirrors the conformance IDL `Reading { @key long id; long seq; double value; }`.
// Provided so the Python binding can behaviorally demonstrate keyed lifecycle
// (dispose → NOT_ALIVE_DISPOSED, unregister → NOT_ALIVE_NO_WRITERS) with a wire
// codec whose `decode` is *key-only tolerant* — i.e. it reconstructs the value
// from the BE key-holder bytes the runtime stores for a lifecycle marker
// (Spec §2.2.2.5.1.13). The `ShapeType` codec is not key-tolerant, so markers
// for that type cannot be materialized on the reader.

/// Keyed conformance type: `Reading { @key long id; long seq; double value }`.
/// Wire form (self-consistent, big-endian): `u32 id | u32 seq | f64 value`.
#[pyclass(name = "KeyedReading", module = "zerodds_py", from_py_object)]
#[derive(Clone)]
struct PyKeyedReading {
    /// `@key long id` — the instance key.
    #[pyo3(get, set)]
    id: i32,
    /// `long seq`.
    #[pyo3(get, set)]
    seq: i32,
    /// `double value`.
    #[pyo3(get, set)]
    value: f64,
}

#[pymethods]
impl PyKeyedReading {
    #[new]
    #[pyo3(signature = (id, seq=0, value=0.0))]
    fn new(id: i32, seq: i32, value: f64) -> Self {
        Self { id, seq, value }
    }
    fn __repr__(&self) -> String {
        format!(
            "KeyedReading(id={}, seq={}, value={})",
            self.id, self.seq, self.value
        )
    }
}

/// Rust DdsType backing `PyKeyedReading`.
#[derive(Clone)]
struct KeyedReading {
    id: i32,
    seq: i32,
    value: f64,
}

impl zerodds_dcps::DdsType for KeyedReading {
    const TYPE_NAME: &'static str = "conformance::Reading";
    const HAS_KEY: bool = true;
    // `@key long id` → 4-byte BE key holder → zero-pad KeyHash path.
    const KEY_HOLDER_MAX_SIZE: Option<usize> = Some(4);

    fn encode(
        &self,
        out: &mut Vec<u8>,
    ) -> core::result::Result<(), zerodds_dcps::dds_type::EncodeError> {
        out.extend_from_slice(&(self.id as u32).to_be_bytes());
        out.extend_from_slice(&(self.seq as u32).to_be_bytes());
        out.extend_from_slice(&self.value.to_bits().to_be_bytes());
        Ok(())
    }

    fn decode(bytes: &[u8]) -> core::result::Result<Self, zerodds_dcps::dds_type::DecodeError> {
        // Key-only tolerant (Spec §2.2.2.5.1.13): a lifecycle marker holder
        // carries just the 4-byte BE `id`; full samples carry all 16 bytes.
        if bytes.len() < 4 {
            return Err(zerodds_dcps::dds_type::DecodeError::Invalid {
                what: "KeyedReading: truncated key",
            });
        }
        let id = u32::from_be_bytes([bytes[0], bytes[1], bytes[2], bytes[3]]) as i32;
        let seq = if bytes.len() >= 8 {
            u32::from_be_bytes([bytes[4], bytes[5], bytes[6], bytes[7]]) as i32
        } else {
            0
        };
        let value = if bytes.len() >= 16 {
            f64::from_bits(u64::from_be_bytes([
                bytes[8], bytes[9], bytes[10], bytes[11], bytes[12], bytes[13], bytes[14],
                bytes[15],
            ]))
        } else {
            0.0
        };
        Ok(Self { id, seq, value })
    }

    fn encode_key_holder_be(&self, holder: &mut zerodds_dcps::dds_type::PlainCdr2BeKeyHolder) {
        holder.write_u32(self.id as u32);
    }
}

impl From<&PyKeyedReading> for KeyedReading {
    fn from(r: &PyKeyedReading) -> Self {
        Self {
            id: r.id,
            seq: r.seq,
            value: r.value,
        }
    }
}

impl From<KeyedReading> for PyKeyedReading {
    fn from(r: KeyedReading) -> Self {
        Self {
            id: r.id,
            seq: r.seq,
            value: r.value,
        }
    }
}

#[pyclass(name = "KeyedTopic", module = "zerodds_py")]
struct PyKeyedTopic {
    inner: Topic<KeyedReading>,
}

#[pymethods]
impl PyKeyedTopic {
    #[getter]
    fn name(&self) -> String {
        self.inner.name().to_string()
    }
    #[getter]
    fn type_name(&self) -> &'static str {
        <KeyedReading as zerodds_dcps::DdsType>::TYPE_NAME
    }
}

#[pyclass(name = "KeyedWriter", module = "zerodds_py")]
struct PyKeyedWriter {
    inner: Arc<DataWriter<KeyedReading>>,
}

#[pymethods]
impl PyKeyedWriter {
    fn write(&self, py: Python<'_>, sample: &PyKeyedReading) -> PyResult<()> {
        let s: KeyedReading = sample.into();
        let writer = Arc::clone(&self.inner);
        py.detach(|| writer.write(&s)).map_err(dds_err_to_py)
    }

    /// Spec §2.2.2.4.2.5 `register_instance` — returns the per-key handle.
    fn register_instance(&self, py: Python<'_>, sample: &PyKeyedReading) -> PyResult<u64> {
        let s: KeyedReading = sample.into();
        let writer = Arc::clone(&self.inner);
        py.detach(|| writer.register_instance(&s))
            .map(|h| h.as_raw())
            .map_err(dds_err_to_py)
    }

    /// Spec §2.2.2.4.2.14 `lookup_instance`.
    fn lookup_instance(&self, py: Python<'_>, sample: &PyKeyedReading) -> u64 {
        let s: KeyedReading = sample.into();
        let writer = Arc::clone(&self.inner);
        py.detach(|| writer.lookup_instance(&s)).as_raw()
    }

    /// Spec §2.2.2.4.2.10 `dispose` → readers observe `NotAliveDisposed`.
    fn dispose(&self, py: Python<'_>, sample: &PyKeyedReading) -> PyResult<()> {
        let s: KeyedReading = sample.into();
        let writer = Arc::clone(&self.inner);
        py.detach(|| {
            let mut handle = writer.lookup_instance(&s);
            if handle.is_nil() {
                handle = writer.register_instance(&s)?;
            }
            writer.dispose(&s, handle)
        })
        .map_err(dds_err_to_py)
    }

    /// Spec §2.2.2.4.2.7 `unregister_instance`. With the default
    /// WriterDataLifecycle.autodispose=true, also disposes.
    fn unregister_instance(&self, py: Python<'_>, sample: &PyKeyedReading) -> PyResult<()> {
        let s: KeyedReading = sample.into();
        let writer = Arc::clone(&self.inner);
        py.detach(|| {
            let mut handle = writer.lookup_instance(&s);
            if handle.is_nil() {
                handle = writer.register_instance(&s)?;
            }
            writer.unregister_instance(&s, handle)
        })
        .map_err(dds_err_to_py)
    }

    fn wait_for_matched_subscription(
        &self,
        py: Python<'_>,
        min_count: usize,
        timeout_secs: f64,
    ) -> PyResult<()> {
        let writer = Arc::clone(&self.inner);
        py.detach(|| {
            writer.wait_for_matched_subscription(min_count, Duration::from_secs_f64(timeout_secs))
        })
        .map_err(dds_err_to_py)
    }
}

#[pyclass(name = "KeyedReader", module = "zerodds_py")]
struct PyKeyedReader {
    inner: Arc<DataReader<KeyedReading>>,
}

#[pymethods]
impl PyKeyedReader {
    /// `take_with_info` — returns `list[(KeyedReading, SampleInfo)]`.
    /// `info.instance_state` reflects the per-key lifecycle:
    /// `Alive` / `NotAliveDisposed` / `NotAliveNoWriters`.
    fn take_with_info<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyList>> {
        let reader = Arc::clone(&self.inner);
        let samples = py
            .detach(|| reader.take_with_info())
            .map_err(dds_err_to_py)?;
        let list = PyList::empty(py);
        for s in samples {
            let info = Py::new(py, PySampleInfo::from_info(&s.info))?;
            let data = Py::new(py, PyKeyedReading::from(s.data))?;
            list.append((data, info))?;
        }
        Ok(list)
    }

    fn wait_for_data(&self, py: Python<'_>, timeout_secs: f64) -> PyResult<()> {
        let reader = Arc::clone(&self.inner);
        py.detach(|| reader.wait_for_data(Duration::from_secs_f64(timeout_secs)))
            .map_err(dds_err_to_py)
    }

    fn wait_for_matched_publication(
        &self,
        py: Python<'_>,
        min_count: usize,
        timeout_secs: f64,
    ) -> PyResult<()> {
        let reader = Arc::clone(&self.inner);
        py.detach(|| {
            reader.wait_for_matched_publication(min_count, Duration::from_secs_f64(timeout_secs))
        })
        .map_err(dds_err_to_py)
    }

    /// `get_liveliness_changed_status` — Spec §2.2.4.2.14.
    fn liveliness_changed_status(&self) -> (bool, u64, u64) {
        self.inner.liveliness_changed_status()
    }
}

// =============================================================================
// Module registration
// =============================================================================

// =============================================================================
// Conditions + WaitSet (Spec §2.2.2.1.7)
// =============================================================================

/// Python wrapper around `GuardCondition`.
#[pyclass(name = "GuardCondition", module = "zerodds_py")]
struct PyGuardCondition {
    inner: Arc<GuardCondition>,
}

#[pymethods]
impl PyGuardCondition {
    /// Creates a GuardCondition with an initial trigger=false.
    #[new]
    fn new() -> Self {
        Self {
            inner: GuardCondition::new(),
        }
    }
    /// Sets the trigger value.
    fn set_trigger_value(&self, value: bool) {
        self.inner.set_trigger_value(value);
    }
    /// Reads the current trigger value.
    fn get_trigger_value(&self) -> bool {
        use zerodds_dcps::condition::Condition;
        self.inner.get_trigger_value()
    }
}

/// Python wrapper around `WaitSet`.
#[pyclass(name = "WaitSet", module = "zerodds_py")]
struct PyWaitSet {
    inner: WaitSet,
    attached: std::sync::Mutex<Vec<Arc<GuardCondition>>>,
}

#[pymethods]
impl PyWaitSet {
    #[new]
    fn new() -> Self {
        Self {
            inner: WaitSet::new(),
            attached: std::sync::Mutex::new(Vec::new()),
        }
    }
    /// Attach a GuardCondition.
    fn attach_guard_condition(&self, gc: &PyGuardCondition) -> PyResult<()> {
        let cond: Arc<dyn zerodds_dcps::condition::Condition> =
            Arc::clone(&gc.inner) as Arc<dyn zerodds_dcps::condition::Condition>;
        self.inner.attach_condition(cond).map_err(dds_err_to_py)?;
        if let Ok(mut g) = self.attached.lock() {
            g.push(Arc::clone(&gc.inner));
        }
        Ok(())
    }

    /// §6.6 — attach a ReadCondition.
    fn attach_read_condition(&self, rc: &crate::conditions::PyReadCondition) -> PyResult<()> {
        let cond: Arc<dyn zerodds_dcps::condition::Condition> =
            Arc::clone(&rc.inner) as Arc<dyn zerodds_dcps::condition::Condition>;
        self.inner.attach_condition(cond).map_err(dds_err_to_py)
    }

    /// §6.6 — attach a QueryCondition.
    fn attach_query_condition(&self, qc: &crate::conditions::PyQueryCondition) -> PyResult<()> {
        let cond: Arc<dyn zerodds_dcps::condition::Condition> =
            Arc::clone(&qc.inner) as Arc<dyn zerodds_dcps::condition::Condition>;
        self.inner.attach_condition(cond).map_err(dds_err_to_py)
    }

    /// Wait — returns the number of triggered conditions.
    fn wait(&self, py: Python<'_>, timeout_secs: f64) -> PyResult<usize> {
        // WaitSet is not Clone — use inner directly.
        py.detach(|| self.inner.wait(Duration::from_secs_f64(timeout_secs)))
            .map_err(dds_err_to_py)
            .map(|v| v.len())
    }
}

/// PyO3 module `zerodds._core`. The outer Python package `zerodds`
/// re-exports from it (see `python/zerodds/__init__.py`).
#[pymodule]
fn _core(m: &Bound<'_, PyModule>) -> PyResult<()> {
    m.add_class::<PyFactory>()?;
    m.add_class::<PyParticipant>()?;
    m.add_class::<PyBytesTopic>()?;
    m.add_class::<PyShapeTopic>()?;
    m.add_class::<PyPublisher>()?;
    m.add_class::<PySubscriber>()?;
    m.add_class::<PyBytesWriter>()?;
    m.add_class::<PyBytesReader>()?;
    m.add_class::<PyShape>()?;
    m.add_class::<PyShapeWriter>()?;
    m.add_class::<PyShapeReader>()?;
    m.add_class::<PySampleInfo>()?;
    m.add_class::<PyBytesContentFilteredTopic>()?;
    m.add_class::<PyKeyedReading>()?;
    m.add_class::<PyKeyedTopic>()?;
    m.add_class::<PyKeyedWriter>()?;
    m.add_class::<PyKeyedReader>()?;
    m.add_class::<PyGuardCondition>()?;
    m.add_class::<PyWaitSet>()?;
    m.add_class::<crate::qos::PyDataWriterQos>()?;
    m.add_class::<crate::qos::PyDataReaderQos>()?;
    m.add_class::<crate::listener::PyDataWriterListener>()?;
    m.add_class::<crate::listener::PyDataReaderListener>()?;
    m.add_class::<crate::conditions::PyReadCondition>()?;
    m.add_class::<crate::conditions::PyQueryCondition>()?;
    // §6.6 — SampleState/ViewState/InstanceState bitmask constants
    // (DDS 1.4 §2.2.2.5.1.4). Exposed as module attributes so that
    // users can use `zerodds._core.SAMPLE_STATE_ANY` etc.
    m.add(
        "SAMPLE_STATE_NOT_READ",
        zerodds_dcps::sample_info::sample_state_mask::NOT_READ,
    )?;
    m.add(
        "SAMPLE_STATE_READ",
        zerodds_dcps::sample_info::sample_state_mask::READ,
    )?;
    m.add(
        "SAMPLE_STATE_ANY",
        zerodds_dcps::sample_info::sample_state_mask::ANY,
    )?;
    m.add(
        "VIEW_STATE_NEW",
        zerodds_dcps::sample_info::view_state_mask::NEW,
    )?;
    m.add(
        "VIEW_STATE_NOT_NEW",
        zerodds_dcps::sample_info::view_state_mask::NOT_NEW,
    )?;
    m.add(
        "VIEW_STATE_ANY",
        zerodds_dcps::sample_info::view_state_mask::ANY,
    )?;
    m.add(
        "INSTANCE_STATE_ALIVE",
        zerodds_dcps::sample_info::instance_state_mask::ALIVE,
    )?;
    m.add(
        "INSTANCE_STATE_NOT_ALIVE_DISPOSED",
        zerodds_dcps::sample_info::instance_state_mask::NOT_ALIVE_DISPOSED,
    )?;
    m.add(
        "INSTANCE_STATE_NOT_ALIVE_NO_WRITERS",
        zerodds_dcps::sample_info::instance_state_mask::NOT_ALIVE_NO_WRITERS,
    )?;
    m.add(
        "INSTANCE_STATE_NOT_ALIVE",
        zerodds_dcps::sample_info::instance_state_mask::NOT_ALIVE,
    )?;
    m.add(
        "INSTANCE_STATE_ANY",
        zerodds_dcps::sample_info::instance_state_mask::ANY,
    )?;
    m.add("__version__", env!("CARGO_PKG_VERSION"))?;
    Ok(())
}