bluest 0.5.3

A cross-platform Bluetooth Low Energy (BLE) library
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
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
#![allow(clippy::let_unit_value)]

use std::os::raw::c_void;
use std::sync::Once;

use objc::declare::ClassDecl;
use objc::runtime::{Class, Object, Protocol, Sel};
use objc::{class, msg_send, sel, sel_impl};
use objc_foundation::{INSArray, NSArray, NSDictionary, NSObject, NSString};
use objc_id::{Id, ShareId, Shared};
use tracing::{debug, error};

use super::types::{id, CBCharacteristic, CBDescriptor, CBL2CAPChannel, CBPeripheral, CBService, NSError, NSInteger};

#[derive(Clone)]
pub enum CentralEvent {
    Connect {
        peripheral: ShareId<CBPeripheral>,
    },
    Disconnect {
        peripheral: ShareId<CBPeripheral>,
        error: Option<ShareId<NSError>>,
    },
    ConnectFailed {
        peripheral: ShareId<CBPeripheral>,
        error: Option<ShareId<NSError>>,
    },
    ConnectionEvent {
        peripheral: ShareId<CBPeripheral>,
        event: CBConnectionEvent,
    },
    Discovered {
        peripheral: ShareId<CBPeripheral>,
        adv_data: ShareId<NSDictionary<NSString, NSObject>>,
        rssi: i16,
    },
    StateChanged,
}

impl std::fmt::Debug for CentralEvent {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Connect { peripheral } => f.debug_struct("Connect").field("peripheral", peripheral).finish(),
            Self::Disconnect { peripheral, error } => f
                .debug_struct("Disconnect")
                .field("peripheral", peripheral)
                .field("error", error)
                .finish(),
            Self::ConnectFailed { peripheral, error } => f
                .debug_struct("ConnectFailed")
                .field("peripheral", peripheral)
                .field("error", error)
                .finish(),
            Self::ConnectionEvent { peripheral, event } => f
                .debug_struct("ConnectionEvent")
                .field("peripheral", peripheral)
                .field("event", event)
                .finish(),
            Self::Discovered { peripheral, rssi, .. } => f
                .debug_struct("Discovered")
                .field("peripheral", peripheral)
                .field("rssi", rssi)
                .finish(),
            Self::StateChanged => write!(f, "StateChanged"),
        }
    }
}

#[derive(Debug, Clone)]
pub enum PeripheralEvent {
    Connected,
    Disconnected {
        error: Option<ShareId<NSError>>,
    },
    DiscoveredServices {
        error: Option<ShareId<NSError>>,
    },
    DiscoveredIncludedServices {
        service: ShareId<CBService>,
        error: Option<ShareId<NSError>>,
    },
    DiscoveredCharacteristics {
        service: ShareId<CBService>,
        error: Option<ShareId<NSError>>,
    },
    DiscoveredDescriptors {
        characteristic: ShareId<CBCharacteristic>,
        error: Option<ShareId<NSError>>,
    },
    CharacteristicValueUpdate {
        characteristic: ShareId<CBCharacteristic>,
        error: Option<ShareId<NSError>>,
    },
    DescriptorValueUpdate {
        descriptor: ShareId<CBDescriptor>,
        error: Option<ShareId<NSError>>,
    },
    CharacteristicValueWrite {
        characteristic: ShareId<CBCharacteristic>,
        error: Option<ShareId<NSError>>,
    },
    DescriptorValueWrite {
        descriptor: ShareId<CBDescriptor>,
        error: Option<ShareId<NSError>>,
    },
    ReadyToWrite,
    NotificationStateUpdate {
        characteristic: ShareId<CBCharacteristic>,
        error: Option<ShareId<NSError>>,
    },
    ReadRssi {
        rssi: i16,
        error: Option<ShareId<NSError>>,
    },
    NameUpdate,
    ServicesChanged {
        invalidated_services: Vec<ShareId<CBService>>,
    },
    L2CAPChannelOpened {
        channel: ShareId<CBL2CAPChannel>,
        error: Option<ShareId<NSError>>,
    },
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum CBConnectionEvent {
    Disconnected,
    Connected,
}

impl TryFrom<NSInteger> for CBConnectionEvent {
    type Error = NSInteger;

