cxx/gen/write.rs

648 lines
20 KiB
Rust
Raw Normal View History

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);
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),
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);
}
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,
2020-03-13 08:12:26 +00:00
Some(Bool) | Some(F32) | Some(F64) | Some(RustString) | None => {}
2019-10-20 18:51:12 +00:00
},
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
_ => {}
}
}
}
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;
}
}
let mut needs_manually_drop = false;
let mut needs_maybe_uninit = false;
for api in apis {
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;
break;
}
}
if let Some(ret) = &efn.ret {
if types.needs_indirect_abi(ret) {
needs_maybe_uninit = true;
}
}
}
}
out.begin_block("namespace rust");
out.begin_block("inline namespace cxxbridge02");
if needs_rust_box || needs_manually_drop || needs_maybe_uninit {
2020-03-11 23:49:18 +00:00
writeln!(out, "// #include \"rust/cxx.h\"");
}
if needs_rust_box {
out.next_section();
for line in include::get("CXXBRIDGE02_RUST_BOX").lines() {
2019-10-20 18:51:12 +00:00
if !line.trim_start().starts_with("//") {
writeln!(out, "{}", line);
}
}
}
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, "}};");
}
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, "}};");
}
out.end_block("namespace cxxbridge02");
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);
}
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) {
write_extern_return_type(out, &efn.ret, types);
for name in out.namespace.clone() {
write!(out, "{}$", name);
}
write!(out, "cxxbridge02${}(", efn.ident);
2019-10-20 18:51:12 +00:00
for (i, arg) in efn.args.iter().enumerate() {
if i > 0 {
write!(out, ", ");
}
if arg.ty == RustString {
write!(out, "const ");
}
2019-10-20 18:51:12 +00:00
write_extern_arg(out, arg, types);
}
let indirect_return = indirect_return(efn, types);
2019-10-20 18:51:12 +00:00
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, "(");
} else if let Some(ret) = &efn.ret {
2019-10-20 18:51:12 +00:00
write!(out, "return ");
match ret {
Type::Ref(_) => write!(out, "&"),
Type::Str(_) => write!(out, "::rust::Str::Repr("),
_ => {}
}
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);
} 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) {
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()"),
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) {
2020-03-16 20:37:09 +00:00
if efn.throws {
write!(out, "::rust::Str::Repr ");
} else {
write_extern_return_type(out, &efn.ret, types);
}
2019-10-20 18:51:12 +00:00
for name in out.namespace.clone() {
write!(out, "{}$", name);
}
write!(out, "cxxbridge02${}(", 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 indirect_return(efn, types) {
2019-10-20 18:51:12 +00:00
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) {
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);
}
2020-03-16 20:37:09 +00:00
write!(out, ")");
if !efn.throws {
write!(out, " noexcept");
}
2019-10-20 18:51:12 +00:00
if out.header {
writeln!(out, ";");
} else {
writeln!(out, " {{");
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, " ");
let indirect_return = indirect_return(efn, types);
2019-10-20 18:51:12 +00:00
if indirect_return {
write!(out, "::rust::MaybeUninit<");
2019-10-20 18:51:12 +00:00
write_type(out, efn.ret.as_ref().unwrap());
writeln!(out, "> return$;");
2019-10-20 18:51:12 +00:00
write!(out, " ");
} else if let Some(ret) = &efn.ret {
2019-10-20 18:51:12 +00:00
write!(out, "return ");
match ret {
Type::RustBox(_) => {
write_type(out, ret);
write!(out, "::from_raw(");
}
Type::UniquePtr(_) => {
write_type(out, ret);
write!(out, "(");
}
Type::Ref(_) => write!(out, "*"),
_ => {}
}
2019-10-20 18:51:12 +00:00
}
2020-03-16 20:37:09 +00:00
if efn.throws {
write!(out, "::rust::Str::Repr error$ = ");
}
2019-10-20 18:51:12 +00:00
for name in out.namespace.clone() {
write!(out, "{}$", name);
}
write!(out, "cxxbridge02${}(", efn.ident);
2019-10-20 18:51:12 +00:00
for (i, arg) in efn.args.iter().enumerate() {
if i > 0 {
write!(out, ", ");
}
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);
match &arg.ty {
Type::RustBox(_) => write!(out, ".into_raw()"),
Type::UniquePtr(_) => write!(out, ".release()"),
Type::Str(_) => write!(out, ")"),
ty if ty != RustString && types.needs_indirect_abi(ty) => write!(out, "$.value"),
_ => {}
}
2019-10-20 18:51:12 +00:00
}
if indirect_return {
if !efn.args.is_empty() {
write!(out, ", ");
}
write!(out, "&return$.value");
2019-10-20 18:51:12 +00:00
}
write!(out, ")");
if let Some(ret) = &efn.ret {
if let Type::RustBox(_) | Type::UniquePtr(_) = ret {
write!(out, ")");
}
}
writeln!(out, ";");
2020-03-16 20:37:09 +00:00
if efn.throws {
writeln!(out, " if (error$.ptr) {{");
writeln!(out, " throw ::rust::Error(error$);");
writeln!(out, " }}");
}
2019-10-20 18:51:12 +00:00
if indirect_return {
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 indirect_return(efn: &ExternFn, types: &Types) -> bool {
efn.ret
.as_ref()
2020-03-16 20:37:09 +00:00
.map_or(false, |ret| efn.throws || types.needs_indirect_abi(ret))
}
2019-10-20 18:51:12 +00:00
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, "*");
}
Some(Type::Ref(ty)) => {
if ty.mutability.is_none() {
write!(out, "const ");
}
write_type(out, &ty.inner);
write!(out, " *");
}
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, "*");
}
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-13 08:12:26 +00:00
Some(F32) => write!(out, "float"),
Some(F64) => write!(out, "double"),
Some(CxxString) => write!(out, "::std::string"),
Some(RustString) => write!(out, "::rust::String"),
2019-10-20 18:51:12 +00:00
None => write!(out, "{}", ident),
},
Type::RustBox(ty) => {
write!(out, "::rust::Box<");
2019-10-20 18:51:12 +00:00
write_type(out, &ty.inner);
write!(out, ">");
}
Type::UniquePtr(ptr) => {
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(_) => {
write!(out, "::rust::Str");
2019-10-20 18:51:12 +00:00
}
Type::Void(_) => unreachable!(),
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(_) => {}
Type::Void(_) => unreachable!(),
2019-10-20 18:51:12 +00:00
}
}
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);
}
}
}
}
out.end_block("extern \"C\"");
2019-10-20 18:51:12 +00:00
out.begin_block("namespace rust");
out.begin_block("inline namespace cxxbridge02");
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);
}
}
}
out.end_block("namespace cxxbridge02");
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("::", "$");
writeln!(out, "#ifndef CXXBRIDGE02_RUST_BOX_{}", instance);
writeln!(out, "#define CXXBRIDGE02_RUST_BOX_{}", instance);
2019-10-20 18:51:12 +00:00
writeln!(
out,
"void cxxbridge02$box${}$uninit(::rust::Box<{}> *ptr) noexcept;",
2019-10-20 18:51:12 +00:00
instance, inner,
);
writeln!(
out,
"void cxxbridge02$box${}$drop(::rust::Box<{}> *ptr) noexcept;",
2019-10-20 18:51:12 +00:00
instance, inner,
);
writeln!(out, "#endif // CXXBRIDGE02_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);
writeln!(out, " return cxxbridge02$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);
writeln!(out, " return cxxbridge02$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("::", "$");
writeln!(out, "#ifndef CXXBRIDGE02_UNIQUE_PTR_{}", instance);
writeln!(out, "#define CXXBRIDGE02_UNIQUE_PTR_{}", instance);
2019-10-20 18:51:12 +00:00
writeln!(
out,
"static_assert(sizeof(::std::unique_ptr<{}>) == sizeof(void *), \"\");",
2019-10-20 18:51:12 +00:00
inner,
);
writeln!(
out,
"static_assert(alignof(::std::unique_ptr<{}>) == alignof(void *), \"\");",
2019-10-20 18:51:12 +00:00
inner,
);
writeln!(
out,
"void cxxbridge02$unique_ptr${}$null(::std::unique_ptr<{}> *ptr) noexcept {{",
2019-10-20 18:51:12 +00:00
instance, inner,
);
writeln!(out, " new (ptr) ::std::unique_ptr<{}>();", inner);
2019-10-20 18:51:12 +00:00
writeln!(out, "}}");
writeln!(
out,
"void cxxbridge02$unique_ptr${}$new(::std::unique_ptr<{}> *ptr, {} *value) noexcept {{",
2019-10-20 18:51:12 +00:00
instance, inner, inner,
);
writeln!(
out,
" new (ptr) ::std::unique_ptr<{}>(new {}(::std::move(*value)));",
2019-10-20 18:51:12 +00:00
inner, inner,
);
writeln!(out, "}}");
writeln!(
out,
"void cxxbridge02$unique_ptr${}$raw(::std::unique_ptr<{}> *ptr, {} *raw) noexcept {{",
2019-10-20 18:51:12 +00:00
instance, inner, inner,
);
writeln!(out, " new (ptr) ::std::unique_ptr<{}>(raw);", inner);
2019-10-20 18:51:12 +00:00
writeln!(out, "}}");
writeln!(
out,
"const {} *cxxbridge02$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,
"{} *cxxbridge02$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,
"void cxxbridge02$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, "}}");
writeln!(out, "#endif // CXXBRIDGE02_UNIQUE_PTR_{}", instance);
2019-10-20 18:51:12 +00:00
}