summaryrefslogtreecommitdiffstats
path: root/third_party/rust/objc/src/message/apple/mod.rs
blob: 30f59ca8701d1c69dd19ae8669a4d84bbd0f20d0 (plain)
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
use std::any::Any;

use runtime::{Class, Object, Sel};
use super::{Message, MessageArguments, MessageError, Super};

#[cfg(target_arch = "x86")]
#[path = "x86.rs"]
mod arch;
#[cfg(target_arch = "x86_64")]
#[path = "x86_64.rs"]
mod arch;
#[cfg(target_arch = "arm")]
#[path = "arm.rs"]
mod arch;
#[cfg(target_arch = "aarch64")]
#[path = "arm64.rs"]
mod arch;

use self::arch::{msg_send_fn, msg_send_super_fn};

pub unsafe fn send_unverified<T, A, R>(obj: *const T, sel: Sel, args: A)
        -> Result<R, MessageError>
        where T: Message, A: MessageArguments, R: Any {
    let receiver = obj as *mut T as *mut Object;
    let msg_send_fn = msg_send_fn::<R>();
    objc_try!({
        A::invoke(msg_send_fn, receiver, sel, args)
    })
}

pub unsafe fn send_super_unverified<T, A, R>(obj: *const T, superclass: &Class,
        sel: Sel, args: A) -> Result<R, MessageError>
        where T: Message, A: MessageArguments, R: Any {
    let sup = Super { receiver: obj as *mut T as *mut Object, superclass: superclass };
    let receiver = &sup as *const Super as *mut Object;
    let msg_send_fn = msg_send_super_fn::<R>();
    objc_try!({
        A::invoke(msg_send_fn, receiver, sel, args)
    })
}