    fn try_from(value: NSInteger) -> Result<Self, Self::Error> {
        match value {
            0 => Ok(CBConnectionEvent::Disconnected),
            1 => Ok(CBConnectionEvent::Connected),
            _ => Err(value),
        }
    }
}

macro_rules! delegate_method {
    (@value $param:ident: Object) => {
        ShareId::from_ptr($param.cast())
    };
    (@value $param:ident: Option) => {
        (!$param.is_null()).then(|| ShareId::from_ptr($param.cast()))
    };
    (@value $param:ident: i16) => {
        {
            let n: i16 = msg_send![$param, shortValue];
            n
        }
    };
    (@value $param:ident: Vec) => {
        ShareId::from_ptr($param.cast::<NSArray<_, Shared>>()).to_shared_vec()
    };
    ($name:ident < $event:ident > ( central $(, $param:ident: $ty:ident)*)) => {
        extern "C" fn $name(this: &mut Object, _sel: Sel, _central: id, $($param: id),*) {
            unsafe {
                let ptr = (*this.get_ivar::<*mut c_void>("sender")).cast::<tokio::sync::broadcast::Sender<CentralEvent>>();
                if !ptr.is_null() {
                    let event = CentralEvent::$event {
                        $($param: delegate_method!(@value $param: $ty)),*
                    };
                    debug!("CentralDelegate received {:?}", event);
                    let _res = (*ptr).send(event);
                }
            }
        }
    };

    ($name:ident < $event:ident > ( peripheral $(, $param:ident: $ty:ident)*)) => {
        extern "C" fn $name(this: &mut Object, _sel: Sel, _peripheral: id, $($param: id),*) {
            unsafe {
                let ptr = (*this.get_ivar::<*mut c_void>("sender")).cast::<tokio::sync::broadcast::Sender<PeripheralEvent>>();
                if !ptr.is_null() {
                    let event = PeripheralEvent::$event {
                        $($param: delegate_method!(@value $param: $ty)),*
                    };
                    debug!("PeripheralDelegate received {:?}", event);
                    let _res = (*ptr).send(event);
                }
            }
        }
    };
}

pub struct CentralDelegate {
    _private: (),
}
unsafe impl objc::Message for CentralDelegate {}

impl objc_foundation::INSObject for CentralDelegate {
    fn class() -> &'static ::objc::runtime::Class {
        CentralDelegate::class()
    }
}
impl PartialEq for CentralDelegate {
    fn eq(&self, other: &Self) -> bool {
        use objc_foundation::INSObject;
        self.is_equal(other)
    }
}
impl Eq for CentralDelegate {}

impl std::hash::Hash for CentralDelegate {
    fn hash<H>(&self, state: &mut H)
    where
        H: std::hash::Hasher,
    {
        use objc_foundation::INSObject;
        self.hash_code().hash(state);
    }
}
impl ::std::fmt::Debug for CentralDelegate {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        use objc_foundation::{INSObject, INSString};
        ::std::fmt::Debug::fmt(self.description().as_str(), f)
    }
}

pub struct PeripheralDelegate {
    _private: (),
}
unsafe impl objc::Message for PeripheralDelegate {}

impl objc_foundation::INSObject for PeripheralDelegate {
    fn class() -> &'static ::objc::runtime::Class {
        PeripheralDelegate::class()
    }
}
impl PartialEq for PeripheralDelegate {
    fn eq(&self, other: &Self) -> bool {
        use objc_foundation::INSObject;
        self.is_equal(other)
    }
}
impl Eq for PeripheralDelegate {}

impl std::hash::Hash for PeripheralDelegate {
    fn hash<H>(&self, state: &mut H)
    where
        H: std::hash::Hasher,
    {
        use objc_foundation::INSObject;
        self.hash_code().hash(state);
    }
}
impl ::std::fmt::Debug for PeripheralDelegate {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        use objc_foundation::{INSObject, INSString};
        ::std::fmt::Debug::fmt(self.description().as_str(), f)
    }
}

impl CentralDelegate {
    pub fn with_sender(sender: tokio::sync::broadcast::Sender<CentralEvent>) -> Option<Id<CentralDelegate>> {
        unsafe {
            let obj: *mut Self = msg_send![Self::class(), alloc];
            let obj: *mut Self = msg_send![obj, initWithSender: Box::into_raw(Box::new(sender)).cast::<c_void>()];
            (!obj.is_null()).then(|| Id::from_retained_ptr(obj))
        }
    }

    pub fn sender(&self) -> &tokio::sync::broadcast::Sender<CentralEvent> {
        unsafe {
            let sender: *const c_void = msg_send![self, sender];
            assert!(!sender.is_null());
            &*(sender.cast::<tokio::sync::broadcast::Sender<CentralEvent>>())
        }
    }

    extern "C" fn init(this: &mut Object, _sel: Sel, sender: *mut c_void) -> id {
        let this: &mut Object = unsafe { msg_send![super(this, class!(NSObject)), init] };
        unsafe { this.set_ivar("sender", sender) };
        this
    }

