1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ptr::NonNull;
#[cfg(feature = "objc2-core-foundation")]
use objc2_core_foundation::*;
use crate::*;
#[cfg(feature = "objc2-core-foundation")]
unsafe impl ConcreteType for ODNodeRef {
/// Standard GetTypeID function support for CF-based objects
///
/// Returns the typeID for the ODNode objects
///
/// Returns: a valid CFTypeID for the ODNode object
#[doc(alias = "ODNodeGetTypeID")]
#[inline]
fn type_id() -> CFTypeID {
extern "C-unwind" {
fn ODNodeGetTypeID() -> CFTypeID;
}
unsafe { ODNodeGetTypeID() }
}
}
impl ODNodeRef {
/// Creates an ODNodeRef based on a specific node type
///
/// Creates an ODNodeRef based on a specific node type
///
/// Parameter `allocator`: a memory allocator to use for this object
///
/// Parameter `session`: an ODSessionRef, either kODSessionDefault or a valid ODSessionRef can be passed
///
/// Parameter `nodeType`: an ODNodeType of the node to open
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a valid ODNodeRef if successful, otherwise returns NULL. outError can be checked for details upon
/// failure.
///
/// # Safety
///
/// - `allocator` might not allow `None`.
/// - `session` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeCreateWithNodeType")]
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[inline]
pub unsafe fn with_node_type(
allocator: Option<&CFAllocator>,
session: Option<&ODSessionRef>,
node_type: ODNodeType,
error: *mut *mut CFError,
) -> Option<CFRetained<ODNodeRef>> {
extern "C-unwind" {
fn ODNodeCreateWithNodeType(
allocator: Option<&CFAllocator>,
session: Option<&ODSessionRef>,
node_type: ODNodeType,
error: *mut *mut CFError,
) -> Option<NonNull<ODNodeRef>>;
}
let ret = unsafe { ODNodeCreateWithNodeType(allocator, session, node_type, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// Creates an ODNodeRef based on a partciular node name
///
/// Creates an ODNodeRef based on a particular node name
///
/// Parameter `allocator`: a memory allocator to use for this object
///
/// Parameter `session`: an ODSessionRef, either kODSessionDefault or a valid ODSessionRef can be passed
///
/// Parameter `nodeName`: a CFStringRef of the name of the node to open
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a valid ODNodeRef if successful, otherwise returns NULL. outError can be checked for specific
/// error
///
/// # Safety
///
/// - `allocator` might not allow `None`.
/// - `session` might not allow `None`.
/// - `node_name` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeCreateWithName")]
#[cfg(feature = "objc2-core-foundation")]
#[inline]
pub unsafe fn with_name(
allocator: Option<&CFAllocator>,
session: Option<&ODSessionRef>,
node_name: Option<&CFString>,
error: *mut *mut CFError,
) -> Option<CFRetained<ODNodeRef>> {
extern "C-unwind" {
fn ODNodeCreateWithName(
allocator: Option<&CFAllocator>,
session: Option<&ODSessionRef>,
node_name: Option<&CFString>,
error: *mut *mut CFError,
) -> Option<NonNull<ODNodeRef>>;
}
let ret = unsafe { ODNodeCreateWithName(allocator, session, node_name, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// Creates a copy, including any remote credentials used for Proxy and/or Node authentication
///
/// Creates a copy of the object including all credentials used for the original. Can be used for future
/// references to the same node setup.
///
/// Parameter `allocator`: a memory allocator to use for this object
///
/// Parameter `node`: an ODNodeRef to make a copy of
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a valid ODNodeRef if successful, otherwise returns NULL, with outError set to a CFErrorRef
///
/// # Safety
///
/// - `allocator` might not allow `None`.
/// - `node` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeCreateCopy")]
#[cfg(feature = "objc2-core-foundation")]
#[inline]
pub unsafe fn new_copy(
allocator: Option<&CFAllocator>,
node: Option<&ODNodeRef>,
error: *mut *mut CFError,
) -> Option<CFRetained<ODNodeRef>> {
extern "C-unwind" {
fn ODNodeCreateCopy(
allocator: Option<&CFAllocator>,
node: Option<&ODNodeRef>,
error: *mut *mut CFError,
) -> Option<NonNull<ODNodeRef>>;
}
let ret = unsafe { ODNodeCreateCopy(allocator, node, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// Returns a CFArray of subnode names for this node, which may contain sub-nodes or search policy nodes
///
/// Returns a CFArray of subnode names for this node, which may contain sub-nodes or search policy nodes.
/// Commonly used with Search policy nodes.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a CFArrayRef with the list of nodes, otherwise NULL, with outError set to a CFErrorRef
///
/// # Safety
///
/// `error` must be a valid pointer.
#[doc(alias = "ODNodeCopySubnodeNames")]
#[cfg(feature = "objc2-core-foundation")]
#[inline]
pub unsafe fn subnode_names(&self, error: *mut *mut CFError) -> Option<CFRetained<CFArray>> {
extern "C-unwind" {
fn ODNodeCopySubnodeNames(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<NonNull<CFArray>>;
}
let ret = unsafe { ODNodeCopySubnodeNames(self, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// Will return names of subnodes that are not currently reachable.
///
/// Will return names of subnodes that are not currently reachable. Commonly used with Search policy nodes
/// to determine if any nodes are currently unreachable, but may also return other subnodes if the
/// Open Directory plugin supports.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a CFArrayRef with the list of unreachable nodes or NULL if no bad nodes
///
/// # Safety
///
/// `error` must be a valid pointer.
#[doc(alias = "ODNodeCopyUnreachableSubnodeNames")]
#[cfg(feature = "objc2-core-foundation")]
#[inline]
pub unsafe fn unreachable_subnode_names(
&self,
error: *mut *mut CFError,
) -> Option<CFRetained<CFArray>> {
extern "C-unwind" {
fn ODNodeCopyUnreachableSubnodeNames(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<NonNull<CFArray>>;
}
let ret = unsafe { ODNodeCopyUnreachableSubnodeNames(self, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// Returns the node name of the node that was opened
///
/// Returns the node name of the node that was opened
///
/// Parameter `node`: an ODNodeRef to use
///
/// Returns: a CFStringRef of the node name that is current or NULL if no open node
#[doc(alias = "ODNodeGetName")]
#[cfg(feature = "objc2-core-foundation")]
#[inline]
pub unsafe fn name(&self) -> Option<CFRetained<CFString>> {
extern "C-unwind" {
fn ODNodeGetName(node: &ODNodeRef) -> Option<NonNull<CFString>>;
}
let ret = unsafe { ODNodeGetName(self) };
ret.map(|ret| unsafe { CFRetained::retain(ret) })
}
/// Returns a dictionary with details about the node in dictionary form
///
/// Returns a dictionary with details about the node in dictionary form.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `keys`: a CFArrayRef listing the keys the user wants returned, such as
/// kODAttributeTypeStreet
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a CFDictionaryRef containing the requested key and values in form of a CFArray
///
/// # Safety
///
/// - `keys` generic must be of the correct type.
/// - `keys` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeCopyDetails")]
#[cfg(feature = "objc2-core-foundation")]
#[inline]
pub unsafe fn details(
&self,
keys: Option<&CFArray>,
error: *mut *mut CFError,
) -> Option<CFRetained<CFDictionary>> {
extern "C-unwind" {
fn ODNodeCopyDetails(
node: &ODNodeRef,
keys: Option<&CFArray>,
error: *mut *mut CFError,
) -> Option<NonNull<CFDictionary>>;
}
let ret = unsafe { ODNodeCopyDetails(self, keys, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// Returns a CFArrayRef of the record types supported by this node.
///
/// Returns a CFArrayRef of the record types supported by this node. If node does not support the check
/// then all possible types will be returned.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a valid CFArrayRef of CFStrings listing the supported Record types on this node.
///
/// # Safety
///
/// `error` must be a valid pointer.
#[doc(alias = "ODNodeCopySupportedRecordTypes")]
#[cfg(feature = "objc2-core-foundation")]
#[inline]
pub unsafe fn supported_record_types(
&self,
error: *mut *mut CFError,
) -> Option<CFRetained<CFArray>> {
extern "C-unwind" {
fn ODNodeCopySupportedRecordTypes(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<NonNull<CFArray>>;
}
let ret = unsafe { ODNodeCopySupportedRecordTypes(self, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// Will return a list of attribute types supported for that attribute if possible
///
/// Will return a list of attribute types supported for that attribute if possible. If no specific
/// types are available, then all possible values will be returned instead.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `recordType`: a ODRecordTypeRef with the type of record to check attribute types. If NULL is passed it will
/// return all possible attributes that are available.
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a valid CFArrayRef of CFStrings listing the attributes supported for the requested record type
///
/// # Safety
///
/// - `record_type` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeCopySupportedAttributes")]
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[inline]
pub unsafe fn supported_attributes(
&self,
record_type: Option<&ODRecordType>,
error: *mut *mut CFError,
) -> Option<CFRetained<CFArray>> {
extern "C-unwind" {
fn ODNodeCopySupportedAttributes(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
error: *mut *mut CFError,
) -> Option<NonNull<CFArray>>;
}
let ret = unsafe { ODNodeCopySupportedAttributes(self, record_type, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// Sets the credentials for interaction with the ODNode
///
/// Sets the credentials for interaction with the ODNode. Record references, etc. will use these credentials
/// to query or change data. Setting the credentials on a node referenced by other OD object types will
/// change the credentials for all for all references.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `recordType`: a ODRecordTypeRef of the Record Type to use, if NULL is passed, defaults to a
/// kODRecordTypeUsers
///
/// Parameter `recordName`: a CFString of the username to be used for this node authentication
///
/// Parameter `password`: a CFString of the password to be used for this node authentication
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: returns true on success, otherwise outError can be checked for details. If the authentication failed,
/// the previous credentials are used.
///
/// # Safety
///
/// - `record_type` might not allow `None`.
/// - `record_name` might not allow `None`.
/// - `password` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeSetCredentials")]
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[inline]
pub unsafe fn set_credentials(
&self,
record_type: Option<&ODRecordType>,
record_name: Option<&CFString>,
password: Option<&CFString>,
error: *mut *mut CFError,
) -> bool {
extern "C-unwind" {
fn ODNodeSetCredentials(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
record_name: Option<&CFString>,
password: Option<&CFString>,
error: *mut *mut CFError,
) -> bool;
}
unsafe { ODNodeSetCredentials(self, record_type, record_name, password, error) }
}
/// Allows use of other Open Directory types of authentications to set the credentials for an ODNode
///
/// Allows the caller to use other types of authentications that are available in Open Directory, that may
/// require response-request loops, etc. Not all OD plugins will support this call, look for
/// kODErrorCredentialsMethodNotSupported in outError.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `recordType`: a ODRecordType of the type of record to do the authentication with
///
/// Parameter `authType`: a ODAuthenticationType of the type of authentication to be used (e.g., kDSStdAuthNTLMv2)
///
/// Parameter `authItems`: a CFArray of CFData or CFString items that will be sent in order to the auth process
///
/// Parameter `outAuthItems`: will be assigned to a pointer of a CFArray of CFData items if there are returned values
///
/// Parameter `outContext`: will return a pointer to a context if caller supplies a container, and the call requires a
/// context. If a non-NULL value is returned, then more calls must be made with the Context to continue
/// the authorization.
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a bool will be returned with the result of the operation and outAuthItems set with response items
/// and outContext set for any needed continuation.
///
/// # Safety
///
/// - `record_type` might not allow `None`.
/// - `auth_type` might not allow `None`.
/// - `auth_items` generic must be of the correct type.
/// - `auth_items` might not allow `None`.
/// - `out_auth_items` must be a valid pointer.
/// - `out_context` must be a valid pointer.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeSetCredentialsExtended")]
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[inline]
pub unsafe fn set_credentials_extended(
&self,
record_type: Option<&ODRecordType>,
auth_type: Option<&ODAuthenticationType>,
auth_items: Option<&CFArray>,
out_auth_items: *mut *const CFArray,
out_context: *mut *const ODContextRef,
error: *mut *mut CFError,
) -> bool {
extern "C-unwind" {
fn ODNodeSetCredentialsExtended(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
auth_type: Option<&ODAuthenticationType>,
auth_items: Option<&CFArray>,
out_auth_items: *mut *const CFArray,
out_context: *mut *const ODContextRef,
error: *mut *mut CFError,
) -> bool;
}
unsafe {
ODNodeSetCredentialsExtended(
self,
record_type,
auth_type,
auth_items,
out_auth_items,
out_context,
error,
)
}
}
/// Unsupported function.
///
/// Unsupported function.
///
/// # Safety
///
/// - `cache_name` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeSetCredentialsUsingKerberosCache")]
#[cfg(feature = "objc2-core-foundation")]
#[deprecated]
#[inline]
pub unsafe fn set_credentials_using_kerberos_cache(
&self,
cache_name: Option<&CFString>,
error: *mut *mut CFError,
) -> bool {
extern "C-unwind" {
fn ODNodeSetCredentialsUsingKerberosCache(
node: &ODNodeRef,
cache_name: Option<&CFString>,
error: *mut *mut CFError,
) -> bool;
}
unsafe { ODNodeSetCredentialsUsingKerberosCache(self, cache_name, error) }
}
/// Takes a record and all of the provided attributes and creates the record in the node
///
/// Takes all the provided attributes and type to create an entire record. The function will assign a
/// UUID to the record automatically. This UUID can be overwritten by the client by passing with the
/// other attributes.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `recordType`: a ODRecordTypeRef of the type of record (e.g., kODRecordTypeUsers, etc.)
///
/// Parameter `recordName`: a CFStringRef of the name of record
///
/// Parameter `attributeDict`: a CFDictionaryRef of key-value pairs for attribute values. The key is a CFStringRef of the
/// attribute name or ODRecordType constant such as kODAttributeTypeRecordName. The value must be a CFArrayRef of
/// CFDataRef or CFStringRef. If additional kODAttributeTypeRecordName are to be set, they can be passed in the
/// inAttributes list. This parameter is optional and can be NULL. If any of the attributes passed
/// fail to be set, the record will be deleted and outError will be set with the appropriate error.
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: returns a valid ODRecordRef. If the add fails, outError can be checked for details.
///
/// # Safety
///
/// - `record_type` might not allow `None`.
/// - `record_name` might not allow `None`.
/// - `attribute_dict` generics must be of the correct type.
/// - `attribute_dict` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeCreateRecord")]
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[inline]
pub unsafe fn create_record(
&self,
record_type: Option<&ODRecordType>,
record_name: Option<&CFString>,
attribute_dict: Option<&CFDictionary>,
error: *mut *mut CFError,
) -> Option<CFRetained<ODRecordRef>> {
extern "C-unwind" {
fn ODNodeCreateRecord(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
record_name: Option<&CFString>,
attribute_dict: Option<&CFDictionary>,
error: *mut *mut CFError,
) -> Option<NonNull<ODRecordRef>>;
}
let ret =
unsafe { ODNodeCreateRecord(self, record_type, record_name, attribute_dict, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// Simple API to open / create a references to a particular record on a Node
///
/// Simple API to open / create a references to a particular record on a Node
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `recordType`: a ODRecordTypeRef of the record type to copy
///
/// Parameter `recordName`: a CFStringRef of the record name to copy
///
/// Parameter `attributes`: (optional) a CFArrayRef (or single ODAttributeType) of the attributes to copy from the directory. Can be NULL when no
/// attributes are needed. Any standard types can be passed, for example
/// kODAttributeTypeAllAttributes will fetch all attributes up front. If just standard attributes are needed, then
/// kODAttributeTypeStandardOnly can be passed.
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: returns a valid ODRecordRef. If the record copy fails, the error can be checked for details.
/// If the record is not found, will return NULL with a NULL error.
///
/// # Safety
///
/// - `record_type` might not allow `None`.
/// - `record_name` might not allow `None`.
/// - `attributes` should be of the correct type.
/// - `attributes` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeCopyRecord")]
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[inline]
pub unsafe fn copy_record(
&self,
record_type: Option<&ODRecordType>,
record_name: Option<&CFString>,
attributes: Option<&CFType>,
error: *mut *mut CFError,
) -> Option<CFRetained<ODRecordRef>> {
extern "C-unwind" {
fn ODNodeCopyRecord(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
record_name: Option<&CFString>,
attributes: Option<&CFType>,
error: *mut *mut CFError,
) -> Option<NonNull<ODRecordRef>>;
}
let ret = unsafe { ODNodeCopyRecord(self, record_type, record_name, attributes, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// Sends a custom call to a node.
///
/// This will send a custom call to a node along with the specified data, returning the result.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `customCode`: the custom code to be sent to the node
///
/// Parameter `data`: a data blob expected by the custom code, can be NULL of no send data
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a CFDataRef with the result of the operation, otherwise outError can be checked for specific details
///
/// # Safety
///
/// - `data` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeCustomCall")]
#[cfg(feature = "objc2-core-foundation")]
#[inline]
pub unsafe fn custom_call(
&self,
custom_code: CFIndex,
data: Option<&CFData>,
error: *mut *mut CFError,
) -> Option<CFRetained<CFData>> {
extern "C-unwind" {
fn ODNodeCustomCall(
node: &ODNodeRef,
custom_code: CFIndex,
data: Option<&CFData>,
error: *mut *mut CFError,
) -> Option<NonNull<CFData>>;
}
let ret = unsafe { ODNodeCustomCall(self, custom_code, data, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// Sends a named custom function call to a node.
///
///
/// Sends a named custom function call to a node. Custom functions are defined by the modules that implement them
/// and the parameter is defined by the module.
///
///
/// Parameter `node`: An ODNodeRef to use
///
///
/// Parameter `function`: A CFStringRef that specifies the name of the function
///
///
/// Parameter `payload`: A CFType appropriate for the custom function. The type is dictated by the module implementing the function.
///
///
/// Parameter `error`: An optional CFErrorRef reference to receive any errors from the custom function call.
///
///
/// Returns: Returns a CFType appropriate for the function.
///
/// # Safety
///
/// - `function` might not allow `None`.
/// - `payload` should be of the correct type.
/// - `payload` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeCustomFunction")]
#[cfg(feature = "objc2-core-foundation")]
#[inline]
pub unsafe fn custom_function(
&self,
function: Option<&CFString>,
payload: Option<&CFType>,
error: *mut *mut CFError,
) -> Option<CFRetained<CFType>> {
extern "C-unwind" {
fn ODNodeCustomFunction(
node: &ODNodeRef,
function: Option<&CFString>,
payload: Option<&CFType>,
error: *mut *mut CFError,
) -> Option<NonNull<CFType>>;
}
let ret = unsafe { ODNodeCustomFunction(self, function, payload, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// This will copy any policies configured for the node.
///
/// This will copy any policies configured for the node.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a CFDictionaryRef containing all currently set policies
///
/// # Safety
///
/// `error` must be a valid pointer.
#[doc(alias = "ODNodeCopyPolicies")]
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "use ODNodeCopyAccountPolicies"]
#[inline]
pub unsafe fn policies(&self, error: *mut *mut CFError) -> Option<CFRetained<CFDictionary>> {
extern "C-unwind" {
fn ODNodeCopyPolicies(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<NonNull<CFDictionary>>;
}
let ret = unsafe { ODNodeCopyPolicies(self, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// This will return a dictionary of supported policies.
///
/// This will return a dictionary of supported policies, if appropriate, the value will be the maximum value allowed
/// for the policy in question. For example, if password history is available, it will state how much history is
/// supported.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a CFDictionaryRef containing all currently supported policies. The values will be the maximum value allowed.
///
/// # Safety
///
/// `error` must be a valid pointer.
#[doc(alias = "ODNodeCopySupportedPolicies")]
#[cfg(feature = "objc2-core-foundation")]
#[deprecated]
#[inline]
pub unsafe fn supported_policies(
&self,
error: *mut *mut CFError,
) -> Option<CFRetained<CFDictionary>> {
extern "C-unwind" {
fn ODNodeCopySupportedPolicies(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<NonNull<CFDictionary>>;
}
let ret = unsafe { ODNodeCopySupportedPolicies(self, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// This will set the policy for the node.
///
/// This will set the policy for the node. Policies are evaluated in combination with record-level policies.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `policies`: a CFDictionary of policies to be set
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a bool which signifies if the policy set succeeded, otherwise error is set.
///
/// # Safety
///
/// - `policies` generics must be of the correct type.
/// - `policies` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeSetPolicies")]
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "use ODNodeSetAccountPolicies"]
#[inline]
pub unsafe fn set_policies(
&self,
policies: Option<&CFDictionary>,
error: *mut *mut CFError,
) -> bool {
extern "C-unwind" {
fn ODNodeSetPolicies(
node: &ODNodeRef,
policies: Option<&CFDictionary>,
error: *mut *mut CFError,
) -> bool;
}
unsafe { ODNodeSetPolicies(self, policies, error) }
}
/// This will set a specific policy setting for the node.
///
/// This will set a specific policy setting for the node.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `policy`: a valid ODPolicyType
///
/// Parameter `value`: a CFTypeRef to be set (should be of appropriate type for the policy)
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a bool which signifies if the policy set succeeded, otherwise error is set.
///
/// # Safety
///
/// - `policy_type` might not allow `None`.
/// - `value` should be of the correct type.
/// - `value` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeSetPolicy")]
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[deprecated = "use ODNodeAddAccountPolicy"]
#[inline]
pub unsafe fn set_policy(
&self,
policy_type: Option<&ODPolicyType>,
value: Option<&CFType>,
error: *mut *mut CFError,
) -> bool {
extern "C-unwind" {
fn ODNodeSetPolicy(
node: &ODNodeRef,
policy_type: Option<&ODPolicyType>,
value: Option<&CFType>,
error: *mut *mut CFError,
) -> bool;
}
unsafe { ODNodeSetPolicy(self, policy_type, value, error) }
}
/// This will remove a specific policy setting from the node.
///
/// This will remove a specific policy setting from the node.
///
/// Parameter `node`: an ODNodeRef to use
///
/// Parameter `policy`: a valid ODPolicyType
///
/// Parameter `error`: an optional CFErrorRef reference for error details
///
/// Returns: a bool which signifies if the policy removal succeeded, otherwise error is set.
///
/// # Safety
///
/// - `policy_type` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeRemovePolicy")]
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[deprecated = "use ODNodeRemoveAccountPolicy"]
#[inline]
pub unsafe fn remove_policy(
&self,
policy_type: Option<&ODPolicyType>,
error: *mut *mut CFError,
) -> bool {
extern "C-unwind" {
fn ODNodeRemovePolicy(
node: &ODNodeRef,
policy_type: Option<&ODPolicyType>,
error: *mut *mut CFError,
) -> bool;
}
unsafe { ODNodeRemovePolicy(self, policy_type, error) }
}
/// This will add an account policy to the node for the specified category.
///
/// This will add an account policy to the node for the specified category.
/// The specified policy will be applied to all users in the
/// specified node when policies are evaluated.
///
/// Parameter `node`: an ODNodeRef to use.
///
/// Parameter `policy`: a dictionary containing the specific policy to be added.
/// The dictionary may contain the following keys:
/// kODPolicyKeyIdentifier a required key identifying the policy.
/// kODPolicyKeyParameters an optional key containing a dictionary of
/// parameters that can be used for informational purposes or in
/// the policy format string.
/// kODPolicyKeyContent a required key specifying the policy,
/// from which a predicate will be created for evaluating
/// the policy.
///
/// Parameter `category`: a valid ODPolicyCategoryType to which the specified policy will be added.
///
/// Parameter `error`: an optional CFErrorRef reference for error details.
///
/// Returns: a bool which signifies if the policy addition succeeded, otherwise error is set.
///
/// # Safety
///
/// - `policy` generics must be of the correct type.
/// - `policy` might not allow `None`.
/// - `category` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeAddAccountPolicy")]
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[inline]
pub unsafe fn add_account_policy(
&self,
policy: Option<&CFDictionary>,
category: Option<&ODPolicyCategoryType>,
error: *mut *mut CFError,
) -> bool {
extern "C-unwind" {
fn ODNodeAddAccountPolicy(
node: &ODNodeRef,
policy: Option<&CFDictionary>,
category: Option<&ODPolicyCategoryType>,
error: *mut *mut CFError,
) -> bool;
}
unsafe { ODNodeAddAccountPolicy(self, policy, category, error) }
}
/// This will remove an account policy from the node for the specified category.
///
/// This will remove an account policy from the node for the specified category.
///
/// Parameter `node`: an ODNodeRef to use.
///
/// Parameter `policy`: a dictionary containing the specific policy to be
/// removed, with the same format as described in ODNodeAddAccountPolicy.
///
/// Parameter `category`: a valid ODPolicyCategoryType from which the specified policy will be removed.
///
/// Parameter `error`: an optional CFErrorRef reference for error details.
///
/// Returns: a bool which signifies if the policy removal succeeded, otherwise error is set.
///
/// # Safety
///
/// - `policy` generics must be of the correct type.
/// - `policy` might not allow `None`.
/// - `category` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeRemoveAccountPolicy")]
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[inline]
pub unsafe fn remove_account_policy(
&self,
policy: Option<&CFDictionary>,
category: Option<&ODPolicyCategoryType>,
error: *mut *mut CFError,
) -> bool {
extern "C-unwind" {
fn ODNodeRemoveAccountPolicy(
node: &ODNodeRef,
policy: Option<&CFDictionary>,
category: Option<&ODPolicyCategoryType>,
error: *mut *mut CFError,
) -> bool;
}
unsafe { ODNodeRemoveAccountPolicy(self, policy, category, error) }
}
/// This will set the policies for the node.
///
/// This will set the policies for the node, replacing any existing
/// policies.
///
/// Parameter `node`: an ODNodeRef to use.
///
/// Parameter `policies`: a dictionary containing all of the policies to be set
/// for the node. The dictionary may contain the following keys:
/// kODPolicyCategoryAuthentication an optional key with a value
/// of an array of policy dictionaries that specify when
/// authentications should be allowed.
/// kODPolicyCategoryPasswordContent an optional key with a
/// value of an array of policy dictionaries the specify the
/// required content of passwords.
/// kODPolicyCategoryPasswordChange an optional key with a value
/// of an array of policy dictionaries that specify when
/// passwords are required to be changed.
///
/// Parameter `error`: an optional CFErrorRef reference for error details.
///
/// Returns: a bool which signifies if the policy set succeeded, otherwise error is set.
///
/// # Safety
///
/// - `policies` generics must be of the correct type.
/// - `policies` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodeSetAccountPolicies")]
#[cfg(feature = "objc2-core-foundation")]
#[inline]
pub unsafe fn set_account_policies(
&self,
policies: Option<&CFDictionary>,
error: *mut *mut CFError,
) -> bool {
extern "C-unwind" {
fn ODNodeSetAccountPolicies(
node: &ODNodeRef,
policies: Option<&CFDictionary>,
error: *mut *mut CFError,
) -> bool;
}
unsafe { ODNodeSetAccountPolicies(self, policies, error) }
}
/// This will copy any policies configured for the node.
///
/// This will copy any policies configured for the node.
///
/// Parameter `node`: an ODNodeRef to use.
///
/// Parameter `error`: an optional CFErrorRef reference for error details.
///
/// Returns: a CFDictionaryRef containing all currently set policies. The
/// format of the dictionary is the same as described in
/// ODNodeSetAccountPolicies().
///
/// # Safety
///
/// `error` must be a valid pointer.
#[doc(alias = "ODNodeCopyAccountPolicies")]
#[cfg(feature = "objc2-core-foundation")]
#[inline]
pub unsafe fn account_policies(
&self,
error: *mut *mut CFError,
) -> Option<CFRetained<CFDictionary>> {
extern "C-unwind" {
fn ODNodeCopyAccountPolicies(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<NonNull<CFDictionary>>;
}
let ret = unsafe { ODNodeCopyAccountPolicies(self, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
/// Validates a password against the node's password content policies.
///
/// Validates a password against the node's password content policies.
/// The node's password content policies will be evaluated to
/// determine if the password is acceptable. May be used prior to
/// creating the record.
///
/// This check is only definitive at the time it was requested. The
/// policy or the environment could change before the password change
/// is actually requested. Errors from the password change request
/// should be consulted.
///
///
/// Parameter `node`: an ODNodeRef to use.
///
/// Parameter `password`: the password to be evaluated against the content policies.
///
/// Parameter `recordName`: the name of the record.
///
/// Parameter `error`: an optional CFErrorRef reference for error details.
///
/// Returns: a bool which signifies if the password passes all content policies, otherwise error is set.
///
/// # Safety
///
/// - `password` might not allow `None`.
/// - `record_name` might not allow `None`.
/// - `error` must be a valid pointer.
#[doc(alias = "ODNodePasswordContentCheck")]
#[cfg(feature = "objc2-core-foundation")]
#[inline]
pub unsafe fn password_content_check(
&self,
password: Option<&CFString>,
record_name: Option<&CFString>,
error: *mut *mut CFError,
) -> bool {
extern "C-unwind" {
fn ODNodePasswordContentCheck(
node: &ODNodeRef,
password: Option<&CFString>,
record_name: Option<&CFString>,
error: *mut *mut CFError,
) -> bool;
}
unsafe { ODNodePasswordContentCheck(self, password, record_name, error) }
}
}
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[deprecated = "renamed to `ODNodeRef::with_node_type`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCreateWithNodeType(
allocator: Option<&CFAllocator>,
session: Option<&ODSessionRef>,
node_type: ODNodeType,
error: *mut *mut CFError,
) -> Option<CFRetained<ODNodeRef>> {
extern "C-unwind" {
fn ODNodeCreateWithNodeType(
allocator: Option<&CFAllocator>,
session: Option<&ODSessionRef>,
node_type: ODNodeType,
error: *mut *mut CFError,
) -> Option<NonNull<ODNodeRef>>;
}
let ret = unsafe { ODNodeCreateWithNodeType(allocator, session, node_type, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::with_name`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCreateWithName(
allocator: Option<&CFAllocator>,
session: Option<&ODSessionRef>,
node_name: Option<&CFString>,
error: *mut *mut CFError,
) -> Option<CFRetained<ODNodeRef>> {
extern "C-unwind" {
fn ODNodeCreateWithName(
allocator: Option<&CFAllocator>,
session: Option<&ODSessionRef>,
node_name: Option<&CFString>,
error: *mut *mut CFError,
) -> Option<NonNull<ODNodeRef>>;
}
let ret = unsafe { ODNodeCreateWithName(allocator, session, node_name, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::new_copy`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCreateCopy(
allocator: Option<&CFAllocator>,
node: Option<&ODNodeRef>,
error: *mut *mut CFError,
) -> Option<CFRetained<ODNodeRef>> {
extern "C-unwind" {
fn ODNodeCreateCopy(
allocator: Option<&CFAllocator>,
node: Option<&ODNodeRef>,
error: *mut *mut CFError,
) -> Option<NonNull<ODNodeRef>>;
}
let ret = unsafe { ODNodeCreateCopy(allocator, node, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::subnode_names`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCopySubnodeNames(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<CFRetained<CFArray>> {
extern "C-unwind" {
fn ODNodeCopySubnodeNames(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<NonNull<CFArray>>;
}
let ret = unsafe { ODNodeCopySubnodeNames(node, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::unreachable_subnode_names`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCopyUnreachableSubnodeNames(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<CFRetained<CFArray>> {
extern "C-unwind" {
fn ODNodeCopyUnreachableSubnodeNames(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<NonNull<CFArray>>;
}
let ret = unsafe { ODNodeCopyUnreachableSubnodeNames(node, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::name`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeGetName(node: &ODNodeRef) -> Option<CFRetained<CFString>> {
extern "C-unwind" {
fn ODNodeGetName(node: &ODNodeRef) -> Option<NonNull<CFString>>;
}
let ret = unsafe { ODNodeGetName(node) };
ret.map(|ret| unsafe { CFRetained::retain(ret) })
}
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::details`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCopyDetails(
node: &ODNodeRef,
keys: Option<&CFArray>,
error: *mut *mut CFError,
) -> Option<CFRetained<CFDictionary>> {
extern "C-unwind" {
fn ODNodeCopyDetails(
node: &ODNodeRef,
keys: Option<&CFArray>,
error: *mut *mut CFError,
) -> Option<NonNull<CFDictionary>>;
}
let ret = unsafe { ODNodeCopyDetails(node, keys, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::supported_record_types`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCopySupportedRecordTypes(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<CFRetained<CFArray>> {
extern "C-unwind" {
fn ODNodeCopySupportedRecordTypes(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<NonNull<CFArray>>;
}
let ret = unsafe { ODNodeCopySupportedRecordTypes(node, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[deprecated = "renamed to `ODNodeRef::supported_attributes`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCopySupportedAttributes(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
error: *mut *mut CFError,
) -> Option<CFRetained<CFArray>> {
extern "C-unwind" {
fn ODNodeCopySupportedAttributes(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
error: *mut *mut CFError,
) -> Option<NonNull<CFArray>>;
}
let ret = unsafe { ODNodeCopySupportedAttributes(node, record_type, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
extern "C-unwind" {
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[deprecated = "renamed to `ODNodeRef::set_credentials`"]
pub fn ODNodeSetCredentials(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
record_name: Option<&CFString>,
password: Option<&CFString>,
error: *mut *mut CFError,
) -> bool;
}
extern "C-unwind" {
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[deprecated = "renamed to `ODNodeRef::set_credentials_extended`"]
pub fn ODNodeSetCredentialsExtended(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
auth_type: Option<&ODAuthenticationType>,
auth_items: Option<&CFArray>,
out_auth_items: *mut *const CFArray,
out_context: *mut *const ODContextRef,
error: *mut *mut CFError,
) -> bool;
}
extern "C-unwind" {
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::set_credentials_using_kerberos_cache`"]
pub fn ODNodeSetCredentialsUsingKerberosCache(
node: &ODNodeRef,
cache_name: Option<&CFString>,
error: *mut *mut CFError,
) -> bool;
}
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[deprecated = "renamed to `ODNodeRef::create_record`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCreateRecord(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
record_name: Option<&CFString>,
attribute_dict: Option<&CFDictionary>,
error: *mut *mut CFError,
) -> Option<CFRetained<ODRecordRef>> {
extern "C-unwind" {
fn ODNodeCreateRecord(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
record_name: Option<&CFString>,
attribute_dict: Option<&CFDictionary>,
error: *mut *mut CFError,
) -> Option<NonNull<ODRecordRef>>;
}
let ret = unsafe { ODNodeCreateRecord(node, record_type, record_name, attribute_dict, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[deprecated = "renamed to `ODNodeRef::copy_record`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCopyRecord(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
record_name: Option<&CFString>,
attributes: Option<&CFType>,
error: *mut *mut CFError,
) -> Option<CFRetained<ODRecordRef>> {
extern "C-unwind" {
fn ODNodeCopyRecord(
node: &ODNodeRef,
record_type: Option<&ODRecordType>,
record_name: Option<&CFString>,
attributes: Option<&CFType>,
error: *mut *mut CFError,
) -> Option<NonNull<ODRecordRef>>;
}
let ret = unsafe { ODNodeCopyRecord(node, record_type, record_name, attributes, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::custom_call`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCustomCall(
node: &ODNodeRef,
custom_code: CFIndex,
data: Option<&CFData>,
error: *mut *mut CFError,
) -> Option<CFRetained<CFData>> {
extern "C-unwind" {
fn ODNodeCustomCall(
node: &ODNodeRef,
custom_code: CFIndex,
data: Option<&CFData>,
error: *mut *mut CFError,
) -> Option<NonNull<CFData>>;
}
let ret = unsafe { ODNodeCustomCall(node, custom_code, data, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::custom_function`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCustomFunction(
node: &ODNodeRef,
function: Option<&CFString>,
payload: Option<&CFType>,
error: *mut *mut CFError,
) -> Option<CFRetained<CFType>> {
extern "C-unwind" {
fn ODNodeCustomFunction(
node: &ODNodeRef,
function: Option<&CFString>,
payload: Option<&CFType>,
error: *mut *mut CFError,
) -> Option<NonNull<CFType>>;
}
let ret = unsafe { ODNodeCustomFunction(node, function, payload, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::policies`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCopyPolicies(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<CFRetained<CFDictionary>> {
extern "C-unwind" {
fn ODNodeCopyPolicies(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<NonNull<CFDictionary>>;
}
let ret = unsafe { ODNodeCopyPolicies(node, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::supported_policies`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCopySupportedPolicies(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<CFRetained<CFDictionary>> {
extern "C-unwind" {
fn ODNodeCopySupportedPolicies(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<NonNull<CFDictionary>>;
}
let ret = unsafe { ODNodeCopySupportedPolicies(node, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
extern "C-unwind" {
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::set_policies`"]
pub fn ODNodeSetPolicies(
node: &ODNodeRef,
policies: Option<&CFDictionary>,
error: *mut *mut CFError,
) -> bool;
}
extern "C-unwind" {
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[deprecated = "renamed to `ODNodeRef::set_policy`"]
pub fn ODNodeSetPolicy(
node: &ODNodeRef,
policy_type: Option<&ODPolicyType>,
value: Option<&CFType>,
error: *mut *mut CFError,
) -> bool;
}
extern "C-unwind" {
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[deprecated = "renamed to `ODNodeRef::remove_policy`"]
pub fn ODNodeRemovePolicy(
node: &ODNodeRef,
policy_type: Option<&ODPolicyType>,
error: *mut *mut CFError,
) -> bool;
}
extern "C-unwind" {
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[deprecated = "renamed to `ODNodeRef::add_account_policy`"]
pub fn ODNodeAddAccountPolicy(
node: &ODNodeRef,
policy: Option<&CFDictionary>,
category: Option<&ODPolicyCategoryType>,
error: *mut *mut CFError,
) -> bool;
}
extern "C-unwind" {
#[cfg(all(
feature = "CFOpenDirectoryConstants",
feature = "objc2-core-foundation"
))]
#[deprecated = "renamed to `ODNodeRef::remove_account_policy`"]
pub fn ODNodeRemoveAccountPolicy(
node: &ODNodeRef,
policy: Option<&CFDictionary>,
category: Option<&ODPolicyCategoryType>,
error: *mut *mut CFError,
) -> bool;
}
extern "C-unwind" {
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::set_account_policies`"]
pub fn ODNodeSetAccountPolicies(
node: &ODNodeRef,
policies: Option<&CFDictionary>,
error: *mut *mut CFError,
) -> bool;
}
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::account_policies`"]
#[inline]
pub unsafe extern "C-unwind" fn ODNodeCopyAccountPolicies(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<CFRetained<CFDictionary>> {
extern "C-unwind" {
fn ODNodeCopyAccountPolicies(
node: &ODNodeRef,
error: *mut *mut CFError,
) -> Option<NonNull<CFDictionary>>;
}
let ret = unsafe { ODNodeCopyAccountPolicies(node, error) };
ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}
extern "C-unwind" {
#[cfg(feature = "objc2-core-foundation")]
#[deprecated = "renamed to `ODNodeRef::password_content_check`"]
pub fn ODNodePasswordContentCheck(
node: &ODNodeRef,
password: Option<&CFString>,
record_name: Option<&CFString>,
error: *mut *mut CFError,
) -> bool;
}