objc2-disk-arbitration 0.3.2

Bindings to the DiskArbitration 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
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::cell::UnsafeCell;
use core::ffi::*;
use core::marker::{PhantomData, PhantomPinned};
use core::ptr::NonNull;
#[cfg(feature = "objc2")]
use objc2::__framework_prelude::*;
use objc2_core_foundation::*;

use crate::*;

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionvolumekindkey?language=objc)
    pub static kDADiskDescriptionVolumeKindKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionvolumemountablekey?language=objc)
    pub static kDADiskDescriptionVolumeMountableKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionvolumenamekey?language=objc)
    pub static kDADiskDescriptionVolumeNameKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionvolumenetworkkey?language=objc)
    pub static kDADiskDescriptionVolumeNetworkKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionvolumepathkey?language=objc)
    pub static kDADiskDescriptionVolumePathKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionvolumetypekey?language=objc)
    pub static kDADiskDescriptionVolumeTypeKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionvolumeuuidkey?language=objc)
    pub static kDADiskDescriptionVolumeUUIDKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediablocksizekey?language=objc)
    pub static kDADiskDescriptionMediaBlockSizeKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediabsdmajorkey?language=objc)
    pub static kDADiskDescriptionMediaBSDMajorKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediabsdminorkey?language=objc)
    pub static kDADiskDescriptionMediaBSDMinorKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediabsdnamekey?language=objc)
    pub static kDADiskDescriptionMediaBSDNameKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediabsdunitkey?language=objc)
    pub static kDADiskDescriptionMediaBSDUnitKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediacontentkey?language=objc)
    pub static kDADiskDescriptionMediaContentKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediaejectablekey?language=objc)
    pub static kDADiskDescriptionMediaEjectableKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediaiconkey?language=objc)
    pub static kDADiskDescriptionMediaIconKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediakindkey?language=objc)
    pub static kDADiskDescriptionMediaKindKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmedialeafkey?language=objc)
    pub static kDADiskDescriptionMediaLeafKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmedianamekey?language=objc)
    pub static kDADiskDescriptionMediaNameKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediapathkey?language=objc)
    pub static kDADiskDescriptionMediaPathKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediaremovablekey?language=objc)
    pub static kDADiskDescriptionMediaRemovableKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediasizekey?language=objc)
    pub static kDADiskDescriptionMediaSizeKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediatypekey?language=objc)
    pub static kDADiskDescriptionMediaTypeKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediauuidkey?language=objc)
    pub static kDADiskDescriptionMediaUUIDKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediawholekey?language=objc)
    pub static kDADiskDescriptionMediaWholeKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediawritablekey?language=objc)
    pub static kDADiskDescriptionMediaWritableKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediaencryptedkey?language=objc)
    pub static kDADiskDescriptionMediaEncryptedKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionmediaencryptiondetailkey?language=objc)
    pub static kDADiskDescriptionMediaEncryptionDetailKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptiondeviceguidkey?language=objc)
    pub static kDADiskDescriptionDeviceGUIDKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptiondeviceinternalkey?language=objc)
    pub static kDADiskDescriptionDeviceInternalKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptiondevicemodelkey?language=objc)
    pub static kDADiskDescriptionDeviceModelKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptiondevicepathkey?language=objc)
    pub static kDADiskDescriptionDevicePathKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptiondeviceprotocolkey?language=objc)
    pub static kDADiskDescriptionDeviceProtocolKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptiondevicerevisionkey?language=objc)
    pub static kDADiskDescriptionDeviceRevisionKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptiondeviceunitkey?language=objc)
    pub static kDADiskDescriptionDeviceUnitKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptiondevicevendorkey?language=objc)
    pub static kDADiskDescriptionDeviceVendorKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptiondevicetdmlockedkey?language=objc)
    pub static kDADiskDescriptionDeviceTDMLockedKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionbusnamekey?language=objc)
    pub static kDADiskDescriptionBusNameKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionbuspathkey?language=objc)
    pub static kDADiskDescriptionBusPathKey: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionfskitprefix?language=objc)
    pub static kDADiskDescriptionFSKitPrefix: &'static CFString;
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/kdadiskdescriptionrepairrunningkey?language=objc)
    pub static kDADiskDescriptionRepairRunningKey: &'static CFString;
}

