2019-10-20 18:51:12 +00:00
|
|
|
use crate::gen::include;
|
|
|
|
use crate::gen::out::OutFile;
|
|
|
|
use crate::syntax::atom::Atom::{self, *};
|
|
|
|
use crate::syntax::{Api, ExternFn, Struct, Type, Types, Var};
|
|
|
|
use proc_macro2::Ident;
|
|
|
|
|
|
|
|
pub(super) fn gen(namespace: Vec<String>, apis: &[Api], types: &Types, header: bool) -> OutFile {
|
|
|
|
let mut out_file = OutFile::new(namespace.clone(), header);
|
|
|
|
let out = &mut out_file;
|
|
|
|
|
|
|
|
if header {
|
|
|
|
writeln!(out, "#pragma once");
|
|
|
|
}
|
|
|
|
|
|
|
|
for api in apis {
|
|
|
|
if let Api::Include(include) = api {
|
2020-03-06 19:12:55 +00:00
|
|
|
out.include.insert(include.value());
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
write_includes(out, types);
|
2020-03-06 22:14:27 +00:00
|
|
|
write_include_cxxbridge(out, apis, types);
|
2019-10-20 18:51:12 +00:00
|
|
|
|
|
|
|
out.next_section();
|
|
|
|
for name in &namespace {
|
|
|
|
writeln!(out, "namespace {} {{", name);
|
|
|
|
}
|
|
|
|
|
|
|
|
out.next_section();
|
|
|
|
for api in apis {
|
|
|
|
match api {
|
|
|
|
Api::Struct(strct) => write_struct_decl(out, &strct.ident),
|
2020-01-21 02:39:24 +00:00
|
|
|
Api::CxxType(ety) => write_struct_using(out, &ety.ident),
|
|
|
|
Api::RustType(ety) => write_struct_decl(out, &ety.ident),
|
2019-10-20 18:51:12 +00:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for api in apis {
|
|
|
|
if let Api::Struct(strct) = api {
|
|
|
|
out.next_section();
|
|
|
|
write_struct(out, strct);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !header {
|
|
|
|
out.begin_block("extern \"C\"");
|
|
|
|
for api in apis {
|
|
|
|
let (efn, write): (_, fn(_, _, _)) = match api {
|
|
|
|
Api::CxxFunction(efn) => (efn, write_cxx_function_shim),
|
|
|
|
Api::RustFunction(efn) => (efn, write_rust_function_decl),
|
|
|
|
_ => continue,
|
|
|
|
};
|
|
|
|
out.next_section();
|
|
|
|
write(out, efn, types);
|
|
|
|
}
|
2020-03-01 22:01:24 +00:00
|
|
|
out.end_block("extern \"C\"");
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for api in apis {
|
|
|
|
if let Api::RustFunction(efn) = api {
|
|
|
|
out.next_section();
|
|
|
|
write_rust_function_shim(out, efn, types);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out.next_section();
|
|
|
|
for name in namespace.iter().rev() {
|
|
|
|
writeln!(out, "}} // namespace {}", name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if !header {
|
|
|
|
out.next_section();
|
|
|
|
write_generic_instantiations(out, types);
|
|
|
|
}
|
|
|
|
|
2020-03-06 19:12:55 +00:00
|
|
|
out.prepend(out.include.to_string());
|
|
|
|
|
2019-10-20 18:51:12 +00:00
|
|
|
out_file
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_includes(out: &mut OutFile, types: &Types) {
|
|
|
|
for ty in types {
|
|
|
|
match ty {
|
|
|
|
Type::Ident(ident) => match Atom::from(ident) {
|
|
|
|
Some(U8) | Some(U16) | Some(U32) | Some(U64) | Some(Usize) | Some(I8)
|
2020-03-06 19:12:55 +00:00
|
|
|
| Some(I16) | Some(I32) | Some(I64) | Some(Isize) => out.include.cstdint = true,
|
|
|
|
Some(CxxString) => out.include.string = true,
|
2019-10-20 18:51:12 +00:00
|
|
|
Some(Bool) | Some(RustString) | None => {}
|
|
|
|
},
|
2020-03-06 19:12:55 +00:00
|
|
|
Type::RustBox(_) => out.include.type_traits = true,
|
|
|
|
Type::UniquePtr(_) => out.include.memory = true,
|
2019-10-20 18:51:12 +00:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-06 22:14:27 +00:00
|
|
|
fn write_include_cxxbridge(out: &mut OutFile, apis: &[Api], types: &Types) {
|
2019-10-20 18:51:12 +00:00
|
|
|
let mut needs_rust_box = false;
|
|
|
|
for ty in types {
|
|
|
|
if let Type::RustBox(_) = ty {
|
|
|
|
needs_rust_box = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-06 22:14:27 +00:00
|
|
|
let mut needs_manually_drop = false;
|
2020-03-06 22:40:28 +00:00
|
|
|
let mut needs_maybe_uninit = false;
|
|
|
|
for api in apis {
|
2020-03-06 22:14:27 +00:00
|
|
|
if let Api::RustFunction(efn) = api {
|
|
|
|
for arg in &efn.args {
|
|
|
|
if arg.ty != RustString && types.needs_indirect_abi(&arg.ty) {
|
|
|
|
needs_manually_drop = true;
|
2020-03-06 22:40:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(ret) = &efn.ret {
|
|
|
|
if types.needs_indirect_abi(ret) {
|
|
|
|
needs_maybe_uninit = true;
|
2020-03-06 22:14:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-01 21:04:08 +00:00
|
|
|
out.begin_block("namespace rust");
|
|
|
|
out.begin_block("inline namespace cxxbridge01");
|
2020-03-06 22:14:27 +00:00
|
|
|
|
2020-03-06 22:40:28 +00:00
|
|
|
if needs_rust_box || needs_manually_drop || needs_maybe_uninit {
|
2019-10-20 18:51:12 +00:00
|
|
|
writeln!(out, "// #include \"cxxbridge.h\"");
|
2020-03-06 22:14:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if needs_rust_box {
|
|
|
|
out.next_section();
|
2020-01-08 16:46:20 +00:00
|
|
|
for line in include::get("CXXBRIDGE01_RUST_BOX").lines() {
|
2019-10-20 18:51:12 +00:00
|
|
|
if !line.trim_start().starts_with("//") {
|
|
|
|
writeln!(out, "{}", line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-06 22:14:27 +00:00
|
|
|
|
|
|
|
if needs_manually_drop {
|
|
|
|
out.next_section();
|
|
|
|
writeln!(out, "template <typename T>");
|
|
|
|
writeln!(out, "union ManuallyDrop {{");
|
|
|
|
writeln!(out, " T value;");
|
|
|
|
writeln!(
|
|
|
|
out,
|
|
|
|
" ManuallyDrop(T &&value) : value(::std::move(value)) {{}}",
|
|
|
|
);
|
|
|
|
writeln!(out, " ~ManuallyDrop() {{}}");
|
|
|
|
writeln!(out, "}};");
|
|
|
|
}
|
|
|
|
|
2020-03-06 22:40:28 +00:00
|
|
|
if needs_maybe_uninit {
|
|
|
|
out.next_section();
|
|
|
|
writeln!(out, "template <typename T>");
|
|
|
|
writeln!(out, "union MaybeUninit {{");
|
|
|
|
writeln!(out, " T value;");
|
|
|
|
writeln!(out, " MaybeUninit() {{}}");
|
|
|
|
writeln!(out, " ~MaybeUninit() {{}}");
|
|
|
|
writeln!(out, "}};");
|
|
|
|
}
|
|
|
|
|
2020-03-01 22:01:24 +00:00
|
|
|
out.end_block("namespace cxxbridge01");
|
|
|
|
out.end_block("namespace rust");
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn write_struct(out: &mut OutFile, strct: &Struct) {
|
|
|
|
for line in strct.doc.to_string().lines() {
|
|
|
|
writeln!(out, "//{}", line);
|
|
|
|
}
|
|
|
|
writeln!(out, "struct {} final {{", strct.ident);
|
|
|
|
for field in &strct.fields {
|
|
|
|
write!(out, " ");
|
|
|
|
write_type_space(out, &field.ty);
|
|
|
|
writeln!(out, "{};", field.ident);
|
|
|
|
}
|
|
|
|
writeln!(out, "}};");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_struct_decl(out: &mut OutFile, ident: &Ident) {
|
|
|
|
writeln!(out, "struct {};", ident);
|
|
|
|
}
|
|
|
|
|
2020-01-21 02:39:24 +00:00
|
|
|
fn write_struct_using(out: &mut OutFile, ident: &Ident) {
|
|
|
|
writeln!(out, "using {} = {};", ident, ident);
|
|
|
|
}
|
|
|
|
|
2019-10-20 18:51:12 +00:00
|
|
|
fn write_cxx_function_shim(out: &mut OutFile, efn: &ExternFn, types: &Types) {
|
|
|
|
let indirect_return = efn
|
|
|
|
.ret
|
|
|
|
.as_ref()
|
|
|
|
.map_or(false, |ret| types.needs_indirect_abi(ret));
|
|
|
|
write_extern_return_type(out, &efn.ret, types);
|
|
|
|
for name in out.namespace.clone() {
|
|
|
|
write!(out, "{}$", name);
|
|
|
|
}
|
2020-01-08 16:46:20 +00:00
|
|
|
write!(out, "cxxbridge01${}(", efn.ident);
|
2019-10-20 18:51:12 +00:00
|
|
|
for (i, arg) in efn.args.iter().enumerate() {
|
|
|
|
if i > 0 {
|
|
|
|
write!(out, ", ");
|
|
|
|
}
|
2020-03-06 18:03:48 +00:00
|
|
|
if arg.ty == RustString {
|
|
|
|
write!(out, "const ");
|
|
|
|
}
|
2019-10-20 18:51:12 +00:00
|
|
|
write_extern_arg(out, arg, types);
|
|
|
|
}
|
|
|
|
if indirect_return {
|
|
|
|
if !efn.args.is_empty() {
|
|
|
|
write!(out, ", ");
|
|
|
|
}
|
|
|
|
write_return_type(out, &efn.ret);
|
|
|
|
write!(out, "*return$");
|
|
|
|
}
|
|
|
|
writeln!(out, ") noexcept {{");
|
|
|
|
write!(out, " ");
|
|
|
|
write_return_type(out, &efn.ret);
|
|
|
|
write!(out, "(*{}$)(", efn.ident);
|
|
|
|
for (i, arg) in efn.args.iter().enumerate() {
|
|
|
|
if i > 0 {
|
|
|
|
write!(out, ", ");
|
|
|
|
}
|
|
|
|
write_type(out, &arg.ty);
|
|
|
|
}
|
|
|
|
writeln!(out, ") = {};", efn.ident);
|
|
|
|
write!(out, " ");
|
|
|
|
if indirect_return {
|
|
|
|
write!(out, "new (return$) ");
|
|
|
|
write_type(out, efn.ret.as_ref().unwrap());
|
|
|
|
write!(out, "(");
|
2020-01-26 00:24:27 +00:00
|
|
|
} else if let Some(ret) = &efn.ret {
|
2019-10-20 18:51:12 +00:00
|
|
|
write!(out, "return ");
|
2020-03-02 04:20:10 +00:00
|
|
|
match ret {
|
|
|
|
Type::Ref(_) => write!(out, "&"),
|
|
|
|
Type::Str(_) => write!(out, "::rust::Str::Repr("),
|
|
|
|
_ => {}
|
2020-01-26 00:24:27 +00:00
|
|
|
}
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|
|
|
|
write!(out, "{}$(", efn.ident);
|
|
|
|
for (i, arg) in efn.args.iter().enumerate() {
|
|
|
|
if i > 0 {
|
|
|
|
write!(out, ", ");
|
|
|
|
}
|
|
|
|
if let Type::RustBox(_) = &arg.ty {
|
|
|
|
write_type(out, &arg.ty);
|
|
|
|
write!(out, "::from_raw({})", arg.ident);
|
|
|
|
} else if let Type::UniquePtr(_) = &arg.ty {
|
|
|
|
write_type(out, &arg.ty);
|
|
|
|
write!(out, "({})", arg.ident);
|
2020-03-06 18:03:48 +00:00
|
|
|
} else if arg.ty == RustString {
|
2020-03-06 18:41:51 +00:00
|
|
|
write!(
|
|
|
|
out,
|
|
|
|
"::rust::String(::rust::unsafe_bitcopy, *{})",
|
|
|
|
arg.ident,
|
|
|
|
);
|
2019-10-20 18:51:12 +00:00
|
|
|
} else if types.needs_indirect_abi(&arg.ty) {
|
2020-03-01 21:14:51 +00:00
|
|
|
write!(out, "::std::move(*{})", arg.ident);
|
2019-10-20 18:51:12 +00:00
|
|
|
} else {
|
|
|
|
write!(out, "{}", arg.ident);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
write!(out, ")");
|
|
|
|
match &efn.ret {
|
|
|
|
Some(Type::RustBox(_)) => write!(out, ".into_raw()"),
|
|
|
|
Some(Type::UniquePtr(_)) => write!(out, ".release()"),
|
2020-03-02 04:20:10 +00:00
|
|
|
Some(Type::Str(_)) => write!(out, ")"),
|
2019-10-20 18:51:12 +00:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
if indirect_return {
|
|
|
|
write!(out, ")");
|
|
|
|
}
|
|
|
|
writeln!(out, ";");
|
|
|
|
writeln!(out, "}}");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_rust_function_decl(out: &mut OutFile, efn: &ExternFn, types: &Types) {
|
|
|
|
write_extern_return_type(out, &efn.ret, types);
|
|
|
|
for name in out.namespace.clone() {
|
|
|
|
write!(out, "{}$", name);
|
|
|
|
}
|
2020-01-08 16:46:20 +00:00
|
|
|
write!(out, "cxxbridge01${}(", efn.ident);
|
2019-10-20 18:51:12 +00:00
|
|
|
for (i, arg) in efn.args.iter().enumerate() {
|
|
|
|
if i > 0 {
|
|
|
|
write!(out, ", ");
|
|
|
|
}
|
|
|
|
write_extern_arg(out, arg, types);
|
|
|
|
}
|
|
|
|
if efn
|
|
|
|
.ret
|
|
|
|
.as_ref()
|
|
|
|
.map_or(false, |ret| types.needs_indirect_abi(ret))
|
|
|
|
{
|
|
|
|
if !efn.args.is_empty() {
|
|
|
|
write!(out, ", ");
|
|
|
|
}
|
|
|
|
write_return_type(out, &efn.ret);
|
|
|
|
write!(out, "*return$");
|
|
|
|
}
|
|
|
|
writeln!(out, ") noexcept;");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_rust_function_shim(out: &mut OutFile, efn: &ExternFn, types: &Types) {
|
|
|
|
let indirect_return = efn
|
|
|
|
.ret
|
|
|
|
.as_ref()
|
|
|
|
.map_or(false, |ret| types.needs_indirect_abi(ret));
|
|
|
|
for line in efn.doc.to_string().lines() {
|
|
|
|
writeln!(out, "//{}", line);
|
|
|
|
}
|
|
|
|
write_return_type(out, &efn.ret);
|
|
|
|
write!(out, "{}(", efn.ident);
|
|
|
|
for (i, arg) in efn.args.iter().enumerate() {
|
|
|
|
if i > 0 {
|
|
|
|
write!(out, ", ");
|
|
|
|
}
|
|
|
|
write_type_space(out, &arg.ty);
|
|
|
|
write!(out, "{}", arg.ident);
|
|
|
|
}
|
|
|
|
write!(out, ") noexcept");
|
|
|
|
if out.header {
|
|
|
|
writeln!(out, ";");
|
|
|
|
} else {
|
|
|
|
writeln!(out, " {{");
|
2020-03-06 22:14:27 +00:00
|
|
|
for arg in &efn.args {
|
|
|
|
if arg.ty != RustString && types.needs_indirect_abi(&arg.ty) {
|
|
|
|
write!(out, " ::rust::ManuallyDrop<");
|
|
|
|
write_type(out, &arg.ty);
|
|
|
|
writeln!(out, "> {}$(::std::move({0}));", arg.ident);
|
|
|
|
}
|
|
|
|
}
|
2019-10-20 18:51:12 +00:00
|
|
|
write!(out, " ");
|
|
|
|
if indirect_return {
|
2020-03-06 22:40:28 +00:00
|
|
|
write!(out, "::rust::MaybeUninit<");
|
2019-10-20 18:51:12 +00:00
|
|
|
write_type(out, efn.ret.as_ref().unwrap());
|
2020-03-06 22:40:28 +00:00
|
|
|
writeln!(out, "> return$;");
|
2019-10-20 18:51:12 +00:00
|
|
|
write!(out, " ");
|
2020-01-26 00:24:27 +00:00
|
|
|
} else if let Some(ret) = &efn.ret {
|
2019-10-20 18:51:12 +00:00
|
|
|
write!(out, "return ");
|
2020-01-26 00:24:27 +00:00
|
|
|
if let Type::Ref(_) = ret {
|
|
|
|
write!(out, "*");
|
|
|
|
}
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|
|
|
|
for name in out.namespace.clone() {
|
|
|
|
write!(out, "{}$", name);
|
|
|
|
}
|
2020-01-08 16:46:20 +00:00
|
|
|
write!(out, "cxxbridge01${}(", efn.ident);
|
2019-10-20 18:51:12 +00:00
|
|
|
for (i, arg) in efn.args.iter().enumerate() {
|
|
|
|
if i > 0 {
|
|
|
|
write!(out, ", ");
|
|
|
|
}
|
2020-03-02 04:20:10 +00:00
|
|
|
match &arg.ty {
|
|
|
|
Type::Str(_) => write!(out, "::rust::Str::Repr("),
|
|
|
|
ty if types.needs_indirect_abi(ty) => write!(out, "&"),
|
|
|
|
_ => {}
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|
|
|
|
write!(out, "{}", arg.ident);
|
2020-03-06 22:14:27 +00:00
|
|
|
match &arg.ty {
|
2020-01-21 01:58:24 +00:00
|
|
|
Type::RustBox(_) => write!(out, ".into_raw()"),
|
|
|
|
Type::UniquePtr(_) => write!(out, ".release()"),
|
2020-03-02 04:20:10 +00:00
|
|
|
Type::Str(_) => write!(out, ")"),
|
2020-03-06 22:14:27 +00:00
|
|
|
ty if ty != RustString && types.needs_indirect_abi(ty) => write!(out, "$.value"),
|
2020-01-21 01:58:24 +00:00
|
|
|
_ => {}
|
|
|
|
}
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|
|
|
|
if indirect_return {
|
|
|
|
if !efn.args.is_empty() {
|
|
|
|
write!(out, ", ");
|
|
|
|
}
|
2020-03-06 22:40:28 +00:00
|
|
|
write!(out, "&return$.value");
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|
|
|
|
writeln!(out, ");");
|
|
|
|
if indirect_return {
|
2020-03-06 22:40:28 +00:00
|
|
|
writeln!(out, " return ::std::move(return$.value);");
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|
|
|
|
writeln!(out, "}}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_return_type(out: &mut OutFile, ty: &Option<Type>) {
|
|
|
|
match ty {
|
|
|
|
None => write!(out, "void "),
|
|
|
|
Some(ty) => write_type_space(out, ty),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_extern_return_type(out: &mut OutFile, ty: &Option<Type>, types: &Types) {
|
|
|
|
match ty {
|
|
|
|
Some(Type::RustBox(ty)) | Some(Type::UniquePtr(ty)) => {
|
|
|
|
write_type_space(out, &ty.inner);
|
|
|
|
write!(out, "*");
|
|
|
|
}
|
2020-01-26 00:24:27 +00:00
|
|
|
Some(Type::Ref(ty)) => {
|
|
|
|
if ty.mutability.is_none() {
|
|
|
|
write!(out, "const ");
|
|
|
|
}
|
|
|
|
write_type(out, &ty.inner);
|
|
|
|
write!(out, " *");
|
|
|
|
}
|
2020-03-01 21:04:08 +00:00
|
|
|
Some(Type::Str(_)) => write!(out, "::rust::Str::Repr "),
|
2019-10-20 18:51:12 +00:00
|
|
|
Some(ty) if types.needs_indirect_abi(ty) => write!(out, "void "),
|
|
|
|
_ => write_return_type(out, ty),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_extern_arg(out: &mut OutFile, arg: &Var, types: &Types) {
|
|
|
|
match &arg.ty {
|
|
|
|
Type::RustBox(ty) | Type::UniquePtr(ty) => {
|
|
|
|
write_type_space(out, &ty.inner);
|
|
|
|
write!(out, "*");
|
|
|
|
}
|
2020-03-01 21:04:08 +00:00
|
|
|
Type::Str(_) => write!(out, "::rust::Str::Repr "),
|
2019-10-20 18:51:12 +00:00
|
|
|
_ => write_type_space(out, &arg.ty),
|
|
|
|
}
|
|
|
|
if types.needs_indirect_abi(&arg.ty) {
|
|
|
|
write!(out, "*");
|
|
|
|
}
|
|
|
|
write!(out, "{}", arg.ident);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_type(out: &mut OutFile, ty: &Type) {
|
|
|
|
match ty {
|
|
|
|
Type::Ident(ident) => match Atom::from(ident) {
|
|
|
|
Some(Bool) => write!(out, "bool"),
|
|
|
|
Some(U8) => write!(out, "uint8_t"),
|
|
|
|
Some(U16) => write!(out, "uint16_t"),
|
|
|
|
Some(U32) => write!(out, "uint32_t"),
|
|
|
|
Some(U64) => write!(out, "uint64_t"),
|
|
|
|
Some(Usize) => write!(out, "size_t"),
|
|
|
|
Some(I8) => write!(out, "int8_t"),
|
|
|
|
Some(I16) => write!(out, "int16_t"),
|
|
|
|
Some(I32) => write!(out, "int32_t"),
|
|
|
|
Some(I64) => write!(out, "int64_t"),
|
|
|
|
Some(Isize) => write!(out, "ssize_t"),
|
2020-03-01 21:14:51 +00:00
|
|
|
Some(CxxString) => write!(out, "::std::string"),
|
2020-03-01 21:04:08 +00:00
|
|
|
Some(RustString) => write!(out, "::rust::String"),
|
2019-10-20 18:51:12 +00:00
|
|
|
None => write!(out, "{}", ident),
|
|
|
|
},
|
|
|
|
Type::RustBox(ty) => {
|
2020-03-01 21:04:08 +00:00
|
|
|
write!(out, "::rust::Box<");
|
2019-10-20 18:51:12 +00:00
|
|
|
write_type(out, &ty.inner);
|
|
|
|
write!(out, ">");
|
|
|
|
}
|
|
|
|
Type::UniquePtr(ptr) => {
|
2020-03-01 21:14:51 +00:00
|
|
|
write!(out, "::std::unique_ptr<");
|
2019-10-20 18:51:12 +00:00
|
|
|
write_type(out, &ptr.inner);
|
|
|
|
write!(out, ">");
|
|
|
|
}
|
|
|
|
Type::Ref(r) => {
|
|
|
|
if r.mutability.is_none() {
|
|
|
|
write!(out, "const ");
|
|
|
|
}
|
|
|
|
write_type(out, &r.inner);
|
|
|
|
write!(out, " &");
|
|
|
|
}
|
|
|
|
Type::Str(_) => {
|
2020-03-01 21:04:08 +00:00
|
|
|
write!(out, "::rust::Str");
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_type_space(out: &mut OutFile, ty: &Type) {
|
|
|
|
write_type(out, ty);
|
|
|
|
match ty {
|
|
|
|
Type::Ident(_) | Type::RustBox(_) | Type::UniquePtr(_) | Type::Str(_) => write!(out, " "),
|
|
|
|
Type::Ref(_) => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_generic_instantiations(out: &mut OutFile, types: &Types) {
|
|
|
|
fn allow_unique_ptr(ident: &Ident) -> bool {
|
|
|
|
Atom::from(ident).is_none()
|
|
|
|
}
|
|
|
|
|
|
|
|
out.begin_block("extern \"C\"");
|
|
|
|
for ty in types {
|
|
|
|
if let Type::RustBox(ty) = ty {
|
|
|
|
if let Type::Ident(inner) = &ty.inner {
|
|
|
|
out.next_section();
|
|
|
|
write_rust_box_extern(out, inner);
|
|
|
|
}
|
|
|
|
} else if let Type::UniquePtr(ptr) = ty {
|
|
|
|
if let Type::Ident(inner) = &ptr.inner {
|
|
|
|
if allow_unique_ptr(inner) {
|
|
|
|
out.next_section();
|
|
|
|
write_unique_ptr(out, inner);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-01 22:01:24 +00:00
|
|
|
out.end_block("extern \"C\"");
|
2019-10-20 18:51:12 +00:00
|
|
|
|
2020-03-01 21:04:08 +00:00
|
|
|
out.begin_block("namespace rust");
|
|
|
|
out.begin_block("inline namespace cxxbridge01");
|
2019-10-20 18:51:12 +00:00
|
|
|
for ty in types {
|
|
|
|
if let Type::RustBox(ty) = ty {
|
|
|
|
if let Type::Ident(inner) = &ty.inner {
|
|
|
|
write_rust_box_impl(out, inner);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-01 22:01:24 +00:00
|
|
|
out.end_block("namespace cxxbridge01");
|
|
|
|
out.end_block("namespace rust");
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn write_rust_box_extern(out: &mut OutFile, ident: &Ident) {
|
|
|
|
let mut inner = String::new();
|
|
|
|
for name in &out.namespace {
|
|
|
|
inner += name;
|
|
|
|
inner += "::";
|
|
|
|
}
|
|
|
|
inner += &ident.to_string();
|
|
|
|
let instance = inner.replace("::", "$");
|
|
|
|
|
2020-01-08 16:46:20 +00:00
|
|
|
writeln!(out, "#ifndef CXXBRIDGE01_RUST_BOX_{}", instance);
|
|
|
|
writeln!(out, "#define CXXBRIDGE01_RUST_BOX_{}", instance);
|
2019-10-20 18:51:12 +00:00
|
|
|
writeln!(
|
|
|
|
out,
|
2020-03-02 03:51:46 +00:00
|
|
|
"void cxxbridge01$box${}$uninit(::rust::Box<{}> *ptr) noexcept;",
|
2019-10-20 18:51:12 +00:00
|
|
|
instance, inner,
|
|
|
|
);
|
|
|
|
writeln!(
|
|
|
|
out,
|
2020-03-02 03:51:46 +00:00
|
|
|
"void cxxbridge01$box${}$drop(::rust::Box<{}> *ptr) noexcept;",
|
2019-10-20 18:51:12 +00:00
|
|
|
instance, inner,
|
|
|
|
);
|
2020-01-08 16:46:20 +00:00
|
|
|
writeln!(out, "#endif // CXXBRIDGE01_RUST_BOX_{}", instance);
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn write_rust_box_impl(out: &mut OutFile, ident: &Ident) {
|
|
|
|
let mut inner = String::new();
|
|
|
|
for name in &out.namespace {
|
|
|
|
inner += name;
|
|
|
|
inner += "::";
|
|
|
|
}
|
|
|
|
inner += &ident.to_string();
|
|
|
|
let instance = inner.replace("::", "$");
|
|
|
|
|
|
|
|
writeln!(out, "template <>");
|
2020-03-01 21:02:24 +00:00
|
|
|
writeln!(out, "void Box<{}>::uninit() noexcept {{", inner);
|
2020-03-02 03:51:46 +00:00
|
|
|
writeln!(out, " return cxxbridge01$box${}$uninit(this);", instance);
|
2019-10-20 18:51:12 +00:00
|
|
|
writeln!(out, "}}");
|
|
|
|
|
|
|
|
writeln!(out, "template <>");
|
2020-03-01 21:02:24 +00:00
|
|
|
writeln!(out, "void Box<{}>::drop() noexcept {{", inner);
|
2020-03-02 03:51:46 +00:00
|
|
|
writeln!(out, " return cxxbridge01$box${}$drop(this);", instance);
|
2019-10-20 18:51:12 +00:00
|
|
|
writeln!(out, "}}");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_unique_ptr(out: &mut OutFile, ident: &Ident) {
|
|
|
|
let mut inner = String::new();
|
|
|
|
for name in &out.namespace {
|
|
|
|
inner += name;
|
|
|
|
inner += "::";
|
|
|
|
}
|
|
|
|
inner += &ident.to_string();
|
|
|
|
let instance = inner.replace("::", "$");
|
|
|
|
|
2020-01-08 16:46:20 +00:00
|
|
|
writeln!(out, "#ifndef CXXBRIDGE01_UNIQUE_PTR_{}", instance);
|
|
|
|
writeln!(out, "#define CXXBRIDGE01_UNIQUE_PTR_{}", instance);
|
2019-10-20 18:51:12 +00:00
|
|
|
writeln!(
|
|
|
|
out,
|
2020-03-01 21:14:51 +00:00
|
|
|
"static_assert(sizeof(::std::unique_ptr<{}>) == sizeof(void *), \"\");",
|
2019-10-20 18:51:12 +00:00
|
|
|
inner,
|
|
|
|
);
|
|
|
|
writeln!(
|
|
|
|
out,
|
2020-03-01 21:14:51 +00:00
|
|
|
"static_assert(alignof(::std::unique_ptr<{}>) == alignof(void *), \"\");",
|
2019-10-20 18:51:12 +00:00
|
|
|
inner,
|
|
|
|
);
|
|
|
|
writeln!(
|
|
|
|
out,
|
2020-03-01 21:14:51 +00:00
|
|
|
"void cxxbridge01$unique_ptr${}$null(::std::unique_ptr<{}> *ptr) noexcept {{",
|
2019-10-20 18:51:12 +00:00
|
|
|
instance, inner,
|
|
|
|
);
|
2020-03-01 21:14:51 +00:00
|
|
|
writeln!(out, " new (ptr) ::std::unique_ptr<{}>();", inner);
|
2019-10-20 18:51:12 +00:00
|
|
|
writeln!(out, "}}");
|
|
|
|
writeln!(
|
|
|
|
out,
|
2020-03-01 21:14:51 +00:00
|
|
|
"void cxxbridge01$unique_ptr${}$new(::std::unique_ptr<{}> *ptr, {} *value) noexcept {{",
|
2019-10-20 18:51:12 +00:00
|
|
|
instance, inner, inner,
|
|
|
|
);
|
|
|
|
writeln!(
|
|
|
|
out,
|
2020-03-01 21:14:51 +00:00
|
|
|
" new (ptr) ::std::unique_ptr<{}>(new {}(::std::move(*value)));",
|
2019-10-20 18:51:12 +00:00
|
|
|
inner, inner,
|
|
|
|
);
|
|
|
|
writeln!(out, "}}");
|
|
|
|
writeln!(
|
|
|
|
out,
|
2020-03-01 21:14:51 +00:00
|
|
|
"void cxxbridge01$unique_ptr${}$raw(::std::unique_ptr<{}> *ptr, {} *raw) noexcept {{",
|
2019-10-20 18:51:12 +00:00
|
|
|
instance, inner, inner,
|
|
|
|
);
|
2020-03-01 21:14:51 +00:00
|
|
|
writeln!(out, " new (ptr) ::std::unique_ptr<{}>(raw);", inner);
|
2019-10-20 18:51:12 +00:00
|
|
|
writeln!(out, "}}");
|
|
|
|
writeln!(
|
|
|
|
out,
|
2020-03-01 21:14:51 +00:00
|
|
|
"const {} *cxxbridge01$unique_ptr${}$get(const ::std::unique_ptr<{}>& ptr) noexcept {{",
|
2019-10-20 18:51:12 +00:00
|
|
|
inner, instance, inner,
|
|
|
|
);
|
|
|
|
writeln!(out, " return ptr.get();");
|
|
|
|
writeln!(out, "}}");
|
|
|
|
writeln!(
|
|
|
|
out,
|
2020-03-01 21:14:51 +00:00
|
|
|
"{} *cxxbridge01$unique_ptr${}$release(::std::unique_ptr<{}>& ptr) noexcept {{",
|
2019-10-20 18:51:12 +00:00
|
|
|
inner, instance, inner,
|
|
|
|
);
|
|
|
|
writeln!(out, " return ptr.release();");
|
|
|
|
writeln!(out, "}}");
|
|
|
|
writeln!(
|
|
|
|
out,
|
2020-03-01 21:14:51 +00:00
|
|
|
"void cxxbridge01$unique_ptr${}$drop(::std::unique_ptr<{}> *ptr) noexcept {{",
|
2019-10-20 18:51:12 +00:00
|
|
|
instance, inner,
|
|
|
|
);
|
|
|
|
writeln!(out, " ptr->~unique_ptr();");
|
|
|
|
writeln!(out, "}}");
|
2020-01-08 16:46:20 +00:00
|
|
|
writeln!(out, "#endif // CXXBRIDGE01_UNIQUE_PTR_{}", instance);
|
2019-10-20 18:51:12 +00:00
|
|
|
}
|