waterui-ffi 0.3.0

FFI bindings for the WaterUI cross-platform UI framework
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
use crate::WuiStr;
use crate::reactive::{WuiBinding, WuiComputed};
use crate::{IntoFFI, IntoRust, WuiArray};
#[cfg(target_os = "android")]
use alloc::boxed::Box;
use alloc::rc::Rc;
use alloc::string::String;
use alloc::vec::Vec;
use core::num::NonZeroU64;
use nami::SignalExt;
use nami::signal::IntoComputed;
use waterui::{Binding, Str};
use waterui_video::{
    AudioTrackInfo, ContentMode, Delivery, LiveWindow, PlaybackMetrics, PlaybackOutputPath,
    PlaybackPhase, PlaybackPowerPolicy, PlayerController, RepeatMode, SubtitleTrackInfo,
    SubtitleTrackOrigin, TrackCatalog, VideoProjection, VideoTrackInfo, Volume,
    video::{
        AudioTrackSelection, BoundVideoEventHandler, Event as VideoEvent, NativeVideoConfig,
        NativeVideoPlayerConfig, PlaybackConfiguration, PlaybackPolicy, SubtitleSelection,
        VideoTrackSelection,
    },
};
#[cfg(all(target_os = "android", feature = "gpu"))]
use waterui_video_gpu::{AndroidVideoSurfaceBridge, AndroidVideoSurfaceHost};

/// JNI projection of the self-drawn player's Android secure-surface wrapper.
#[cfg(all(target_os = "android", feature = "gpu"))]
#[repr(C)]
#[derive(Debug)]
pub struct WuiAndroidVideoSurfaceHost {
    /// Content rendered above the platform secure video surface.
    pub content: *mut crate::WuiAnyView,
    /// Bridge that owns the Android video surface lifecycle.
    pub bridge: *mut AndroidVideoSurfaceBridge,
}

#[cfg(all(target_os = "android", feature = "gpu"))]
impl IntoFFI for AndroidVideoSurfaceHost {
    type FFI = WuiAndroidVideoSurfaceHost;

    fn into_ffi(self) -> Self::FFI {
        let (content, bridge) = self.into_parts();
        Self::FFI {
            content: content.into_ffi(),
            bridge: Box::into_raw(Box::new(bridge)),
        }
    }
}

#[cfg(all(target_os = "android", feature = "gpu"))]
ffi_view!(
    AndroidVideoSurfaceHost,
    WuiAndroidVideoSurfaceHost,
    android_video_surface_host,
    all()
);

/// FFI representation of how the picture fills the bounds it is given.
#[repr(C)]
#[derive(Debug, Clone, Copy)]
pub enum WuiContentMode {
    /// Scale to fit entirely within the bounds, preserving aspect ratio.
    Fit = 0,
    /// Scale to fill the bounds, preserving aspect ratio and cropping overflow.
    Fill = 1,
    /// Stretch to exactly fill the bounds, ignoring aspect ratio.
    Stretch = 2,
}

/// Native projection support discriminator.
#[repr(C)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WuiVideoProjection {
    /// A conventional flat (non-projected) video frame.
    Rectilinear = 0,
    /// A 360-degree equirectangular projection.
    Equirectangular = 1,
}

impl IntoFFI for VideoProjection {
    type FFI = WuiVideoProjection;

    fn into_ffi(self) -> Self::FFI {
        match self {
            Self::Rectilinear => WuiVideoProjection::Rectilinear,
            Self::Equirectangular(_) => WuiVideoProjection::Equirectangular,
        }
    }
}

impl IntoFFI for ContentMode {
    type FFI = WuiContentMode;

    fn into_ffi(self) -> Self::FFI {
        match self {
            Self::Fit => WuiContentMode::Fit,
            Self::Fill => WuiContentMode::Fill,
            Self::Stretch => WuiContentMode::Stretch,
        }
    }
}

/// FFI representation of a media delivery strategy.
#[repr(C)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WuiVideoDelivery {
    /// A progressively downloaded single media file.
    Progressive = 0,
    /// HTTP Live Streaming (HLS).
    Hls = 1,
    /// MPEG-DASH adaptive streaming.
    Dash = 2,
}

impl IntoFFI for Delivery {
    type FFI = WuiVideoDelivery;

    fn into_ffi(self) -> Self::FFI {
        match self {
            Self::Progressive => WuiVideoDelivery::Progressive,
            Self::Hls => WuiVideoDelivery::Hls,
            Self::Dash => WuiVideoDelivery::Dash,
        }
    }
}

impl IntoRust for WuiVideoDelivery {
    type Rust = Delivery;

    unsafe fn into_rust(self) -> Self::Rust {
        match self {
            Self::Progressive => Delivery::Progressive,
            Self::Hls => Delivery::Hls,
            Self::Dash => Delivery::Dash,
        }
    }
}

crate::ffi_computed!(Delivery, WuiVideoDelivery, video_delivery);

/// FFI representation of video events.
#[repr(C)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WuiVideoEventType {
    /// Playback is ready to begin (enough data buffered to play).
    ReadyToPlay = 0,
    /// Playback reached the end of the media.
    Ended = 1,
    /// A fatal playback error occurred; see `WuiVideoEvent::error_message`.
    Error = 2,
    /// Playback stalled and is buffering.
    Buffering = 3,
    /// A prior buffering stall has ended.
    BufferingEnded = 4,
    /// The amount of buffered-ahead media changed.
    BufferLevel = 5,
    /// Updated playback quality-of-service metrics are available.
    PlaybackMetrics = 6,
    /// Picture-in-Picture presentation was entered or exited.
    PictureInPictureChanged = 7,
    /// The user requested skipping to the next playlist item.
    NextRequested = 8,
    /// The user requested skipping to the previous playlist item.
    PreviousRequested = 9,
    /// The playing/paused state changed.
    PlaybackStateChanged = 10,
    /// External playback (e.g., `AirPlay`, cast) was engaged or disengaged.
    ExternalPlaybackChanged = 11,
    /// The active playback output architecture changed.
    PlaybackOutputPathChanged = 12,
}

/// Native representation of the active playback output architecture.
#[repr(C)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WuiVideoPlaybackOutputPath {
    /// The platform's default managed decode/render pipeline.
    PlatformManaged = 0,
    /// Decoded PCM audio routed through the GPU-adjacent pipeline.
    DecodedPcmGpu = 1,
    /// Compressed audio handed off to a hardware offload path.
    AudioOffload = 2,
    /// Audio and video routed through hardware tunneling.
    AudioVideoTunneling = 3,
}

