metal-rust-ffi 1.0.0

Audited Objective-C interoperability boundary for metal-rust
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
//! Audited Metal 4 compiler factory and callback boundary.

use crate::foundation::{Error, metal_error};
use crate::metal::generated_object_types::{metal, metal4};
use crate::metal::{ComputePipelineState, Library, RenderPipelineState};
use block2::RcBlock;
use objc2::rc::Retained;
use objc2::runtime::{AnyClass, AnyObject, ProtocolObject};
use objc2::{msg_send, sel};
use objc2_foundation::{NSData, NSError, NSString, NSURL};
use objc2_metal::{MTL4PipelineDataSetSerializer, MTLSamplePosition, MTLSize};
use std::collections::HashMap;
use std::ffi::c_void;
use std::panic::{AssertUnwindSafe, catch_unwind};
use std::path::Path;
use std::sync::{Arc, Mutex};

trait RespondsToSelector {
    fn responds_to(&self, selector: objc2::runtime::Sel) -> bool;
}

impl RespondsToSelector for AnyObject {
    fn responds_to(&self, selector: objc2::runtime::Sel) -> bool {
        // SAFETY: every Objective-C object implements respondsToSelector: and
        // the selector/bool ABI is stable across Foundation objects.
        unsafe { msg_send![self, respondsToSelector: selector] }
    }
}

fn object_array<'a>(values: impl IntoIterator<Item = &'a AnyObject>) -> Retained<AnyObject> {
    let class = AnyClass::get(c"NSMutableArray")
        .expect("Foundation always provides NSMutableArray when Metal is loaded");
    // SAFETY: NSMutableArray implements `new` and returns an owned empty array.
    let array: Retained<AnyObject> = unsafe { msg_send![class, new] };
    for value in values {
        // SAFETY: both objects remain live and NSMutableArray accepts any
        // non-null Objective-C object through addObject:.
        unsafe {
            let _: () = msg_send![&*array, addObject: value];
        }
    }
    array
}

fn array_objects(array: Option<Retained<AnyObject>>) -> Vec<Retained<AnyObject>> {
    let Some(array) = array else {
        return Vec::new();
    };
    // SAFETY: generated callers obtain this object from properties declared as
    // NSArray; count and objectAtIndex: therefore have their standard ABIs.
    let count: usize = unsafe { msg_send![&*array, count] };
    (0..count)
        .map(|index| {
            // SAFETY: index is strictly below the count read from this same
            // immutable array and objc2 retains the returned object.
            unsafe { msg_send![&*array, objectAtIndex: index] }
        })
        .collect()
}

fn unsupported(selector: &str) -> Error {
    Error::unsupported(format!("MTL4::Compiler::{selector} is unavailable"))
}

fn callback_error(
    value: *mut AnyObject,
    error: *mut NSError,
) -> Result<Retained<AnyObject>, Error> {
    if !error.is_null() {
        // SAFETY: Metal supplies an NSError that remains live for the block
        // invocation. Retaining it makes conversion independent of that scope.
        let error = unsafe { Retained::retain(error) }
            .expect("the pointer was checked as non-null immediately above");
        return Err(metal_error(&error));
    }
    // SAFETY: Metal supplies a result object that remains live for the block
    // invocation. Retaining it transfers an owned reference into Rust.
    unsafe { Retained::retain(value) }.ok_or_else(|| {
        Error::unsupported("Metal completed compilation without a result or NSError")
    })
}

fn compute_pipeline(inner: Retained<AnyObject>) -> ComputePipelineState {
    // SAFETY: these helpers are called only for selectors declared to return
    // an object conforming to MTLComputePipelineState.
    let inner = unsafe { Retained::cast_unchecked(inner) };
    ComputePipelineState::new(inner)
}

fn render_pipeline(inner: Retained<AnyObject>) -> RenderPipelineState {
    // SAFETY: these helpers are called only for selectors declared to return
    // an object conforming to MTLRenderPipelineState.
    let inner = unsafe { Retained::cast_unchecked(inner) };
    RenderPipelineState::new(inner)
}

