mirror of
https://github.com/hexedtech/jni-toolbox.git
synced 2024-11-22 07:24:53 +01:00
chore: made a jni-toolbox wrapper crate
This commit is contained in:
parent
5e560d2f3d
commit
c044fff422
3 changed files with 18 additions and 165 deletions
9
Cargo.lock
generated
9
Cargo.lock
generated
|
@ -3,7 +3,14 @@
|
||||||
version = 3
|
version = 3
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jni-macro"
|
name = "jni-toolbox"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"jni-toolbox-macro",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "jni-toolbox-macro"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
|
|
14
Cargo.toml
14
Cargo.toml
|
@ -1,6 +1,9 @@
|
||||||
|
[workspace]
|
||||||
|
members = ["macro"]
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "jni-macro"
|
name = "jni-toolbox"
|
||||||
description = "proc macro to automate making JNI extern functions"
|
description = "tools to make writing JNI native functions less tiresome"
|
||||||
repository = "https://github.com/hexedtech/jni-macro"
|
repository = "https://github.com/hexedtech/jni-macro"
|
||||||
authors = [
|
authors = [
|
||||||
"alemi <me@alemi.dev>"
|
"alemi <me@alemi.dev>"
|
||||||
|
@ -9,10 +12,5 @@ license = "GPL-3.0-only"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
|
||||||
proc-macro = true
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
syn = {version = "2.0", features = ["full"]}
|
jni-toolbox-macro = { path = "./macro" }
|
||||||
quote = "1.0"
|
|
||||||
proc-macro2 = "1.0"
|
|
||||||
|
|
160
src/lib.rs
160
src/lib.rs
|
@ -1,157 +1,5 @@
|
||||||
#[proc_macro_attribute]
|
pub use jni_toolbox_macro::jni;
|
||||||
pub fn jni(
|
|
||||||
attrs: proc_macro::TokenStream,
|
pub trait JniToolboxError: std::error::Error {
|
||||||
input: proc_macro::TokenStream,
|
fn jclass(&self) -> String;
|
||||||
) -> 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;
|
|
||||||
|
|
||||||
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,
|
|
||||||
_ => 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;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
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 {
|
|
||||||
quote::quote! {
|
|
||||||
#[no_mangle]
|
|
||||||
pub extern "system" fn #fn_name<'local>(#incoming) #ret_type {
|
|
||||||
match #fn_name_inner(#forwarding) {
|
|
||||||
Ok(x) => x,
|
|
||||||
Err(e) => {
|
|
||||||
#env_ident
|
|
||||||
.throw_new("java/lang/RuntimeException", format!("{e:?}"))
|
|
||||||
.expect("failed throwing Java exception from native call");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
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,
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue