objc2-core-foundation 0.3.2

Bindings to the CoreFoundation framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::cell::UnsafeCell;
use core::marker::{PhantomData, PhantomPinned};
use core::ptr::NonNull;
#[cfg(feature = "objc2")]
use objc2::__framework_prelude::*;

use crate::*;

/// [Apple's documentation](https://developer.apple.com/documentation/corefoundation/cffilesecurity?language=objc)
///
/// This is toll-free bridged with `NSFileSecurity`.
#[doc(alias = "CFFileSecurityRef")]
#[repr(C)]
pub struct CFFileSecurity {
    inner: [u8; 0],
    _p: UnsafeCell<PhantomData<(*const UnsafeCell<()>, PhantomPinned)>>,
}

cf_type!(
    unsafe impl CFFileSecurity {}
);
#[cfg(feature = "objc2")]
cf_objc2_type!(
    unsafe impl RefEncode<"__CFFileSecurity"> for CFFileSecurity {}
);

unsafe impl ConcreteType for CFFileSecurity {
    #[doc(alias = "CFFileSecurityGetTypeID")]
    #[inline]
    fn type_id() -> CFTypeID {
        extern "C-unwind" {
            fn CFFileSecurityGetTypeID() -> CFTypeID;
        }
        unsafe { CFFileSecurityGetTypeID() }
    }
}