impl From<WuiVideoPlaybackOutputPath> for PlaybackOutputPath {
    fn from(path: WuiVideoPlaybackOutputPath) -> Self {
        match path {
            WuiVideoPlaybackOutputPath::PlatformManaged => Self::PlatformManaged,
            WuiVideoPlaybackOutputPath::DecodedPcmGpu => Self::DecodedPcmGpu,
            WuiVideoPlaybackOutputPath::AudioOffload => Self::AudioOffload,
            WuiVideoPlaybackOutputPath::AudioVideoTunneling => Self::AudioVideoTunneling,
        }
    }
}

/// FFI representation of a video event.
#[repr(C)]
#[derive(Debug, Clone, Copy)]
pub struct WuiVideoEvent {
    /// Which kind of event this is; determines which other fields are meaningful.
    pub event_type: WuiVideoEventType,
    /// Rust-owned error string. Non-null exactly when `event_type` is `Error`.
    pub error_message: *mut WuiStr,
    /// Playback position in milliseconds, read when `event_type` is `PlaybackMetrics`.
    pub position_ms: u64,
    /// Buffered-ahead duration in milliseconds.
    pub buffered_ms: u32,
    /// Time from load start to first playable frame, in milliseconds.
    pub startup_time_ms: u64,
    /// Whether `av_drift_ms` carries a measured audio/video drift.
    pub av_drift_available: bool,
    /// Observed audio/video drift in milliseconds, read only when
    /// `av_drift_available` is `true`.
    pub av_drift_ms: f32,
    /// Total number of video frames dropped so far.
    pub dropped_video_frames: u64,
    /// Total number of rebuffering stalls observed so far.
    pub rebuffer_count: u64,
    /// Cumulative time spent rebuffering, in milliseconds.
    pub rebuffer_duration_ms: u64,
    /// Observed network throughput in bits per second; `0` means unknown.
    pub observed_network_throughput_bps: u64,
    /// Whether Picture-in-Picture is currently active, read when `event_type`
    /// is `PictureInPictureChanged`.
    pub picture_in_picture_active: bool,
    /// Whether external playback is currently active, read when `event_type`
    /// is `ExternalPlaybackChanged`.
    pub external_playback_active: bool,
    /// Whether playback is currently playing, read when `event_type` is
    /// `PlaybackStateChanged`.
    pub playback_active: bool,
    /// The active playback output path, read when `event_type` is
    /// `PlaybackOutputPathChanged`.
    pub playback_output_path: WuiVideoPlaybackOutputPath,
}

fn into_video_event(ffi_event: WuiVideoEvent) -> VideoEvent {
    match ffi_event.event_type {
        WuiVideoEventType::ReadyToPlay => VideoEvent::ReadyToPlay,
        WuiVideoEventType::Ended => VideoEvent::Ended,
        WuiVideoEventType::Buffering => VideoEvent::Buffering,
        WuiVideoEventType::BufferingEnded => VideoEvent::BufferingEnded,
        WuiVideoEventType::PictureInPictureChanged => VideoEvent::PictureInPictureChanged {
            active: ffi_event.picture_in_picture_active,
        },
        WuiVideoEventType::ExternalPlaybackChanged => VideoEvent::ExternalPlaybackChanged {
            active: ffi_event.external_playback_active,
        },
        WuiVideoEventType::NextRequested => VideoEvent::NextRequested,
        WuiVideoEventType::PreviousRequested => VideoEvent::PreviousRequested,
        WuiVideoEventType::PlaybackStateChanged => VideoEvent::PlaybackStateChanged {
            playing: ffi_event.playback_active,
        },
        WuiVideoEventType::PlaybackOutputPathChanged => VideoEvent::PlaybackOutputPathChanged {
            path: ffi_event.playback_output_path.into(),
        },
        WuiVideoEventType::BufferLevel => VideoEvent::BufferLevel {
            buffered_ms: ffi_event.buffered_ms,
        },
        WuiVideoEventType::PlaybackMetrics => {
            let mut metrics = PlaybackMetrics::new(
                core::time::Duration::from_millis(ffi_event.position_ms),
                core::time::Duration::from_millis(u64::from(ffi_event.buffered_ms)),
                core::time::Duration::from_millis(ffi_event.startup_time_ms),
            )
            .dropped_video_frames(ffi_event.dropped_video_frames)
            .rebuffering(
                ffi_event.rebuffer_count,
                core::time::Duration::from_millis(ffi_event.rebuffer_duration_ms),
            );
            if ffi_event.av_drift_available {
                metrics = metrics.av_drift_ms(ffi_event.av_drift_ms);
            }
            if let Some(bits_per_second) =
                NonZeroU64::new(ffi_event.observed_network_throughput_bps)
            {
                metrics = metrics.observed_network_throughput(bits_per_second);
            }
            VideoEvent::PlaybackMetrics { metrics }
        }
        WuiVideoEventType::Error => {
            // SAFETY: an `Error` event carries an owning message pointer the backend
            // allocated for it, reclaimed once by this arm.
            let error_message = unsafe { Box::from_raw(ffi_event.error_message) };
            // SAFETY: that box holds an owning `WuiStr`, converted once here.
            let error_message: waterui::Str = unsafe { (*error_message).into_rust() };
            VideoEvent::Error {
                message: String::from(error_message),
            }
        }
    }
}

/// Tagged subtitle selection used by the native player.
#[repr(C)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WuiSubtitleSelectionType {
    /// Let the player choose a subtitle track automatically.
    Auto = 0,
    /// Disable subtitles.
    Off = 1,
    /// Select a specific subtitle track by index.
    Track = 2,
}

/// FFI representation of [`SubtitleSelection`].
#[repr(C)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct WuiSubtitleSelection {
    /// Which selection mode is active.
    pub selection_type: WuiSubtitleSelectionType,
    /// Track index. Read only when `selection_type` is `Track`.
    pub track_index: usize,
}

impl IntoFFI for SubtitleSelection {
    type FFI = WuiSubtitleSelection;

