objc2-foundation 0.3.2

Bindings to the Foundation 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
457
458
459
460
461
462
463
464
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
#[cfg(feature = "objc2-core-services")]
#[cfg(target_vendor = "apple")]
use objc2_core_services::*;

use crate::*;

/// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsappleeventsendoptions?language=objc)
// NS_OPTIONS
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct NSAppleEventSendOptions(pub NSUInteger);
bitflags::bitflags! {
    impl NSAppleEventSendOptions: NSUInteger {
        #[doc(alias = "NSAppleEventSendNoReply")]
        const NoReply = 1;
        #[doc(alias = "NSAppleEventSendQueueReply")]
        const QueueReply = 2;
        #[doc(alias = "NSAppleEventSendWaitForReply")]
        const WaitForReply = 3;
        #[doc(alias = "NSAppleEventSendNeverInteract")]
        const NeverInteract = 16;
        #[doc(alias = "NSAppleEventSendCanInteract")]
        const CanInteract = 32;
        #[doc(alias = "NSAppleEventSendAlwaysInteract")]
        const AlwaysInteract = 48;
        #[doc(alias = "NSAppleEventSendCanSwitchLayer")]
        const CanSwitchLayer = 64;
        #[doc(alias = "NSAppleEventSendDontRecord")]
        const DontRecord = 4096;
        #[doc(alias = "NSAppleEventSendDontExecute")]
        const DontExecute = 8192;
        #[doc(alias = "NSAppleEventSendDontAnnotate")]
        const DontAnnotate = 65536;
        #[doc(alias = "NSAppleEventSendDefaultOptions")]
        const DefaultOptions = 35;
    }
}

unsafe impl Encode for NSAppleEventSendOptions {
    const ENCODING: Encoding = NSUInteger::ENCODING;
}

unsafe impl RefEncode for NSAppleEventSendOptions {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

extern_class!(
    /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsappleeventdescriptor?language=objc)
    #[unsafe(super(NSObject))]
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct NSAppleEventDescriptor;
);

#[cfg(feature = "NSObject")]
extern_conformance!(
    unsafe impl NSCoding for NSAppleEventDescriptor {}
);

#[cfg(feature = "NSObject")]
extern_conformance!(
    unsafe impl NSCopying for NSAppleEventDescriptor {}
);

#[cfg(feature = "NSObject")]
unsafe impl CopyingHelper for NSAppleEventDescriptor {
    type Result = Self;
}

extern_conformance!(
    unsafe impl NSObjectProtocol for NSAppleEventDescriptor {}
);

#[cfg(feature = "NSObject")]
extern_conformance!(
    unsafe impl NSSecureCoding for NSAppleEventDescriptor {}
);