/// A borrowed Metal 4 descriptor for any render, mesh, or tile pipeline build.
#[derive(Clone, Copy)]
pub enum RenderPipelineBuildDescriptor<'a> {
    /// A conventional vertex/fragment render pipeline.
    Render(&'a metal4::RenderPipelineDescriptor),
    /// A mesh/object render pipeline.
    Mesh(&'a metal4::MeshRenderPipelineDescriptor),
    /// A tile render pipeline.
    Tile(&'a metal4::TileRenderPipelineDescriptor),
}

impl<'a> RenderPipelineBuildDescriptor<'a> {
    fn as_inner(self) -> &'a AnyObject {
        match self {
            Self::Render(value) => value.as_inner(),
            Self::Mesh(value) => value.as_inner(),
            Self::Tile(value) => value.as_inner(),
        }
    }
}

impl metal4::Compiler {
    fn supports(&self, selector: objc2::runtime::Sel) -> bool {
        // SAFETY: every Objective-C object implements respondsToSelector: and
        // the selector/bool ABI is stable across Foundation objects.
        unsafe { msg_send![self.as_inner(), respondsToSelector: selector] }
    }

    /// Creates a Metal library synchronously and owns any returned NSError.
    pub fn new_library(&self, descriptor: &metal4::LibraryDescriptor) -> Result<Library, Error> {
        if !self.supports(sel!(newLibraryWithDescriptor:error:)) {
            return Err(unsupported("newLibraryWithDescriptor:error:"));
        }
        // SAFETY: selector availability and both object class contracts are
        // checked by the generated wrappers; `_` requests objc2's NSError
        // writeback adapter and the returned object follows the `new` family.
        let result: Result<Retained<AnyObject>, Retained<NSError>> = unsafe {
            msg_send![self.as_inner(), newLibraryWithDescriptor: descriptor.as_inner(), error: _]
        };
        result
            .map(Library::from_any_object)
            .map_err(|error| metal_error(&error))?
    }

    /// Creates a compute pipeline synchronously with optional task and dynamic-linking options.
    pub fn new_compute_pipeline(
        &self,
        descriptor: &metal4::ComputePipelineDescriptor,
        linking: Option<&metal4::PipelineStageDynamicLinkingDescriptor>,
        options: Option<&metal4::CompilerTaskOptions>,
    ) -> Result<ComputePipelineState, Error> {
        if linking.is_some() {
            if !self.supports(sel!(newComputePipelineStateWithDescriptor:dynamicLinkingDescriptor:compilerTaskOptions:error:)) {
                return Err(unsupported("newComputePipelineStateWithDescriptor:dynamicLinkingDescriptor:compilerTaskOptions:error:"));
            }
            // SAFETY: the selector is present and generated wrappers preserve
            // every descriptor's Objective-C class identity.
            let result: Result<Retained<AnyObject>, Retained<NSError>> = unsafe {
                msg_send![self.as_inner(), newComputePipelineStateWithDescriptor: descriptor.as_inner(), dynamicLinkingDescriptor: linking.map(metal4::PipelineStageDynamicLinkingDescriptor::as_inner), compilerTaskOptions: options.map(metal4::CompilerTaskOptions::as_inner), error: _]
            };
            return result
                .map(compute_pipeline)
                .map_err(|error| metal_error(&error));
        }
        if !self.supports(sel!(newComputePipelineStateWithDescriptor:compilerTaskOptions:error:)) {
            return Err(unsupported(
                "newComputePipelineStateWithDescriptor:compilerTaskOptions:error:",
            ));
        }
        // SAFETY: the selector is present and generated wrappers preserve the
        // descriptor and task-options Objective-C class identities.
        let result: Result<Retained<AnyObject>, Retained<NSError>> = unsafe {
            msg_send![self.as_inner(), newComputePipelineStateWithDescriptor: descriptor.as_inner(), compilerTaskOptions: options.map(metal4::CompilerTaskOptions::as_inner), error: _]
        };
        result
            .map(compute_pipeline)
            .map_err(|error| metal_error(&error))
    }

    /// Creates a render pipeline synchronously with optional dynamic linking.
    pub fn new_render_pipeline(
        &self,
        descriptor: RenderPipelineBuildDescriptor<'_>,
        linking: Option<&metal4::RenderPipelineDynamicLinkingDescriptor>,
        options: Option<&metal4::CompilerTaskOptions>,
    ) -> Result<RenderPipelineState, Error> {
        if linking.is_some() {
            if !self.supports(sel!(newRenderPipelineStateWithDescriptor:dynamicLinkingDescriptor:compilerTaskOptions:error:)) {
                return Err(unsupported("newRenderPipelineStateWithDescriptor:dynamicLinkingDescriptor:compilerTaskOptions:error:"));
            }
            // SAFETY: the selector is present and all arguments remain live
            // for the synchronous Objective-C call.
            let result: Result<Retained<AnyObject>, Retained<NSError>> = unsafe {
                msg_send![self.as_inner(), newRenderPipelineStateWithDescriptor: descriptor.as_inner(), dynamicLinkingDescriptor: linking.map(metal4::RenderPipelineDynamicLinkingDescriptor::as_inner), compilerTaskOptions: options.map(metal4::CompilerTaskOptions::as_inner), error: _]
            };
            return result
                .map(render_pipeline)
                .map_err(|error| metal_error(&error));
        }
        if !self.supports(sel!(newRenderPipelineStateWithDescriptor:compilerTaskOptions:error:)) {
            return Err(unsupported(
                "newRenderPipelineStateWithDescriptor:compilerTaskOptions:error:",
            ));
        }
        // SAFETY: the selector is present and all arguments remain live for
        // the synchronous Objective-C call.
        let result: Result<Retained<AnyObject>, Retained<NSError>> = unsafe {
            msg_send![self.as_inner(), newRenderPipelineStateWithDescriptor: descriptor.as_inner(), compilerTaskOptions: options.map(metal4::CompilerTaskOptions::as_inner), error: _]
        };
        result
            .map(render_pipeline)
            .map_err(|error| metal_error(&error))
    }

    /// Specializes a previously unspecialized render pipeline.
    pub fn specialize_render_pipeline(
        &self,
        descriptor: RenderPipelineBuildDescriptor<'_>,
        pipeline: &RenderPipelineState,
    ) -> Result<RenderPipelineState, Error> {
        if !self
            .supports(sel!(newRenderPipelineStateBySpecializationWithDescriptor:pipeline:error:))
        {
            return Err(unsupported(
                "newRenderPipelineStateBySpecializationWithDescriptor:pipeline:error:",
            ));
        }
        // SAFETY: the selector is present; the descriptor and pipeline are
        // type-checked owned wrappers and remain live for the call.
        let result: Result<Retained<AnyObject>, Retained<NSError>> = unsafe {
            msg_send![self.as_inner(), newRenderPipelineStateBySpecializationWithDescriptor: descriptor.as_inner(), pipeline: &*pipeline.inner, error: _]
        };
        result
            .map(render_pipeline)
            .map_err(|error| metal_error(&error))
    }

    /// Creates a binary shader function synchronously.
    pub fn new_binary_function(
        &self,
        descriptor: &metal4::BinaryFunctionDescriptor,
        options: Option<&metal4::CompilerTaskOptions>,
    ) -> Result<metal4::BinaryFunction, Error> {
        if !self.supports(sel!(newBinaryFunctionWithDescriptor:compilerTaskOptions:error:)) {
            return Err(unsupported(
                "newBinaryFunctionWithDescriptor:compilerTaskOptions:error:",
            ));
        }
        // SAFETY: the selector is present and generated wrappers preserve the
        // descriptor and task-options Objective-C class identities.
        let result: Result<Retained<AnyObject>, Retained<NSError>> = unsafe {
            msg_send![self.as_inner(), newBinaryFunctionWithDescriptor: descriptor.as_inner(), compilerTaskOptions: options.map(metal4::CompilerTaskOptions::as_inner), error: _]
        };
        result
            .map(metal4::BinaryFunction::from_inner)
            .map_err(|error| metal_error(&error))
    }

    /// Creates a machine-learning pipeline synchronously.
    pub fn new_machine_learning_pipeline(
        &self,
        descriptor: &metal4::MachineLearningPipelineDescriptor,
    ) -> Result<metal4::MachineLearningPipelineState, Error> {
        if !self.supports(sel!(newMachineLearningPipelineStateWithDescriptor:error:)) {
            return Err(unsupported(
                "newMachineLearningPipelineStateWithDescriptor:error:",
            ));
        }
        // SAFETY: selector availability and descriptor class identity are
        // checked before the NSError-producing call.
        let result: Result<Retained<AnyObject>, Retained<NSError>> = unsafe {
            msg_send![self.as_inner(), newMachineLearningPipelineStateWithDescriptor: descriptor.as_inner(), error: _]
        };
        result
            .map(metal4::MachineLearningPipelineState::from_inner)
            .map_err(|error| metal_error(&error))
    }

    /// Creates a dynamic library synchronously from a compiled Metal library.
    pub fn new_dynamic_library(&self, library: &Library) -> Result<metal::DynamicLibrary, Error> {
        if !self.supports(sel!(newDynamicLibrary:error:)) {
            return Err(unsupported("newDynamicLibrary:error:"));
        }
        // SAFETY: selector availability is checked and `library` conforms to
        // MTLLibrary for the duration of this call.
        let result: Result<Retained<AnyObject>, Retained<NSError>> = unsafe {
            msg_send![self.as_inner(), newDynamicLibrary: library.as_any_object(), error: _]
        };
        result
            .map(metal::DynamicLibrary::from_inner)
            .map_err(|error| metal_error(&error))
    }

    /// Creates a dynamic library synchronously from a file path.
    pub fn new_dynamic_library_from_path(
        &self,
        path: impl AsRef<Path>,
    ) -> Result<metal::DynamicLibrary, Error> {
        let path = path
            .as_ref()
            .to_str()
            .ok_or_else(|| Error::invalid_argument("dynamic library path is not valid UTF-8"))?;
        if path.as_bytes().contains(&0) {
            return Err(Error::invalid_argument("dynamic library path contains NUL"));
        }
        if !self.supports(sel!(newDynamicLibraryWithURL:error:)) {
            return Err(unsupported("newDynamicLibraryWithURL:error:"));
        }
        let url = NSURL::fileURLWithPath(&NSString::from_str(path));
        // SAFETY: selector availability is checked and the owned file URL
        // remains live for this synchronous call.
        let result: Result<Retained<AnyObject>, Retained<NSError>> =
            unsafe { msg_send![self.as_inner(), newDynamicLibraryWithURL: &*url, error: _] };
        result
            .map(metal::DynamicLibrary::from_inner)
            .map_err(|error| metal_error(&error))
    }

    /// Starts one-shot asynchronous library compilation.
    pub fn new_library_async(
        &self,
        descriptor: &metal4::LibraryDescriptor,
        handler: impl FnOnce(Result<Library, Error>) + Send + 'static,
    ) -> Result<metal4::CompilerTask, Error> {
        if !self.supports(sel!(newLibraryWithDescriptor:completionHandler:)) {
            return Err(unsupported("newLibraryWithDescriptor:completionHandler:"));
        }
        let state = Arc::new(Mutex::new(Some(handler)));
        let callback_state = Arc::clone(&state);
        let block = RcBlock::new(move |value: *mut AnyObject, error: *mut NSError| {
            let callback = callback_state
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner)
                .take();
            let Some(callback) = callback else {
                return;
            };
            let result = callback_error(value, error).and_then(Library::from_any_object);
            let _ = catch_unwind(AssertUnwindSafe(|| callback(result)));
        });
        // SAFETY: selector availability was checked; the block has the exact
        // two-object completion ABI and Metal copies it for deferred delivery.
        let task: Retained<AnyObject> = unsafe {
            msg_send![self.as_inner(), newLibraryWithDescriptor: descriptor.as_inner(), completionHandler: &*block]
        };
        Ok(metal4::CompilerTask::from_inner(task))
    }

    /// Starts one-shot asynchronous compute-pipeline compilation.
    pub fn new_compute_pipeline_async(
        &self,
        descriptor: &metal4::ComputePipelineDescriptor,
        options: Option<&metal4::CompilerTaskOptions>,
        handler: impl FnOnce(Result<ComputePipelineState, Error>) + Send + 'static,
    ) -> Result<metal4::CompilerTask, Error> {
        if !self.supports(
            sel!(newComputePipelineStateWithDescriptor:compilerTaskOptions:completionHandler:),
        ) {
            return Err(unsupported(
                "newComputePipelineStateWithDescriptor:compilerTaskOptions:completionHandler:",
            ));
        }
        let state = Arc::new(Mutex::new(Some(handler)));
        let callback_state = Arc::clone(&state);
        let block = RcBlock::new(move |value: *mut AnyObject, error: *mut NSError| {
            let callback = callback_state
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner)
                .take();
            let Some(callback) = callback else {
                return;
            };
            let result = callback_error(value, error).map(compute_pipeline);
            let _ = catch_unwind(AssertUnwindSafe(|| callback(result)));
        });
        // SAFETY: selector availability was checked; the block has the exact
        // two-object completion ABI and Metal copies it for deferred delivery.
        let task: Retained<AnyObject> = unsafe {
            msg_send![self.as_inner(), newComputePipelineStateWithDescriptor: descriptor.as_inner(), compilerTaskOptions: options.map(metal4::CompilerTaskOptions::as_inner), completionHandler: &*block]
        };
        Ok(metal4::CompilerTask::from_inner(task))
    }

    /// Starts one-shot asynchronous compute-pipeline compilation with dynamic linking.
    pub fn new_compute_pipeline_linked_async(
        &self,
        descriptor: &metal4::ComputePipelineDescriptor,
        linking: Option<&metal4::PipelineStageDynamicLinkingDescriptor>,
        options: Option<&metal4::CompilerTaskOptions>,
        handler: impl FnOnce(Result<ComputePipelineState, Error>) + Send + 'static,
    ) -> Result<metal4::CompilerTask, Error> {
        if !self.supports(sel!(newComputePipelineStateWithDescriptor:dynamicLinkingDescriptor:compilerTaskOptions:completionHandler:)) {
            return Err(unsupported("newComputePipelineStateWithDescriptor:dynamicLinkingDescriptor:compilerTaskOptions:completionHandler:"));
        }
        let state = Arc::new(Mutex::new(Some(handler)));
        let callback_state = Arc::clone(&state);
        let block = RcBlock::new(move |value: *mut AnyObject, error: *mut NSError| {
            let callback = callback_state
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner)
                .take();
            let Some(callback) = callback else {
                return;
            };
            let result = callback_error(value, error).map(compute_pipeline);
            let _ = catch_unwind(AssertUnwindSafe(|| callback(result)));
        });
        // SAFETY: selector availability was checked; argument wrappers retain
        // their Objective-C identities and Metal copies the exact-ABI block.
        let task: Retained<AnyObject> = unsafe {
            msg_send![self.as_inner(), newComputePipelineStateWithDescriptor: descriptor.as_inner(), dynamicLinkingDescriptor: linking.map(metal4::PipelineStageDynamicLinkingDescriptor::as_inner), compilerTaskOptions: options.map(metal4::CompilerTaskOptions::as_inner), completionHandler: &*block]
        };
        Ok(metal4::CompilerTask::from_inner(task))
    }

    /// Starts one-shot asynchronous render-pipeline compilation.
    pub fn new_render_pipeline_async(
        &self,
        descriptor: RenderPipelineBuildDescriptor<'_>,
        options: Option<&metal4::CompilerTaskOptions>,
        handler: impl FnOnce(Result<RenderPipelineState, Error>) + Send + 'static,
    ) -> Result<metal4::CompilerTask, Error> {
        if !self.supports(
            sel!(newRenderPipelineStateWithDescriptor:compilerTaskOptions:completionHandler:),
        ) {
            return Err(unsupported(
                "newRenderPipelineStateWithDescriptor:compilerTaskOptions:completionHandler:",
            ));
        }
        let state = Arc::new(Mutex::new(Some(handler)));
        let callback_state = Arc::clone(&state);
        let block = RcBlock::new(move |value: *mut AnyObject, error: *mut NSError| {
            let callback = callback_state
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner)
                .take();
            let Some(callback) = callback else {
                return;
            };
            let result = callback_error(value, error).map(render_pipeline);
            let _ = catch_unwind(AssertUnwindSafe(|| callback(result)));
        });
        // SAFETY: selector availability was checked; the block has the exact
        // two-object completion ABI and Metal copies it for deferred delivery.
        let task: Retained<AnyObject> = unsafe {
            msg_send![self.as_inner(), newRenderPipelineStateWithDescriptor: descriptor.as_inner(), compilerTaskOptions: options.map(metal4::CompilerTaskOptions::as_inner), completionHandler: &*block]
        };
        Ok(metal4::CompilerTask::from_inner(task))
    }

    /// Starts one-shot asynchronous render-pipeline compilation with dynamic linking.
    pub fn new_render_pipeline_linked_async(
        &self,
        descriptor: RenderPipelineBuildDescriptor<'_>,
        linking: Option<&metal4::RenderPipelineDynamicLinkingDescriptor>,
        options: Option<&metal4::CompilerTaskOptions>,
        handler: impl FnOnce(Result<RenderPipelineState, Error>) + Send + 'static,
    ) -> Result<metal4::CompilerTask, Error> {
        if !self.supports(sel!(newRenderPipelineStateWithDescriptor:dynamicLinkingDescriptor:compilerTaskOptions:completionHandler:)) {
            return Err(unsupported("newRenderPipelineStateWithDescriptor:dynamicLinkingDescriptor:compilerTaskOptions:completionHandler:"));
        }
        let state = Arc::new(Mutex::new(Some(handler)));
        let callback_state = Arc::clone(&state);
        let block = RcBlock::new(move |value: *mut AnyObject, error: *mut NSError| {
            let callback = callback_state
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner)
                .take();
            let Some(callback) = callback else {
                return;
            };
            let result = callback_error(value, error).map(render_pipeline);
            let _ = catch_unwind(AssertUnwindSafe(|| callback(result)));
        });
        // SAFETY: selector availability was checked; argument wrappers retain
        // their Objective-C identities and Metal copies the exact-ABI block.
        let task: Retained<AnyObject> = unsafe {
            msg_send![self.as_inner(), newRenderPipelineStateWithDescriptor: descriptor.as_inner(), dynamicLinkingDescriptor: linking.map(metal4::RenderPipelineDynamicLinkingDescriptor::as_inner), compilerTaskOptions: options.map(metal4::CompilerTaskOptions::as_inner), completionHandler: &*block]
        };
        Ok(metal4::CompilerTask::from_inner(task))
    }

    /// Starts one-shot asynchronous specialization of a render pipeline.
    pub fn specialize_render_pipeline_async(
        &self,
        descriptor: RenderPipelineBuildDescriptor<'_>,
        pipeline: &RenderPipelineState,
        handler: impl FnOnce(Result<RenderPipelineState, Error>) + Send + 'static,
    ) -> Result<metal4::CompilerTask, Error> {
        if !self.supports(
            sel!(newRenderPipelineStateBySpecializationWithDescriptor:pipeline:completionHandler:),
        ) {
            return Err(unsupported(
                "newRenderPipelineStateBySpecializationWithDescriptor:pipeline:completionHandler:",
            ));
        }
        let state = Arc::new(Mutex::new(Some(handler)));
        let callback_state = Arc::clone(&state);
        let block = RcBlock::new(move |value: *mut AnyObject, error: *mut NSError| {
            let callback = callback_state
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner)
                .take();
            let Some(callback) = callback else {
                return;
            };
            let result = callback_error(value, error).map(render_pipeline);
            let _ = catch_unwind(AssertUnwindSafe(|| callback(result)));
        });
        // SAFETY: selector availability was checked; descriptor and pipeline
        // are live type-checked wrappers and Metal copies the exact-ABI block.
        let task: Retained<AnyObject> = unsafe {
            msg_send![self.as_inner(), newRenderPipelineStateBySpecializationWithDescriptor: descriptor.as_inner(), pipeline: &*pipeline.inner, completionHandler: &*block]
        };
        Ok(metal4::CompilerTask::from_inner(task))
    }

    /// Starts one-shot asynchronous binary-function compilation.
    pub fn new_binary_function_async(
        &self,
        descriptor: &metal4::BinaryFunctionDescriptor,
        options: Option<&metal4::CompilerTaskOptions>,
        handler: impl FnOnce(Result<metal4::BinaryFunction, Error>) + Send + 'static,
    ) -> Result<metal4::CompilerTask, Error> {
        if !self
            .supports(sel!(newBinaryFunctionWithDescriptor:compilerTaskOptions:completionHandler:))
        {
            return Err(unsupported(
                "newBinaryFunctionWithDescriptor:compilerTaskOptions:completionHandler:",
            ));
        }
        let state = Arc::new(Mutex::new(Some(handler)));
        let callback_state = Arc::clone(&state);
        let block = RcBlock::new(move |value: *mut AnyObject, error: *mut NSError| {
            let callback = callback_state
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner)
                .take();
            let Some(callback) = callback else {
                return;
            };
            let result = callback_error(value, error).map(metal4::BinaryFunction::from_inner);
            let _ = catch_unwind(AssertUnwindSafe(|| callback(result)));
        });
        // SAFETY: selector availability was checked; Metal copies the block,
        // whose arguments match the binary-function completion ABI.
        let task: Retained<AnyObject> = unsafe {
            msg_send![self.as_inner(), newBinaryFunctionWithDescriptor: descriptor.as_inner(), compilerTaskOptions: options.map(metal4::CompilerTaskOptions::as_inner), completionHandler: &*block]
        };
        Ok(metal4::CompilerTask::from_inner(task))
    }

    /// Starts one-shot asynchronous machine-learning pipeline compilation.
    pub fn new_machine_learning_pipeline_async(
        &self,
        descriptor: &metal4::MachineLearningPipelineDescriptor,
        handler: impl FnOnce(Result<metal4::MachineLearningPipelineState, Error>) + Send + 'static,
    ) -> Result<metal4::CompilerTask, Error> {
        if !self.supports(sel!(newMachineLearningPipelineStateWithDescriptor:completionHandler:)) {
            return Err(unsupported(
                "newMachineLearningPipelineStateWithDescriptor:completionHandler:",
            ));
        }
        let state = Arc::new(Mutex::new(Some(handler)));
        let callback_state = Arc::clone(&state);
        let block = RcBlock::new(move |value: *mut AnyObject, error: *mut NSError| {
            let callback = callback_state
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner)
                .take();
            let Some(callback) = callback else {
                return;
            };
            let result =
                callback_error(value, error).map(metal4::MachineLearningPipelineState::from_inner);
            let _ = catch_unwind(AssertUnwindSafe(|| callback(result)));
        });
        // SAFETY: selector availability was checked; Metal copies the block,
        // whose arguments match the machine-learning completion ABI.
        let task: Retained<AnyObject> = unsafe {
            msg_send![self.as_inner(), newMachineLearningPipelineStateWithDescriptor: descriptor.as_inner(), completionHandler: &*block]
        };
        Ok(metal4::CompilerTask::from_inner(task))
    }

    /// Starts one-shot asynchronous dynamic-library compilation from a library.
    pub fn new_dynamic_library_async(
        &self,
        library: &Library,
        handler: impl FnOnce(Result<metal::DynamicLibrary, Error>) + Send + 'static,
    ) -> Result<metal4::CompilerTask, Error> {
        if !self.supports(sel!(newDynamicLibrary:completionHandler:)) {
            return Err(unsupported("newDynamicLibrary:completionHandler:"));
        }
        let state = Arc::new(Mutex::new(Some(handler)));
        let callback_state = Arc::clone(&state);
        let block = RcBlock::new(move |value: *mut AnyObject, error: *mut NSError| {
            let callback = callback_state
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner)
                .take();
            let Some(callback) = callback else {
                return;
            };
            let result = callback_error(value, error).map(metal::DynamicLibrary::from_inner);
            let _ = catch_unwind(AssertUnwindSafe(|| callback(result)));
        });
        // SAFETY: selector availability was checked; library is live and
        // Metal copies the block with the dynamic-library completion ABI.
        let task: Retained<AnyObject> = unsafe {
            msg_send![self.as_inner(), newDynamicLibrary: library.as_any_object(), completionHandler: &*block]
        };
        Ok(metal4::CompilerTask::from_inner(task))
    }

    /// Starts one-shot asynchronous dynamic-library compilation from a file path.
    pub fn new_dynamic_library_from_path_async(
        &self,
        path: impl AsRef<Path>,
        handler: impl FnOnce(Result<metal::DynamicLibrary, Error>) + Send + 'static,
    ) -> Result<metal4::CompilerTask, Error> {
        let path = path
            .as_ref()
            .to_str()
            .ok_or_else(|| Error::invalid_argument("dynamic library path is not valid UTF-8"))?;
        if path.as_bytes().contains(&0) {
            return Err(Error::invalid_argument("dynamic library path contains NUL"));
        }
        if !self.supports(sel!(newDynamicLibraryWithURL:completionHandler:)) {
            return Err(unsupported("newDynamicLibraryWithURL:completionHandler:"));
        }
        let state = Arc::new(Mutex::new(Some(handler)));
        let callback_state = Arc::clone(&state);
        let block = RcBlock::new(move |value: *mut AnyObject, error: *mut NSError| {
            let callback = callback_state
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner)
                .take();
            let Some(callback) = callback else {
                return;
            };
            let result = callback_error(value, error).map(metal::DynamicLibrary::from_inner);
            let _ = catch_unwind(AssertUnwindSafe(|| callback(result)));
        });
        let url = NSURL::fileURLWithPath(&NSString::from_str(path));
        // SAFETY: selector availability was checked; URL is live for the call
        // and Metal copies the block with the exact completion ABI.
        let task: Retained<AnyObject> = unsafe {
            msg_send![self.as_inner(), newDynamicLibraryWithURL: &*url, completionHandler: &*block]
        };
        Ok(metal4::CompilerTask::from_inner(task))
    }
}