    fn into_ffi(self) -> Self::FFI {
        match self {
            Self::Auto => WuiSubtitleSelection {
                selection_type: WuiSubtitleSelectionType::Auto,
                track_index: 0,
            },
            Self::Off => WuiSubtitleSelection {
                selection_type: WuiSubtitleSelectionType::Off,
                track_index: 0,
            },
            Self::Track(track_index) => WuiSubtitleSelection {
                selection_type: WuiSubtitleSelectionType::Track,
                track_index,
            },
        }
    }
}

impl IntoRust for WuiSubtitleSelection {
    type Rust = SubtitleSelection;

    unsafe fn into_rust(self) -> Self::Rust {
        match self.selection_type {
            WuiSubtitleSelectionType::Auto => SubtitleSelection::Auto,
            WuiSubtitleSelectionType::Off => SubtitleSelection::Off,
            WuiSubtitleSelectionType::Track => SubtitleSelection::Track(self.track_index),
        }
    }
}

#[cfg(feature = "c-api")]
crate::ffi_binding!(SubtitleSelection, WuiSubtitleSelection, subtitle_selection);
#[cfg(feature = "c-api")]
crate::ffi_watcher!(SubtitleSelection, WuiSubtitleSelection, subtitle_selection);

/// Tagged audio track selection used by the native player.
#[repr(C)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WuiAudioTrackSelectionType {
    /// Let the player choose an audio track automatically.
    Auto = 0,
    /// Select a specific audio track by index.
    Track = 1,
}

/// FFI representation of [`AudioTrackSelection`].
#[repr(C)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct WuiAudioTrackSelection {
    /// Which selection mode is active.
    pub selection_type: WuiAudioTrackSelectionType,
    /// Track index. Read only when `selection_type` is `Track`.
    pub track_index: usize,
}

impl IntoFFI for AudioTrackSelection {
    type FFI = WuiAudioTrackSelection;

    fn into_ffi(self) -> Self::FFI {
        match self {
            Self::Auto => WuiAudioTrackSelection {
                selection_type: WuiAudioTrackSelectionType::Auto,
                track_index: 0,
            },
            Self::Track(track_index) => WuiAudioTrackSelection {
                selection_type: WuiAudioTrackSelectionType::Track,
                track_index,
            },
        }
    }
}

impl IntoRust for WuiAudioTrackSelection {
    type Rust = AudioTrackSelection;

    unsafe fn into_rust(self) -> Self::Rust {
        match self.selection_type {
            WuiAudioTrackSelectionType::Auto => AudioTrackSelection::Auto,
            WuiAudioTrackSelectionType::Track => AudioTrackSelection::Track(self.track_index),
        }
    }
}

#[cfg(feature = "c-api")]
crate::ffi_binding!(
    AudioTrackSelection,
    WuiAudioTrackSelection,
    audio_track_selection
);
#[cfg(feature = "c-api")]
crate::ffi_watcher!(
    AudioTrackSelection,
    WuiAudioTrackSelection,
    audio_track_selection
);

/// Tagged video-quality track selection used by the native player.
#[repr(C)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WuiVideoTrackSelectionType {
    /// Let the player choose a video-quality track automatically.
    Auto = 0,
    /// Select a specific video-quality track by index.
    Track = 1,
}

/// FFI representation of [`VideoTrackSelection`].
#[repr(C)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct WuiVideoTrackSelection {
    /// Which selection mode is active.
    pub selection_type: WuiVideoTrackSelectionType,
    /// Track index. Read only when `selection_type` is `Track`.
    pub track_index: usize,
}

impl IntoFFI for VideoTrackSelection {
    type FFI = WuiVideoTrackSelection;

    fn into_ffi(self) -> Self::FFI {
        match self {
            Self::Auto => WuiVideoTrackSelection {
                selection_type: WuiVideoTrackSelectionType::Auto,
                track_index: 0,
            },
            Self::Track(track_index) => WuiVideoTrackSelection {
                selection_type: WuiVideoTrackSelectionType::Track,
                track_index,
            },
        }
    }
}

impl IntoRust for WuiVideoTrackSelection {
    type Rust = VideoTrackSelection;

    unsafe fn into_rust(self) -> Self::Rust {
        match self.selection_type {
            WuiVideoTrackSelectionType::Auto => VideoTrackSelection::Auto,
            WuiVideoTrackSelectionType::Track => VideoTrackSelection::Track(self.track_index),
        }
    }
}

#[cfg(feature = "c-api")]
crate::ffi_binding!(
    VideoTrackSelection,
    WuiVideoTrackSelection,
    video_track_selection
);
#[cfg(feature = "c-api")]
crate::ffi_watcher!(
    VideoTrackSelection,
    WuiVideoTrackSelection,
    video_track_selection
);

/// Native representation of one selectable audio track.
#[repr(C)]
#[derive(Debug, Default)]
pub struct WuiVideoAudioTrackInfo {
    /// Human-readable track label.
    pub label: WuiStr,
    /// The track's language, as an empty string when unknown.
    pub language: WuiStr,
    /// Track role tags (e.g. "main", "commentary").
    pub roles: WuiArray<WuiStr>,
}

impl IntoRust for WuiVideoAudioTrackInfo {
    type Rust = AudioTrackInfo;

    unsafe fn into_rust(self) -> Self::Rust {
        AudioTrackInfo::new(
            // SAFETY: the caller contract makes `label` an owning handle from the
            // matching FFI constructor; it is consumed here and not observed
            // again.
            unsafe { self.label.into_rust() }.to_string(),
            optional_string(self.language),
            string_array(self.roles),
        )
    }
}

/// Native representation of one selectable video representation.
#[repr(C)]
#[derive(Debug, Default)]
pub struct WuiVideoTrackInfo {
    /// Stable identifier for the track.
    pub id: WuiStr,
    /// Human-readable track label.
    pub label: WuiStr,
    /// Bitrate in bits per second; `0` means unknown.
    pub bandwidth: u64,
    /// Frame width in pixels; `0` together with `height == 0` means unknown.
    pub width: u32,
    /// Frame height in pixels; `0` together with `width == 0` means unknown.
    pub height: u32,
    /// Codec identifiers for this representation (e.g. "hvc1").
    pub codecs: WuiArray<WuiStr>,
    /// Whether this representation is HDR.
    pub hdr: bool,
}

impl IntoRust for WuiVideoTrackInfo {
    type Rust = VideoTrackInfo;