    extern "C" fn dealloc(this: &mut Object, _sel: Sel) {
        unsafe {
            let sender: *mut c_void = *this.get_ivar("sender");
            this.set_ivar("sender", std::ptr::null_mut::<c_void>());
            if !sender.is_null() {
                std::mem::drop(Box::from_raw(
                    sender.cast::<tokio::sync::broadcast::Sender<CentralEvent>>(),
                ));
            }
            let _: () = msg_send![super(this, class!(NSObject)), dealloc];
        };
    }

    extern "C" fn sender_getter(this: &mut Object, _sel: Sel) -> *const c_void {
        unsafe { *this.get_ivar("sender") }
    }

    delegate_method!(did_fail_to_connect<ConnectFailed>(central, peripheral: Object, error: Option));
    delegate_method!(did_update_state<StateChanged>(central));

    extern "C" fn did_connect(this: &mut Object, _sel: Sel, _central: id, peripheral: id) {
        unsafe {
            let ptr = (*this.get_ivar::<*mut c_void>("sender")).cast::<tokio::sync::broadcast::Sender<CentralEvent>>();
            if !ptr.is_null() {
                let peripheral: Id<CBPeripheral, _> = ShareId::from_ptr(peripheral.cast());
                if let Some(delegate) = peripheral.delegate() {
                    let _res = delegate.sender().send(PeripheralEvent::Connected);
                }
                let event = CentralEvent::Connect { peripheral };
                debug!("CentralDelegate received {:?}", event);
                let _res = (*ptr).send(event);
            }
        }
    }

    extern "C" fn did_disconnect(this: &mut Object, _sel: Sel, _central: id, peripheral: id, error: id) {
        unsafe {
            let ptr = (*this.get_ivar::<*mut c_void>("sender")).cast::<tokio::sync::broadcast::Sender<CentralEvent>>();
            if !ptr.is_null() {
                let peripheral: Id<CBPeripheral, _> = ShareId::from_ptr(peripheral.cast());
                let error: Option<Id<NSError, _>> = (!error.is_null()).then(|| ShareId::from_ptr(error.cast()));
                if let Some(delegate) = peripheral.delegate() {
                    let _res = delegate
                        .sender()
                        .send(PeripheralEvent::Disconnected { error: error.clone() });
                }
                let event = CentralEvent::Disconnect { peripheral, error };
                debug!("CentralDelegate received {:?}", event);
                let _res = (*ptr).send(event);
            }
        }
    }

    extern "C" fn did_discover_peripheral(
        this: &mut Object,
        _sel: Sel,
        _central: id,
        peripheral: id,
        adv_data: id,
        rssi: id,
    ) {
        unsafe {
            let ptr = (*this.get_ivar::<*mut c_void>("sender")).cast::<tokio::sync::broadcast::Sender<CentralEvent>>();
            if !ptr.is_null() {
                let rssi: i16 = msg_send![rssi, charValue];
                let event = CentralEvent::Discovered {
                    peripheral: ShareId::from_ptr(peripheral.cast()),
                    adv_data: ShareId::from_ptr(adv_data.cast()),
                    rssi,
                };
                debug!("CentralDelegate received {:?}", event);
                let _res = (*ptr).send(event);
            }
        }
    }

    extern "C" fn on_connection_event(
        this: &mut Object,
        _sel: Sel,
        _central: id,
        connection_event: NSInteger,
        peripheral: id,
    ) {
        unsafe {
            let ptr = (*this.get_ivar::<*mut c_void>("sender")).cast::<tokio::sync::broadcast::Sender<CentralEvent>>();
            if !ptr.is_null() {
                match connection_event.try_into() {
                    Ok(event) => {
                        let event = CentralEvent::ConnectionEvent {
                            peripheral: ShareId::from_ptr(peripheral.cast()),
                            event,
                        };
                        debug!("CentralDelegate received {:?}", event);
                        let _res = (*ptr).send(event);
                    }
                    Err(err) => {
                        error!("Invalid value for CBConnectionEvent: {}", err);
                    }
                }
            }
        }
    }