impl metal4::CompilerTaskOptions {
    /// Returns binary archives searched by this compilation task.
    pub fn lookup_archives_vec(&self) -> Result<Vec<metal::BinaryArchive>, Error> {
        if !self.as_inner().responds_to(sel!(lookupArchives)) {
            return Err(Error::unsupported(
                "MTL4CompilerTaskOptions.lookupArchives is unavailable",
            ));
        }
        // SAFETY: selector presence and its nullable NSArray return are checked.
        let array = unsafe { msg_send![self.as_inner(), lookupArchives] };
        Ok(array_objects(array)
            .into_iter()
            .map(metal::BinaryArchive::from_inner)
            .collect())
    }

    /// Replaces the binary archives searched by this compilation task.
    pub fn set_lookup_archives_slice(&self, values: &[metal::BinaryArchive]) -> Result<(), Error> {
        if !self.as_inner().responds_to(sel!(setLookupArchives:)) {
            return Err(Error::unsupported(
                "MTL4CompilerTaskOptions.setLookupArchives: is unavailable",
            ));
        }
        let array = object_array(values.iter().map(metal::BinaryArchive::as_inner));
        // SAFETY: selector presence is checked and every element is an owned
        // MTLBinaryArchive wrapper.
        unsafe {
            let _: () = msg_send![self.as_inner(), setLookupArchives: &*array];
        }
        Ok(())
    }
}

