mirror of
https://github.com/hexedtech/jni-toolbox.git
synced 2024-11-21 23:14:55 +01:00
feat: throw exception, allow specifying custom ones
This commit is contained in:
parent
c044fff422
commit
3ccb610dd5
2 changed files with 216 additions and 0 deletions
19
macro/Cargo.toml
Normal file
19
macro/Cargo.toml
Normal file
|
@ -0,0 +1,19 @@
|
|||
[package]
|
||||
name = "jni-toolbox-macro"
|
||||
description = "proc macro to automate making JNI extern functions"
|
||||
repository = "https://github.com/hexedtech/jni-toolbox"
|
||||
authors = [
|
||||
"alemi <me@alemi.dev>"
|
||||
]
|
||||
license = "GPL-3.0-only"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
path = "macro.rs"
|
||||
|
||||
[dependencies]
|
||||
syn = {version = "2.0", features = ["full"]}
|
||||
quote = "1.0"
|
||||
proc-macro2 = "1.0"
|
197
macro/macro.rs
Normal file
197
macro/macro.rs
Normal file
|
@ -0,0 +1,197 @@
|
|||
#[proc_macro_attribute]
|
||||
pub fn jni(
|
||||
attrs: proc_macro::TokenStream,
|
||||
input: proc_macro::TokenStream,
|
||||
) -> proc_macro::TokenStream {
|
||||
generate_jni_wrapper(
|
||||
syn::parse_macro_input!(attrs),
|
||||
syn::parse_macro_input!(input),
|
||||
)
|
||||
.unwrap()
|
||||
.into()
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
use proc_macro2::{Span, TokenStream, TokenTree};
|
||||
use quote::TokenStreamExt;
|
||||
use syn::{FnArg, Item, ReturnType, Type};
|
||||
|
||||
fn generate_jni_wrapper(attrs: TokenStream, input: TokenStream) -> Result<TokenStream, syn::Error> {
|
||||
let mut out = TokenStream::new();
|
||||
|
||||
let Item::Fn(fn_item) = syn::parse2(input.clone())? else {
|
||||
return Err(syn::Error::new(Span::call_site(), "#[jni] is only supported on functions"));
|
||||
};
|
||||
|
||||
let mut what_next = WhatNext::Nothing;
|
||||
|
||||
let mut package = None;
|
||||
let mut clazz = None;
|
||||
let mut exception = None;
|
||||
|
||||
for attr in attrs {
|
||||
match what_next {
|
||||
WhatNext::Nothing => {
|
||||
if let TokenTree::Ident(ref i) = attr {
|
||||
match i.to_string().as_ref() {
|
||||
"package" => what_next = WhatNext::Package,
|
||||
"class" => what_next = WhatNext::Class,
|
||||
"exception" => what_next = WhatNext::Exception,
|
||||
_ => return Err(syn::Error::new(Span::call_site(), "unexpected attribute on macro: {attr}")),
|
||||
}
|
||||
}
|
||||
},
|
||||
WhatNext::Class => {
|
||||
if let TokenTree::Literal(i) = attr {
|
||||
let raw = i.to_string().replace('"', "");
|
||||
clazz = Some(syn::Ident::new(&raw, Span::call_site()));
|
||||
what_next = WhatNext::Nothing;
|
||||
}
|
||||
},
|
||||
WhatNext::Package => {
|
||||
if let TokenTree::Literal(i) = attr {
|
||||
let raw = i.to_string().replace('"', "").replace(".", "_");
|
||||
package = Some(syn::Ident::new(&raw, Span::call_site()));
|
||||
what_next = WhatNext::Nothing;
|
||||
}
|
||||
},
|
||||
WhatNext::Exception => {
|
||||
if let TokenTree::Literal(i) = attr {
|
||||
let raw = i.to_string().replace('"', "").replace(".", "_");
|
||||
exception = Some(i);
|
||||
what_next = WhatNext::Nothing;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let Some(package) = package else { return Err(syn::Error::new(Span::call_site(), "missing attribute 'package'")) };
|
||||
let Some(clazz) = clazz else { return Err(syn::Error::new(Span::call_site(), "missing attribute 'class'")) };
|
||||
|
||||
let (could_error, ret_type) = match fn_item.sig.output {
|
||||
syn::ReturnType::Default => (false, fn_item.sig.output),
|
||||
syn::ReturnType::Type(_tok, ty) => match *ty {
|
||||
syn::Type::Path(ref path) => {
|
||||
let Some(last) = path.path.segments.last() else {
|
||||
return Err(syn::Error::new(Span::call_site(), "empty Result type is not valid"));
|
||||
};
|
||||
|
||||
// TODO this is terrible, macro returns a function and we call it?? there must be a
|
||||
// better way!!!
|
||||
let mut out = (
|
||||
false,
|
||||
ReturnType::Type(syn::Token![->](Span::call_site()), Box::new(Type::Path(path.clone())))
|
||||
);
|
||||
|
||||
if last.ident == "Result" {
|
||||
match &last.arguments {
|
||||
syn::PathArguments::None => return Err(syn::Error::new(Span::call_site(), "Result without generics is not valid")),
|
||||
syn::PathArguments::Parenthesized(_) => return Err(syn::Error::new(Span::call_site(), "Parenthesized Result is not valid")),
|
||||
syn::PathArguments::AngleBracketed(ref generics) => for generic in generics.args.iter() {
|
||||
match generic {
|
||||
syn::GenericArgument::Lifetime(_) => continue,
|
||||
syn::GenericArgument::Type(ty) => {
|
||||
out = (true, ReturnType::Type(syn::Token![->](Span::call_site()), Box::new(ty.clone())));
|
||||
break;
|
||||
},
|
||||
_ => return Err(syn::Error::new(Span::call_site(), "unexpected type in Result")),
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
out
|
||||
},
|
||||
_ => return Err(syn::Error::new(Span::call_site(), "unsupported return type")),
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
let mut incoming = TokenStream::new();
|
||||
let mut forwarding = TokenStream::new();
|
||||
|
||||
for arg in fn_item.sig.inputs {
|
||||
let FnArg::Typed(ty) = arg else {
|
||||
return Err(syn::Error::new(Span::call_site(), "#[jni] macro doesn't work on methods"));
|
||||
};
|
||||
incoming.append_all(quote::quote!( #ty , ));
|
||||
let pat = ty.pat;
|
||||
forwarding.append_all(quote::quote!( #pat , ));
|
||||
}
|
||||
|
||||
let name = fn_item.sig.ident.to_string();
|
||||
let name_jni = name.replace("_", "_1");
|
||||
let fn_name_inner = syn::Ident::new(&name, Span::call_site());
|
||||
let fn_name = syn::Ident::new(&format!("Java_{package}_{clazz}_{name_jni}"), Span::call_site());
|
||||
|
||||
let Some(env_ident) = forwarding.clone().into_iter().next() else {
|
||||
return Err(syn::Error::new(Span::call_site(), "missing JNIEnv argument"));
|
||||
};
|
||||
|
||||
let wrapped = if could_error {
|
||||
if let Some(exception) = exception {
|
||||
// V----------------------------------V
|
||||
quote::quote! {
|
||||
#[no_mangle]
|
||||
pub extern "system" fn #fn_name<'local>(#incoming) #ret_type {
|
||||
use jni_toolbox::JniToolboxError;
|
||||
match #fn_name_inner(#forwarding) {
|
||||
Ok(ret) => ret,
|
||||
Err(e) => match #env_ident.throw_new(#exception, format!("{e:?}")) {
|
||||
Ok(_) => return 0,
|
||||
Err(e) => panic!("error throwing java exception: {e}"),
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// ^----------------------------------^
|
||||
} else {
|
||||
// V----------------------------------V
|
||||
quote::quote! {
|
||||
#[no_mangle]
|
||||
pub extern "system" fn #fn_name<'local>(#incoming) #ret_type {
|
||||
use jni_toolbox::JniToolboxError;
|
||||
match #fn_name_inner(#forwarding) {
|
||||
Err(e) => match #env_ident.find_class(e.jclass()) {
|
||||
Err(e) => panic!("error throwing Java exception -- failed resolving error class: {e}"),
|
||||
Ok(class) => match #env_ident.new_string(format!("{e:?}")) {
|
||||
Err(e) => panic!("error throwing Java exception -- failed creating error string: {e}"),
|
||||
Ok(msg) => match #env_ident.new_object(class, "(Ljava/lang/String;)V", &[jni::objects::JValueGen::Object(&msg)]) {
|
||||
Err(e) => panic!("error throwing Java exception -- failed creating object: {e}"),
|
||||
Ok(obj) => match #env_ident.throw(obj) {
|
||||
Err(e) => panic!("error throwing Java exception -- failed throwing: {e}"),
|
||||
Ok(_) => return 0,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Ok(ret) => ret,
|
||||
}
|
||||
}
|
||||
}
|
||||
// ^----------------------------------^
|
||||
}
|
||||
} else {
|
||||
// V----------------------------------V
|
||||
quote::quote! {
|
||||
#[no_mangle]
|
||||
pub extern "system" fn #fn_name<'local>(#incoming) #ret_type {
|
||||
#fn_name_inner(#forwarding)
|
||||
}
|
||||
}
|
||||
// ^----------------------------------^
|
||||
};
|
||||
|
||||
out.append_all(input);
|
||||
out.append_all(wrapped);
|
||||
Ok(out)
|
||||
}
|
||||
|
||||
enum WhatNext {
|
||||
Nothing,
|
||||
Package,
|
||||
Class,
|
||||
Exception,
|
||||
}
|
Loading…
Reference in a new issue