impl NSAppleEventDescriptor {
    extern_methods!(
        #[unsafe(method(nullDescriptor))]
        #[unsafe(method_family = none)]
        pub fn nullDescriptor() -> Retained<NSAppleEventDescriptor>;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        /// # Safety
        ///
        /// `bytes` must be a valid pointer or null.
        #[unsafe(method(descriptorWithDescriptorType:bytes:length:))]
        #[unsafe(method_family = none)]
        pub unsafe fn descriptorWithDescriptorType_bytes_length(
            descriptor_type: DescType,
            bytes: *const c_void,
            byte_count: NSUInteger,
        ) -> Option<Retained<NSAppleEventDescriptor>>;

        #[cfg(all(feature = "NSData", feature = "objc2-core-services"))]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(descriptorWithDescriptorType:data:))]
        #[unsafe(method_family = none)]
        pub fn descriptorWithDescriptorType_data(
            descriptor_type: DescType,
            data: Option<&NSData>,
        ) -> Option<Retained<NSAppleEventDescriptor>>;

        #[unsafe(method(descriptorWithBoolean:))]
        #[unsafe(method_family = none)]
        pub fn descriptorWithBoolean(boolean: Boolean) -> Retained<NSAppleEventDescriptor>;

        #[unsafe(method(descriptorWithEnumCode:))]
        #[unsafe(method_family = none)]
        pub fn descriptorWithEnumCode(enumerator: OSType) -> Retained<NSAppleEventDescriptor>;

        #[unsafe(method(descriptorWithInt32:))]
        #[unsafe(method_family = none)]
        pub fn descriptorWithInt32(signed_int: i32) -> Retained<NSAppleEventDescriptor>;

        #[unsafe(method(descriptorWithDouble:))]
        #[unsafe(method_family = none)]
        pub fn descriptorWithDouble(double_value: c_double) -> Retained<NSAppleEventDescriptor>;

        #[unsafe(method(descriptorWithTypeCode:))]
        #[unsafe(method_family = none)]
        pub fn descriptorWithTypeCode(type_code: OSType) -> Retained<NSAppleEventDescriptor>;

        #[cfg(feature = "NSString")]
        #[unsafe(method(descriptorWithString:))]
        #[unsafe(method_family = none)]
        pub fn descriptorWithString(string: &NSString) -> Retained<NSAppleEventDescriptor>;

        #[cfg(feature = "NSDate")]
        #[unsafe(method(descriptorWithDate:))]
        #[unsafe(method_family = none)]
        pub fn descriptorWithDate(date: &NSDate) -> Retained<NSAppleEventDescriptor>;

        #[cfg(feature = "NSURL")]
        #[unsafe(method(descriptorWithFileURL:))]
        #[unsafe(method_family = none)]
        pub fn descriptorWithFileURL(file_url: &NSURL) -> Retained<NSAppleEventDescriptor>;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(appleEventWithEventClass:eventID:targetDescriptor:returnID:transactionID:))]
        #[unsafe(method_family = none)]
        pub fn appleEventWithEventClass_eventID_targetDescriptor_returnID_transactionID(
            event_class: AEEventClass,
            event_id: AEEventID,
            target_descriptor: Option<&NSAppleEventDescriptor>,
            return_id: AEReturnID,
            transaction_id: AETransactionID,
        ) -> Retained<NSAppleEventDescriptor>;

        #[unsafe(method(listDescriptor))]
        #[unsafe(method_family = none)]
        pub fn listDescriptor() -> Retained<NSAppleEventDescriptor>;

        #[unsafe(method(recordDescriptor))]
        #[unsafe(method_family = none)]
        pub fn recordDescriptor() -> Retained<NSAppleEventDescriptor>;

        #[unsafe(method(currentProcessDescriptor))]
        #[unsafe(method_family = none)]
        pub fn currentProcessDescriptor() -> Retained<NSAppleEventDescriptor>;

        #[cfg(feature = "libc")]
        #[unsafe(method(descriptorWithProcessIdentifier:))]
        #[unsafe(method_family = none)]
        pub fn descriptorWithProcessIdentifier(
            process_identifier: libc::pid_t,
        ) -> Retained<NSAppleEventDescriptor>;

        #[cfg(feature = "NSString")]
        #[unsafe(method(descriptorWithBundleIdentifier:))]
        #[unsafe(method_family = none)]
        pub fn descriptorWithBundleIdentifier(
            bundle_identifier: &NSString,
        ) -> Retained<NSAppleEventDescriptor>;

        #[cfg(feature = "NSURL")]
        #[unsafe(method(descriptorWithApplicationURL:))]
        #[unsafe(method_family = none)]
        pub fn descriptorWithApplicationURL(
            application_url: &NSURL,
        ) -> Retained<NSAppleEventDescriptor>;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        /// # Safety
        ///
        /// `ae_desc` must be a valid pointer.
        #[unsafe(method(initWithAEDescNoCopy:))]
        #[unsafe(method_family = init)]
        pub unsafe fn initWithAEDescNoCopy(
            this: Allocated<Self>,
            ae_desc: NonNull<AEDesc>,
        ) -> Retained<Self>;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        /// # Safety
        ///
        /// `bytes` must be a valid pointer or null.
        #[unsafe(method(initWithDescriptorType:bytes:length:))]
        #[unsafe(method_family = init)]
        pub unsafe fn initWithDescriptorType_bytes_length(
            this: Allocated<Self>,
            descriptor_type: DescType,
            bytes: *const c_void,
            byte_count: NSUInteger,
        ) -> Option<Retained<Self>>;

        #[cfg(all(feature = "NSData", feature = "objc2-core-services"))]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(initWithDescriptorType:data:))]
        #[unsafe(method_family = init)]
        pub fn initWithDescriptorType_data(
            this: Allocated<Self>,
            descriptor_type: DescType,
            data: Option<&NSData>,
        ) -> Option<Retained<Self>>;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(initWithEventClass:eventID:targetDescriptor:returnID:transactionID:))]
        #[unsafe(method_family = init)]
        pub fn initWithEventClass_eventID_targetDescriptor_returnID_transactionID(
            this: Allocated<Self>,
            event_class: AEEventClass,
            event_id: AEEventID,
            target_descriptor: Option<&NSAppleEventDescriptor>,
            return_id: AEReturnID,
            transaction_id: AETransactionID,
        ) -> Retained<Self>;

        #[unsafe(method(initListDescriptor))]
        #[unsafe(method_family = init)]
        pub fn initListDescriptor(this: Allocated<Self>) -> Retained<Self>;

        #[unsafe(method(initRecordDescriptor))]
        #[unsafe(method_family = init)]
        pub fn initRecordDescriptor(this: Allocated<Self>) -> Retained<Self>;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(aeDesc))]
        #[unsafe(method_family = none)]
        pub fn aeDesc(&self) -> *const AEDesc;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(descriptorType))]
        #[unsafe(method_family = none)]
        pub fn descriptorType(&self) -> DescType;

        #[cfg(feature = "NSData")]
        #[unsafe(method(data))]
        #[unsafe(method_family = none)]
        pub fn data(&self) -> Retained<NSData>;

        #[unsafe(method(booleanValue))]
        #[unsafe(method_family = none)]
        pub fn booleanValue(&self) -> Boolean;

        #[unsafe(method(enumCodeValue))]
        #[unsafe(method_family = none)]
        pub fn enumCodeValue(&self) -> OSType;

        #[unsafe(method(int32Value))]
        #[unsafe(method_family = none)]
        pub fn int32Value(&self) -> i32;

        #[unsafe(method(doubleValue))]
        #[unsafe(method_family = none)]
        pub fn doubleValue(&self) -> c_double;

        #[unsafe(method(typeCodeValue))]
        #[unsafe(method_family = none)]
        pub fn typeCodeValue(&self) -> OSType;

        #[cfg(feature = "NSString")]
        #[unsafe(method(stringValue))]
        #[unsafe(method_family = none)]
        pub fn stringValue(&self) -> Option<Retained<NSString>>;

        #[cfg(feature = "NSDate")]
        #[unsafe(method(dateValue))]
        #[unsafe(method_family = none)]
        pub fn dateValue(&self) -> Option<Retained<NSDate>>;

        #[cfg(feature = "NSURL")]
        #[unsafe(method(fileURLValue))]
        #[unsafe(method_family = none)]
        pub fn fileURLValue(&self) -> Option<Retained<NSURL>>;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(eventClass))]
        #[unsafe(method_family = none)]
        pub fn eventClass(&self) -> AEEventClass;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(eventID))]
        #[unsafe(method_family = none)]
        pub fn eventID(&self) -> AEEventID;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(returnID))]
        #[unsafe(method_family = none)]
        pub fn returnID(&self) -> AEReturnID;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(transactionID))]
        #[unsafe(method_family = none)]
        pub fn transactionID(&self) -> AETransactionID;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(setParamDescriptor:forKeyword:))]
        #[unsafe(method_family = none)]
        pub fn setParamDescriptor_forKeyword(
            &self,
            descriptor: &NSAppleEventDescriptor,
            keyword: AEKeyword,
        );

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(paramDescriptorForKeyword:))]
        #[unsafe(method_family = none)]
        pub fn paramDescriptorForKeyword(
            &self,
            keyword: AEKeyword,
        ) -> Option<Retained<NSAppleEventDescriptor>>;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(removeParamDescriptorWithKeyword:))]
        #[unsafe(method_family = none)]
        pub fn removeParamDescriptorWithKeyword(&self, keyword: AEKeyword);

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(setAttributeDescriptor:forKeyword:))]
        #[unsafe(method_family = none)]
        pub fn setAttributeDescriptor_forKeyword(
            &self,
            descriptor: &NSAppleEventDescriptor,
            keyword: AEKeyword,
        );

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(attributeDescriptorForKeyword:))]
        #[unsafe(method_family = none)]
        pub fn attributeDescriptorForKeyword(
            &self,
            keyword: AEKeyword,
        ) -> Option<Retained<NSAppleEventDescriptor>>;

        #[cfg(all(feature = "NSDate", feature = "NSError"))]
        #[unsafe(method(sendEventWithOptions:timeout:error:_))]
        #[unsafe(method_family = none)]
        pub fn sendEventWithOptions_timeout_error(
            &self,
            send_options: NSAppleEventSendOptions,
            timeout_in_seconds: NSTimeInterval,
        ) -> Result<Retained<NSAppleEventDescriptor>, Retained<NSError>>;

        #[unsafe(method(isRecordDescriptor))]
        #[unsafe(method_family = none)]
        pub fn isRecordDescriptor(&self) -> bool;

        #[unsafe(method(numberOfItems))]
        #[unsafe(method_family = none)]
        pub fn numberOfItems(&self) -> NSInteger;

        #[unsafe(method(insertDescriptor:atIndex:))]
        #[unsafe(method_family = none)]
        pub fn insertDescriptor_atIndex(
            &self,
            descriptor: &NSAppleEventDescriptor,
            index: NSInteger,
        );

        #[unsafe(method(descriptorAtIndex:))]
        #[unsafe(method_family = none)]
        pub fn descriptorAtIndex(
            &self,
            index: NSInteger,
        ) -> Option<Retained<NSAppleEventDescriptor>>;

        #[unsafe(method(removeDescriptorAtIndex:))]
        #[unsafe(method_family = none)]
        pub fn removeDescriptorAtIndex(&self, index: NSInteger);

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(setDescriptor:forKeyword:))]
        #[unsafe(method_family = none)]
        pub fn setDescriptor_forKeyword(
            &self,
            descriptor: &NSAppleEventDescriptor,
            keyword: AEKeyword,
        );

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(descriptorForKeyword:))]
        #[unsafe(method_family = none)]
        pub fn descriptorForKeyword(
            &self,
            keyword: AEKeyword,
        ) -> Option<Retained<NSAppleEventDescriptor>>;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(removeDescriptorWithKeyword:))]
        #[unsafe(method_family = none)]
        pub fn removeDescriptorWithKeyword(&self, keyword: AEKeyword);

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(keywordForDescriptorAtIndex:))]
        #[unsafe(method_family = none)]
        pub fn keywordForDescriptorAtIndex(&self, index: NSInteger) -> AEKeyword;

        #[cfg(feature = "objc2-core-services")]
        #[cfg(target_vendor = "apple")]
        #[unsafe(method(coerceToDescriptorType:))]
        #[unsafe(method_family = none)]
        pub fn coerceToDescriptorType(
            &self,
            descriptor_type: DescType,
        ) -> Option<Retained<NSAppleEventDescriptor>>;
    );
}

/// Methods declared on superclass `NSObject`.
impl NSAppleEventDescriptor {
    extern_methods!(
        #[unsafe(method(init))]
        #[unsafe(method_family = init)]
        pub fn init(this: Allocated<Self>) -> Retained<Self>;

        #[unsafe(method(new))]
        #[unsafe(method_family = new)]
        pub fn new() -> Retained<Self>;
    );
}

impl DefaultRetained for NSAppleEventDescriptor {
    #[inline]
    fn default_retained() -> Retained<Self> {
        Self::new()
    }
}