    fn class() -> &'static Class {
        static DELEGATE_CLASS_INIT: Once = Once::new();
        DELEGATE_CLASS_INIT.call_once(|| {
            let mut cls = ClassDecl::new("BluestCentralDelegate", class!(NSObject)).unwrap();
            cls.add_ivar::<*mut c_void>("sender");
            cls.add_protocol(Protocol::get("CBCentralManagerDelegate").unwrap());

            unsafe {
                // Initialization
                cls.add_method(
                    sel!(initWithSender:),
                    Self::init as extern "C" fn(&mut Object, Sel, *mut c_void) -> id,
                );

                // Cleanup
                cls.add_method(sel!(dealloc), Self::dealloc as extern "C" fn(&mut Object, Sel));

                // Sender property
                cls.add_method(
                    sel!(sender),
                    Self::sender_getter as extern "C" fn(&mut Object, Sel) -> *const c_void,
                );

                // CBCentralManagerDelegate
                // Monitoring Connections with Peripherals
                cls.add_method(
                    sel!(centralManager:didConnectPeripheral:),
                    Self::did_connect as extern "C" fn(&mut Object, Sel, id, id),
                );
                cls.add_method(
                    sel!(centralManager:didDisconnectPeripheral:error:),
                    Self::did_disconnect as extern "C" fn(&mut Object, Sel, id, id, id),
                );
                cls.add_method(
                    sel!(centralManager:didFailToConnectPeripheral:error:),
                    Self::did_fail_to_connect as extern "C" fn(&mut Object, Sel, id, id, id),
                );
                cls.add_method(
                    sel!(centralManager:connectionEventDidOccur:forPeripheral:),
                    Self::on_connection_event as extern "C" fn(&mut Object, Sel, id, NSInteger, id),
                );
                // Discovering and Retrieving Peripherals
                cls.add_method(
                    sel!(centralManager:didDiscoverPeripheral:advertisementData:RSSI:),
                    Self::did_discover_peripheral as extern "C" fn(&mut Object, Sel, id, id, id, id),
                );
                // Monitoring the Central Manager's State
                cls.add_method(
                    sel!(centralManagerDidUpdateState:),
                    Self::did_update_state as extern "C" fn(&mut Object, Sel, id),
                );
            }

            cls.register();
        });

        class!(BluestCentralDelegate)
    }
}

impl PeripheralDelegate {
    pub fn with_sender(sender: tokio::sync::broadcast::Sender<PeripheralEvent>) -> Id<PeripheralDelegate> {
        unsafe {
            let obj: *mut Self = msg_send![Self::class(), alloc];
            let obj: *mut Self = msg_send![obj, initWithSender: Box::into_raw(Box::new(sender)).cast::<c_void>()];
            Id::from_retained_ptr(obj)
        }
    }

    pub fn sender(&self) -> &tokio::sync::broadcast::Sender<PeripheralEvent> {
        unsafe {
            let sender: *const c_void = msg_send![self, sender];
            assert!(!sender.is_null());
            &*(sender.cast::<tokio::sync::broadcast::Sender<PeripheralEvent>>())
        }
    }

    extern "C" fn init(this: &mut Object, _sel: Sel, sender: *mut c_void) -> id {
        let this: &mut Object = unsafe { msg_send![super(this, class!(NSObject)), init] };
        unsafe { this.set_ivar("sender", sender) };
        this
    }

    extern "C" fn dealloc(this: &mut Object, _sel: Sel) {
        unsafe {
            let sender: *mut c_void = *this.get_ivar("sender");
            this.set_ivar("sender", std::ptr::null_mut::<c_void>());
            if !sender.is_null() {
                std::mem::drop(Box::from_raw(
                    sender.cast::<tokio::sync::broadcast::Sender<PeripheralEvent>>(),
                ));
            }
            let _: () = msg_send![super(this, class!(NSObject)), dealloc];
        };
    }

    extern "C" fn sender_getter(this: &mut Object, _sel: Sel) -> *const c_void {
        unsafe { *this.get_ivar("sender") }
    }

    delegate_method!(did_discover_services<DiscoveredServices>(peripheral, error: Option));
    delegate_method!(did_discover_included_services<DiscoveredIncludedServices>(peripheral, service: Object, error: Option));
    delegate_method!(did_discover_characteristics<DiscoveredCharacteristics>(peripheral, service: Object, error: Option));
    delegate_method!(did_discover_descriptors<DiscoveredDescriptors>(peripheral, characteristic: Object, error: Option));
    delegate_method!(did_update_value_for_characteristic<CharacteristicValueUpdate>(peripheral, characteristic: Object, error: Option));
    delegate_method!(did_update_value_for_descriptor<DescriptorValueUpdate>(peripheral, descriptor: Object, error: Option));
    delegate_method!(did_write_value_for_characteristic<CharacteristicValueWrite>(peripheral, characteristic: Object, error: Option));
    delegate_method!(did_write_value_for_descriptor<DescriptorValueWrite>(peripheral, descriptor: Object, error: Option));
    delegate_method!(is_ready_to_write_without_response<ReadyToWrite>(peripheral));
    delegate_method!(did_update_notification_state<NotificationStateUpdate>(peripheral, characteristic: Object, error: Option));
    delegate_method!(did_read_rssi<ReadRssi>(peripheral, rssi: i16, error: Option));
    delegate_method!(did_update_name<NameUpdate>(peripheral));
    delegate_method!(did_modify_services<ServicesChanged>(peripheral, invalidated_services: Vec));
    delegate_method!(did_open_l2cap_channel<L2CAPChannelOpened>(peripheral, channel: Object, error: Option));