    unsafe fn into_rust(self) -> Self::Rust {
        let bandwidth = NonZeroU64::new(self.bandwidth);
        let dimensions = match (self.width, self.height) {
            (0, 0) => None,
            (width, height) if width > 0 && height > 0 => Some((width, height)),
            _ => panic!("native video-track dimensions must both be zero or both be non-zero"),
        };
        VideoTrackInfo::new(
            // SAFETY: the caller contract makes `id` an owning handle from the
            // matching FFI constructor; it is consumed here and not observed
            // again.
            unsafe { self.id.into_rust() }.to_string(),
            // SAFETY: the caller contract makes `label` an owning handle from the
            // matching FFI constructor; it is consumed here and not observed
            // again.
            unsafe { self.label.into_rust() }.to_string(),
            bandwidth,
            dimensions,
            string_array(self.codecs),
            self.hdr,
        )
    }
}

/// Native subtitle-track origin.
#[repr(C)]
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq)]
pub enum WuiVideoSubtitleTrackOrigin {
    /// Loaded from a separate sidecar subtitle file.
    Sidecar = 0,
    /// Embedded directly in the media container.
    Embedded = 1,
    /// Declared by an adaptive-streaming manifest (e.g. HLS/DASH).
    Manifest = 2,
    /// Sourced from a platform-native subtitle mechanism.
    #[default]
    Native = 3,
}

impl From<WuiVideoSubtitleTrackOrigin> for SubtitleTrackOrigin {
    fn from(origin: WuiVideoSubtitleTrackOrigin) -> Self {
        match origin {
            WuiVideoSubtitleTrackOrigin::Sidecar => Self::Sidecar,
            WuiVideoSubtitleTrackOrigin::Embedded => Self::Embedded,
            WuiVideoSubtitleTrackOrigin::Manifest => Self::Manifest,
            WuiVideoSubtitleTrackOrigin::Native => Self::Native,
        }
    }
}

/// Native representation of one selectable subtitle track.
#[repr(C)]
#[derive(Debug, Default)]
pub struct WuiVideoSubtitleTrackInfo {
    /// Human-readable track label.
    pub label: WuiStr,
    /// The track's language, as an empty string when unknown.
    pub language: WuiStr,
    /// Track role tags (e.g. "caption", "commentary").
    pub roles: WuiArray<WuiStr>,
    /// Whether this track is a forced (director-mandated) subtitle track.
    pub forced: bool,
    /// Where this track was sourced from.
    pub origin: WuiVideoSubtitleTrackOrigin,
}

impl IntoRust for WuiVideoSubtitleTrackInfo {
    type Rust = SubtitleTrackInfo;

    unsafe fn into_rust(self) -> Self::Rust {
        SubtitleTrackInfo::new(
            // SAFETY: the caller contract makes `label` an owning handle from the
            // matching FFI constructor; it is consumed here and not observed
            // again.
            unsafe { self.label.into_rust() }.to_string(),
            optional_string(self.language),
            string_array(self.roles),
            self.forced,
            self.origin.into(),
        )
    }
}

fn optional_string(value: WuiStr) -> Option<String> {
    // SAFETY: the caller contract makes `value` an owning handle from the matching
    // FFI constructor; it is consumed here and not observed again.
    let value = unsafe { value.into_rust() }.to_string();
    (!value.is_empty()).then_some(value)
}

fn string_array(values: WuiArray<WuiStr>) -> Vec<String> {
    // SAFETY: the caller contract makes `values` an owning handle from the matching
    // FFI constructor; it is consumed here and not observed again.
    unsafe { values.into_rust() }
        .into_iter()
        .map(|value| value.to_string())
        .collect()
}

/// Replaces the audio portion of a native player's shared track catalog.
///
/// # Safety
///
/// `binding` must be a live pointer from a video descriptor. `tracks` transfers
/// ownership of its outer array and every nested string to Rust.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn waterui_video_track_catalog_replace_audio(
    binding: *const WuiBinding<TrackCatalog>,
    tracks: WuiArray<WuiVideoAudioTrackInfo>,
) {
    // SAFETY: the caller contract makes `tracks` an owning handle from the matching
    // FFI constructor; it is consumed here and not observed again.
    let tracks = unsafe { tracks.into_rust() };
    // SAFETY: the caller contract requires `binding` to be a valid handle that stays
    // alive for this call; it is only borrowed.
    let binding = unsafe { crate::borrow_ffi(binding) };
    binding.set(binding.get().replacing_audio(tracks));
}

/// Replaces the video portion of a native player's shared track catalog.
///
/// # Safety
///
/// `binding` must be a live pointer from a video descriptor. `tracks` transfers
/// ownership of its outer array and every nested string to Rust.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn waterui_video_track_catalog_replace_video(
    binding: *const WuiBinding<TrackCatalog>,
    tracks: WuiArray<WuiVideoTrackInfo>,
) {
    // SAFETY: the caller contract makes `tracks` an owning handle from the matching
    // FFI constructor; it is consumed here and not observed again.
    let tracks = unsafe { tracks.into_rust() };
    // SAFETY: the caller contract requires `binding` to be a valid handle that stays
    // alive for this call; it is only borrowed.
    let binding = unsafe { crate::borrow_ffi(binding) };
    binding.set(binding.get().replacing_video(tracks));
}

/// Replaces the subtitle portion of a native player's shared track catalog.
///
/// # Safety
///
/// `binding` must be a live pointer from a video descriptor. `tracks` transfers
/// ownership of its outer array and every nested string to Rust.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn waterui_video_track_catalog_replace_subtitles(
    binding: *const WuiBinding<TrackCatalog>,
    tracks: WuiArray<WuiVideoSubtitleTrackInfo>,
) {
    // SAFETY: the caller contract makes `tracks` an owning handle from the matching
    // FFI constructor; it is consumed here and not observed again.
    let tracks = unsafe { tracks.into_rust() };
    // SAFETY: the caller contract requires `binding` to be a valid handle that stays
    // alive for this call; it is only borrowed.
    let binding = unsafe { crate::borrow_ffi(binding) };
    binding.set(binding.get().replacing_subtitles(tracks));
}

/// Drops the native write handle for a shared selectable-track catalog.
///
/// # Safety
///
/// `binding` must be a live pointer from a video descriptor and must be
/// consumed exactly once.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn waterui_drop_video_track_catalog_binding(
    binding: *mut WuiBinding<TrackCatalog>,
) {
    // SAFETY: the caller contract makes `binding` an owning pointer from the
    // matching FFI constructor, so reclaiming the box frees it exactly once.
    unsafe { drop(alloc::boxed::Box::from_raw(binding)) };
}

