forked from bytecodealliance/wit-bindgen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodegen.rs
More file actions
228 lines (184 loc) · 4.86 KB
/
codegen.rs
File metadata and controls
228 lines (184 loc) · 4.86 KB
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
#![allow(unused_macros)]
mod codegen_tests {
macro_rules! codegen_test {
($id:ident $name:tt $test:tt) => {
mod $id {
wit_bindgen::generate!(in $test);
// This empty module named 'core' is here to catch module path
// conflicts with 'core' modules used in code generated by the
// wit_bindgen::generate macro.
// Ref: https://github.com/bytecodealliance/wit-bindgen/pull/568
mod core {}
#[test]
fn works() {}
mod duplicate {
wit_bindgen::generate!({
path: $test,
ownership: Borrowing {
duplicate_if_necessary: true
}
});
#[test]
fn works() {}
}
}
};
}
test_helpers::codegen_tests!();
}
mod strings {
wit_bindgen::generate!({
inline: "
package my:strings
world not-used-name {
import cat: interface {
foo: func(x: string)
bar: func() -> string
}
}
",
});
#[allow(dead_code)]
fn test() {
// Test the argument is `&str`.
cat::foo("hello");
// Test the return type is `String`.
let _t: String = cat::bar();
}
}
/// Like `strings` but with raw_strings`.
mod raw_strings {
wit_bindgen::generate!({
inline: "
package my:raw-strings
world not-used-name {
import cat: interface {
foo: func(x: string)
bar: func() -> string
}
}
",
raw_strings,
});
#[allow(dead_code)]
fn test() {
// Test the argument is `&[u8]`.
cat::foo(b"hello");
// Test the return type is `Vec<u8>`.
let _t: Vec<u8> = cat::bar();
}
}
// This is a static compilation test to ensure that
// export bindings can go inside of another mod/crate
// and still compile.
mod prefix {
mod bindings {
wit_bindgen::generate!({
inline: "
package my:prefix
world baz {
export exports1: interface {
foo: func(x: string)
bar: func() -> string
}
}
",
macro_call_prefix: "bindings::"
});
pub(crate) use export_baz;
}
struct Component;
impl bindings::exports::exports1::Exports1 for Component {
fn foo(x: String) {
println!("foo: {}", x);
}
fn bar() -> String {
"bar".to_string()
}
}
bindings::export_baz!(Component);
}
// This is a static compilation test to check that
// the export macro name can be overridden.
mod macro_name {
wit_bindgen::generate!({
inline: "
package my:macro-name
world baz {
export exports2: interface {
foo: func(x: string)
}
}
",
export_macro_name: "jam"
});
struct Component;
impl exports::exports2::Exports2 for Component {
fn foo(x: String) {
println!("foo: {}", x);
}
}
jam!(Component);
}
mod skip {
wit_bindgen::generate!({
inline: "
package my:inline
world baz {
export exports: interface {
foo: func()
bar: func()
}
}
",
skip: ["foo"],
});
struct Component;
impl exports::exports::Exports for Component {
fn bar() {}
}
export_baz!(Component);
}
mod symbol_does_not_conflict {
wit_bindgen::generate!({
inline: "
package my:inline
interface foo1 {
foo: func()
}
interface foo2 {
foo: func()
}
interface bar1 {
bar: func() -> string
}
interface bar2 {
bar: func() -> string
}
world foo {
export foo1
export foo2
export bar1
export bar2
}
",
});
struct Component;
impl exports::my::inline::foo1::Foo1 for Component {
fn foo() {}
}
impl exports::my::inline::foo2::Foo2 for Component {
fn foo() {}
}
impl exports::my::inline::bar1::Bar1 for Component {
fn bar() -> String {
String::new()
}
}
impl exports::my::inline::bar2::Bar2 for Component {
fn bar() -> String {
String::new()
}
}
export_foo!(Component);
}