impl CFFileSecurity {
    #[doc(alias = "CFFileSecurityCreate")]
    #[inline]
    pub fn new(allocator: Option<&CFAllocator>) -> Option<CFRetained<CFFileSecurity>> {
        extern "C-unwind" {
            fn CFFileSecurityCreate(
                allocator: Option<&CFAllocator>,
            ) -> Option<NonNull<CFFileSecurity>>;
        }
        let ret = unsafe { CFFileSecurityCreate(allocator) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    #[doc(alias = "CFFileSecurityCreateCopy")]
    #[inline]
    pub fn new_copy(
        allocator: Option<&CFAllocator>,
        file_sec: Option<&CFFileSecurity>,
    ) -> Option<CFRetained<CFFileSecurity>> {
        extern "C-unwind" {
            fn CFFileSecurityCreateCopy(
                allocator: Option<&CFAllocator>,
                file_sec: Option<&CFFileSecurity>,
            ) -> Option<NonNull<CFFileSecurity>>;
        }
        let ret = unsafe { CFFileSecurityCreateCopy(allocator, file_sec) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// # Safety
    ///
    /// `owner_uuid` must be a valid pointer.
    #[doc(alias = "CFFileSecurityCopyOwnerUUID")]
    #[cfg(feature = "CFUUID")]
    #[inline]
    pub unsafe fn owner_uuid(&self, owner_uuid: *mut *const CFUUID) -> bool {
        extern "C-unwind" {
            fn CFFileSecurityCopyOwnerUUID(
                file_sec: &CFFileSecurity,
                owner_uuid: *mut *const CFUUID,
            ) -> Boolean;
        }
        let ret = unsafe { CFFileSecurityCopyOwnerUUID(self, owner_uuid) };
        ret != 0
    }

    #[doc(alias = "CFFileSecuritySetOwnerUUID")]
    #[cfg(feature = "CFUUID")]
    #[inline]
    pub fn set_owner_uuid(&self, owner_uuid: Option<&CFUUID>) -> bool {
        extern "C-unwind" {
            fn CFFileSecuritySetOwnerUUID(
                file_sec: &CFFileSecurity,
                owner_uuid: Option<&CFUUID>,
            ) -> Boolean;
        }
        let ret = unsafe { CFFileSecuritySetOwnerUUID(self, owner_uuid) };
        ret != 0
    }

    /// # Safety
    ///
    /// `group_uuid` must be a valid pointer.
    #[doc(alias = "CFFileSecurityCopyGroupUUID")]
    #[cfg(feature = "CFUUID")]
    #[inline]
    pub unsafe fn group_uuid(&self, group_uuid: *mut *const CFUUID) -> bool {
        extern "C-unwind" {
            fn CFFileSecurityCopyGroupUUID(
                file_sec: &CFFileSecurity,
                group_uuid: *mut *const CFUUID,
            ) -> Boolean;
        }
        let ret = unsafe { CFFileSecurityCopyGroupUUID(self, group_uuid) };
        ret != 0
    }

    #[doc(alias = "CFFileSecuritySetGroupUUID")]
    #[cfg(feature = "CFUUID")]
    #[inline]
    pub fn set_group_uuid(&self, group_uuid: Option<&CFUUID>) -> bool {
        extern "C-unwind" {
            fn CFFileSecuritySetGroupUUID(
                file_sec: &CFFileSecurity,
                group_uuid: Option<&CFUUID>,
            ) -> Boolean;
        }
        let ret = unsafe { CFFileSecuritySetGroupUUID(self, group_uuid) };
        ret != 0
    }

    /// # Safety
    ///
    /// `owner` must be a valid pointer.
    #[doc(alias = "CFFileSecurityGetOwner")]
    #[cfg(feature = "libc")]
    #[inline]
    pub unsafe fn owner(&self, owner: *mut libc::uid_t) -> bool {
        extern "C-unwind" {
            fn CFFileSecurityGetOwner(
                file_sec: &CFFileSecurity,
                owner: *mut libc::uid_t,
            ) -> Boolean;
        }
        let ret = unsafe { CFFileSecurityGetOwner(self, owner) };
        ret != 0
    }

    #[doc(alias = "CFFileSecuritySetOwner")]
    #[cfg(feature = "libc")]
    #[inline]
    pub fn set_owner(&self, owner: libc::uid_t) -> bool {
        extern "C-unwind" {
            fn CFFileSecuritySetOwner(file_sec: &CFFileSecurity, owner: libc::uid_t) -> Boolean;
        }
        let ret = unsafe { CFFileSecuritySetOwner(self, owner) };
        ret != 0
    }

    /// # Safety
    ///
    /// `group` must be a valid pointer.
    #[doc(alias = "CFFileSecurityGetGroup")]
    #[cfg(feature = "libc")]
    #[inline]
    pub unsafe fn group(&self, group: *mut libc::gid_t) -> bool {
        extern "C-unwind" {
            fn CFFileSecurityGetGroup(
                file_sec: &CFFileSecurity,
                group: *mut libc::gid_t,
            ) -> Boolean;
        }
        let ret = unsafe { CFFileSecurityGetGroup(self, group) };
        ret != 0
    }

    #[doc(alias = "CFFileSecuritySetGroup")]
    #[cfg(feature = "libc")]
    #[inline]
    pub fn set_group(&self, group: libc::gid_t) -> bool {
        extern "C-unwind" {
            fn CFFileSecuritySetGroup(file_sec: &CFFileSecurity, group: libc::gid_t) -> Boolean;
        }
        let ret = unsafe { CFFileSecuritySetGroup(self, group) };
        ret != 0
    }

    /// # Safety
    ///
    /// `mode` must be a valid pointer.
    #[doc(alias = "CFFileSecurityGetMode")]
    #[cfg(feature = "libc")]
    #[inline]
    pub unsafe fn mode(&self, mode: *mut libc::mode_t) -> bool {
        extern "C-unwind" {
            fn CFFileSecurityGetMode(file_sec: &CFFileSecurity, mode: *mut libc::mode_t)
                -> Boolean;
        }
        let ret = unsafe { CFFileSecurityGetMode(self, mode) };
        ret != 0
    }

    #[doc(alias = "CFFileSecuritySetMode")]
    #[cfg(feature = "libc")]
    #[inline]
    pub fn set_mode(&self, mode: libc::mode_t) -> bool {
        extern "C-unwind" {
            fn CFFileSecuritySetMode(file_sec: &CFFileSecurity, mode: libc::mode_t) -> Boolean;
        }
        let ret = unsafe { CFFileSecuritySetMode(self, mode) };
        ret != 0
    }
}

/// [Apple's documentation](https://developer.apple.com/documentation/corefoundation/cffilesecurityclearoptions?language=objc)
// NS_OPTIONS
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct CFFileSecurityClearOptions(pub CFOptionFlags);
bitflags::bitflags! {
    impl CFFileSecurityClearOptions: CFOptionFlags {
        #[doc(alias = "kCFFileSecurityClearOwner")]
        const Owner = 1<<0;
        #[doc(alias = "kCFFileSecurityClearGroup")]
        const Group = 1<<1;
        #[doc(alias = "kCFFileSecurityClearMode")]
        const Mode = 1<<2;
        #[doc(alias = "kCFFileSecurityClearOwnerUUID")]
        const OwnerUUID = 1<<3;
        #[doc(alias = "kCFFileSecurityClearGroupUUID")]
        const GroupUUID = 1<<4;
        #[doc(alias = "kCFFileSecurityClearAccessControlList")]
        const AccessControlList = 1<<5;
    }
}

#[cfg(feature = "objc2")]
unsafe impl Encode for CFFileSecurityClearOptions {
    const ENCODING: Encoding = CFOptionFlags::ENCODING;
}

#[cfg(feature = "objc2")]
unsafe impl RefEncode for CFFileSecurityClearOptions {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

impl CFFileSecurity {
    #[doc(alias = "CFFileSecurityClearProperties")]
    #[inline]
    pub fn clear_properties(&self, clear_property_mask: CFFileSecurityClearOptions) -> bool {
        extern "C-unwind" {
            fn CFFileSecurityClearProperties(
                file_sec: &CFFileSecurity,
                clear_property_mask: CFFileSecurityClearOptions,
            ) -> Boolean;
        }
        let ret = unsafe { CFFileSecurityClearProperties(self, clear_property_mask) };
        ret != 0
    }
}

#[deprecated = "renamed to `CFFileSecurity::new`"]
#[inline]
pub extern "C-unwind" fn CFFileSecurityCreate(
    allocator: Option<&CFAllocator>,
) -> Option<CFRetained<CFFileSecurity>> {
    extern "C-unwind" {
        fn CFFileSecurityCreate(allocator: Option<&CFAllocator>)
            -> Option<NonNull<CFFileSecurity>>;
    }
    let ret = unsafe { CFFileSecurityCreate(allocator) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[deprecated = "renamed to `CFFileSecurity::new_copy`"]
#[inline]
pub extern "C-unwind" fn CFFileSecurityCreateCopy(
    allocator: Option<&CFAllocator>,
    file_sec: Option<&CFFileSecurity>,
) -> Option<CFRetained<CFFileSecurity>> {
    extern "C-unwind" {
        fn CFFileSecurityCreateCopy(
            allocator: Option<&CFAllocator>,
            file_sec: Option<&CFFileSecurity>,
        ) -> Option<NonNull<CFFileSecurity>>;
    }
    let ret = unsafe { CFFileSecurityCreateCopy(allocator, file_sec) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[cfg(feature = "CFUUID")]
#[deprecated = "renamed to `CFFileSecurity::owner_uuid`"]
#[inline]
pub unsafe extern "C-unwind" fn CFFileSecurityCopyOwnerUUID(
    file_sec: &CFFileSecurity,
    owner_uuid: *mut *const CFUUID,
) -> bool {
    extern "C-unwind" {
        fn CFFileSecurityCopyOwnerUUID(
            file_sec: &CFFileSecurity,
            owner_uuid: *mut *const CFUUID,
        ) -> Boolean;
    }
    let ret = unsafe { CFFileSecurityCopyOwnerUUID(file_sec, owner_uuid) };
    ret != 0
}

#[cfg(feature = "CFUUID")]
#[deprecated = "renamed to `CFFileSecurity::set_owner_uuid`"]
#[inline]
pub extern "C-unwind" fn CFFileSecuritySetOwnerUUID(
    file_sec: &CFFileSecurity,
    owner_uuid: Option<&CFUUID>,
) -> bool {
    extern "C-unwind" {
        fn CFFileSecuritySetOwnerUUID(
            file_sec: &CFFileSecurity,
            owner_uuid: Option<&CFUUID>,
        ) -> Boolean;
    }
    let ret = unsafe { CFFileSecuritySetOwnerUUID(file_sec, owner_uuid) };
    ret != 0
}

#[cfg(feature = "CFUUID")]
#[deprecated = "renamed to `CFFileSecurity::group_uuid`"]
#[inline]
pub unsafe extern "C-unwind" fn CFFileSecurityCopyGroupUUID(
    file_sec: &CFFileSecurity,
    group_uuid: *mut *const CFUUID,
) -> bool {
    extern "C-unwind" {
        fn CFFileSecurityCopyGroupUUID(
            file_sec: &CFFileSecurity,
            group_uuid: *mut *const CFUUID,
        ) -> Boolean;
    }
    let ret = unsafe { CFFileSecurityCopyGroupUUID(file_sec, group_uuid) };
    ret != 0
}

#[cfg(feature = "CFUUID")]
#[deprecated = "renamed to `CFFileSecurity::set_group_uuid`"]
#[inline]
pub extern "C-unwind" fn CFFileSecuritySetGroupUUID(
    file_sec: &CFFileSecurity,
    group_uuid: Option<&CFUUID>,
) -> bool {
    extern "C-unwind" {
        fn CFFileSecuritySetGroupUUID(
            file_sec: &CFFileSecurity,
            group_uuid: Option<&CFUUID>,
        ) -> Boolean;
    }
    let ret = unsafe { CFFileSecuritySetGroupUUID(file_sec, group_uuid) };
    ret != 0
}

#[cfg(feature = "libc")]
#[deprecated = "renamed to `CFFileSecurity::owner`"]
#[inline]
pub unsafe extern "C-unwind" fn CFFileSecurityGetOwner(
    file_sec: &CFFileSecurity,
    owner: *mut libc::uid_t,
) -> bool {
    extern "C-unwind" {
        fn CFFileSecurityGetOwner(file_sec: &CFFileSecurity, owner: *mut libc::uid_t) -> Boolean;
    }
    let ret = unsafe { CFFileSecurityGetOwner(file_sec, owner) };
    ret != 0
}

#[cfg(feature = "libc")]
#[deprecated = "renamed to `CFFileSecurity::set_owner`"]
#[inline]
pub extern "C-unwind" fn CFFileSecuritySetOwner(
    file_sec: &CFFileSecurity,
    owner: libc::uid_t,
) -> bool {
    extern "C-unwind" {
        fn CFFileSecuritySetOwner(file_sec: &CFFileSecurity, owner: libc::uid_t) -> Boolean;
    }
    let ret = unsafe { CFFileSecuritySetOwner(file_sec, owner) };
    ret != 0
}

#[cfg(feature = "libc")]
#[deprecated = "renamed to `CFFileSecurity::group`"]
#[inline]
pub unsafe extern "C-unwind" fn CFFileSecurityGetGroup(
    file_sec: &CFFileSecurity,
    group: *mut libc::gid_t,
) -> bool {
    extern "C-unwind" {
        fn CFFileSecurityGetGroup(file_sec: &CFFileSecurity, group: *mut libc::gid_t) -> Boolean;
    }
    let ret = unsafe { CFFileSecurityGetGroup(file_sec, group) };
    ret != 0
}

#[cfg(feature = "libc")]
#[deprecated = "renamed to `CFFileSecurity::set_group`"]
#[inline]
pub extern "C-unwind" fn CFFileSecuritySetGroup(
    file_sec: &CFFileSecurity,
    group: libc::gid_t,
) -> bool {
    extern "C-unwind" {
        fn CFFileSecuritySetGroup(file_sec: &CFFileSecurity, group: libc::gid_t) -> Boolean;
    }
    let ret = unsafe { CFFileSecuritySetGroup(file_sec, group) };
    ret != 0
}

#[cfg(feature = "libc")]
#[deprecated = "renamed to `CFFileSecurity::mode`"]
#[inline]
pub unsafe extern "C-unwind" fn CFFileSecurityGetMode(
    file_sec: &CFFileSecurity,
    mode: *mut libc::mode_t,
) -> bool {
    extern "C-unwind" {
        fn CFFileSecurityGetMode(file_sec: &CFFileSecurity, mode: *mut libc::mode_t) -> Boolean;
    }
    let ret = unsafe { CFFileSecurityGetMode(file_sec, mode) };
    ret != 0
}

#[cfg(feature = "libc")]
#[deprecated = "renamed to `CFFileSecurity::set_mode`"]
#[inline]
pub extern "C-unwind" fn CFFileSecuritySetMode(
    file_sec: &CFFileSecurity,
    mode: libc::mode_t,
) -> bool {
    extern "C-unwind" {
        fn CFFileSecuritySetMode(file_sec: &CFFileSecurity, mode: libc::mode_t) -> Boolean;
    }
    let ret = unsafe { CFFileSecuritySetMode(file_sec, mode) };
    ret != 0
}

#[deprecated = "renamed to `CFFileSecurity::clear_properties`"]
#[inline]
pub extern "C-unwind" fn CFFileSecurityClearProperties(
    file_sec: &CFFileSecurity,
    clear_property_mask: CFFileSecurityClearOptions,
) -> bool {
    extern "C-unwind" {
        fn CFFileSecurityClearProperties(
            file_sec: &CFFileSecurity,
            clear_property_mask: CFFileSecurityClearOptions,
        ) -> Boolean;
    }
    let ret = unsafe { CFFileSecurityClearProperties(file_sec, clear_property_mask) };
    ret != 0
}