/// Atomic native snapshot of a live presentation timeline.
#[repr(C)]
#[derive(Debug, Default, Clone, Copy, PartialEq)]
pub struct WuiVideoLiveWindow {
    /// Whether the remaining fields contain a live timeline.
    pub present: bool,
    /// Earliest seekable presentation position in seconds.
    pub seekable_start_seconds: f64,
    /// Latest seekable presentation position in seconds.
    pub seekable_end_seconds: f64,
    /// Current live edge in presentation seconds.
    pub live_edge_seconds: f64,
    /// Backend-recommended playback position in presentation seconds.
    pub target_position_seconds: f64,
}

/// Replaces the current live-window snapshot atomically.
///
/// # Safety
///
/// `binding` must be a live pointer from a video descriptor.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn waterui_video_live_window_replace(
    binding: *const WuiBinding<Option<LiveWindow>>,
    window: WuiVideoLiveWindow,
) {
    // SAFETY: the caller contract requires `binding` to be a valid handle that stays
    // alive for this call; it is only borrowed.
    let binding = unsafe { crate::borrow_ffi(binding) };
    let window = window.present.then(|| {
        LiveWindow::new(
            duration_from_native_seconds(window.seekable_start_seconds, "seekable start"),
            duration_from_native_seconds(window.seekable_end_seconds, "seekable end"),
            duration_from_native_seconds(window.live_edge_seconds, "live edge"),
            duration_from_native_seconds(window.target_position_seconds, "target position"),
        )
    });
    binding.set(window);
}

fn duration_from_native_seconds(seconds: f64, field: &str) -> core::time::Duration {
    assert!(
        seconds.is_finite() && seconds >= 0.0,
        "native video {field} seconds must be finite and non-negative"
    );
    core::time::Duration::from_secs_f64(seconds)
}

/// Drops the native write handle for a live-window binding.
///
/// # Safety
///
/// `binding` must be a live pointer from a video descriptor and must be
/// consumed exactly once.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn waterui_drop_video_live_window_binding(
    binding: *mut WuiBinding<Option<LiveWindow>>,
) {
    // SAFETY: the caller contract makes `binding` an owning pointer from the
    // matching FFI constructor, so reclaiming the box frees it exactly once.
    unsafe { drop(alloc::boxed::Box::from_raw(binding)) };
}

/// Immutable buffering and realtime strategy for native playback.
#[repr(C)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct WuiVideoPlaybackPolicy {
    /// Whether this stream is treated as a realtime/live source rather than
    /// video-on-demand.
    pub realtime: bool,
    /// Buffer duration to accumulate before starting VOD playback, in milliseconds.
    pub vod_start_buffer_ms: u32,
    /// Buffer duration to accumulate before resuming VOD playback after a
    /// stall, in milliseconds.
    pub vod_resume_buffer_ms: u32,
    /// Buffer duration below which VOD playback is considered stalled, in milliseconds.
    pub vod_stall_buffer_ms: u32,
    /// Maximum allowed live-edge lag before the player is considered behind, in milliseconds.
    pub live_max_video_late_ms: u32,
    /// The required playback power path for this policy.
    pub power: WuiVideoPlaybackPowerPolicy,
}

/// Native projection of a required playback power path.
#[repr(C)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WuiVideoPlaybackPowerPolicy {
    /// Let the platform choose the playback power path.
    PlatformManaged = 0,
    /// Require hardware audio offload decoding.
    RequireAudioOffload = 1,
    /// Require combined audio/video hardware tunneling.
    RequireAudioVideoTunneling = 2,
}

impl From<PlaybackPowerPolicy> for WuiVideoPlaybackPowerPolicy {
    fn from(policy: PlaybackPowerPolicy) -> Self {
        match policy {
            PlaybackPowerPolicy::PlatformManaged => Self::PlatformManaged,
            PlaybackPowerPolicy::RequireAudioOffload => Self::RequireAudioOffload,
            PlaybackPowerPolicy::RequireAudioVideoTunneling => Self::RequireAudioVideoTunneling,
        }
    }
}

impl From<PlaybackPolicy> for WuiVideoPlaybackPolicy {
    fn from(policy: PlaybackPolicy) -> Self {
        Self {
            realtime: policy.realtime,
            vod_start_buffer_ms: policy.vod_start_buffer_ms,
            vod_resume_buffer_ms: policy.vod_resume_buffer_ms,
            vod_stall_buffer_ms: policy.vod_stall_buffer_ms,
            live_max_video_late_ms: policy.live_max_video_late_ms,
            power: policy.power.into(),
        }
    }
}

opaque!(
    WuiVideoEventHandler,
    Rc<BoundVideoEventHandler>,
    video_event_handler,
    any()
);

opaque!(
    WuiVideoController,
    PlayerController,
    video_controller,
    any()
);

/// Selects the next item through the session controller retained by a native player.
///
/// # Panics
///
/// Panics if the native "next" command is enabled but the controller cannot
/// resolve a next playlist item.
///
/// # Safety
///
/// `controller` must be a live pointer from a video playback descriptor.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn waterui_video_controller_next(controller: *const WuiVideoController) {
    // SAFETY: the caller contract requires `controller` to be a valid handle that
    // stays alive for this call; it is only borrowed.
    unsafe { crate::borrow_ffi(controller) }
        .0
        .next()
        .expect("enabled native next command must resolve a playlist item");
}

/// Selects the previous item through the session controller retained by a native player.
///
/// # Panics
///
/// Panics if the native "previous" command is enabled but the controller
/// cannot resolve a previous playlist item.
///
/// # Safety
///
/// `controller` must be a live pointer from a video playback descriptor.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn waterui_video_controller_previous(controller: *const WuiVideoController) {
    // SAFETY: the caller contract requires `controller` to be a valid handle that
    // stays alive for this call; it is only borrowed.
    unsafe { crate::borrow_ffi(controller) }
        .0
        .previous()
        .expect("enabled native previous command must resolve a playlist item");
}

impl IntoFFI for BoundVideoEventHandler {
    type FFI = *mut WuiVideoEventHandler;

    fn into_ffi(self) -> Self::FFI {
        Rc::new(self).into_ffi()
    }
}