    fn class() -> &'static Class {
        static DELEGATE_CLASS_INIT: Once = Once::new();
        DELEGATE_CLASS_INIT.call_once(|| {
            let mut cls = ClassDecl::new("BluestPeripheralDelegate", class!(NSObject)).unwrap();
            cls.add_ivar::<*mut c_void>("sender");
            cls.add_protocol(Protocol::get("CBPeripheralDelegate").unwrap());

            unsafe {
                // Initialization
                cls.add_method(
                    sel!(initWithSender:),
                    Self::init as extern "C" fn(&mut Object, Sel, *mut c_void) -> id,
                );

                // Cleanup
                cls.add_method(sel!(dealloc), Self::dealloc as extern "C" fn(&mut Object, Sel));

                // Sender property
                cls.add_method(
                    sel!(sender),
                    Self::sender_getter as extern "C" fn(&mut Object, Sel) -> *const c_void,
                );

                // CBPeripheralDelegate
                // Discovering Services
                cls.add_method(
                    sel!(peripheral:didDiscoverServices:),
                    Self::did_discover_services as extern "C" fn(&mut Object, Sel, id, id),
                );
                cls.add_method(
                    sel!(peripheral:didDiscoverIncludedServicesForService:error:),
                    Self::did_discover_included_services as extern "C" fn(&mut Object, Sel, id, id, id),
                );
                // Discovering Characteristics and their Descriptors
                cls.add_method(
                    sel!(peripheral:didDiscoverCharacteristicsForService:error:),
                    Self::did_discover_characteristics as extern "C" fn(&mut Object, Sel, id, id, id),
                );
                cls.add_method(
                    sel!(peripheral:didDiscoverDescriptorsForCharacteristic:error:),
                    Self::did_discover_descriptors as extern "C" fn(&mut Object, Sel, id, id, id),
                );
                // Retrieving Characteristic and Descriptor Values
                cls.add_method(
                    sel!(peripheral:didUpdateValueForCharacteristic:error:),
                    Self::did_update_value_for_characteristic as extern "C" fn(&mut Object, Sel, id, id, id),
                );
                cls.add_method(
                    sel!(peripheral:didUpdateValueForDescriptor:error:),
                    Self::did_update_value_for_descriptor as extern "C" fn(&mut Object, Sel, id, id, id),
                );
                // Writing Characteristic and Descriptor Values
                cls.add_method(
                    sel!(peripheral:didWriteValueForCharacteristic:error:),
                    Self::did_write_value_for_characteristic as extern "C" fn(&mut Object, Sel, id, id, id),
                );
                cls.add_method(
                    sel!(peripheral:didWriteValueForDescriptor:error:),
                    Self::did_write_value_for_descriptor as extern "C" fn(&mut Object, Sel, id, id, id),
                );
                cls.add_method(
                    sel!(peripheralIsReadyToSendWriteWithoutResponse:),
                    Self::is_ready_to_write_without_response as extern "C" fn(&mut Object, Sel, id),
                );
                // Managing Notifications for a Characteristic's Value
                cls.add_method(
                    sel!(peripheral:didUpdateNotificationStateForCharacteristic:error:),
                    Self::did_update_notification_state as extern "C" fn(&mut Object, Sel, id, id, id),
                );
                // Retrieving a Perpipheral's RSSI Data
                cls.add_method(
                    sel!(peripheral:didReadRSSI:error:),
                    Self::did_read_rssi as extern "C" fn(&mut Object, Sel, id, id, id),
                );
                // Monitoring Changes to a Peripheral's Name or Services
                cls.add_method(
                    sel!(peripheralDidUpdateName:),
                    Self::did_update_name as extern "C" fn(&mut Object, Sel, id),
                );
                cls.add_method(
                    sel!(peripheral:didModifyServices:),
                    Self::did_modify_services as extern "C" fn(&mut Object, Sel, id, id),
                );
                // Monitoring L2CAP Channels
                cls.add_method(
                    sel!(peripheral:didOpenL2CAPChannel:error:),
                    Self::did_open_l2cap_channel as extern "C" fn(&mut Object, Sel, id, id, id),
                );
            }

            cls.register();
        });

        class!(BluestPeripheralDelegate)
    }
}