impl metal4::StaticLinkingDescriptor {
    /// Returns owned function descriptors, translating a nullable NSArray to an empty Vec.
    pub fn function_descriptors_vec(&self) -> Result<Vec<metal4::FunctionDescriptor>, Error> {
        if !self.as_inner().responds_to(sel!(functionDescriptors)) {
            return Err(Error::unsupported(
                "MTL4StaticLinkingDescriptor.functionDescriptors is unavailable",
            ));
        }
        // SAFETY: selector presence and its nullable NSArray return are checked.
        let array = unsafe { msg_send![self.as_inner(), functionDescriptors] };
        Ok(array_objects(array)
            .into_iter()
            .map(metal4::FunctionDescriptor::from_inner)
            .collect())
    }

    /// Replaces all public function descriptors from a borrowed Rust slice.
    pub fn set_function_descriptors_slice(
        &self,
        values: &[metal4::FunctionDescriptor],
    ) -> Result<(), Error> {
        if !self.as_inner().responds_to(sel!(setFunctionDescriptors:)) {
            return Err(Error::unsupported(
                "MTL4StaticLinkingDescriptor.setFunctionDescriptors: is unavailable",
            ));
        }
        let array = object_array(values.iter().map(metal4::FunctionDescriptor::as_inner));
        // SAFETY: selector presence is checked and the owned array contains
        // only MTL4FunctionDescriptor objects.
        unsafe {
            let _: () = msg_send![self.as_inner(), setFunctionDescriptors: &*array];
        }
        Ok(())
    }