impl IntoFFI for Option<BoundVideoEventHandler> {
    type FFI = *mut WuiVideoEventHandler;

    fn into_ffi(self) -> Self::FFI {
        self.map_or(core::ptr::null_mut(), IntoFFI::into_ffi)
    }
}

/// Delivers one native playback event to an installed Rust handler.
///
/// # Safety
///
/// `handler` must be a live pointer from a video playback descriptor. Tagged
/// event fields must satisfy the invariant documented by [`WuiVideoEvent`].
#[unsafe(no_mangle)]
pub unsafe extern "C" fn waterui_video_event_handler_call(
    handler: *const WuiVideoEventHandler,
    event: WuiVideoEvent,
) {
    // SAFETY: the caller contract requires `handler` to be a valid handle that stays
    // alive for this call; it is only borrowed.
    let handler = Rc::clone(&unsafe { crate::borrow_ffi(handler) }.0);
    handler.call(into_video_event(event));
}

/// Shared reactive playback state embedded by every native video descriptor.
#[repr(C)]
#[derive(Debug)]
pub struct WuiVideoPlaybackDescriptor {
    /// Retained playlist and transport controller.
    pub controller: *mut WuiVideoController,
    /// The video source URL as a string (reactive).
    pub source: *mut WuiComputed<Str>,
    /// The source delivery strategy (reactive).
    pub delivery: *mut WuiComputed<Delivery>,
    /// The media title shown in system media controls.
    pub title: *mut WuiComputed<Str>,
    /// The media artist shown in system media controls.
    pub artist: *mut WuiComputed<Str>,
    /// The media album shown in system media controls.
    pub album: *mut WuiComputed<Str>,
    /// Artwork URL shown in system media controls.
    pub artwork_url: *mut WuiComputed<Str>,
    /// Current playback duration in seconds, or `0.0` when unknown.
    pub duration_seconds: *mut WuiBinding<f64>,
    /// Current presentation position in seconds.
    pub position_seconds: *mut WuiBinding<f64>,
    /// Requested playing state.
    pub desired_playing: *mut WuiBinding<bool>,
    /// Requested absolute seek position in presentation seconds.
    pub seek_target_seconds: *mut WuiBinding<f64>,
    /// Monotonic seek-request generation encoded as a wrapping `i32` token.
    pub seek_generation: *mut WuiBinding<i32>,
    /// Monotonic forward frame-step generation encoded as a wrapping `i32` token.
    pub step_forward_generation: *mut WuiBinding<i32>,
    /// Monotonic backward frame-step generation encoded as a wrapping `i32` token.
    pub step_backward_generation: *mut WuiBinding<i32>,
    /// High-level playback phase encoded by `playback_phase_code`.
    pub phase: *mut WuiBinding<i32>,
    /// Playlist repeat mode encoded by `repeat_mode_code`.
    pub repeat_mode: *mut WuiBinding<i32>,
    /// Whether the active queue has a next item.
    pub has_next: *mut WuiBinding<bool>,
    /// Whether the active queue has a previous item.
    pub has_previous: *mut WuiBinding<bool>,
    /// Validated playback volume in the inclusive `0.0..=1.0` range.
    pub volume: *mut WuiBinding<f32>,
    /// Whether playback audio is muted.
    pub muted: *mut WuiBinding<bool>,
    /// Subtitle selection for the current runtime track list.
    pub subtitle_selection: *mut WuiBinding<SubtitleSelection>,
    /// Audio track selection for the current runtime track list.
    pub audio_track_selection: *mut WuiBinding<AudioTrackSelection>,
    /// Video-quality selection for the current runtime track list.
    pub video_track_selection: *mut WuiBinding<VideoTrackSelection>,
    /// Native write handle for the shared selectable-track catalog.
    pub track_catalog: *mut WuiBinding<TrackCatalog>,
    /// Native write handle for the current atomic live-window snapshot.
    pub live_window: *mut WuiBinding<Option<LiveWindow>>,
    /// Playback speed (1.0 = normal speed).
    pub playback_rate: *mut WuiBinding<f32>,
    /// Whether native playback should preserve pitch when rate changes.
    pub preserve_pitch: *mut WuiBinding<bool>,
    /// Optional event handler for native playback events.
    pub on_event: *mut WuiVideoEventHandler,
    /// Buffering and realtime playback strategy.
    pub playback_policy: WuiVideoPlaybackPolicy,
}

const fn playback_phase_code(phase: PlaybackPhase) -> i32 {
    match phase {
        PlaybackPhase::Idle => 0,
        PlaybackPhase::Preparing => 1,
        PlaybackPhase::Ready => 2,
        PlaybackPhase::Playing => 3,
        PlaybackPhase::Paused => 4,
        PlaybackPhase::Buffering => 5,
        PlaybackPhase::Ended => 6,
        PlaybackPhase::Failed => 7,
    }
}

fn playback_phase_from_code(code: i32) -> PlaybackPhase {
    match code {
        0 => PlaybackPhase::Idle,
        1 => PlaybackPhase::Preparing,
        2 => PlaybackPhase::Ready,
        3 => PlaybackPhase::Playing,
        4 => PlaybackPhase::Paused,
        5 => PlaybackPhase::Buffering,
        6 => PlaybackPhase::Ended,
        7 => PlaybackPhase::Failed,
        _ => panic!("unsupported native video playback phase code {code}"),
    }
}

const fn repeat_mode_code(mode: RepeatMode) -> i32 {
    match mode {
        RepeatMode::Off => 0,
        RepeatMode::One => 1,
        RepeatMode::All => 2,
    }
}

fn repeat_mode_from_code(code: i32) -> RepeatMode {
    match code {
        0 => RepeatMode::Off,
        1 => RepeatMode::One,
        2 => RepeatMode::All,
        _ => panic!("unsupported native video repeat mode code {code}"),
    }
}

/// Narrows a monotonic generation counter to the wrapping `i32` token stored
/// in FFI bindings.
///
/// The counter is intentionally allowed to wrap: only change-detection
/// between successive values matters to native callers, not the token's
/// numeric magnitude.
#[expect(
    clippy::cast_possible_truncation,
    reason = "seek/step generation tokens are wrapping counters by design; only change-detection matters, not magnitude"
)]
const fn generation_token(generation: u64) -> i32 {
    generation as i32
}

