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
#![no_std]
#![allow(clippy::upper_case_acronyms)]
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#![allow(non_snake_case)]
#![doc(html_root_url = "https://docs.rs/objc-sys/0.2.0-beta.0")]
extern crate std;
#[cfg(doctest)]
#[doc = include_str!("../README.md")]
extern "C" {}
use core::cell::UnsafeCell;
use core::marker::{PhantomData, PhantomPinned};
macro_rules! generate_linking_tests {
{
$(#[$extern_m:meta])*
extern $abi:literal {$(
$(#[$m:meta])*
$v:vis fn $name:ident($($a:ident: $t:ty),* $(,)?) $(-> $r:ty)?;
)+}
} => {
$(#[$extern_m])*
extern $abi {$(
$(#[$m])*
$v fn $name($($a: $t),*) $(-> $r)?;
)+}
$(#[$extern_m])*
#[allow(deprecated)]
#[cfg(test)]
mod test_linkable {
#[allow(unused)]
use super::*;
use std::println;
$(
$(#[$m])*
#[test]
fn $name() {
let f: unsafe extern $abi fn($($t),*) $(-> $r)? = crate::$name;
println!("{:p}", f);
}
)+
}
};
}
macro_rules! extern_c {
{
$(#![$extern_m:meta])*
$(
$(#[$m:meta])*
$v:vis fn $name:ident($($a:ident: $t:ty),* $(,)?) $(-> $r:ty)?;
)+
} => {
generate_linking_tests! {
$(#[$extern_m])*
extern "C" {$(
$(#[$m])*
$v fn $name($($a: $t),*) $(-> $r)?;
)+}
}
};
}
mod class;
mod constants;
mod exception;
mod message;
mod method;
mod object;
mod property;
mod protocol;
mod rc;
mod selector;
mod types;
mod various;
pub use class::*;
pub use constants::*;
pub use exception::*;
pub use message::*;
pub use method::*;
pub use object::*;
pub use property::*;
pub use protocol::*;
pub use rc::*;
pub use selector::*;
pub use types::*;
pub use various::*;
type OpaqueData = UnsafeCell<PhantomData<(*const UnsafeCell<()>, PhantomPinned)>>;
#[cfg(test)]
mod tests {
use super::*;
use std::ffi::CStr;
#[test]
fn smoke() {
let name = CStr::from_bytes_with_nul(b"abc:def:\0").unwrap();
let sel = unsafe { sel_registerName(name.as_ptr()) };
let rtn = unsafe { CStr::from_ptr(sel_getName(sel)) };
assert_eq!(name, rtn);
}
}