blob: b8d1dd48f0dbb96cc74abd2e3186813884626aac [file] [log] [blame]
David Tolnay0c033e32020-11-01 15:15:48 -08001use crate::gen::block::Block;
David Tolnayf7b81fb2020-11-01 22:39:04 -08002use crate::gen::nested::NamespaceEntries;
David Tolnay8810a542020-10-31 21:39:22 -07003use crate::gen::out::OutFile;
David Tolnay942cffd2020-11-03 18:27:10 -08004use crate::gen::{builtin, include, Opt};
David Tolnay7db73692019-10-20 14:51:12 -04005use crate::syntax::atom::Atom::{self, *};
David Tolnay891061b2020-04-19 22:42:33 -07006use crate::syntax::symbol::Symbol;
Adrian Taylorc8713432020-10-21 18:20:55 -07007use crate::syntax::{
David Tolnay8faec772020-11-02 00:18:19 -08008 mangle, Api, Enum, ExternFn, ExternType, Pair, ResolvableName, Signature, Struct, Type, Types,
9 Var,
Adrian Taylorc8713432020-10-21 18:20:55 -070010};
David Tolnay7db73692019-10-20 14:51:12 -040011use proc_macro2::Ident;
David Tolnay5439fa12020-11-03 18:45:01 -080012use std::collections::{HashMap, HashSet};
David Tolnay7db73692019-10-20 14:51:12 -040013
David Tolnayac7188c2020-11-01 16:58:16 -080014pub(super) fn gen(apis: &[Api], types: &Types, opt: &Opt, header: bool) -> Vec<u8> {
David Tolnaye1476af2020-11-01 13:47:25 -080015 let mut out_file = OutFile::new(header, opt, types);
David Tolnay7db73692019-10-20 14:51:12 -040016 let out = &mut out_file;
17
David Tolnaydfb82d72020-11-02 00:10:10 -080018 pick_includes_and_builtins(out, apis);
David Tolnay4aae7c02020-10-28 12:35:42 -070019 out.include.extend(&opt.include);
David Tolnay7db73692019-10-20 14:51:12 -040020
David Tolnay7b0e5102020-11-01 23:22:12 -080021 write_forward_declarations(out, apis);
David Tolnaye1109d92020-11-01 20:51:56 -080022 write_data_structures(out, apis);
23 write_functions(out, apis);
David Tolnay169bb472020-11-01 21:04:24 -080024 write_generic_instantiations(out);
David Tolnay7db73692019-10-20 14:51:12 -040025
David Tolnay3374d8d2020-10-31 22:18:45 -070026 builtin::write(out);
David Tolnay2f3e90b2020-10-31 22:16:51 -070027 include::write(out);
Adrian Taylorc8713432020-10-21 18:20:55 -070028
David Tolnayac7188c2020-11-01 16:58:16 -080029 out_file.content()
Adrian Taylorc8713432020-10-21 18:20:55 -070030}
31
David Tolnay7b0e5102020-11-01 23:22:12 -080032fn write_forward_declarations(out: &mut OutFile, apis: &[Api]) {
33 let needs_forward_declaration = |api: &&Api| match api {
David Tolnay4bfca112020-11-01 23:59:11 -080034 Api::Struct(_) | Api::CxxType(_) | Api::RustType(_) => true,
David Tolnay17a934c2020-11-02 00:40:04 -080035 Api::Enum(enm) => !out.types.cxx.contains(&enm.name.rust),
David Tolnay7b0e5102020-11-01 23:22:12 -080036 _ => false,
37 };
Adrian Taylorc8713432020-10-21 18:20:55 -070038
David Tolnay7b0e5102020-11-01 23:22:12 -080039 let apis_by_namespace =
40 NamespaceEntries::new(apis.iter().filter(needs_forward_declaration).collect());
41
David Tolnayd920be52020-11-01 23:34:30 -080042 write(out, &apis_by_namespace, 0);
David Tolnay7b0e5102020-11-01 23:22:12 -080043
David Tolnayd920be52020-11-01 23:34:30 -080044 fn write(out: &mut OutFile, ns_entries: &NamespaceEntries, indent: usize) {
David Tolnay7b0e5102020-11-01 23:22:12 -080045 let apis = ns_entries.direct_content();
46
47 for api in apis {
David Tolnayd920be52020-11-01 23:34:30 -080048 write!(out, "{:1$}", "", indent);
David Tolnay7b0e5102020-11-01 23:22:12 -080049 match api {
David Tolnay17a934c2020-11-02 00:40:04 -080050 Api::Struct(strct) => write_struct_decl(out, &strct.name.cxx),
David Tolnay0e3ee8e2020-11-01 23:46:52 -080051 Api::Enum(enm) => write_enum_decl(out, enm),
David Tolnay17a934c2020-11-02 00:40:04 -080052 Api::CxxType(ety) => write_struct_using(out, &ety.name),
53 Api::RustType(ety) => write_struct_decl(out, &ety.name.cxx),
David Tolnay7b0e5102020-11-01 23:22:12 -080054 _ => unreachable!(),
55 }
David Tolnay7db73692019-10-20 14:51:12 -040056 }
David Tolnay7db73692019-10-20 14:51:12 -040057
David Tolnay7b0e5102020-11-01 23:22:12 -080058 for (namespace, nested_ns_entries) in ns_entries.nested_content() {
David Tolnayd920be52020-11-01 23:34:30 -080059 writeln!(out, "{:2$}namespace {} {{", "", namespace, indent);
60 write(out, nested_ns_entries, indent + 2);
61 writeln!(out, "{:1$}}}", "", indent);
David Tolnay7b0e5102020-11-01 23:22:12 -080062 }
Adrian Taylorf9213622020-10-31 22:25:42 -070063 }
64}
65
David Tolnaye1109d92020-11-01 20:51:56 -080066fn write_data_structures<'a>(out: &mut OutFile<'a>, apis: &'a [Api]) {
David Tolnayf94bef12020-04-17 14:46:42 -070067 let mut methods_for_type = HashMap::new();
David Tolnay630af882020-10-31 22:03:47 -070068 for api in apis {
David Tolnayf94bef12020-04-17 14:46:42 -070069 if let Api::RustFunction(efn) = api {
70 if let Some(receiver) = &efn.sig.receiver {
71 methods_for_type
Adrian Taylorc8713432020-10-21 18:20:55 -070072 .entry(&receiver.ty.rust)
David Tolnayf94bef12020-04-17 14:46:42 -070073 .or_insert_with(Vec::new)
74 .push(efn);
75 }
76 }
77 }
Joel Galenson968738f2020-04-15 14:19:33 -070078
David Tolnay5439fa12020-11-03 18:45:01 -080079 let mut structs_written = HashSet::new();
80 let mut toposorted_structs = out.types.toposorted_structs.iter();
David Tolnay9622b462020-11-02 21:34:42 -080081 for api in apis {
Joel Galensonc1c4e7a2020-04-15 10:21:00 -070082 match api {
David Tolnay5439fa12020-11-03 18:45:01 -080083 Api::Struct(strct) if !structs_written.contains(&strct.name.rust) => {
84 for next in &mut toposorted_structs {
85 if !out.types.cxx.contains(&strct.name.rust) {
86 out.next_section();
87 write_struct(out, next);
88 }
89 structs_written.insert(&next.name.rust);
90 if next.name.rust == strct.name.rust {
91 break;
92 }
93 }
94 }
Joel Galensonc03402a2020-04-23 17:31:09 -070095 Api::Enum(enm) => {
96 out.next_section();
David Tolnay17a934c2020-11-02 00:40:04 -080097 if out.types.cxx.contains(&enm.name.rust) {
Joel Galenson905eb2e2020-05-04 14:58:14 -070098 check_enum(out, enm);
99 } else {
100 write_enum(out, enm);
101 }
Joel Galensonc03402a2020-04-23 17:31:09 -0700102 }
David Tolnayc1fe0052020-04-17 15:15:06 -0700103 Api::RustType(ety) => {
David Tolnay17a934c2020-11-02 00:40:04 -0800104 if let Some(methods) = methods_for_type.get(&ety.name.rust) {
David Tolnay46a54e72020-04-17 14:48:21 -0700105 out.next_section();
David Tolnaya7c2ea12020-10-30 21:32:53 -0700106 write_struct_with_methods(out, ety, methods);
Joel Galensonc1c4e7a2020-04-15 10:21:00 -0700107 }
David Tolnayc1fe0052020-04-17 15:15:06 -0700108 }
Joel Galensonc1c4e7a2020-04-15 10:21:00 -0700109 _ => {}
David Tolnay7db73692019-10-20 14:51:12 -0400110 }
111 }
112
David Tolnayfabca772020-10-03 21:25:41 -0700113 out.next_section();
114 for api in apis {
115 if let Api::TypeAlias(ety) = api {
David Tolnay17a934c2020-11-02 00:40:04 -0800116 if out.types.required_trivial.contains_key(&ety.name.rust) {
117 check_trivial_extern_type(out, &ety.name)
David Tolnayfabca772020-10-03 21:25:41 -0700118 }
119 }
120 }
David Tolnay1b0339c2020-11-01 20:37:50 -0800121}
122
David Tolnaye1109d92020-11-01 20:51:56 -0800123fn write_functions<'a>(out: &mut OutFile<'a>, apis: &'a [Api]) {
David Tolnayce5a91f2020-10-31 22:42:08 -0700124 if !out.header {
David Tolnay7db73692019-10-20 14:51:12 -0400125 for api in apis {
David Tolnay04770742020-11-01 13:50:50 -0800126 match api {
127 Api::CxxFunction(efn) => write_cxx_function_shim(out, efn),
128 Api::RustFunction(efn) => write_rust_function_decl(out, efn),
129 _ => {}
130 }
David Tolnay7db73692019-10-20 14:51:12 -0400131 }
David Tolnay7db73692019-10-20 14:51:12 -0400132 }
133
134 for api in apis {
135 if let Api::RustFunction(efn) = api {
136 out.next_section();
David Tolnaya7c2ea12020-10-30 21:32:53 -0700137 write_rust_function_shim(out, efn);
David Tolnay7db73692019-10-20 14:51:12 -0400138 }
139 }
David Tolnay7db73692019-10-20 14:51:12 -0400140}
141
David Tolnaydfb82d72020-11-02 00:10:10 -0800142fn pick_includes_and_builtins(out: &mut OutFile, apis: &[Api]) {
143 for api in apis {
144 if let Api::Include(include) = api {
145 out.include.insert(include);
146 }
147 }
148
David Tolnaya7c2ea12020-10-30 21:32:53 -0700149 for ty in out.types {
David Tolnay7db73692019-10-20 14:51:12 -0400150 match ty {
Adrian Taylorc8713432020-10-21 18:20:55 -0700151 Type::Ident(ident) => match Atom::from(&ident.rust) {
David Tolnay89e386d2020-10-03 19:02:19 -0700152 Some(U8) | Some(U16) | Some(U32) | Some(U64) | Some(I8) | Some(I16) | Some(I32)
153 | Some(I64) => out.include.cstdint = true,
154 Some(Usize) => out.include.cstddef = true,
David Tolnaydcfa8e92020-11-02 09:50:06 -0800155 Some(Isize) => out.builtin.rust_isize = true,
David Tolnay89e386d2020-10-03 19:02:19 -0700156 Some(CxxString) => out.include.string = true,
David Tolnaydcfa8e92020-11-02 09:50:06 -0800157 Some(RustString) => out.builtin.rust_string = true,
David Tolnayb9da1462020-10-31 21:03:41 -0700158 Some(Bool) | Some(F32) | Some(F64) | None => {}
David Tolnay89e386d2020-10-03 19:02:19 -0700159 },
David Tolnaydcfa8e92020-11-02 09:50:06 -0800160 Type::RustBox(_) => out.builtin.rust_box = true,
161 Type::RustVec(_) => out.builtin.rust_vec = true,
David Tolnayb9da1462020-10-31 21:03:41 -0700162 Type::UniquePtr(_) => out.include.memory = true,
David Tolnaydcfa8e92020-11-02 09:50:06 -0800163 Type::Str(_) => out.builtin.rust_str = true,
David Tolnayb9da1462020-10-31 21:03:41 -0700164 Type::CxxVector(_) => out.include.vector = true,
David Tolnaydcfa8e92020-11-02 09:50:06 -0800165 Type::Fn(_) => out.builtin.rust_fn = true,
166 Type::Slice(_) => out.builtin.rust_slice = true,
David Tolnayb9da1462020-10-31 21:03:41 -0700167 Type::SliceRefU8(_) => {
David Tolnayb7a7cb62020-03-17 21:18:40 -0700168 out.include.cstdint = true;
David Tolnayb9da1462020-10-31 21:03:41 -0700169 out.builtin.rust_slice = true;
David Tolnayb7a7cb62020-03-17 21:18:40 -0700170 }
David Tolnay11bd7ff2020-11-01 19:44:58 -0800171 Type::Ref(_) | Type::Void(_) => {}
David Tolnay7db73692019-10-20 14:51:12 -0400172 }
173 }
David Tolnayec66d112020-10-31 21:00:26 -0700174}
David Tolnayf51447e2020-03-06 14:14:27 -0800175
David Tolnay0b9b9f82020-11-01 20:41:00 -0800176fn write_struct<'a>(out: &mut OutFile<'a>, strct: &'a Struct) {
David Tolnay17a934c2020-11-02 00:40:04 -0800177 out.set_namespace(&strct.name.namespace);
178 let guard = format!("CXXBRIDGE05_STRUCT_{}", strct.name.to_symbol());
David Tolnaya25ea9c2020-08-27 22:59:38 -0700179 writeln!(out, "#ifndef {}", guard);
180 writeln!(out, "#define {}", guard);
David Tolnay7db73692019-10-20 14:51:12 -0400181 for line in strct.doc.to_string().lines() {
182 writeln!(out, "//{}", line);
183 }
David Tolnay17a934c2020-11-02 00:40:04 -0800184 writeln!(out, "struct {} final {{", strct.name.cxx);
David Tolnay7db73692019-10-20 14:51:12 -0400185 for field in &strct.fields {
186 write!(out, " ");
David Tolnaya7c2ea12020-10-30 21:32:53 -0700187 write_type_space(out, &field.ty);
David Tolnay7db73692019-10-20 14:51:12 -0400188 writeln!(out, "{};", field.ident);
189 }
190 writeln!(out, "}};");
David Tolnaya25ea9c2020-08-27 22:59:38 -0700191 writeln!(out, "#endif // {}", guard);
David Tolnay7db73692019-10-20 14:51:12 -0400192}
193
194fn write_struct_decl(out: &mut OutFile, ident: &Ident) {
195 writeln!(out, "struct {};", ident);
196}
197
David Tolnay0e3ee8e2020-11-01 23:46:52 -0800198fn write_enum_decl(out: &mut OutFile, enm: &Enum) {
David Tolnay17a934c2020-11-02 00:40:04 -0800199 write!(out, "enum class {} : ", enm.name.cxx);
David Tolnay0e3ee8e2020-11-01 23:46:52 -0800200 write_atom(out, enm.repr);
201 writeln!(out, ";");
202}
203
David Tolnay8faec772020-11-02 00:18:19 -0800204fn write_struct_using(out: &mut OutFile, ident: &Pair) {
205 writeln!(out, "using {} = {};", ident.cxx, ident.to_fully_qualified());
David Tolnay8861bee2020-01-20 18:39:24 -0800206}
207
David Tolnay0b9b9f82020-11-01 20:41:00 -0800208fn write_struct_with_methods<'a>(
209 out: &mut OutFile<'a>,
210 ety: &'a ExternType,
211 methods: &[&ExternFn],
212) {
David Tolnay17a934c2020-11-02 00:40:04 -0800213 out.set_namespace(&ety.name.namespace);
214 let guard = format!("CXXBRIDGE05_STRUCT_{}", ety.name.to_symbol());
David Tolnaya25ea9c2020-08-27 22:59:38 -0700215 writeln!(out, "#ifndef {}", guard);
216 writeln!(out, "#define {}", guard);
Joel Galensonc1c4e7a2020-04-15 10:21:00 -0700217 for line in ety.doc.to_string().lines() {
218 writeln!(out, "//{}", line);
219 }
David Tolnay17a934c2020-11-02 00:40:04 -0800220 writeln!(out, "struct {} final {{", ety.name.cxx);
221 writeln!(out, " {}() = delete;", ety.name.cxx);
Adrian Taylorc8713432020-10-21 18:20:55 -0700222 writeln!(
223 out,
224 " {}(const {} &) = delete;",
David Tolnay17a934c2020-11-02 00:40:04 -0800225 ety.name.cxx, ety.name.cxx,
Adrian Taylorc8713432020-10-21 18:20:55 -0700226 );
Joel Galenson968738f2020-04-15 14:19:33 -0700227 for method in methods {
Joel Galensonc1c4e7a2020-04-15 10:21:00 -0700228 write!(out, " ");
229 let sig = &method.sig;
David Tolnay17a934c2020-11-02 00:40:04 -0800230 let local_name = method.name.cxx.to_string();
David Tolnaya7c2ea12020-10-30 21:32:53 -0700231 write_rust_function_shim_decl(out, &local_name, sig, false);
Joel Galensonc1c4e7a2020-04-15 10:21:00 -0700232 writeln!(out, ";");
233 }
234 writeln!(out, "}};");
David Tolnaya25ea9c2020-08-27 22:59:38 -0700235 writeln!(out, "#endif // {}", guard);
Joel Galensonc1c4e7a2020-04-15 10:21:00 -0700236}
237
David Tolnay0b9b9f82020-11-01 20:41:00 -0800238fn write_enum<'a>(out: &mut OutFile<'a>, enm: &'a Enum) {
David Tolnay17a934c2020-11-02 00:40:04 -0800239 out.set_namespace(&enm.name.namespace);
240 let guard = format!("CXXBRIDGE05_ENUM_{}", enm.name.to_symbol());
David Tolnaya25ea9c2020-08-27 22:59:38 -0700241 writeln!(out, "#ifndef {}", guard);
242 writeln!(out, "#define {}", guard);
Joel Galensonc03402a2020-04-23 17:31:09 -0700243 for line in enm.doc.to_string().lines() {
244 writeln!(out, "//{}", line);
245 }
David Tolnay17a934c2020-11-02 00:40:04 -0800246 write!(out, "enum class {} : ", enm.name.cxx);
David Tolnayf6a89f22020-05-10 23:39:27 -0700247 write_atom(out, enm.repr);
248 writeln!(out, " {{");
Joel Galensonc03402a2020-04-23 17:31:09 -0700249 for variant in &enm.variants {
Joel Galenson88547732020-05-05 08:23:42 -0700250 writeln!(out, " {} = {},", variant.ident, variant.discriminant);
Joel Galensonc03402a2020-04-23 17:31:09 -0700251 }
252 writeln!(out, "}};");
David Tolnaya25ea9c2020-08-27 22:59:38 -0700253 writeln!(out, "#endif // {}", guard);
Joel Galensonc03402a2020-04-23 17:31:09 -0700254}
255
David Tolnay0b9b9f82020-11-01 20:41:00 -0800256fn check_enum<'a>(out: &mut OutFile<'a>, enm: &'a Enum) {
David Tolnay17a934c2020-11-02 00:40:04 -0800257 out.set_namespace(&enm.name.namespace);
258 write!(out, "static_assert(sizeof({}) == sizeof(", enm.name.cxx);
David Tolnayf6a89f22020-05-10 23:39:27 -0700259 write_atom(out, enm.repr);
260 writeln!(out, "), \"incorrect size\");");
Joel Galenson0f654ff2020-05-04 20:04:21 -0700261 for variant in &enm.variants {
David Tolnayf6a89f22020-05-10 23:39:27 -0700262 write!(out, "static_assert(static_cast<");
263 write_atom(out, enm.repr);
Joel Galenson0f654ff2020-05-04 20:04:21 -0700264 writeln!(
265 out,
David Tolnayf6a89f22020-05-10 23:39:27 -0700266 ">({}::{}) == {}, \"disagrees with the value in #[cxx::bridge]\");",
David Tolnay17a934c2020-11-02 00:40:04 -0800267 enm.name.cxx, variant.ident, variant.discriminant,
Joel Galenson0f654ff2020-05-04 20:04:21 -0700268 );
Joel Galenson0f654ff2020-05-04 20:04:21 -0700269 }
Joel Galenson905eb2e2020-05-04 14:58:14 -0700270}
271
David Tolnay8faec772020-11-02 00:18:19 -0800272fn check_trivial_extern_type(out: &mut OutFile, id: &Pair) {
David Tolnay174bd952020-11-02 09:23:12 -0800273 // NOTE: The following static assertion is just nice-to-have and not
David Tolnayfd0034e2020-10-04 13:15:34 -0700274 // necessary for soundness. That's because triviality is always declared by
275 // the user in the form of an unsafe impl of cxx::ExternType:
276 //
277 // unsafe impl ExternType for MyType {
278 // type Id = cxx::type_id!("...");
279 // type Kind = cxx::kind::Trivial;
280 // }
281 //
282 // Since the user went on the record with their unsafe impl to unsafely
283 // claim they KNOW that the type is trivial, it's fine for that to be on
David Tolnay174bd952020-11-02 09:23:12 -0800284 // them if that were wrong. However, in practice correctly reasoning about
285 // the relocatability of C++ types is challenging, particularly if the type
286 // definition were to change over time, so for now we add this check.
David Tolnayfd0034e2020-10-04 13:15:34 -0700287 //
David Tolnay174bd952020-11-02 09:23:12 -0800288 // There may be legitimate reasons to opt out of this assertion for support
289 // of types that the programmer knows are soundly Rust-movable despite not
290 // being recognized as such by the C++ type system due to a move constructor
291 // or destructor. To opt out of the relocatability check, they need to do
292 // one of the following things in any header used by `include!` in their
293 // bridge.
294 //
295 // --- if they define the type:
296 // struct MyType {
297 // ...
298 // + using IsRelocatable = std::true_type;
299 // };
300 //
301 // --- otherwise:
302 // + template <>
303 // + struct rust::IsRelocatable<MyType> : std::true_type {};
304 //
David Tolnayfd0034e2020-10-04 13:15:34 -0700305
David Tolnay174bd952020-11-02 09:23:12 -0800306 let id = id.to_fully_qualified();
307 out.builtin.relocatable = true;
David Tolnay7426cc12020-10-03 19:04:04 -0700308 writeln!(out, "static_assert(");
David Tolnay174bd952020-11-02 09:23:12 -0800309 writeln!(out, " ::rust::IsRelocatable<{}>::value,", id);
David Tolnay7426cc12020-10-03 19:04:04 -0700310 writeln!(
311 out,
David Tolnay174bd952020-11-02 09:23:12 -0800312 " \"type {} marked as Trivial in Rust is not trivially move constructible and trivially destructible in C++\");",
David Tolnay7426cc12020-10-03 19:04:04 -0700313 id,
314 );
Adrian Taylor405e8742020-09-25 14:01:25 -0700315}
316
David Tolnay0b9b9f82020-11-01 20:41:00 -0800317fn write_cxx_function_shim<'a>(out: &mut OutFile<'a>, efn: &'a ExternFn) {
David Tolnay04770742020-11-01 13:50:50 -0800318 out.next_section();
David Tolnay17a934c2020-11-02 00:40:04 -0800319 out.set_namespace(&efn.name.namespace);
David Tolnayca563ee2020-11-01 20:12:27 -0800320 out.begin_block(Block::ExternC);
David Tolnaye1476af2020-11-01 13:47:25 -0800321 if let Some(annotation) = &out.opt.cxx_impl_annotations {
David Tolnaycc1ae762020-10-31 15:53:50 -0700322 write!(out, "{} ", annotation);
Adrian Taylor21f0ff02020-07-21 16:21:48 -0700323 }
David Tolnayebef4a22020-03-17 15:33:47 -0700324 if efn.throws {
David Tolnay919085c2020-10-31 22:32:22 -0700325 out.builtin.ptr_len = true;
David Tolnayd68dfa82020-10-31 16:01:24 -0700326 write!(out, "::rust::repr::PtrLen ");
David Tolnayebef4a22020-03-17 15:33:47 -0700327 } else {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700328 write_extern_return_type_space(out, &efn.ret);
David Tolnayebef4a22020-03-17 15:33:47 -0700329 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700330 let mangled = mangle::extern_fn(efn, out.types);
David Tolnay3caa50a2020-04-19 21:25:34 -0700331 write!(out, "{}(", mangled);
David Tolnaye439c772020-04-20 00:23:55 -0700332 if let Some(receiver) = &efn.receiver {
David Tolnay86710612020-04-20 00:30:32 -0700333 if receiver.mutability.is_none() {
334 write!(out, "const ");
335 }
Adrian Taylorc8713432020-10-21 18:20:55 -0700336 write!(
337 out,
338 "{} &self",
David Tolnay8faec772020-11-02 00:18:19 -0800339 out.types.resolve(&receiver.ty).to_fully_qualified(),
Adrian Taylorc8713432020-10-21 18:20:55 -0700340 );
Joel Galenson3d4f6122020-04-07 15:54:05 -0700341 }
David Tolnay7db73692019-10-20 14:51:12 -0400342 for (i, arg) in efn.args.iter().enumerate() {
Joel Galenson3d4f6122020-04-07 15:54:05 -0700343 if i > 0 || efn.receiver.is_some() {
David Tolnay7db73692019-10-20 14:51:12 -0400344 write!(out, ", ");
345 }
David Tolnaya46a2372020-03-06 10:03:48 -0800346 if arg.ty == RustString {
347 write!(out, "const ");
David Tolnay313b10e2020-04-25 16:30:51 -0700348 } else if let Type::RustVec(_) = arg.ty {
349 write!(out, "const ");
David Tolnaya46a2372020-03-06 10:03:48 -0800350 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700351 write_extern_arg(out, arg);
David Tolnay7db73692019-10-20 14:51:12 -0400352 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700353 let indirect_return = indirect_return(efn, out.types);
David Tolnay7db73692019-10-20 14:51:12 -0400354 if indirect_return {
myronahne3b78ea2020-05-23 01:08:13 +0700355 if !efn.args.is_empty() || efn.receiver.is_some() {
David Tolnay7db73692019-10-20 14:51:12 -0400356 write!(out, ", ");
357 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700358 write_indirect_return_type_space(out, efn.ret.as_ref().unwrap());
David Tolnay7db73692019-10-20 14:51:12 -0400359 write!(out, "*return$");
360 }
361 writeln!(out, ") noexcept {{");
362 write!(out, " ");
David Tolnaya7c2ea12020-10-30 21:32:53 -0700363 write_return_type(out, &efn.ret);
Joel Galenson3d4f6122020-04-07 15:54:05 -0700364 match &efn.receiver {
David Tolnay17a934c2020-11-02 00:40:04 -0800365 None => write!(out, "(*{}$)(", efn.name.rust),
Adrian Taylorc8713432020-10-21 18:20:55 -0700366 Some(receiver) => write!(
367 out,
368 "({}::*{}$)(",
David Tolnaya7c2ea12020-10-30 21:32:53 -0700369 out.types.resolve(&receiver.ty).to_fully_qualified(),
David Tolnay17a934c2020-11-02 00:40:04 -0800370 efn.name.rust,
Adrian Taylorc8713432020-10-21 18:20:55 -0700371 ),
Joel Galenson3d4f6122020-04-07 15:54:05 -0700372 }
David Tolnay7db73692019-10-20 14:51:12 -0400373 for (i, arg) in efn.args.iter().enumerate() {
374 if i > 0 {
375 write!(out, ", ");
376 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700377 write_type(out, &arg.ty);
David Tolnay7db73692019-10-20 14:51:12 -0400378 }
Joel Galenson3d4f6122020-04-07 15:54:05 -0700379 write!(out, ")");
David Tolnay4e7123f2020-04-19 21:11:37 -0700380 if let Some(receiver) = &efn.receiver {
381 if receiver.mutability.is_none() {
382 write!(out, " const");
383 }
Joel Galenson3d4f6122020-04-07 15:54:05 -0700384 }
385 write!(out, " = ");
386 match &efn.receiver {
David Tolnay17a934c2020-11-02 00:40:04 -0800387 None => write!(out, "{}", efn.name.to_fully_qualified()),
Adrian Taylorc8713432020-10-21 18:20:55 -0700388 Some(receiver) => write!(
389 out,
390 "&{}::{}",
David Tolnaya7c2ea12020-10-30 21:32:53 -0700391 out.types.resolve(&receiver.ty).to_fully_qualified(),
David Tolnay17a934c2020-11-02 00:40:04 -0800392 efn.name.cxx,
Adrian Taylorc8713432020-10-21 18:20:55 -0700393 ),
Joel Galenson3d4f6122020-04-07 15:54:05 -0700394 }
395 writeln!(out, ";");
David Tolnay7db73692019-10-20 14:51:12 -0400396 write!(out, " ");
David Tolnayebef4a22020-03-17 15:33:47 -0700397 if efn.throws {
David Tolnay919085c2020-10-31 22:32:22 -0700398 out.builtin.ptr_len = true;
David Tolnay74d6d512020-10-31 22:22:03 -0700399 out.builtin.trycatch = true;
David Tolnayd68dfa82020-10-31 16:01:24 -0700400 writeln!(out, "::rust::repr::PtrLen throw$;");
David Tolnay3e3e0af2020-03-17 22:42:49 -0700401 writeln!(out, " ::rust::behavior::trycatch(");
David Tolnay5d121442020-03-17 22:14:40 -0700402 writeln!(out, " [&] {{");
403 write!(out, " ");
David Tolnayebef4a22020-03-17 15:33:47 -0700404 }
David Tolnay7db73692019-10-20 14:51:12 -0400405 if indirect_return {
David Tolnay0ecd05a2020-07-29 16:32:03 -0700406 out.include.new = true;
David Tolnay7db73692019-10-20 14:51:12 -0400407 write!(out, "new (return$) ");
David Tolnaya7c2ea12020-10-30 21:32:53 -0700408 write_indirect_return_type(out, efn.ret.as_ref().unwrap());
David Tolnay7db73692019-10-20 14:51:12 -0400409 write!(out, "(");
David Tolnay99642622020-03-25 13:07:35 -0700410 } else if efn.ret.is_some() {
David Tolnay7db73692019-10-20 14:51:12 -0400411 write!(out, "return ");
David Tolnay99642622020-03-25 13:07:35 -0700412 }
413 match &efn.ret {
414 Some(Type::Ref(_)) => write!(out, "&"),
David Tolnay74d6d512020-10-31 22:22:03 -0700415 Some(Type::Str(_)) if !indirect_return => {
416 out.builtin.rust_str_repr = true;
417 write!(out, "::rust::impl<::rust::Str>::repr(");
418 }
David Tolnayeb952ba2020-04-14 15:02:24 -0700419 Some(Type::SliceRefU8(_)) if !indirect_return => {
David Tolnay36aa9e02020-10-31 23:08:21 -0700420 out.builtin.rust_slice_repr = true;
421 write!(out, "::rust::impl<::rust::Slice<uint8_t>>::repr(")
David Tolnayeb952ba2020-04-14 15:02:24 -0700422 }
David Tolnay99642622020-03-25 13:07:35 -0700423 _ => {}
David Tolnay7db73692019-10-20 14:51:12 -0400424 }
Joel Galenson3d4f6122020-04-07 15:54:05 -0700425 match &efn.receiver {
David Tolnay17a934c2020-11-02 00:40:04 -0800426 None => write!(out, "{}$(", efn.name.rust),
427 Some(_) => write!(out, "(self.*{}$)(", efn.name.rust),
Joel Galenson3d4f6122020-04-07 15:54:05 -0700428 }
David Tolnay7db73692019-10-20 14:51:12 -0400429 for (i, arg) in efn.args.iter().enumerate() {
430 if i > 0 {
431 write!(out, ", ");
432 }
433 if let Type::RustBox(_) = &arg.ty {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700434 write_type(out, &arg.ty);
David Tolnay7db73692019-10-20 14:51:12 -0400435 write!(out, "::from_raw({})", arg.ident);
436 } else if let Type::UniquePtr(_) = &arg.ty {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700437 write_type(out, &arg.ty);
David Tolnay7db73692019-10-20 14:51:12 -0400438 write!(out, "({})", arg.ident);
David Tolnay0356d332020-10-31 19:46:41 -0700439 } else if let Type::Str(_) = arg.ty {
David Tolnay74d6d512020-10-31 22:22:03 -0700440 out.builtin.rust_str_new_unchecked = true;
David Tolnay0356d332020-10-31 19:46:41 -0700441 write!(
442 out,
443 "::rust::impl<::rust::Str>::new_unchecked({})",
444 arg.ident,
445 );
David Tolnaya46a2372020-03-06 10:03:48 -0800446 } else if arg.ty == RustString {
David Tolnay74d6d512020-10-31 22:22:03 -0700447 out.builtin.unsafe_bitcopy = true;
David Tolnaycc3767f2020-03-06 10:41:51 -0800448 write!(
449 out,
450 "::rust::String(::rust::unsafe_bitcopy, *{})",
451 arg.ident,
452 );
David Tolnay313b10e2020-04-25 16:30:51 -0700453 } else if let Type::RustVec(_) = arg.ty {
David Tolnay74d6d512020-10-31 22:22:03 -0700454 out.builtin.unsafe_bitcopy = true;
David Tolnaya7c2ea12020-10-30 21:32:53 -0700455 write_type(out, &arg.ty);
David Tolnay313b10e2020-04-25 16:30:51 -0700456 write!(out, "(::rust::unsafe_bitcopy, *{})", arg.ident);
David Tolnay36aa9e02020-10-31 23:08:21 -0700457 } else if let Type::SliceRefU8(_) = arg.ty {
458 write!(
459 out,
460 "::rust::Slice<uint8_t>(static_cast<const uint8_t *>({0}.ptr), {0}.len)",
461 arg.ident,
462 );
David Tolnaya7c2ea12020-10-30 21:32:53 -0700463 } else if out.types.needs_indirect_abi(&arg.ty) {
David Tolnay4791f1c2020-03-17 21:53:16 -0700464 out.include.utility = true;
David Tolnay7e219b82020-03-01 13:14:51 -0800465 write!(out, "::std::move(*{})", arg.ident);
David Tolnay7db73692019-10-20 14:51:12 -0400466 } else {
467 write!(out, "{}", arg.ident);
468 }
469 }
470 write!(out, ")");
471 match &efn.ret {
472 Some(Type::RustBox(_)) => write!(out, ".into_raw()"),
473 Some(Type::UniquePtr(_)) => write!(out, ".release()"),
David Tolnay0356d332020-10-31 19:46:41 -0700474 Some(Type::Str(_)) | Some(Type::SliceRefU8(_)) if !indirect_return => write!(out, ")"),
David Tolnay7db73692019-10-20 14:51:12 -0400475 _ => {}
476 }
477 if indirect_return {
478 write!(out, ")");
479 }
480 writeln!(out, ";");
David Tolnayebef4a22020-03-17 15:33:47 -0700481 if efn.throws {
482 out.include.cstring = true;
David Tolnay1f010c62020-11-01 20:27:46 -0800483 out.builtin.exception = true;
David Tolnay5d121442020-03-17 22:14:40 -0700484 writeln!(out, " throw$.ptr = nullptr;");
485 writeln!(out, " }},");
David Tolnay82c16172020-03-17 22:54:12 -0700486 writeln!(out, " [&](const char *catch$) noexcept {{");
David Tolnay5d121442020-03-17 22:14:40 -0700487 writeln!(out, " throw$.len = ::std::strlen(catch$);");
David Tolnayebef4a22020-03-17 15:33:47 -0700488 writeln!(
489 out,
David Tolnay1f010c62020-11-01 20:27:46 -0800490 " throw$.ptr = ::cxxbridge05$exception(catch$, throw$.len);",
David Tolnayebef4a22020-03-17 15:33:47 -0700491 );
David Tolnay5d121442020-03-17 22:14:40 -0700492 writeln!(out, " }});");
David Tolnayebef4a22020-03-17 15:33:47 -0700493 writeln!(out, " return throw$;");
494 }
David Tolnay7db73692019-10-20 14:51:12 -0400495 writeln!(out, "}}");
David Tolnay75dca2e2020-03-25 20:17:52 -0700496 for arg in &efn.args {
497 if let Type::Fn(f) = &arg.ty {
498 let var = &arg.ident;
David Tolnaya7c2ea12020-10-30 21:32:53 -0700499 write_function_pointer_trampoline(out, efn, var, f);
David Tolnay75dca2e2020-03-25 20:17:52 -0700500 }
501 }
David Tolnayca563ee2020-11-01 20:12:27 -0800502 out.end_block(Block::ExternC);
David Tolnay75dca2e2020-03-25 20:17:52 -0700503}
504
505fn write_function_pointer_trampoline(
506 out: &mut OutFile,
507 efn: &ExternFn,
508 var: &Ident,
509 f: &Signature,
David Tolnay75dca2e2020-03-25 20:17:52 -0700510) {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700511 let r_trampoline = mangle::r_trampoline(efn, var, out.types);
David Tolnay75dca2e2020-03-25 20:17:52 -0700512 let indirect_call = true;
David Tolnaya7c2ea12020-10-30 21:32:53 -0700513 write_rust_function_decl_impl(out, &r_trampoline, f, indirect_call);
David Tolnay75dca2e2020-03-25 20:17:52 -0700514
515 out.next_section();
David Tolnaya7c2ea12020-10-30 21:32:53 -0700516 let c_trampoline = mangle::c_trampoline(efn, var, out.types).to_string();
517 write_rust_function_shim_impl(out, &c_trampoline, f, &r_trampoline, indirect_call);
David Tolnay7db73692019-10-20 14:51:12 -0400518}
519
David Tolnay0b9b9f82020-11-01 20:41:00 -0800520fn write_rust_function_decl<'a>(out: &mut OutFile<'a>, efn: &'a ExternFn) {
David Tolnay17a934c2020-11-02 00:40:04 -0800521 out.set_namespace(&efn.name.namespace);
David Tolnayca563ee2020-11-01 20:12:27 -0800522 out.begin_block(Block::ExternC);
David Tolnaya7c2ea12020-10-30 21:32:53 -0700523 let link_name = mangle::extern_fn(efn, out.types);
David Tolnay75dca2e2020-03-25 20:17:52 -0700524 let indirect_call = false;
David Tolnaya7c2ea12020-10-30 21:32:53 -0700525 write_rust_function_decl_impl(out, &link_name, efn, indirect_call);
David Tolnayca563ee2020-11-01 20:12:27 -0800526 out.end_block(Block::ExternC);
David Tolnay75dca2e2020-03-25 20:17:52 -0700527}
528
529fn write_rust_function_decl_impl(
530 out: &mut OutFile,
David Tolnay891061b2020-04-19 22:42:33 -0700531 link_name: &Symbol,
David Tolnay75dca2e2020-03-25 20:17:52 -0700532 sig: &Signature,
David Tolnay75dca2e2020-03-25 20:17:52 -0700533 indirect_call: bool,
534) {
David Tolnay04770742020-11-01 13:50:50 -0800535 out.next_section();
David Tolnay75dca2e2020-03-25 20:17:52 -0700536 if sig.throws {
David Tolnay919085c2020-10-31 22:32:22 -0700537 out.builtin.ptr_len = true;
David Tolnayd68dfa82020-10-31 16:01:24 -0700538 write!(out, "::rust::repr::PtrLen ");
David Tolnay1e548172020-03-16 13:37:09 -0700539 } else {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700540 write_extern_return_type_space(out, &sig.ret);
David Tolnay1e548172020-03-16 13:37:09 -0700541 }
David Tolnay75dca2e2020-03-25 20:17:52 -0700542 write!(out, "{}(", link_name);
543 let mut needs_comma = false;
David Tolnaye439c772020-04-20 00:23:55 -0700544 if let Some(receiver) = &sig.receiver {
David Tolnay86710612020-04-20 00:30:32 -0700545 if receiver.mutability.is_none() {
546 write!(out, "const ");
547 }
Adrian Taylorc8713432020-10-21 18:20:55 -0700548 write!(
549 out,
550 "{} &self",
David Tolnay8faec772020-11-02 00:18:19 -0800551 out.types.resolve(&receiver.ty).to_fully_qualified(),
Adrian Taylorc8713432020-10-21 18:20:55 -0700552 );
Joel Galensonc1c4e7a2020-04-15 10:21:00 -0700553 needs_comma = true;
554 }
David Tolnay75dca2e2020-03-25 20:17:52 -0700555 for arg in &sig.args {
556 if needs_comma {
David Tolnay7db73692019-10-20 14:51:12 -0400557 write!(out, ", ");
558 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700559 write_extern_arg(out, arg);
David Tolnay75dca2e2020-03-25 20:17:52 -0700560 needs_comma = true;
David Tolnay7db73692019-10-20 14:51:12 -0400561 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700562 if indirect_return(sig, out.types) {
David Tolnay75dca2e2020-03-25 20:17:52 -0700563 if needs_comma {
David Tolnay7db73692019-10-20 14:51:12 -0400564 write!(out, ", ");
565 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700566 write_return_type(out, &sig.ret);
David Tolnay7db73692019-10-20 14:51:12 -0400567 write!(out, "*return$");
David Tolnay75dca2e2020-03-25 20:17:52 -0700568 needs_comma = true;
569 }
570 if indirect_call {
571 if needs_comma {
572 write!(out, ", ");
573 }
574 write!(out, "void *");
David Tolnay7db73692019-10-20 14:51:12 -0400575 }
576 writeln!(out, ") noexcept;");
577}
578
David Tolnay0b9b9f82020-11-01 20:41:00 -0800579fn write_rust_function_shim<'a>(out: &mut OutFile<'a>, efn: &'a ExternFn) {
David Tolnay17a934c2020-11-02 00:40:04 -0800580 out.set_namespace(&efn.name.namespace);
David Tolnay7db73692019-10-20 14:51:12 -0400581 for line in efn.doc.to_string().lines() {
582 writeln!(out, "//{}", line);
583 }
David Tolnaya73853b2020-04-20 01:19:56 -0700584 let local_name = match &efn.sig.receiver {
David Tolnay17a934c2020-11-02 00:40:04 -0800585 None => efn.name.cxx.to_string(),
586 Some(receiver) => format!("{}::{}", out.types.resolve(&receiver.ty).cxx, efn.name.cxx),
David Tolnaya73853b2020-04-20 01:19:56 -0700587 };
David Tolnaya7c2ea12020-10-30 21:32:53 -0700588 let invoke = mangle::extern_fn(efn, out.types);
David Tolnay75dca2e2020-03-25 20:17:52 -0700589 let indirect_call = false;
David Tolnaya7c2ea12020-10-30 21:32:53 -0700590 write_rust_function_shim_impl(out, &local_name, efn, &invoke, indirect_call);
David Tolnay75dca2e2020-03-25 20:17:52 -0700591}
592
Joel Galensonc1c4e7a2020-04-15 10:21:00 -0700593fn write_rust_function_shim_decl(
David Tolnay75dca2e2020-03-25 20:17:52 -0700594 out: &mut OutFile,
David Tolnaya73853b2020-04-20 01:19:56 -0700595 local_name: &str,
David Tolnay75dca2e2020-03-25 20:17:52 -0700596 sig: &Signature,
David Tolnay75dca2e2020-03-25 20:17:52 -0700597 indirect_call: bool,
598) {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700599 write_return_type(out, &sig.ret);
David Tolnay75dca2e2020-03-25 20:17:52 -0700600 write!(out, "{}(", local_name);
601 for (i, arg) in sig.args.iter().enumerate() {
David Tolnay7db73692019-10-20 14:51:12 -0400602 if i > 0 {
603 write!(out, ", ");
604 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700605 write_type_space(out, &arg.ty);
David Tolnay7db73692019-10-20 14:51:12 -0400606 write!(out, "{}", arg.ident);
607 }
David Tolnay75dca2e2020-03-25 20:17:52 -0700608 if indirect_call {
609 if !sig.args.is_empty() {
610 write!(out, ", ");
611 }
612 write!(out, "void *extern$");
613 }
David Tolnay1e548172020-03-16 13:37:09 -0700614 write!(out, ")");
David Tolnay86710612020-04-20 00:30:32 -0700615 if let Some(receiver) = &sig.receiver {
616 if receiver.mutability.is_none() {
617 write!(out, " const");
618 }
619 }
David Tolnay75dca2e2020-03-25 20:17:52 -0700620 if !sig.throws {
David Tolnay1e548172020-03-16 13:37:09 -0700621 write!(out, " noexcept");
622 }
Joel Galensonc1c4e7a2020-04-15 10:21:00 -0700623}
624
625fn write_rust_function_shim_impl(
626 out: &mut OutFile,
David Tolnaya73853b2020-04-20 01:19:56 -0700627 local_name: &str,
Joel Galensonc1c4e7a2020-04-15 10:21:00 -0700628 sig: &Signature,
David Tolnay891061b2020-04-19 22:42:33 -0700629 invoke: &Symbol,
Joel Galensonc1c4e7a2020-04-15 10:21:00 -0700630 indirect_call: bool,
631) {
632 if out.header && sig.receiver.is_some() {
633 // We've already defined this inside the struct.
634 return;
635 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700636 write_rust_function_shim_decl(out, local_name, sig, indirect_call);
David Tolnay7db73692019-10-20 14:51:12 -0400637 if out.header {
638 writeln!(out, ";");
David Tolnay439cde22020-04-20 00:46:25 -0700639 return;
David Tolnay7db73692019-10-20 14:51:12 -0400640 }
David Tolnay439cde22020-04-20 00:46:25 -0700641 writeln!(out, " {{");
642 for arg in &sig.args {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700643 if arg.ty != RustString && out.types.needs_indirect_abi(&arg.ty) {
David Tolnay439cde22020-04-20 00:46:25 -0700644 out.include.utility = true;
David Tolnay74d6d512020-10-31 22:22:03 -0700645 out.builtin.manually_drop = true;
David Tolnay439cde22020-04-20 00:46:25 -0700646 write!(out, " ::rust::ManuallyDrop<");
David Tolnaya7c2ea12020-10-30 21:32:53 -0700647 write_type(out, &arg.ty);
David Tolnay439cde22020-04-20 00:46:25 -0700648 writeln!(out, "> {}$(::std::move({0}));", arg.ident);
649 }
650 }
651 write!(out, " ");
David Tolnaya7c2ea12020-10-30 21:32:53 -0700652 let indirect_return = indirect_return(sig, out.types);
David Tolnay439cde22020-04-20 00:46:25 -0700653 if indirect_return {
David Tolnay74d6d512020-10-31 22:22:03 -0700654 out.builtin.maybe_uninit = true;
David Tolnay439cde22020-04-20 00:46:25 -0700655 write!(out, "::rust::MaybeUninit<");
David Tolnaya7c2ea12020-10-30 21:32:53 -0700656 write_type(out, sig.ret.as_ref().unwrap());
David Tolnay439cde22020-04-20 00:46:25 -0700657 writeln!(out, "> return$;");
658 write!(out, " ");
659 } else if let Some(ret) = &sig.ret {
660 write!(out, "return ");
661 match ret {
662 Type::RustBox(_) => {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700663 write_type(out, ret);
David Tolnay439cde22020-04-20 00:46:25 -0700664 write!(out, "::from_raw(");
665 }
666 Type::UniquePtr(_) => {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700667 write_type(out, ret);
David Tolnay439cde22020-04-20 00:46:25 -0700668 write!(out, "(");
669 }
670 Type::Ref(_) => write!(out, "*"),
David Tolnay74d6d512020-10-31 22:22:03 -0700671 Type::Str(_) => {
672 out.builtin.rust_str_new_unchecked = true;
673 write!(out, "::rust::impl<::rust::Str>::new_unchecked(");
674 }
David Tolnay36aa9e02020-10-31 23:08:21 -0700675 Type::SliceRefU8(_) => {
676 out.builtin.rust_slice_new = true;
677 write!(out, "::rust::impl<::rust::Slice<uint8_t>>::slice(");
678 }
David Tolnay439cde22020-04-20 00:46:25 -0700679 _ => {}
680 }
681 }
682 if sig.throws {
David Tolnay919085c2020-10-31 22:32:22 -0700683 out.builtin.ptr_len = true;
David Tolnayd68dfa82020-10-31 16:01:24 -0700684 write!(out, "::rust::repr::PtrLen error$ = ");
David Tolnay439cde22020-04-20 00:46:25 -0700685 }
686 write!(out, "{}(", invoke);
687 if sig.receiver.is_some() {
688 write!(out, "*this");
689 }
690 for (i, arg) in sig.args.iter().enumerate() {
691 if i > 0 || sig.receiver.is_some() {
692 write!(out, ", ");
693 }
694 match &arg.ty {
David Tolnay74d6d512020-10-31 22:22:03 -0700695 Type::Str(_) => {
696 out.builtin.rust_str_repr = true;
697 write!(out, "::rust::impl<::rust::Str>::repr(");
698 }
David Tolnay36aa9e02020-10-31 23:08:21 -0700699 Type::SliceRefU8(_) => {
700 out.builtin.rust_slice_repr = true;
701 write!(out, "::rust::impl<::rust::Slice<uint8_t>>::repr(");
702 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700703 ty if out.types.needs_indirect_abi(ty) => write!(out, "&"),
David Tolnay439cde22020-04-20 00:46:25 -0700704 _ => {}
705 }
706 write!(out, "{}", arg.ident);
707 match &arg.ty {
708 Type::RustBox(_) => write!(out, ".into_raw()"),
709 Type::UniquePtr(_) => write!(out, ".release()"),
David Tolnay0356d332020-10-31 19:46:41 -0700710 Type::Str(_) | Type::SliceRefU8(_) => write!(out, ")"),
David Tolnaya7c2ea12020-10-30 21:32:53 -0700711 ty if ty != RustString && out.types.needs_indirect_abi(ty) => write!(out, "$.value"),
David Tolnay439cde22020-04-20 00:46:25 -0700712 _ => {}
713 }
714 }
715 if indirect_return {
716 if !sig.args.is_empty() {
717 write!(out, ", ");
718 }
719 write!(out, "&return$.value");
720 }
721 if indirect_call {
722 if !sig.args.is_empty() || indirect_return {
723 write!(out, ", ");
724 }
725 write!(out, "extern$");
726 }
727 write!(out, ")");
David Tolnay22602b42020-09-21 18:04:05 -0400728 if !indirect_return {
729 if let Some(ret) = &sig.ret {
David Tolnay36aa9e02020-10-31 23:08:21 -0700730 if let Type::RustBox(_) | Type::UniquePtr(_) | Type::Str(_) | Type::SliceRefU8(_) = ret
731 {
David Tolnay22602b42020-09-21 18:04:05 -0400732 write!(out, ")");
733 }
David Tolnay439cde22020-04-20 00:46:25 -0700734 }
735 }
736 writeln!(out, ";");
737 if sig.throws {
David Tolnay74d6d512020-10-31 22:22:03 -0700738 out.builtin.rust_error = true;
David Tolnayd68dfa82020-10-31 16:01:24 -0700739 writeln!(out, " if (error$.ptr) {{");
David Tolnay84ddf9e2020-10-31 15:36:48 -0700740 writeln!(out, " throw ::rust::impl<::rust::Error>::error(error$);");
David Tolnay439cde22020-04-20 00:46:25 -0700741 writeln!(out, " }}");
742 }
743 if indirect_return {
744 out.include.utility = true;
745 writeln!(out, " return ::std::move(return$.value);");
746 }
747 writeln!(out, "}}");
David Tolnay7db73692019-10-20 14:51:12 -0400748}
749
David Tolnaya7c2ea12020-10-30 21:32:53 -0700750fn write_return_type(out: &mut OutFile, ty: &Option<Type>) {
David Tolnay7db73692019-10-20 14:51:12 -0400751 match ty {
752 None => write!(out, "void "),
David Tolnaya7c2ea12020-10-30 21:32:53 -0700753 Some(ty) => write_type_space(out, ty),
David Tolnay7db73692019-10-20 14:51:12 -0400754 }
755}
756
David Tolnay75dca2e2020-03-25 20:17:52 -0700757fn indirect_return(sig: &Signature, types: &Types) -> bool {
758 sig.ret
David Tolnay277e3cc2020-03-17 00:11:01 -0700759 .as_ref()
David Tolnay75dca2e2020-03-25 20:17:52 -0700760 .map_or(false, |ret| sig.throws || types.needs_indirect_abi(ret))
David Tolnay277e3cc2020-03-17 00:11:01 -0700761}
762
David Tolnaya7c2ea12020-10-30 21:32:53 -0700763fn write_indirect_return_type(out: &mut OutFile, ty: &Type) {
David Tolnay99642622020-03-25 13:07:35 -0700764 match ty {
765 Type::RustBox(ty) | Type::UniquePtr(ty) => {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700766 write_type_space(out, &ty.inner);
David Tolnay99642622020-03-25 13:07:35 -0700767 write!(out, "*");
768 }
769 Type::Ref(ty) => {
770 if ty.mutability.is_none() {
771 write!(out, "const ");
772 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700773 write_type(out, &ty.inner);
David Tolnay99642622020-03-25 13:07:35 -0700774 write!(out, " *");
775 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700776 _ => write_type(out, ty),
David Tolnay99642622020-03-25 13:07:35 -0700777 }
778}
779
David Tolnaya7c2ea12020-10-30 21:32:53 -0700780fn write_indirect_return_type_space(out: &mut OutFile, ty: &Type) {
781 write_indirect_return_type(out, ty);
David Tolnay99642622020-03-25 13:07:35 -0700782 match ty {
783 Type::RustBox(_) | Type::UniquePtr(_) | Type::Ref(_) => {}
Adrian Taylorf5dd5522020-04-13 16:50:14 -0700784 Type::Str(_) | Type::SliceRefU8(_) => write!(out, " "),
David Tolnay99642622020-03-25 13:07:35 -0700785 _ => write_space_after_type(out, ty),
786 }
787}
788
David Tolnaya7c2ea12020-10-30 21:32:53 -0700789fn write_extern_return_type_space(out: &mut OutFile, ty: &Option<Type>) {
David Tolnay7db73692019-10-20 14:51:12 -0400790 match ty {
791 Some(Type::RustBox(ty)) | Some(Type::UniquePtr(ty)) => {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700792 write_type_space(out, &ty.inner);
David Tolnay7db73692019-10-20 14:51:12 -0400793 write!(out, "*");
794 }
David Tolnay4a441222020-01-25 16:24:27 -0800795 Some(Type::Ref(ty)) => {
796 if ty.mutability.is_none() {
797 write!(out, "const ");
798 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700799 write_type(out, &ty.inner);
David Tolnay4a441222020-01-25 16:24:27 -0800800 write!(out, " *");
801 }
David Tolnay36aa9e02020-10-31 23:08:21 -0700802 Some(Type::Str(_)) | Some(Type::SliceRefU8(_)) => {
David Tolnay919085c2020-10-31 22:32:22 -0700803 out.builtin.ptr_len = true;
804 write!(out, "::rust::repr::PtrLen ");
805 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700806 Some(ty) if out.types.needs_indirect_abi(ty) => write!(out, "void "),
807 _ => write_return_type(out, ty),
David Tolnay7db73692019-10-20 14:51:12 -0400808 }
809}
810
David Tolnaya7c2ea12020-10-30 21:32:53 -0700811fn write_extern_arg(out: &mut OutFile, arg: &Var) {
David Tolnay7db73692019-10-20 14:51:12 -0400812 match &arg.ty {
David Tolnay4377a9e2020-04-24 15:20:26 -0700813 Type::RustBox(ty) | Type::UniquePtr(ty) | Type::CxxVector(ty) => {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700814 write_type_space(out, &ty.inner);
David Tolnay7db73692019-10-20 14:51:12 -0400815 write!(out, "*");
816 }
David Tolnay36aa9e02020-10-31 23:08:21 -0700817 Type::Str(_) | Type::SliceRefU8(_) => {
David Tolnay919085c2020-10-31 22:32:22 -0700818 out.builtin.ptr_len = true;
819 write!(out, "::rust::repr::PtrLen ");
820 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700821 _ => write_type_space(out, &arg.ty),
David Tolnay7db73692019-10-20 14:51:12 -0400822 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700823 if out.types.needs_indirect_abi(&arg.ty) {
David Tolnay7db73692019-10-20 14:51:12 -0400824 write!(out, "*");
825 }
826 write!(out, "{}", arg.ident);
827}
828
David Tolnaya7c2ea12020-10-30 21:32:53 -0700829fn write_type(out: &mut OutFile, ty: &Type) {
David Tolnay7db73692019-10-20 14:51:12 -0400830 match ty {
Adrian Taylorc8713432020-10-21 18:20:55 -0700831 Type::Ident(ident) => match Atom::from(&ident.rust) {
David Tolnayf6a89f22020-05-10 23:39:27 -0700832 Some(atom) => write_atom(out, atom),
David Tolnaya7c2ea12020-10-30 21:32:53 -0700833 None => write!(out, "{}", out.types.resolve(ident).to_fully_qualified()),
David Tolnay7db73692019-10-20 14:51:12 -0400834 },
835 Type::RustBox(ty) => {
David Tolnay750755e2020-03-01 13:04:08 -0800836 write!(out, "::rust::Box<");
David Tolnaya7c2ea12020-10-30 21:32:53 -0700837 write_type(out, &ty.inner);
David Tolnay7db73692019-10-20 14:51:12 -0400838 write!(out, ">");
839 }
Myron Ahneba35cf2020-02-05 19:41:51 +0700840 Type::RustVec(ty) => {
841 write!(out, "::rust::Vec<");
David Tolnaya7c2ea12020-10-30 21:32:53 -0700842 write_type(out, &ty.inner);
Myron Ahneba35cf2020-02-05 19:41:51 +0700843 write!(out, ">");
844 }
David Tolnay7db73692019-10-20 14:51:12 -0400845 Type::UniquePtr(ptr) => {
David Tolnay7e219b82020-03-01 13:14:51 -0800846 write!(out, "::std::unique_ptr<");
David Tolnaya7c2ea12020-10-30 21:32:53 -0700847 write_type(out, &ptr.inner);
David Tolnay7db73692019-10-20 14:51:12 -0400848 write!(out, ">");
849 }
David Tolnay4377a9e2020-04-24 15:20:26 -0700850 Type::CxxVector(ty) => {
Myron Ahneba35cf2020-02-05 19:41:51 +0700851 write!(out, "::std::vector<");
David Tolnaya7c2ea12020-10-30 21:32:53 -0700852 write_type(out, &ty.inner);
Myron Ahneba35cf2020-02-05 19:41:51 +0700853 write!(out, ">");
854 }
David Tolnay7db73692019-10-20 14:51:12 -0400855 Type::Ref(r) => {
856 if r.mutability.is_none() {
857 write!(out, "const ");
858 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700859 write_type(out, &r.inner);
David Tolnay7db73692019-10-20 14:51:12 -0400860 write!(out, " &");
861 }
Adrian Taylorf5dd5522020-04-13 16:50:14 -0700862 Type::Slice(_) => {
863 // For now, only U8 slices are supported, which are covered separately below
864 unreachable!()
865 }
David Tolnay7db73692019-10-20 14:51:12 -0400866 Type::Str(_) => {
David Tolnay750755e2020-03-01 13:04:08 -0800867 write!(out, "::rust::Str");
David Tolnay7db73692019-10-20 14:51:12 -0400868 }
Adrian Taylorf5dd5522020-04-13 16:50:14 -0700869 Type::SliceRefU8(_) => {
870 write!(out, "::rust::Slice<uint8_t>");
871 }
David Tolnay75dca2e2020-03-25 20:17:52 -0700872 Type::Fn(f) => {
873 write!(out, "::rust::{}<", if f.throws { "TryFn" } else { "Fn" });
874 match &f.ret {
David Tolnaya7c2ea12020-10-30 21:32:53 -0700875 Some(ret) => write_type(out, ret),
David Tolnay75dca2e2020-03-25 20:17:52 -0700876 None => write!(out, "void"),
877 }
878 write!(out, "(");
879 for (i, arg) in f.args.iter().enumerate() {
880 if i > 0 {
881 write!(out, ", ");
882 }
David Tolnaya7c2ea12020-10-30 21:32:53 -0700883 write_type(out, &arg.ty);
David Tolnay75dca2e2020-03-25 20:17:52 -0700884 }
885 write!(out, ")>");
886 }
David Tolnay2fb14e92020-03-15 23:11:38 -0700887 Type::Void(_) => unreachable!(),
David Tolnay7db73692019-10-20 14:51:12 -0400888 }
889}
890
David Tolnayf6a89f22020-05-10 23:39:27 -0700891fn write_atom(out: &mut OutFile, atom: Atom) {
892 match atom {
893 Bool => write!(out, "bool"),
894 U8 => write!(out, "uint8_t"),
895 U16 => write!(out, "uint16_t"),
896 U32 => write!(out, "uint32_t"),
897 U64 => write!(out, "uint64_t"),
898 Usize => write!(out, "size_t"),
899 I8 => write!(out, "int8_t"),
900 I16 => write!(out, "int16_t"),
901 I32 => write!(out, "int32_t"),
902 I64 => write!(out, "int64_t"),
903 Isize => write!(out, "::rust::isize"),
904 F32 => write!(out, "float"),
905 F64 => write!(out, "double"),
906 CxxString => write!(out, "::std::string"),
907 RustString => write!(out, "::rust::String"),
908 }
909}
910
David Tolnaya7c2ea12020-10-30 21:32:53 -0700911fn write_type_space(out: &mut OutFile, ty: &Type) {
912 write_type(out, ty);
David Tolnay99642622020-03-25 13:07:35 -0700913 write_space_after_type(out, ty);
914}
915
916fn write_space_after_type(out: &mut OutFile, ty: &Type) {
David Tolnay7db73692019-10-20 14:51:12 -0400917 match ty {
David Tolnayeb952ba2020-04-14 15:02:24 -0700918 Type::Ident(_)
919 | Type::RustBox(_)
920 | Type::UniquePtr(_)
921 | Type::Str(_)
David Tolnay4377a9e2020-04-24 15:20:26 -0700922 | Type::CxxVector(_)
Myron Ahneba35cf2020-02-05 19:41:51 +0700923 | Type::RustVec(_)
David Tolnayeb952ba2020-04-14 15:02:24 -0700924 | Type::SliceRefU8(_)
925 | Type::Fn(_) => write!(out, " "),
David Tolnay7db73692019-10-20 14:51:12 -0400926 Type::Ref(_) => {}
Adrian Taylorf5dd5522020-04-13 16:50:14 -0700927 Type::Void(_) | Type::Slice(_) => unreachable!(),
David Tolnay7db73692019-10-20 14:51:12 -0400928 }
929}
930
David Tolnaycd08c442020-04-25 10:16:33 -0700931// Only called for legal referent types of unique_ptr and element types of
932// std::vector and Vec.
Adrian Taylorc8713432020-10-21 18:20:55 -0700933fn to_typename(ty: &Type, types: &Types) -> String {
David Tolnay2eca4a02020-04-24 19:50:51 -0700934 match ty {
Adrian Taylorc8713432020-10-21 18:20:55 -0700935 Type::Ident(ident) => types.resolve(&ident).to_fully_qualified(),
936 Type::CxxVector(ptr) => format!("::std::vector<{}>", to_typename(&ptr.inner, types)),
David Tolnaycd08c442020-04-25 10:16:33 -0700937 _ => unreachable!(),
David Tolnay2eca4a02020-04-24 19:50:51 -0700938 }
939}
940
David Tolnayacdf20a2020-04-25 12:40:53 -0700941// Only called for legal referent types of unique_ptr and element types of
942// std::vector and Vec.
Adrian Taylorc8713432020-10-21 18:20:55 -0700943fn to_mangled(ty: &Type, types: &Types) -> Symbol {
David Tolnaybae50ef2020-04-25 12:38:41 -0700944 match ty {
Adrian Taylorc8713432020-10-21 18:20:55 -0700945 Type::Ident(ident) => ident.to_symbol(types),
946 Type::CxxVector(ptr) => to_mangled(&ptr.inner, types).prefix_with("std$vector$"),
David Tolnayacdf20a2020-04-25 12:40:53 -0700947 _ => unreachable!(),
David Tolnaybae50ef2020-04-25 12:38:41 -0700948 }
949}
950
David Tolnaya7c2ea12020-10-30 21:32:53 -0700951fn write_generic_instantiations(out: &mut OutFile) {
David Tolnay169bb472020-11-01 21:04:24 -0800952 if out.header {
953 return;
954 }
955
956 out.next_section();
David Tolnay078c90f2020-11-01 13:31:08 -0800957 out.set_namespace(Default::default());
David Tolnay0c033e32020-11-01 15:15:48 -0800958 out.begin_block(Block::ExternC);
David Tolnaya7c2ea12020-10-30 21:32:53 -0700959 for ty in out.types {
David Tolnay7db73692019-10-20 14:51:12 -0400960 if let Type::RustBox(ty) = ty {
961 if let Type::Ident(inner) = &ty.inner {
962 out.next_section();
David Tolnaya7c2ea12020-10-30 21:32:53 -0700963 write_rust_box_extern(out, &out.types.resolve(&inner));
David Tolnay7db73692019-10-20 14:51:12 -0400964 }
Myron Ahneba35cf2020-02-05 19:41:51 +0700965 } else if let Type::RustVec(ty) = ty {
David Tolnay6787be62020-04-25 11:01:02 -0700966 if let Type::Ident(inner) = &ty.inner {
Adrian Taylorc8713432020-10-21 18:20:55 -0700967 if Atom::from(&inner.rust).is_none() {
David Tolnay6787be62020-04-25 11:01:02 -0700968 out.next_section();
David Tolnaya7c2ea12020-10-30 21:32:53 -0700969 write_rust_vec_extern(out, inner);
David Tolnay6787be62020-04-25 11:01:02 -0700970 }
Myron Ahneba35cf2020-02-05 19:41:51 +0700971 }
David Tolnay7db73692019-10-20 14:51:12 -0400972 } else if let Type::UniquePtr(ptr) = ty {
973 if let Type::Ident(inner) = &ptr.inner {
Adrian Taylorc8713432020-10-21 18:20:55 -0700974 if Atom::from(&inner.rust).is_none()
David Tolnaya7c2ea12020-10-30 21:32:53 -0700975 && (!out.types.aliases.contains_key(&inner.rust)
976 || out.types.explicit_impls.contains(ty))
David Tolnay7e69f892020-10-03 22:20:22 -0700977 {
David Tolnay7db73692019-10-20 14:51:12 -0400978 out.next_section();
David Tolnaya7c2ea12020-10-30 21:32:53 -0700979 write_unique_ptr(out, inner);
Myron Ahneba35cf2020-02-05 19:41:51 +0700980 }
981 }
David Tolnay4377a9e2020-04-24 15:20:26 -0700982 } else if let Type::CxxVector(ptr) = ty {
Myron Ahneba35cf2020-02-05 19:41:51 +0700983 if let Type::Ident(inner) = &ptr.inner {
Adrian Taylorc8713432020-10-21 18:20:55 -0700984 if Atom::from(&inner.rust).is_none()
David Tolnaya7c2ea12020-10-30 21:32:53 -0700985 && (!out.types.aliases.contains_key(&inner.rust)
986 || out.types.explicit_impls.contains(ty))
David Tolnay7e69f892020-10-03 22:20:22 -0700987 {
Myron Ahneba35cf2020-02-05 19:41:51 +0700988 out.next_section();
David Tolnaya7c2ea12020-10-30 21:32:53 -0700989 write_cxx_vector(out, ty, inner);
David Tolnay7db73692019-10-20 14:51:12 -0400990 }
991 }
992 }
993 }
David Tolnay0c033e32020-11-01 15:15:48 -0800994 out.end_block(Block::ExternC);
David Tolnay7db73692019-10-20 14:51:12 -0400995
David Tolnay0c033e32020-11-01 15:15:48 -0800996 out.begin_block(Block::Namespace("rust"));
997 out.begin_block(Block::InlineNamespace("cxxbridge05"));
David Tolnaya7c2ea12020-10-30 21:32:53 -0700998 for ty in out.types {
David Tolnay7db73692019-10-20 14:51:12 -0400999 if let Type::RustBox(ty) = ty {
1000 if let Type::Ident(inner) = &ty.inner {
David Tolnaya7c2ea12020-10-30 21:32:53 -07001001 write_rust_box_impl(out, &out.types.resolve(&inner));
David Tolnay7db73692019-10-20 14:51:12 -04001002 }
Myron Ahneba35cf2020-02-05 19:41:51 +07001003 } else if let Type::RustVec(ty) = ty {
David Tolnay6787be62020-04-25 11:01:02 -07001004 if let Type::Ident(inner) = &ty.inner {
Adrian Taylorc8713432020-10-21 18:20:55 -07001005 if Atom::from(&inner.rust).is_none() {
David Tolnaya7c2ea12020-10-30 21:32:53 -07001006 write_rust_vec_impl(out, inner);
David Tolnay6787be62020-04-25 11:01:02 -07001007 }
Myron Ahneba35cf2020-02-05 19:41:51 +07001008 }
David Tolnay7db73692019-10-20 14:51:12 -04001009 }
1010 }
David Tolnay0c033e32020-11-01 15:15:48 -08001011 out.end_block(Block::InlineNamespace("cxxbridge05"));
1012 out.end_block(Block::Namespace("rust"));
David Tolnay7db73692019-10-20 14:51:12 -04001013}
1014
David Tolnay8faec772020-11-02 00:18:19 -08001015fn write_rust_box_extern(out: &mut OutFile, ident: &Pair) {
Adrian Taylorc8713432020-10-21 18:20:55 -07001016 let inner = ident.to_fully_qualified();
1017 let instance = ident.to_symbol();
David Tolnay7db73692019-10-20 14:51:12 -04001018
David Tolnay8f16ae72020-10-08 18:21:13 -07001019 writeln!(out, "#ifndef CXXBRIDGE05_RUST_BOX_{}", instance);
1020 writeln!(out, "#define CXXBRIDGE05_RUST_BOX_{}", instance);
David Tolnay7db73692019-10-20 14:51:12 -04001021 writeln!(
1022 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001023 "void cxxbridge05$box${}$uninit(::rust::Box<{}> *ptr) noexcept;",
David Tolnay7db73692019-10-20 14:51:12 -04001024 instance, inner,
1025 );
1026 writeln!(
1027 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001028 "void cxxbridge05$box${}$drop(::rust::Box<{}> *ptr) noexcept;",
David Tolnay7db73692019-10-20 14:51:12 -04001029 instance, inner,
1030 );
David Tolnay8f16ae72020-10-08 18:21:13 -07001031 writeln!(out, "#endif // CXXBRIDGE05_RUST_BOX_{}", instance);
David Tolnay7db73692019-10-20 14:51:12 -04001032}
1033
David Tolnaya7c2ea12020-10-30 21:32:53 -07001034fn write_rust_vec_extern(out: &mut OutFile, element: &ResolvableName) {
David Tolnay6787be62020-04-25 11:01:02 -07001035 let element = Type::Ident(element.clone());
David Tolnaya7c2ea12020-10-30 21:32:53 -07001036 let inner = to_typename(&element, out.types);
1037 let instance = to_mangled(&element, out.types);
Myron Ahneba35cf2020-02-05 19:41:51 +07001038
David Tolnay8f16ae72020-10-08 18:21:13 -07001039 writeln!(out, "#ifndef CXXBRIDGE05_RUST_VEC_{}", instance);
1040 writeln!(out, "#define CXXBRIDGE05_RUST_VEC_{}", instance);
Myron Ahneba35cf2020-02-05 19:41:51 +07001041 writeln!(
1042 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001043 "void cxxbridge05$rust_vec${}$new(const ::rust::Vec<{}> *ptr) noexcept;",
David Tolnayf97c2d52020-04-25 16:37:48 -07001044 instance, inner,
1045 );
1046 writeln!(
1047 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001048 "void cxxbridge05$rust_vec${}$drop(::rust::Vec<{}> *ptr) noexcept;",
Myron Ahneba35cf2020-02-05 19:41:51 +07001049 instance, inner,
1050 );
1051 writeln!(
1052 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001053 "size_t cxxbridge05$rust_vec${}$len(const ::rust::Vec<{}> *ptr) noexcept;",
Myron Ahneba35cf2020-02-05 19:41:51 +07001054 instance, inner,
1055 );
David Tolnay219c0792020-04-24 20:31:37 -07001056 writeln!(
1057 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001058 "const {} *cxxbridge05$rust_vec${}$data(const ::rust::Vec<{0}> *ptr) noexcept;",
David Tolnay219c0792020-04-24 20:31:37 -07001059 inner, instance,
1060 );
David Tolnay503d0192020-04-24 22:18:56 -07001061 writeln!(
1062 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001063 "size_t cxxbridge05$rust_vec${}$stride() noexcept;",
David Tolnay503d0192020-04-24 22:18:56 -07001064 instance,
1065 );
David Tolnay8f16ae72020-10-08 18:21:13 -07001066 writeln!(out, "#endif // CXXBRIDGE05_RUST_VEC_{}", instance);
Myron Ahneba35cf2020-02-05 19:41:51 +07001067}
1068
David Tolnay8faec772020-11-02 00:18:19 -08001069fn write_rust_box_impl(out: &mut OutFile, ident: &Pair) {
Adrian Taylorc8713432020-10-21 18:20:55 -07001070 let inner = ident.to_fully_qualified();
1071 let instance = ident.to_symbol();
David Tolnay7db73692019-10-20 14:51:12 -04001072
1073 writeln!(out, "template <>");
David Tolnay324437a2020-03-01 13:02:24 -08001074 writeln!(out, "void Box<{}>::uninit() noexcept {{", inner);
David Tolnay8f16ae72020-10-08 18:21:13 -07001075 writeln!(out, " cxxbridge05$box${}$uninit(this);", instance);
David Tolnay7db73692019-10-20 14:51:12 -04001076 writeln!(out, "}}");
1077
1078 writeln!(out, "template <>");
David Tolnay324437a2020-03-01 13:02:24 -08001079 writeln!(out, "void Box<{}>::drop() noexcept {{", inner);
David Tolnay8f16ae72020-10-08 18:21:13 -07001080 writeln!(out, " cxxbridge05$box${}$drop(this);", instance);
David Tolnay7db73692019-10-20 14:51:12 -04001081 writeln!(out, "}}");
David Tolnay7db73692019-10-20 14:51:12 -04001082}
1083
David Tolnaya7c2ea12020-10-30 21:32:53 -07001084fn write_rust_vec_impl(out: &mut OutFile, element: &ResolvableName) {
David Tolnay6787be62020-04-25 11:01:02 -07001085 let element = Type::Ident(element.clone());
David Tolnaya7c2ea12020-10-30 21:32:53 -07001086 let inner = to_typename(&element, out.types);
1087 let instance = to_mangled(&element, out.types);
David Tolnay4791f1c2020-03-17 21:53:16 -07001088
Myron Ahneba35cf2020-02-05 19:41:51 +07001089 writeln!(out, "template <>");
David Tolnayf97c2d52020-04-25 16:37:48 -07001090 writeln!(out, "Vec<{}>::Vec() noexcept {{", inner);
David Tolnay8f16ae72020-10-08 18:21:13 -07001091 writeln!(out, " cxxbridge05$rust_vec${}$new(this);", instance);
David Tolnayf97c2d52020-04-25 16:37:48 -07001092 writeln!(out, "}}");
1093
1094 writeln!(out, "template <>");
Myron Ahneba35cf2020-02-05 19:41:51 +07001095 writeln!(out, "void Vec<{}>::drop() noexcept {{", inner);
1096 writeln!(
1097 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001098 " return cxxbridge05$rust_vec${}$drop(this);",
David Tolnay85db5a02020-04-25 13:17:27 -07001099 instance,
Myron Ahneba35cf2020-02-05 19:41:51 +07001100 );
1101 writeln!(out, "}}");
1102
1103 writeln!(out, "template <>");
1104 writeln!(out, "size_t Vec<{}>::size() const noexcept {{", inner);
David Tolnay8f16ae72020-10-08 18:21:13 -07001105 writeln!(out, " return cxxbridge05$rust_vec${}$len(this);", instance);
Myron Ahneba35cf2020-02-05 19:41:51 +07001106 writeln!(out, "}}");
David Tolnay219c0792020-04-24 20:31:37 -07001107
1108 writeln!(out, "template <>");
1109 writeln!(out, "const {} *Vec<{0}>::data() const noexcept {{", inner);
1110 writeln!(
1111 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001112 " return cxxbridge05$rust_vec${}$data(this);",
David Tolnay219c0792020-04-24 20:31:37 -07001113 instance,
1114 );
1115 writeln!(out, "}}");
David Tolnay503d0192020-04-24 22:18:56 -07001116
1117 writeln!(out, "template <>");
1118 writeln!(out, "size_t Vec<{}>::stride() noexcept {{", inner);
David Tolnay8f16ae72020-10-08 18:21:13 -07001119 writeln!(out, " return cxxbridge05$rust_vec${}$stride();", instance);
David Tolnay503d0192020-04-24 22:18:56 -07001120 writeln!(out, "}}");
Myron Ahneba35cf2020-02-05 19:41:51 +07001121}
1122
David Tolnaya7c2ea12020-10-30 21:32:53 -07001123fn write_unique_ptr(out: &mut OutFile, ident: &ResolvableName) {
David Tolnay63da4d32020-04-25 09:41:12 -07001124 let ty = Type::Ident(ident.clone());
David Tolnaya7c2ea12020-10-30 21:32:53 -07001125 let instance = to_mangled(&ty, out.types);
David Tolnay63da4d32020-04-25 09:41:12 -07001126
David Tolnay8f16ae72020-10-08 18:21:13 -07001127 writeln!(out, "#ifndef CXXBRIDGE05_UNIQUE_PTR_{}", instance);
1128 writeln!(out, "#define CXXBRIDGE05_UNIQUE_PTR_{}", instance);
David Tolnay63da4d32020-04-25 09:41:12 -07001129
David Tolnaya7c2ea12020-10-30 21:32:53 -07001130 write_unique_ptr_common(out, &ty);
David Tolnay63da4d32020-04-25 09:41:12 -07001131
David Tolnay8f16ae72020-10-08 18:21:13 -07001132 writeln!(out, "#endif // CXXBRIDGE05_UNIQUE_PTR_{}", instance);
David Tolnay63da4d32020-04-25 09:41:12 -07001133}
1134
1135// Shared by UniquePtr<T> and UniquePtr<CxxVector<T>>.
David Tolnaya7c2ea12020-10-30 21:32:53 -07001136fn write_unique_ptr_common(out: &mut OutFile, ty: &Type) {
David Tolnay0ecd05a2020-07-29 16:32:03 -07001137 out.include.new = true;
Myron Ahneba35cf2020-02-05 19:41:51 +07001138 out.include.utility = true;
David Tolnaya7c2ea12020-10-30 21:32:53 -07001139 let inner = to_typename(ty, out.types);
1140 let instance = to_mangled(ty, out.types);
David Tolnay7db73692019-10-20 14:51:12 -04001141
David Tolnay63da4d32020-04-25 09:41:12 -07001142 let can_construct_from_value = match ty {
David Tolnayca0f9da2020-10-16 13:16:17 -07001143 // Some aliases are to opaque types; some are to trivial types. We can't
1144 // know at code generation time, so we generate both C++ and Rust side
1145 // bindings for a "new" method anyway. But the Rust code can't be called
1146 // for Opaque types because the 'new' method is not implemented.
1147 Type::Ident(ident) => {
David Tolnaya7c2ea12020-10-30 21:32:53 -07001148 out.types.structs.contains_key(&ident.rust)
1149 || out.types.aliases.contains_key(&ident.rust)
David Tolnayca0f9da2020-10-16 13:16:17 -07001150 }
David Tolnay63da4d32020-04-25 09:41:12 -07001151 _ => false,
1152 };
1153
David Tolnay7db73692019-10-20 14:51:12 -04001154 writeln!(
1155 out,
David Tolnay7e219b82020-03-01 13:14:51 -08001156 "static_assert(sizeof(::std::unique_ptr<{}>) == sizeof(void *), \"\");",
David Tolnay7db73692019-10-20 14:51:12 -04001157 inner,
1158 );
1159 writeln!(
1160 out,
David Tolnay7e219b82020-03-01 13:14:51 -08001161 "static_assert(alignof(::std::unique_ptr<{}>) == alignof(void *), \"\");",
David Tolnay7db73692019-10-20 14:51:12 -04001162 inner,
1163 );
1164 writeln!(
1165 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001166 "void cxxbridge05$unique_ptr${}$null(::std::unique_ptr<{}> *ptr) noexcept {{",
David Tolnay7db73692019-10-20 14:51:12 -04001167 instance, inner,
1168 );
David Tolnay7e219b82020-03-01 13:14:51 -08001169 writeln!(out, " new (ptr) ::std::unique_ptr<{}>();", inner);
David Tolnay7db73692019-10-20 14:51:12 -04001170 writeln!(out, "}}");
David Tolnay63da4d32020-04-25 09:41:12 -07001171 if can_construct_from_value {
1172 writeln!(
David Tolnay53838912020-04-09 20:56:44 -07001173 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001174 "void cxxbridge05$unique_ptr${}$new(::std::unique_ptr<{}> *ptr, {} *value) noexcept {{",
David Tolnay53838912020-04-09 20:56:44 -07001175 instance, inner, inner,
1176 );
David Tolnay63da4d32020-04-25 09:41:12 -07001177 writeln!(
1178 out,
1179 " new (ptr) ::std::unique_ptr<{}>(new {}(::std::move(*value)));",
1180 inner, inner,
1181 );
1182 writeln!(out, "}}");
David Tolnay53838912020-04-09 20:56:44 -07001183 }
David Tolnay7db73692019-10-20 14:51:12 -04001184 writeln!(
1185 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001186 "void cxxbridge05$unique_ptr${}$raw(::std::unique_ptr<{}> *ptr, {} *raw) noexcept {{",
David Tolnay7db73692019-10-20 14:51:12 -04001187 instance, inner, inner,
1188 );
David Tolnay7e219b82020-03-01 13:14:51 -08001189 writeln!(out, " new (ptr) ::std::unique_ptr<{}>(raw);", inner);
David Tolnay7db73692019-10-20 14:51:12 -04001190 writeln!(out, "}}");
1191 writeln!(
1192 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001193 "const {} *cxxbridge05$unique_ptr${}$get(const ::std::unique_ptr<{}>& ptr) noexcept {{",
David Tolnay7db73692019-10-20 14:51:12 -04001194 inner, instance, inner,
1195 );
1196 writeln!(out, " return ptr.get();");
1197 writeln!(out, "}}");
1198 writeln!(
1199 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001200 "{} *cxxbridge05$unique_ptr${}$release(::std::unique_ptr<{}>& ptr) noexcept {{",
David Tolnay7db73692019-10-20 14:51:12 -04001201 inner, instance, inner,
1202 );
1203 writeln!(out, " return ptr.release();");
1204 writeln!(out, "}}");
1205 writeln!(
1206 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001207 "void cxxbridge05$unique_ptr${}$drop(::std::unique_ptr<{}> *ptr) noexcept {{",
David Tolnay7db73692019-10-20 14:51:12 -04001208 instance, inner,
1209 );
1210 writeln!(out, " ptr->~unique_ptr();");
1211 writeln!(out, "}}");
David Tolnay7db73692019-10-20 14:51:12 -04001212}
Myron Ahneba35cf2020-02-05 19:41:51 +07001213
David Tolnaya7c2ea12020-10-30 21:32:53 -07001214fn write_cxx_vector(out: &mut OutFile, vector_ty: &Type, element: &ResolvableName) {
David Tolnay63da4d32020-04-25 09:41:12 -07001215 let element = Type::Ident(element.clone());
David Tolnaya7c2ea12020-10-30 21:32:53 -07001216 let inner = to_typename(&element, out.types);
1217 let instance = to_mangled(&element, out.types);
Myron Ahneba35cf2020-02-05 19:41:51 +07001218
David Tolnay8f16ae72020-10-08 18:21:13 -07001219 writeln!(out, "#ifndef CXXBRIDGE05_VECTOR_{}", instance);
1220 writeln!(out, "#define CXXBRIDGE05_VECTOR_{}", instance);
Myron Ahneba35cf2020-02-05 19:41:51 +07001221 writeln!(
1222 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001223 "size_t cxxbridge05$std$vector${}$size(const ::std::vector<{}> &s) noexcept {{",
Myron Ahneba35cf2020-02-05 19:41:51 +07001224 instance, inner,
1225 );
1226 writeln!(out, " return s.size();");
1227 writeln!(out, "}}");
Myron Ahneba35cf2020-02-05 19:41:51 +07001228 writeln!(
1229 out,
David Tolnay8f16ae72020-10-08 18:21:13 -07001230 "const {} *cxxbridge05$std$vector${}$get_unchecked(const ::std::vector<{}> &s, size_t pos) noexcept {{",
Myron Ahneba35cf2020-02-05 19:41:51 +07001231 inner, instance, inner,
1232 );
David Tolnayb3fcf7b2020-04-30 22:58:28 -07001233 writeln!(out, " return &s[pos];");
Myron Ahneba35cf2020-02-05 19:41:51 +07001234 writeln!(out, "}}");
David Tolnay63da4d32020-04-25 09:41:12 -07001235
David Tolnaya7c2ea12020-10-30 21:32:53 -07001236 write_unique_ptr_common(out, vector_ty);
David Tolnay63da4d32020-04-25 09:41:12 -07001237
David Tolnay8f16ae72020-10-08 18:21:13 -07001238 writeln!(out, "#endif // CXXBRIDGE05_VECTOR_{}", instance);
Myron Ahneba35cf2020-02-05 19:41:51 +07001239}