    /// Returns owned private function descriptors.
    pub fn internal_functions(&self) -> Result<Vec<metal4::FunctionDescriptor>, Error> {
        if !self
            .as_inner()
            .responds_to(sel!(privateFunctionDescriptors))
        {
            return Err(Error::unsupported(
                "MTL4StaticLinkingDescriptor.privateFunctionDescriptors is unavailable",
            ));
        }
        // SAFETY: selector presence and its nullable NSArray return are checked.
        let array = unsafe { msg_send![self.as_inner(), privateFunctionDescriptors] };
        Ok(array_objects(array)
            .into_iter()
            .map(metal4::FunctionDescriptor::from_inner)
            .collect())
    }

    /// Replaces all private function descriptors from a borrowed Rust slice.
    pub fn set_internal_functions(
        &self,
        values: &[metal4::FunctionDescriptor],
    ) -> Result<(), Error> {
        if !self
            .as_inner()
            .responds_to(sel!(setPrivateFunctionDescriptors:))
        {
            return Err(Error::unsupported(
                "MTL4StaticLinkingDescriptor.setPrivateFunctionDescriptors: is unavailable",
            ));
        }
        let array = object_array(values.iter().map(metal4::FunctionDescriptor::as_inner));
        // SAFETY: selector presence is checked and the owned array contains
        // only MTL4FunctionDescriptor objects.
        unsafe {
            let _: () = msg_send![self.as_inner(), setPrivateFunctionDescriptors: &*array];
        }
        Ok(())
    }

    /// Returns named static-link groups as Rust strings and owned descriptors.
    pub fn groups_map(&self) -> Result<HashMap<String, Vec<metal4::FunctionDescriptor>>, Error> {
        if !self.as_inner().responds_to(sel!(groups)) {
            return Err(Error::unsupported(
                "MTL4StaticLinkingDescriptor.groups is unavailable",
            ));
        }
        // SAFETY: selector presence and its nullable NSDictionary return are checked.
        let dictionary: Option<Retained<AnyObject>> = unsafe { msg_send![self.as_inner(), groups] };
        let Some(dictionary) = dictionary else {
            return Ok(HashMap::new());
        };
        // SAFETY: the property is declared NSDictionary, whose allKeys result
        // is an NSArray retained here for traversal.
        let keys: Retained<AnyObject> = unsafe { msg_send![&*dictionary, allKeys] };
        let mut result = HashMap::new();
        for key in array_objects(Some(keys)) {
            // SAFETY: the SDK declares every key as NSString.
            let key_string: Retained<NSString> = unsafe { Retained::cast_unchecked(key.clone()) };
            // SAFETY: dictionary and key are live and objectForKey: returns the
            // NSArray<MTL4FunctionDescriptor *> associated with this key.
            let array: Option<Retained<AnyObject>> =
                unsafe { msg_send![&*dictionary, objectForKey: &*key] };
            let values = array_objects(array)
                .into_iter()
                .map(metal4::FunctionDescriptor::from_inner)
                .collect();
            result.insert(key_string.to_string(), values);
        }
        Ok(result)
    }

