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
#![macro_use]
#![allow(dead_code, non_snake_case)]
#[macro_export]
macro_rules! define_guid {
($name:ident, $d1:expr, $d2:expr, $d3:expr,
$d4:expr, $d5:expr, $d6:expr, $d7:expr, $d8:expr, $d9:expr, $d10:expr, $d11:expr) =>
{
pub const $name: GUID = GUID{ Data1: $d1, Data2: $d2, Data3: $d3,
Data4: [$d4, $d5, $d6, $d7, $d8, $d9, $d10, $d11] };
}
}
#[macro_export]
macro_rules! interface {
(
$interface:ident ($vtbl:ident) {$(
fn $method:ident(&mut self $(,$arg:ident : $argty:ty)*) -> $retty:ty
),*}
) => {
#[repr(C)]
pub struct $vtbl {
$(pub $method:
Option<unsafe extern "system" fn(This: *mut $interface $(,$arg: $argty)*) -> $retty>
),*
}
#[repr(C)]
pub struct $interface {
pub lpVtbl: *const $vtbl
}
impl $interface {
$(pub unsafe fn $method(&mut self $(,$arg: $argty)*) -> $retty {
((*self.lpVtbl).$method.unwrap())(self $(,$arg)*)
})*
}
};
(
$interface:ident ($vtbl:ident) : $pinterface:ident ($pvtbl:ident) {$(
fn $method:ident(&mut self $(,$arg:ident : $argty:ty)*) -> $retty:ty
),*}
) => {
#[repr(C)]
pub struct $vtbl {
pub parent: $pvtbl,
$(pub $method:
Option<unsafe extern "system" fn(This: *mut $interface $(,$arg: $argty)*) -> $retty>
),*
}
#[repr(C)]
pub struct $interface {
pub lpVtbl: *const $vtbl
}
impl $interface {
$(pub unsafe fn $method(&mut self $(,$arg: $argty)*) -> $retty {
((*self.lpVtbl).$method.unwrap())(self $(,$arg)*)
})*
}
impl ::std::ops::Deref for $interface {
type Target = $pinterface;
fn deref(&self) -> &$pinterface {
unsafe { ::std::mem::transmute(self) }
}
}
impl ::std::ops::DerefMut for $interface {
fn deref_mut(&mut self) -> &mut $pinterface {
unsafe { ::std::mem::transmute(self) }
}
}
};
}
#[macro_export]
macro_rules! com_interface {
(
$interface:ident ($vtbl:ident) : $pinterface:ident ($pvtbl:ident) {$(
fn $method:ident(&mut self $(,$arg:ident : $argty:ty)*) -> $retty:ty
),*}
) => {
#[repr(C)]
pub struct $vtbl {
pub parent: $pvtbl,
$(pub $method:
Option<unsafe extern "system" fn(This: *mut $interface $(,$arg: $argty)*) -> $retty>
),*
}
#[repr(C)]
pub struct $interface {
pub lpVtbl: *const $vtbl
}
impl $interface {
$(pub unsafe fn $method(&mut self $(,$arg: $argty)*) -> $retty {
((*self.lpVtbl).$method.unwrap())(self $(,$arg)*)
})*
}
impl ::std::ops::Deref for $interface {
type Target = $pinterface;
fn deref(&self) -> &$pinterface {
unsafe { ::std::mem::transmute(self) }
}
}
impl ::std::ops::DerefMut for $interface {
fn deref_mut(&mut self) -> &mut $pinterface {
unsafe { ::std::mem::transmute(self) }
}
}
impl COMInterface for $interface {
fn i_unknown(&self) -> &IUnknown { &*self }
fn i_unknown_mut(&mut self) -> &mut IUnknown { &mut *self }
}
};
}
#[cfg(test)]
mod test {
interface!{ One(OneTable) {
fn one(&mut self, a: u32) -> u32
}}
interface!{ Zero(ZeroTable): One(OneTable) {
fn zero(&mut self, a: u32) -> u32
}}
interface!{ Two(TwoTable): One(OneTable) {
fn two(&mut self, a: u32) -> u32
}}
interface!{ Three(ThreeTable): Two(TwoTable) {
fn three(&mut self, a: u32) -> u32
}}
}