fn generation_binding(generation: &Binding<u64>) -> Binding<i32> {
    Binding::mapping(generation, generation_token, |generation, _| {
        generation.set(generation.get().wrapping_add(1));
    })
}

fn into_playback_descriptor(
    playback: PlaybackConfiguration<Option<BoundVideoEventHandler>>,
) -> WuiVideoPlaybackDescriptor {
    let PlaybackConfiguration {
        controller,
        source,
        has_next,
        has_previous,
        volume,
        muted,
        subtitle_selection,
        audio_track_selection,
        video_track_selection,
        track_catalog,
        live_window,
        playback_rate,
        preserve_pitch,
        desired_playing,
        seek_target_seconds,
        seek_generation,
        step_forward_generation,
        step_backward_generation,
        position_seconds,
        duration_seconds,
        phase,
        repeat,
        shuffle: _,
        on_event,
        playback_policy,
    } = playback;

    let delivery = source.map(|item| item.delivery).into_computed();
    let source_str = source.map(|item| item.source.inner()).into_computed();
    let title = source
        .map(|item| item.metadata.title().unwrap_or_default().to_owned())
        .into_computed();
    let artist = source
        .map(|item| item.metadata.artist().unwrap_or_default().to_owned())
        .into_computed();
    let album = source
        .map(|item| item.metadata.album().unwrap_or_default().to_owned())
        .into_computed();
    let artwork_url = source
        .map(|item| item.metadata.artwork_url().unwrap_or_default().to_owned())
        .into_computed();
    WuiVideoPlaybackDescriptor {
        controller: controller.into_ffi(),
        source: source_str.into_ffi(),
        delivery: delivery.into_ffi(),
        title: title.into_ffi(),
        artist: artist.into_ffi(),
        album: album.into_ffi(),
        artwork_url: artwork_url.into_ffi(),
        duration_seconds: duration_seconds.into_ffi(),
        position_seconds: position_seconds.into_ffi(),
        desired_playing: desired_playing.into_ffi(),
        seek_target_seconds: seek_target_seconds.into_ffi(),
        seek_generation: generation_binding(&seek_generation).into_ffi(),
        step_forward_generation: generation_binding(&step_forward_generation).into_ffi(),
        step_backward_generation: generation_binding(&step_backward_generation).into_ffi(),
        phase: Binding::mapping(&phase, playback_phase_code, |phase, code| {
            phase.set(playback_phase_from_code(code));
        })
        .into_ffi(),
        repeat_mode: Binding::mapping(&repeat, repeat_mode_code, |repeat, code| {
            repeat.set(repeat_mode_from_code(code));
        })
        .into_ffi(),
        has_next: has_next.into_ffi(),
        has_previous: has_previous.into_ffi(),
        volume: Binding::mapping(&volume, Volume::level, |volume, level| {
            volume.set(Volume::new(level));
        })
        .into_ffi(),
        muted: muted.into_ffi(),
        subtitle_selection: subtitle_selection.into_ffi(),
        audio_track_selection: audio_track_selection.into_ffi(),
        video_track_selection: video_track_selection.into_ffi(),
        track_catalog: track_catalog.into_ffi(),
        live_window: live_window.into_ffi(),
        playback_rate: playback_rate.into_ffi(),
        preserve_pitch: preserve_pitch.into_ffi(),
        on_event: on_event.into_ffi(),
        playback_policy: playback_policy.into(),
    }
}

/// FFI representation of the raw Video component (no native controls).
#[repr(C)]
#[derive(Debug)]
pub struct WuiVideo {
    /// Shared reactive playback state.
    pub playback: WuiVideoPlaybackDescriptor,
    /// How the picture fills the bounds it is given.
    pub content_mode: WuiContentMode,
    /// Projection requested by the semantic component.
    pub projection: WuiVideoProjection,
    /// Whether the video should loop when it ends.
    pub loops: bool,
}

impl IntoFFI for NativeVideoConfig {
    type FFI = WuiVideo;

    fn into_ffi(self) -> Self::FFI {
        let content_mode = self.content_mode.into_ffi();
        let projection = self.projection.into_ffi();
        let loops = self.loops;
        let playback = into_playback_descriptor(self.playback);

        WuiVideo {
            playback,
            content_mode,
            projection,
            loops,
        }
    }
}

/// FFI representation of the interactive `VideoPlayer` component.
#[repr(C)]
#[derive(Debug)]
pub struct WuiVideoPlayer {
    /// Shared reactive playback state.
    pub playback: WuiVideoPlaybackDescriptor,
    /// How the picture fills the bounds it is given.
    pub content_mode: WuiContentMode,
    /// Projection requested by the semantic component.
    pub projection: WuiVideoProjection,
    /// Whether to show interactive playback controls.
    pub show_controls: bool,
}

impl IntoFFI for NativeVideoPlayerConfig {
    type FFI = WuiVideoPlayer;