    /// Replaces named static-link groups from a Rust map.
    pub fn set_groups_map(
        &self,
        groups: &HashMap<String, Vec<metal4::FunctionDescriptor>>,
    ) -> Result<(), Error> {
        if groups.keys().any(|key| key.as_bytes().contains(&0)) {
            return Err(Error::invalid_argument(
                "static-link group name contains NUL",
            ));
        }
        if !self.as_inner().responds_to(sel!(setGroups:)) {
            return Err(Error::unsupported(
                "MTL4StaticLinkingDescriptor.setGroups: is unavailable",
            ));
        }
        let class = AnyClass::get(c"NSMutableDictionary")
            .ok_or_else(|| Error::unsupported("NSMutableDictionary is unavailable"))?;
        // SAFETY: NSMutableDictionary implements new and returns an owned empty dictionary.
        let dictionary: Retained<AnyObject> = unsafe { msg_send![class, new] };
        for (name, values) in groups {
            let key = NSString::from_str(name);
            let array = object_array(values.iter().map(metal4::FunctionDescriptor::as_inner));
            // SAFETY: key and value have the NSDictionary property's declared
            // NSString and NSArray<MTL4FunctionDescriptor *> classes.
            unsafe {
                let _: () = msg_send![&*dictionary, setObject: &*array, forKey: &*key];
            }
        }
        // SAFETY: selector is present and the dictionary has the exact declared
        // generic key/value object classes.
        unsafe {
            let _: () = msg_send![self.as_inner(), setGroups: &*dictionary];
        }
        Ok(())
    }
}

impl metal4::PipelineStageDynamicLinkingDescriptor {
    /// Returns owned binary functions selected for dynamic linking.
    pub fn binary_linked_functions_vec(&self) -> Result<Vec<metal4::BinaryFunction>, Error> {
        if !self.as_inner().responds_to(sel!(binaryLinkedFunctions)) {
            return Err(Error::unsupported(
                "MTL4PipelineStageDynamicLinkingDescriptor.binaryLinkedFunctions is unavailable",
            ));
        }
        // SAFETY: selector presence and its nullable NSArray return are checked.
        let array = unsafe { msg_send![self.as_inner(), binaryLinkedFunctions] };
        Ok(array_objects(array)
            .into_iter()
            .map(metal4::BinaryFunction::from_inner)
            .collect())
    }

    /// Replaces binary functions selected for dynamic linking.
    pub fn set_binary_linked_functions_slice(
        &self,
        values: &[metal4::BinaryFunction],
    ) -> Result<(), Error> {
        if !self.as_inner().responds_to(sel!(setBinaryLinkedFunctions:)) {
            return Err(Error::unsupported(
                "MTL4PipelineStageDynamicLinkingDescriptor.setBinaryLinkedFunctions: is unavailable",
            ));
        }
        let array = object_array(values.iter().map(metal4::BinaryFunction::as_inner));
        // SAFETY: selector presence is checked and every element conforms to
        // MTL4BinaryFunction by construction.
        unsafe {
            let _: () = msg_send![self.as_inner(), setBinaryLinkedFunctions: &*array];
        }
        Ok(())
    }

    /// Returns owned dynamic libraries preloaded for linking.
    pub fn preloaded_libraries_vec(&self) -> Result<Vec<metal::DynamicLibrary>, Error> {
        if !self.as_inner().responds_to(sel!(preloadedLibraries)) {
            return Err(Error::unsupported(
                "MTL4PipelineStageDynamicLinkingDescriptor.preloadedLibraries is unavailable",
            ));
        }
        // SAFETY: selector presence and its non-null NSArray return are checked.
        let array = unsafe { msg_send![self.as_inner(), preloadedLibraries] };
        Ok(array_objects(array)
            .into_iter()
            .map(metal::DynamicLibrary::from_inner)
            .collect())
    }

    /// Replaces dynamic libraries preloaded for linking.
    pub fn set_preloaded_libraries_slice(
        &self,
        values: &[metal::DynamicLibrary],
    ) -> Result<(), Error> {
        if !self.as_inner().responds_to(sel!(setPreloadedLibraries:)) {
            return Err(Error::unsupported(
                "MTL4PipelineStageDynamicLinkingDescriptor.setPreloadedLibraries: is unavailable",
            ));
        }
        let array = object_array(values.iter().map(metal::DynamicLibrary::as_inner));
        // SAFETY: selector presence is checked and every element conforms to
        // MTLDynamicLibrary by construction.
        unsafe {
            let _: () = msg_send![self.as_inner(), setPreloadedLibraries: &*array];
        }
        Ok(())
    }
}

macro_rules! binary_function_list {
    ($getter:ident, $setter:ident, $selector:ident, $set_selector:ident, $context:literal) => {
        /// Returns this pipeline-stage binary-function list as owned wrappers.
        pub fn $getter(&self) -> Result<Vec<metal4::BinaryFunction>, Error> {
            if !self.as_inner().responds_to(sel!($selector)) {
                return Err(Error::unsupported(concat!($context, " is unavailable")));
            }
            // SAFETY: selector presence and its nullable NSArray return are checked.
            let array = unsafe { msg_send![self.as_inner(), $selector] };
            Ok(array_objects(array).into_iter().map(metal4::BinaryFunction::from_inner).collect())
        }

        /// Replaces this pipeline-stage binary-function list from a Rust slice.
        pub fn $setter(&self, values: &[metal4::BinaryFunction]) -> Result<(), Error> {
            if !self.as_inner().responds_to(sel!($set_selector:)) {
                return Err(Error::unsupported(concat!($context, " setter is unavailable")));
            }
            let array = object_array(values.iter().map(metal4::BinaryFunction::as_inner));
            // SAFETY: selector presence is checked and every array element is
            // an owned MTL4BinaryFunction wrapper.
            unsafe { let _: () = msg_send![self.as_inner(), $set_selector: &*array]; }
            Ok(())
        }
    };
}

impl metal4::RenderPipelineBinaryFunctionsDescriptor {
    binary_function_list!(
        fragment_additional_binary_functions_vec,
        set_fragment_additional_binary_functions_slice,
        fragmentAdditionalBinaryFunctions,
        setFragmentAdditionalBinaryFunctions,
        "fragmentAdditionalBinaryFunctions"
    );
    binary_function_list!(
        mesh_additional_binary_functions_vec,
        set_mesh_additional_binary_functions_slice,
        meshAdditionalBinaryFunctions,
        setMeshAdditionalBinaryFunctions,
        "meshAdditionalBinaryFunctions"
    );
    binary_function_list!(
        object_additional_binary_functions_vec,
        set_object_additional_binary_functions_slice,
        objectAdditionalBinaryFunctions,
        setObjectAdditionalBinaryFunctions,
        "objectAdditionalBinaryFunctions"
    );
    binary_function_list!(
        tile_additional_binary_functions_vec,
        set_tile_additional_binary_functions_slice,
        tileAdditionalBinaryFunctions,
        setTileAdditionalBinaryFunctions,
        "tileAdditionalBinaryFunctions"
    );
    binary_function_list!(
        vertex_additional_binary_functions_vec,
        set_vertex_additional_binary_functions_slice,
        vertexAdditionalBinaryFunctions,
        setVertexAdditionalBinaryFunctions,
        "vertexAdditionalBinaryFunctions"
    );