/// Type of a reference to DADisk instances.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/diskarbitration/dadisk?language=objc)
#[doc(alias = "DADiskRef")]
#[repr(C)]
pub struct DADisk {
    inner: [u8; 0],
    _p: UnsafeCell<PhantomData<(*const UnsafeCell<()>, PhantomPinned)>>,
}

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

unsafe impl ConcreteType for DADisk {
    /// Returns the type identifier of all DADisk instances.
    #[doc(alias = "DADiskGetTypeID")]
    #[inline]
    fn type_id() -> CFTypeID {
        extern "C-unwind" {
            fn DADiskGetTypeID() -> CFTypeID;
        }
        unsafe { DADiskGetTypeID() }
    }
}

impl DADisk {
    /// Creates a new disk object.
    ///
    /// Parameter `allocator`: The allocator object to be used to allocate memory.
    ///
    /// Parameter `session`: The DASession in which to contact Disk Arbitration.
    ///
    /// Parameter `name`: The BSD device name.
    ///
    /// Returns: A reference to a new DADisk.
    ///
    /// The caller of this function receives a reference to the returned object.  The
    /// caller also implicitly retains the object and is responsible for releasing it
    /// with CFRelease().
    ///
    /// # Safety
    ///
    /// `name` must be a valid pointer.
    #[doc(alias = "DADiskCreateFromBSDName")]
    #[cfg(feature = "DASession")]
    #[inline]
    pub unsafe fn from_bsd_name(
        allocator: Option<&CFAllocator>,
        session: &DASession,
        name: NonNull<c_char>,
    ) -> Option<CFRetained<DADisk>> {
        extern "C-unwind" {
            fn DADiskCreateFromBSDName(
                allocator: Option<&CFAllocator>,
                session: &DASession,
                name: NonNull<c_char>,
            ) -> Option<NonNull<DADisk>>;
        }
        let ret = unsafe { DADiskCreateFromBSDName(allocator, session, name) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Creates a new disk object.
    ///
    /// Parameter `allocator`: The allocator object to be used to allocate memory.
    ///
    /// Parameter `session`: The DASession in which to contact Disk Arbitration.
    ///
    /// Parameter `path`: The BSD mount point.
    ///
    /// Returns: A reference to a new DADisk.
    ///
    /// The caller of this function receives a reference to the returned object.  The
    /// caller also implicitly retains the object and is responsible for releasing it
    /// with CFRelease().
    #[doc(alias = "DADiskCreateFromVolumePath")]
    #[cfg(feature = "DASession")]
    #[inline]
    pub unsafe fn from_volume_path(
        allocator: Option<&CFAllocator>,
        session: &DASession,
        path: &CFURL,
    ) -> Option<CFRetained<DADisk>> {
        extern "C-unwind" {
            fn DADiskCreateFromVolumePath(
                allocator: Option<&CFAllocator>,
                session: &DASession,
                path: &CFURL,
            ) -> Option<NonNull<DADisk>>;
        }
        let ret = unsafe { DADiskCreateFromVolumePath(allocator, session, path) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Obtains the BSD device name for the specified disk.
    ///
    /// Parameter `disk`: The DADisk for which to obtain the BSD device name.
    ///
    /// Returns: The disk's BSD device name.
    ///
    /// The BSD device name can be used with opendev() to open the BSD device.
    #[doc(alias = "DADiskGetBSDName")]
    #[inline]
    pub unsafe fn bsd_name(&self) -> *const c_char {
        extern "C-unwind" {
            fn DADiskGetBSDName(disk: &DADisk) -> *const c_char;
        }
        unsafe { DADiskGetBSDName(self) }
    }

    /// Obtains the Disk Arbitration description of the specified disk.
    ///
    /// Parameter `disk`: The DADisk for which to obtain the Disk Arbitration description.
    ///
    /// Returns: The disk's Disk Arbitration description.
    ///
    /// This function will contact Disk Arbitration to acquire the latest description
    /// of the specified disk, unless this function is called on a disk object passed
    /// within the context of a registered callback, in which case the description is
    /// current as of that callback event.
    ///
    /// The caller of this function receives a reference to the returned object.  The
    /// caller also implicitly retains the object and is responsible for releasing it
    /// with CFRelease().
    #[doc(alias = "DADiskCopyDescription")]
    #[inline]
    pub unsafe fn description(&self) -> Option<CFRetained<CFDictionary>> {
        extern "C-unwind" {
            fn DADiskCopyDescription(disk: &DADisk) -> Option<NonNull<CFDictionary>>;
        }
        let ret = unsafe { DADiskCopyDescription(self) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }

    /// Obtain the associated whole disk object for the specified disk.
    ///
    /// Parameter `disk`: The disk object.
    ///
    /// Returns: The disk's associated whole disk object.
    ///
    /// The caller of this function receives a reference to the returned object.  The
    /// caller also implicitly retains the object and is responsible for releasing it
    /// with CFRelease().
    #[doc(alias = "DADiskCopyWholeDisk")]
    #[inline]
    pub unsafe fn whole_disk(&self) -> Option<CFRetained<DADisk>> {
        extern "C-unwind" {
            fn DADiskCopyWholeDisk(disk: &DADisk) -> Option<NonNull<DADisk>>;
        }
        let ret = unsafe { DADiskCopyWholeDisk(self) };
        ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
    }
}

#[cfg(feature = "DASession")]
#[deprecated = "renamed to `DADisk::from_bsd_name`"]
#[inline]
pub unsafe extern "C-unwind" fn DADiskCreateFromBSDName(
    allocator: Option<&CFAllocator>,
    session: &DASession,
    name: NonNull<c_char>,
) -> Option<CFRetained<DADisk>> {
    extern "C-unwind" {
        fn DADiskCreateFromBSDName(
            allocator: Option<&CFAllocator>,
            session: &DASession,
            name: NonNull<c_char>,
        ) -> Option<NonNull<DADisk>>;
    }
    let ret = unsafe { DADiskCreateFromBSDName(allocator, session, name) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[cfg(feature = "DASession")]
#[deprecated = "renamed to `DADisk::from_volume_path`"]
#[inline]
pub unsafe extern "C-unwind" fn DADiskCreateFromVolumePath(
    allocator: Option<&CFAllocator>,
    session: &DASession,
    path: &CFURL,
) -> Option<CFRetained<DADisk>> {
    extern "C-unwind" {
        fn DADiskCreateFromVolumePath(
            allocator: Option<&CFAllocator>,
            session: &DASession,
            path: &CFURL,
        ) -> Option<NonNull<DADisk>>;
    }
    let ret = unsafe { DADiskCreateFromVolumePath(allocator, session, path) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

extern "C-unwind" {
    #[deprecated = "renamed to `DADisk::bsd_name`"]
    pub fn DADiskGetBSDName(disk: &DADisk) -> *const c_char;
}

#[deprecated = "renamed to `DADisk::description`"]
#[inline]
pub unsafe extern "C-unwind" fn DADiskCopyDescription(
    disk: &DADisk,
) -> Option<CFRetained<CFDictionary>> {
    extern "C-unwind" {
        fn DADiskCopyDescription(disk: &DADisk) -> Option<NonNull<CFDictionary>>;
    }
    let ret = unsafe { DADiskCopyDescription(disk) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}

#[deprecated = "renamed to `DADisk::whole_disk`"]
#[inline]
pub unsafe extern "C-unwind" fn DADiskCopyWholeDisk(disk: &DADisk) -> Option<CFRetained<DADisk>> {
    extern "C-unwind" {
        fn DADiskCopyWholeDisk(disk: &DADisk) -> Option<NonNull<DADisk>>;
    }
    let ret = unsafe { DADiskCopyWholeDisk(disk) };
    ret.map(|ret| unsafe { CFRetained::from_raw(ret) })
}