    fn into_ffi(self) -> Self::FFI {
        let content_mode = self.content_mode.into_ffi();
        let projection = self.projection.into_ffi();
        let show_controls = self.show_controls;
        let playback = into_playback_descriptor(self.playback);

        WuiVideoPlayer {
            playback,
            content_mode,
            projection,
            show_controls,
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use waterui_core::binding;

    #[test]
    fn native_playback_policy_preserves_required_power_path() {
        let native = WuiVideoPlaybackPolicy::from(
            PlaybackPolicy::vod_default().power(PlaybackPowerPolicy::RequireAudioVideoTunneling),
        );
        assert_eq!(
            native.power,
            WuiVideoPlaybackPowerPolicy::RequireAudioVideoTunneling
        );
    }

    #[test]
    fn native_track_catalog_updates_preserve_complete_metadata() {
        let binding = binding(TrackCatalog::default()).into_ffi();

        // SAFETY: `binding` is the live handle this test created above.
        unsafe {
            waterui_video_track_catalog_replace_audio(
                binding,
                WuiArray::new(vec![WuiVideoAudioTrackInfo {
                    label: "English".into_ffi(),
                    language: "en".into_ffi(),
                    roles: vec!["main"].into_ffi(),
                }]),
            );
            waterui_video_track_catalog_replace_video(
                binding,
                WuiArray::new(vec![WuiVideoTrackInfo {
                    id: "native-main".into_ffi(),
                    label: "3840×2160".into_ffi(),
                    bandwidth: 0,
                    width: 3840,
                    height: 2160,
                    codecs: vec!["hvc1"].into_ffi(),
                    hdr: true,
                }]),
            );
            waterui_video_track_catalog_replace_subtitles(
                binding,
                WuiArray::new(vec![WuiVideoSubtitleTrackInfo {
                    label: "English CC".into_ffi(),
                    language: "en".into_ffi(),
                    roles: vec!["caption"].into_ffi(),
                    forced: false,
                    origin: WuiVideoSubtitleTrackOrigin::Native,
                }]),
            );
        }

        // SAFETY: the caller contract requires `binding` to be a valid handle that
        // stays alive for this call; it is only borrowed.
        let catalog = unsafe { crate::borrow_ffi(binding) }.get();
        assert_eq!(catalog.audio()[0].roles(), &[String::from("main")]);
        assert_eq!(catalog.video()[0].bandwidth(), None);
        assert_eq!(catalog.video()[0].dimensions(), Some((3840, 2160)));
        assert!(catalog.video()[0].is_hdr());
        assert_eq!(catalog.subtitles()[0].origin(), SubtitleTrackOrigin::Native);

        // SAFETY: `binding` is that same handle, dropped once at end of test.
        unsafe { waterui_drop_video_track_catalog_binding(binding) };
    }

    #[test]
    fn native_live_window_is_replaced_as_one_validated_snapshot() {
        let binding = binding(None::<LiveWindow>).into_ffi();

        // SAFETY: `binding` is the live handle this test created above.
        unsafe {
            waterui_video_live_window_replace(
                binding,
                WuiVideoLiveWindow {
                    present: true,
                    seekable_start_seconds: 30.0,
                    seekable_end_seconds: 90.0,
                    live_edge_seconds: 92.0,
                    target_position_seconds: 86.0,
                },
            );
        }

        // SAFETY: the caller contract requires `binding` to be a valid handle that
        // stays alive for this call; it is only borrowed.
        let window = unsafe { crate::borrow_ffi(binding) }
            .get()
            .expect("native live snapshot must be present");
        assert_eq!(window.seekable_start(), core::time::Duration::from_secs(30));
        assert_eq!(
            window.target_live_offset(),
            core::time::Duration::from_secs(6)
        );

        // SAFETY: `binding` is still the live handle from this test.
        unsafe {
            waterui_video_live_window_replace(binding, WuiVideoLiveWindow::default());
        }
        // SAFETY: the caller contract requires `binding` to be a valid handle that
        // stays alive for this call; it is only borrowed.
        assert!(unsafe { crate::borrow_ffi(binding) }.get().is_none());
        // SAFETY: `binding` is that same handle, dropped once at end of test.
        unsafe { waterui_drop_video_live_window_binding(binding) };
    }

    #[test]
    fn native_playback_metrics_preserve_optional_observations() {
        let event = into_video_event(WuiVideoEvent {
            event_type: WuiVideoEventType::PlaybackMetrics,
            error_message: core::ptr::null_mut(),
            position_ms: 12_000,
            buffered_ms: 3_500,
            startup_time_ms: 420,
            av_drift_available: true,
            av_drift_ms: -2.5,
            dropped_video_frames: 3,
            rebuffer_count: 2,
            rebuffer_duration_ms: 750,
            observed_network_throughput_bps: 16_000_000,
            picture_in_picture_active: false,
            external_playback_active: false,
            playback_active: true,
            playback_output_path: WuiVideoPlaybackOutputPath::DecodedPcmGpu,
        });
        let VideoEvent::PlaybackMetrics { metrics } = event else {
            panic!("native metrics event must preserve its semantic variant");
        };

        assert_eq!(metrics.position(), core::time::Duration::from_secs(12));
        assert_eq!(
            metrics.buffered_ahead(),
            core::time::Duration::from_millis(3_500)
        );
        assert_eq!(
            metrics.startup_time(),
            core::time::Duration::from_millis(420)
        );
        assert_eq!(metrics.observed_av_drift_ms(), Some(-2.5));
        assert_eq!(metrics.dropped_video_frame_count(), 3);
        assert_eq!(metrics.rebuffer_count(), 2);
        assert_eq!(
            metrics.rebuffer_duration(),
            core::time::Duration::from_millis(750)
        );
        assert_eq!(
            metrics.observed_network_throughput_bps(),
            NonZeroU64::new(16_000_000)
        );
    }

    #[test]
    fn native_external_playback_state_preserves_player_scope() {
        let event = into_video_event(WuiVideoEvent {
            event_type: WuiVideoEventType::ExternalPlaybackChanged,
            error_message: core::ptr::null_mut(),
            position_ms: 0,
            buffered_ms: 0,
            startup_time_ms: 0,
            av_drift_available: false,
            av_drift_ms: 0.0,
            dropped_video_frames: 0,
            rebuffer_count: 0,
            rebuffer_duration_ms: 0,
            observed_network_throughput_bps: 0,
            picture_in_picture_active: false,
            external_playback_active: true,
            playback_active: false,
            playback_output_path: WuiVideoPlaybackOutputPath::PlatformManaged,
        });
        assert!(matches!(
            event,
            VideoEvent::ExternalPlaybackChanged { active: true }
        ));
    }

    #[test]
    fn native_output_path_preserves_tunneling_observability() {
        let event = into_video_event(WuiVideoEvent {
            event_type: WuiVideoEventType::PlaybackOutputPathChanged,
            error_message: core::ptr::null_mut(),
            position_ms: 0,
            buffered_ms: 0,
            startup_time_ms: 0,
            av_drift_available: false,
            av_drift_ms: 0.0,
            dropped_video_frames: 0,
            rebuffer_count: 0,
            rebuffer_duration_ms: 0,
            observed_network_throughput_bps: 0,
            picture_in_picture_active: false,
            external_playback_active: false,
            playback_active: false,
            playback_output_path: WuiVideoPlaybackOutputPath::AudioVideoTunneling,
        });
        assert!(matches!(
            event,
            VideoEvent::PlaybackOutputPathChanged {
                path: PlaybackOutputPath::AudioVideoTunneling
            }
        ));
    }
}

#[cfg(feature = "c-api")]
ffi_view!(NativeVideoConfig, WuiVideo, video, any());

#[cfg(feature = "c-api")]
ffi_view!(NativeVideoPlayerConfig, WuiVideoPlayer, video_player, any());