    /// Restores every binary-function list to its default value.
    pub fn reset_safe(&self) -> Result<(), Error> {
        if !self.as_inner().responds_to(sel!(reset)) {
            return Err(Error::unsupported(
                "MTL4RenderPipelineBinaryFunctionsDescriptor.reset is unavailable",
            ));
        }
        // SAFETY: the zero-argument selector is present on this exact class.
        unsafe {
            let _: () = msg_send![self.as_inner(), reset];
        }
        Ok(())
    }
}

impl metal4::RenderPipelineColorAttachmentDescriptor {
    /// Restores the attachment's default blend and format state.
    pub fn reset_safe(&self) -> Result<(), Error> {
        if !self.as_inner().responds_to(sel!(reset)) {
            return Err(Error::unsupported(
                "MTL4RenderPipelineColorAttachmentDescriptor.reset is unavailable",
            ));
        }
        // SAFETY: the zero-argument selector is present on this exact class.
        unsafe {
            let _: () = msg_send![self.as_inner(), reset];
        }
        Ok(())
    }
}

impl metal4::RenderPipelineColorAttachmentDescriptorArray {
    /// Returns the attachment at an index, rejecting unreasonable indices before Objective-C.
    pub fn attachment(
        &self,
        index: usize,
    ) -> Result<Option<metal4::RenderPipelineColorAttachmentDescriptor>, Error> {
        if index >= 8 {
            return Err(Error::invalid_argument(
                "render color attachment index must be below 8",
            ));
        }
        if !self.as_inner().responds_to(sel!(objectAtIndexedSubscript:)) {
            return Err(Error::unsupported(
                "MTL4RenderPipelineColorAttachmentDescriptorArray.object is unavailable",
            ));
        }
        // SAFETY: selector is present and index is restricted to Metal's eight
        // render color attachment slots.
        let value: Option<Retained<AnyObject>> =
            unsafe { msg_send![self.as_inner(), objectAtIndexedSubscript: index] };
        Ok(value.map(metal4::RenderPipelineColorAttachmentDescriptor::from_inner))
    }

    /// Replaces the attachment at an index.
    pub fn set_attachment(
        &self,
        index: usize,
        value: &metal4::RenderPipelineColorAttachmentDescriptor,
    ) -> Result<(), Error> {
        if index >= 8 {
            return Err(Error::invalid_argument(
                "render color attachment index must be below 8",
            ));
        }
        if !self
            .as_inner()
            .responds_to(sel!(setObject:atIndexedSubscript:))
        {
            return Err(Error::unsupported(
                "MTL4RenderPipelineColorAttachmentDescriptorArray.setObject is unavailable",
            ));
        }
        // SAFETY: selector is present, index is validated, and the value is an
        // owned attachment descriptor.
        unsafe {
            let _: () =
                msg_send![self.as_inner(), setObject: value.as_inner(), atIndexedSubscript: index];
        }
        Ok(())
    }

    /// Restores the array's default attachment state.
    pub fn reset_safe(&self) -> Result<(), Error> {
        if !self.as_inner().responds_to(sel!(reset)) {
            return Err(Error::unsupported(
                "MTL4RenderPipelineColorAttachmentDescriptorArray.reset is unavailable",
            ));
        }
        // SAFETY: the zero-argument selector is present on this exact class.
        unsafe {
            let _: () = msg_send![self.as_inner(), reset];
        }
        Ok(())
    }
}

impl metal4::RenderPipelineDescriptor {
    /// Restores all render-pipeline properties to Metal defaults.
    pub fn reset_safe(&self) -> Result<(), Error> {
        if !self.as_inner().responds_to(sel!(reset)) {
            return Err(Error::unsupported(
                "MTL4RenderPipelineDescriptor.reset is unavailable",
            ));
        }
        // SAFETY: the zero-argument selector is present on this exact class.
        unsafe {
            let _: () = msg_send![self.as_inner(), reset];
        }
        Ok(())
    }
}

fn required_threadgroup_size(size: crate::metal::Size) -> Result<MTLSize, Error> {
    let all_zero = size.width == 0 && size.height == 0 && size.depth == 0;
    let all_nonzero = size.width != 0 && size.height != 0 && size.depth != 0;
    if !all_zero && !all_nonzero {
        return Err(Error::invalid_argument(
            "required threadgroup size must be entirely zero or entirely non-zero",
        ));
    }
    size.width
        .checked_mul(size.height)
        .and_then(|value| value.checked_mul(size.depth))
        .ok_or_else(|| Error::invalid_argument("required threadgroup size overflows usize"))?;
    Ok(size.into())
}

macro_rules! required_threads_descriptor {
    ($type:ty, $context:literal) => {
        impl $type {
            /// Returns the optional required threadgroup size.
            pub fn required_threads_per_threadgroup_safe(
                &self,
            ) -> Result<crate::metal::Size, Error> {
                if !self
                    .as_inner()
                    .responds_to(sel!(requiredThreadsPerThreadgroup))
                {
                    return Err(Error::unsupported(concat!(
                        $context,
                        ".requiredThreadsPerThreadgroup is unavailable"
                    )));
                }
                // SAFETY: selector presence is checked and MTLSize has the
                // exact SDK-declared aggregate return ABI.
                let value: MTLSize =
                    unsafe { msg_send![self.as_inner(), requiredThreadsPerThreadgroup] };
                Ok(crate::metal::Size::new(
                    value.width,
                    value.height,
                    value.depth,
                ))
            }

            /// Sets or disables the required threadgroup size after validation.
            pub fn set_required_threads_per_threadgroup_safe(
                &self,
                size: crate::metal::Size,
            ) -> Result<(), Error> {
                let size = required_threadgroup_size(size)?;
                if !self
                    .as_inner()
                    .responds_to(sel!(setRequiredThreadsPerThreadgroup:))
                {
                    return Err(Error::unsupported(concat!(
                        $context,
                        ".setRequiredThreadsPerThreadgroup: is unavailable"
                    )));
                }
                // SAFETY: selector presence is checked and size was validated
                // as disabled or a complete non-zero three-dimensional size.
                unsafe {
                    let _: () = msg_send![self.as_inner(), setRequiredThreadsPerThreadgroup: size];
                }
                Ok(())
            }

            /// Restores the descriptor to Metal defaults.
            pub fn reset_pipeline_descriptor(&self) -> Result<(), Error> {
                if !self.as_inner().responds_to(sel!(reset)) {
                    return Err(Error::unsupported(concat!(
                        $context,
                        ".reset is unavailable"
                    )));
                }
                // SAFETY: the zero-argument selector is present on this exact class.
                unsafe {
                    let _: () = msg_send![self.as_inner(), reset];
                }
                Ok(())
            }
        }
    };
}

required_threads_descriptor!(
    metal4::ComputePipelineDescriptor,
    "MTL4ComputePipelineDescriptor"
);
required_threads_descriptor!(
    metal4::TileRenderPipelineDescriptor,
    "MTL4TileRenderPipelineDescriptor"
);

impl metal4::StitchedFunctionDescriptor {
    /// Returns the stitched function's component descriptors.
    pub fn function_descriptors_vec(&self) -> Result<Vec<metal4::FunctionDescriptor>, Error> {
        if !self.as_inner().responds_to(sel!(functionDescriptors)) {
            return Err(Error::unsupported(
                "MTL4StitchedFunctionDescriptor.functionDescriptors is unavailable",
            ));
        }
        // SAFETY: selector presence and its nullable NSArray return are checked.
        let array = unsafe { msg_send![self.as_inner(), functionDescriptors] };
        Ok(array_objects(array)
            .into_iter()
            .map(metal4::FunctionDescriptor::from_inner)
            .collect())
    }

    /// Replaces the stitched function's component descriptors.
    pub fn set_function_descriptors_slice(
        &self,
        values: &[metal4::FunctionDescriptor],
    ) -> Result<(), Error> {
        if !self.as_inner().responds_to(sel!(setFunctionDescriptors:)) {
            return Err(Error::unsupported(
                "MTL4StitchedFunctionDescriptor.setFunctionDescriptors: is unavailable",
            ));
        }
        let array = object_array(values.iter().map(metal4::FunctionDescriptor::as_inner));
        // SAFETY: selector presence is checked and all array elements are
        // type-checked MTL4FunctionDescriptor wrappers.
        unsafe {
            let _: () = msg_send![self.as_inner(), setFunctionDescriptors: &*array];
        }
        Ok(())
    }
}

impl metal4::RenderPassDescriptor {
    /// Returns up to `count` programmable sample positions as owned values.
    pub fn sample_positions_vec(
        &self,
        count: usize,
    ) -> Result<Vec<crate::metal::generated_struct_types::SamplePosition>, Error> {
        if count > 32 {
            return Err(Error::invalid_argument(
                "Metal supports at most 32 programmable sample positions",
            ));
        }
        if !self.as_inner().responds_to(sel!(getSamplePositions:count:)) {
            return Err(Error::unsupported(
                "MTL4RenderPassDescriptor programmable sample positions are unavailable",
            ));
        }
        let mut positions = vec![MTLSamplePosition { x: 0.0, y: 0.0 }; count];
        // SAFETY: the vector owns writable storage for exactly count values;
        // Metal writes synchronously and returns the initialized prefix length.
        let written: usize = unsafe {
            msg_send![self.as_inner(), getSamplePositions: positions.as_mut_ptr(), count: count]
        };
        if written > count {
            return Err(Error::unsupported(
                "Metal returned more sample positions than requested",
            ));
        }
        positions.truncate(written);
        Ok(positions
            .into_iter()
            .map(
                |value| crate::metal::generated_struct_types::SamplePosition {
                    x: value.x,
                    y: value.y,
                },
            )
            .collect())
    }

    /// Sets programmable sample positions from a borrowed Rust slice.
    pub fn set_sample_positions_slice(
        &self,
        positions: &[crate::metal::generated_struct_types::SamplePosition],
    ) -> Result<(), Error> {
        if positions.len() > 32
            || positions
                .iter()
                .any(|position| !position.x.is_finite() || !position.y.is_finite())
        {
            return Err(Error::invalid_argument(
                "sample positions must be finite and contain at most 32 entries",
            ));
        }
        if !self.as_inner().responds_to(sel!(setSamplePositions:count:)) {
            return Err(Error::unsupported(
                "MTL4RenderPassDescriptor programmable sample positions are unavailable",
            ));
        }
        let positions: Vec<_> = positions
            .iter()
            .map(|value| MTLSamplePosition {
                x: value.x,
                y: value.y,
            })
            .collect();
        // SAFETY: the pointer references positions.len() initialized values
        // and Metal copies them synchronously.
        unsafe {
            let _: () = msg_send![self.as_inner(), setSamplePositions: positions.as_ptr(), count: positions.len()];
        }
        Ok(())
    }
}

impl metal4::PipelineDataSetSerializer {
    fn as_serializer(&self) -> &ProtocolObject<dyn MTL4PipelineDataSetSerializer> {
        // SAFETY: this wrapper is constructed only from selectors declared to
        // return an object conforming to MTL4PipelineDataSetSerializer.
        unsafe {
            &*(std::ptr::from_ref(self.as_inner())
                .cast::<ProtocolObject<dyn MTL4PipelineDataSetSerializer>>())
        }
    }

    /// Serializes captured binaries to an archive at a validated file path.
    pub fn serialize_archive_to_path(&self, path: impl AsRef<Path>) -> Result<(), Error> {
        let path = path
            .as_ref()
            .to_str()
            .ok_or_else(|| Error::invalid_argument("archive path is not valid UTF-8"))?;
        if path.as_bytes().contains(&0) {
            return Err(Error::invalid_argument("archive path contains NUL"));
        }
        if !self
            .as_inner()
            .responds_to(sel!(serializeAsArchiveAndFlushToURL:error:))
        {
            return Err(Error::unsupported(
                "pipeline archive serialization is unavailable",
            ));
        }
        let url = NSURL::fileURLWithPath(&NSString::from_str(path));
        self.as_serializer()
            .serializeAsArchiveAndFlushToURL_error(&url)
            .map_err(|error| metal_error(&error))
    }

    /// Serializes captured pipeline descriptors into owned script bytes.
    pub fn serialize_pipelines_script(&self) -> Result<Vec<u8>, Error> {
        if !self
            .as_inner()
            .responds_to(sel!(serializeAsPipelinesScriptWithError:))
        {
            return Err(Error::unsupported(
                "pipeline script serialization is unavailable",
            ));
        }
        let data: Retained<NSData> = self
            .as_serializer()
            .serializeAsPipelinesScriptWithError()
            .map_err(|error| metal_error(&error))?;
        let mut bytes = vec![0_u8; data.length()];
        if !bytes.is_empty() {
            let pointer = std::ptr::NonNull::new(bytes.as_mut_ptr().cast::<c_void>())
                .expect("a non-empty Vec has a non-null allocation");
            // SAFETY: pointer references exactly data.length() writable bytes;
            // NSData copies synchronously into the caller-owned Vec.
            unsafe { data.getBytes_length(pointer, bytes.len()) };
        }
        Ok(bytes)
    }
}

impl metal4::CommandAllocator {
    /// Returns the number of bytes currently allocated by this allocator.
    pub fn allocated_size_safe(&self) -> Result<u64, Error> {
        if !self.as_inner().responds_to(sel!(allocatedSize)) {
            return Err(Error::unsupported(
                "MTL4CommandAllocator.allocatedSize is unavailable",
            ));
        }
        // SAFETY: selector presence is checked and uint64_t has the exact u64 ABI.
        Ok(unsafe { msg_send![self.as_inner(), allocatedSize] })
    }

    /// Reclaims allocator storage that is no longer referenced by GPU work.
    pub fn reset_safe(&self) -> Result<(), Error> {
        if !self.as_inner().responds_to(sel!(reset)) {
            return Err(Error::unsupported(
                "MTL4CommandAllocator.reset is unavailable",
            ));
        }
        // SAFETY: the zero-argument selector is present on this exact class.
        unsafe {
            let _: () = msg_send![self.as_inner(), reset];
        }
        Ok(())
    }
}

impl metal4::CompilerTask {
    /// Blocks until the compiler task finishes after checking availability.
    pub fn wait_until_completed_safe(&self) -> Result<(), Error> {
        if !self.as_inner().responds_to(sel!(waitUntilCompleted)) {
            return Err(Error::unsupported(
                "MTL4CompilerTask.waitUntilCompleted is unavailable",
            ));
        }
        // SAFETY: the zero-argument selector is present and blocks only the
        // calling thread according to the framework contract.
        unsafe {
            let _: () = msg_send![self.as_inner(), waitUntilCompleted];
        }
        Ok(())
    }
}