2020-08-01 18:52:26 +02:00
|
|
|
#![allow(unused)]
|
2020-08-09 21:19:39 +02:00
|
|
|
|
2020-08-14 06:04:24 +02:00
|
|
|
#[cfg(no_std)]
|
|
|
|
use core::mem;
|
2020-08-24 00:22:29 +02:00
|
|
|
#[cfg(not(no_std))]
|
|
|
|
use std::mem;
|
2020-08-14 06:04:24 +02:00
|
|
|
|
2020-08-15 02:26:01 +02:00
|
|
|
#[cfg(no_std)]
|
|
|
|
use alloc::format;
|
|
|
|
#[cfg(not(no_std))]
|
|
|
|
use std::format;
|
|
|
|
|
2020-09-02 06:15:22 +02:00
|
|
|
use std::borrow::Cow;
|
|
|
|
|
2020-08-01 18:52:26 +02:00
|
|
|
use quote::{quote, quote_spanned};
|
2020-08-09 21:19:39 +02:00
|
|
|
use syn::{parse::Parse, parse::ParseStream, parse::Parser, spanned::Spanned};
|
2020-08-01 18:52:26 +02:00
|
|
|
|
2020-09-02 06:15:22 +02:00
|
|
|
use crate::attrs::{ExportInfo, ExportScope, ExportedParams};
|
2020-08-24 00:53:30 +02:00
|
|
|
|
2020-08-08 04:19:17 +02:00
|
|
|
#[derive(Debug, Default)]
|
|
|
|
pub(crate) struct ExportedFnParams {
|
2020-08-08 16:31:15 +02:00
|
|
|
pub name: Option<String>,
|
2020-08-09 21:19:39 +02:00
|
|
|
pub return_raw: bool,
|
2020-08-16 04:51:14 +02:00
|
|
|
pub skip: bool,
|
2020-08-20 06:12:39 +02:00
|
|
|
pub span: Option<proc_macro2::Span>,
|
2020-08-16 04:51:14 +02:00
|
|
|
}
|
|
|
|
|
2020-08-17 17:35:04 +02:00
|
|
|
pub const FN_IDX_GET: &str = "index$get$";
|
|
|
|
pub const FN_IDX_SET: &str = "index$set$";
|
|
|
|
|
|
|
|
pub fn make_getter(id: &str) -> String {
|
|
|
|
format!("get${}", id)
|
|
|
|
}
|
|
|
|
pub fn make_setter(id: &str) -> String {
|
|
|
|
format!("set${}", id)
|
|
|
|
}
|
|
|
|
|
2020-08-08 04:19:17 +02:00
|
|
|
impl Parse for ExportedFnParams {
|
|
|
|
fn parse(args: ParseStream) -> syn::Result<Self> {
|
|
|
|
if args.is_empty() {
|
|
|
|
return Ok(ExportedFnParams::default());
|
|
|
|
}
|
|
|
|
|
2020-08-24 00:53:30 +02:00
|
|
|
let info = crate::attrs::parse_attr_items(args)?;
|
|
|
|
Self::from_info(info)
|
|
|
|
}
|
|
|
|
}
|
2020-08-08 04:19:17 +02:00
|
|
|
|
2020-08-24 00:53:30 +02:00
|
|
|
impl ExportedParams for ExportedFnParams {
|
|
|
|
fn parse_stream(args: ParseStream) -> syn::Result<Self> {
|
|
|
|
Self::parse(args)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn no_attrs() -> Self {
|
|
|
|
Default::default()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_info(
|
|
|
|
info: crate::attrs::ExportInfo,
|
|
|
|
) -> syn::Result<Self> {
|
|
|
|
let ExportInfo { item_span: span, items: attrs } = info;
|
2020-08-09 21:19:39 +02:00
|
|
|
let mut name = None;
|
|
|
|
let mut return_raw = false;
|
2020-08-16 04:51:14 +02:00
|
|
|
let mut skip = false;
|
2020-08-24 00:53:30 +02:00
|
|
|
for attr in attrs {
|
|
|
|
let crate::attrs::AttrItem { key, value } = attr;
|
|
|
|
match (key.to_string().as_ref(), value) {
|
|
|
|
("name", Some(s)) => {
|
|
|
|
// check validity of name
|
|
|
|
if s.value().contains('.') {
|
|
|
|
return Err(syn::Error::new(
|
|
|
|
s.span(),
|
|
|
|
"Rhai function names may not contain dot",
|
|
|
|
));
|
|
|
|
}
|
|
|
|
name = Some(s.value())
|
|
|
|
}
|
2020-08-17 17:35:04 +02:00
|
|
|
("get", Some(s)) => name = Some(make_getter(&s.value())),
|
|
|
|
("set", Some(s)) => name = Some(make_setter(&s.value())),
|
2020-08-16 18:13:52 +02:00
|
|
|
("get", None) | ("set", None) | ("name", None) => {
|
2020-08-24 00:53:30 +02:00
|
|
|
return Err(syn::Error::new(key.span(), "requires value"))
|
2020-08-16 18:13:52 +02:00
|
|
|
}
|
2020-08-17 17:35:04 +02:00
|
|
|
("index_get", None) => name = Some(FN_IDX_GET.to_string()),
|
|
|
|
("index_set", None) => name = Some(FN_IDX_SET.to_string()),
|
2020-08-09 21:19:39 +02:00
|
|
|
("return_raw", None) => return_raw = true,
|
2020-08-16 18:13:52 +02:00
|
|
|
("index_get", Some(s)) | ("index_set", Some(s)) | ("return_raw", Some(s)) => {
|
2020-08-09 21:19:39 +02:00
|
|
|
return Err(syn::Error::new(s.span(), "extraneous value"))
|
|
|
|
}
|
2020-08-16 04:51:14 +02:00
|
|
|
("skip", None) => skip = true,
|
2020-08-16 12:24:42 +02:00
|
|
|
("skip", Some(s)) => return Err(syn::Error::new(s.span(), "extraneous value")),
|
2020-08-09 21:19:39 +02:00
|
|
|
(attr, _) => {
|
|
|
|
return Err(syn::Error::new(
|
2020-08-24 00:53:30 +02:00
|
|
|
key.span(),
|
2020-08-09 21:19:39 +02:00
|
|
|
format!("unknown attribute '{}'", attr),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-08 04:19:17 +02:00
|
|
|
|
2020-08-16 12:24:42 +02:00
|
|
|
Ok(ExportedFnParams {
|
|
|
|
name,
|
|
|
|
return_raw,
|
|
|
|
skip,
|
2020-08-20 06:12:39 +02:00
|
|
|
span: Some(span),
|
2020-08-16 12:24:42 +02:00
|
|
|
..Default::default()
|
|
|
|
})
|
2020-08-08 04:19:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-01 18:52:26 +02:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub(crate) struct ExportedFn {
|
|
|
|
entire_span: proc_macro2::Span,
|
|
|
|
signature: syn::Signature,
|
|
|
|
is_public: bool,
|
|
|
|
mut_receiver: bool,
|
2020-08-28 06:08:34 +02:00
|
|
|
params: ExportedFnParams,
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Parse for ExportedFn {
|
|
|
|
fn parse(input: ParseStream) -> syn::Result<Self> {
|
|
|
|
let fn_all: syn::ItemFn = input.parse()?;
|
|
|
|
let entire_span = fn_all.span();
|
|
|
|
let str_type_path = syn::parse2::<syn::Path>(quote! { str }).unwrap();
|
|
|
|
|
2020-08-22 05:30:10 +02:00
|
|
|
// #[cfg] attributes are not allowed on functions due to what is generated for them
|
2020-08-24 00:53:30 +02:00
|
|
|
crate::attrs::deny_cfg_attr(&fn_all.attrs)?;
|
2020-08-22 05:30:10 +02:00
|
|
|
|
2020-08-01 18:52:26 +02:00
|
|
|
// Determine if the function is public.
|
2020-08-24 00:53:30 +02:00
|
|
|
let is_public = matches!(fn_all.vis, syn::Visibility::Public(_));
|
2020-08-01 18:52:26 +02:00
|
|
|
// Determine whether function generates a special calling convention for a mutable
|
|
|
|
// reciever.
|
|
|
|
let mut_receiver = {
|
|
|
|
if let Some(first_arg) = fn_all.sig.inputs.first() {
|
|
|
|
match first_arg {
|
2020-08-02 09:39:08 +02:00
|
|
|
syn::FnArg::Receiver(syn::Receiver {
|
|
|
|
reference: Some(_), ..
|
|
|
|
}) => true,
|
|
|
|
syn::FnArg::Typed(syn::PatType { ref ty, .. }) => match ty.as_ref() {
|
|
|
|
&syn::Type::Reference(syn::TypeReference {
|
|
|
|
mutability: Some(_),
|
|
|
|
..
|
|
|
|
}) => true,
|
|
|
|
&syn::Type::Reference(syn::TypeReference {
|
|
|
|
mutability: None,
|
|
|
|
ref elem,
|
|
|
|
..
|
|
|
|
}) => match elem.as_ref() {
|
|
|
|
&syn::Type::Path(ref p) if p.path == str_type_path => false,
|
|
|
|
_ => {
|
|
|
|
return Err(syn::Error::new(
|
|
|
|
ty.span(),
|
|
|
|
"references from Rhai in this position \
|
|
|
|
must be mutable",
|
|
|
|
))
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => false,
|
2020-08-01 18:52:26 +02:00
|
|
|
},
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// All arguments after the first must be moved except for &str.
|
|
|
|
for arg in fn_all.sig.inputs.iter().skip(1) {
|
|
|
|
let ty = match arg {
|
|
|
|
syn::FnArg::Typed(syn::PatType { ref ty, .. }) => ty,
|
|
|
|
_ => panic!("internal error: receiver argument outside of first position!?"),
|
|
|
|
};
|
|
|
|
let is_ok = match ty.as_ref() {
|
2020-08-02 09:39:08 +02:00
|
|
|
&syn::Type::Reference(syn::TypeReference {
|
|
|
|
mutability: Some(_),
|
|
|
|
..
|
|
|
|
}) => false,
|
|
|
|
&syn::Type::Reference(syn::TypeReference {
|
|
|
|
mutability: None,
|
|
|
|
ref elem,
|
|
|
|
..
|
2020-08-24 00:53:30 +02:00
|
|
|
}) => matches!(elem.as_ref(), &syn::Type::Path(ref p) if p.path == str_type_path),
|
2020-08-01 18:52:26 +02:00
|
|
|
&syn::Type::Verbatim(_) => false,
|
|
|
|
_ => true,
|
|
|
|
};
|
|
|
|
if !is_ok {
|
2020-08-02 09:39:08 +02:00
|
|
|
return Err(syn::Error::new(
|
|
|
|
ty.span(),
|
|
|
|
"this type in this position passes from \
|
|
|
|
Rhai by value",
|
|
|
|
));
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// No returning references or pointers.
|
|
|
|
if let syn::ReturnType::Type(_, ref rtype) = fn_all.sig.output {
|
|
|
|
match rtype.as_ref() {
|
2020-08-02 09:39:08 +02:00
|
|
|
&syn::Type::Ptr(_) => {
|
|
|
|
return Err(syn::Error::new(
|
|
|
|
fn_all.sig.output.span(),
|
|
|
|
"cannot return a pointer to Rhai",
|
|
|
|
))
|
|
|
|
}
|
|
|
|
&syn::Type::Reference(_) => {
|
|
|
|
return Err(syn::Error::new(
|
|
|
|
fn_all.sig.output.span(),
|
|
|
|
"cannot return a reference to Rhai",
|
|
|
|
))
|
|
|
|
}
|
|
|
|
_ => {}
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(ExportedFn {
|
|
|
|
entire_span,
|
|
|
|
signature: fn_all.sig,
|
|
|
|
is_public,
|
|
|
|
mut_receiver,
|
2020-08-08 04:19:17 +02:00
|
|
|
params: ExportedFnParams::default(),
|
2020-08-01 18:52:26 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ExportedFn {
|
2020-08-28 06:08:34 +02:00
|
|
|
pub(crate) fn params(&self) -> &ExportedFnParams {
|
|
|
|
&self.params
|
|
|
|
}
|
|
|
|
|
2020-09-02 06:15:22 +02:00
|
|
|
pub(crate) fn update_scope(&mut self, parent_scope: &ExportScope) {
|
|
|
|
let keep = match (self.params.skip, parent_scope) {
|
|
|
|
(true, _) => false,
|
|
|
|
(_, ExportScope::PubOnly) => self.is_public,
|
|
|
|
(_, ExportScope::Prefix(s)) => self.exported_name().as_ref().starts_with(s),
|
|
|
|
(_, ExportScope::All) => true,
|
|
|
|
};
|
|
|
|
self.params.skip = !keep;
|
|
|
|
}
|
|
|
|
|
2020-08-28 06:08:34 +02:00
|
|
|
pub(crate) fn skipped(&self) -> bool {
|
|
|
|
self.params.skip
|
|
|
|
}
|
|
|
|
|
2020-09-02 06:15:22 +02:00
|
|
|
pub(crate) fn signature(&self) -> &syn::Signature {
|
|
|
|
&self.signature
|
|
|
|
}
|
|
|
|
|
2020-08-01 18:52:26 +02:00
|
|
|
pub(crate) fn mutable_receiver(&self) -> bool {
|
|
|
|
self.mut_receiver
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn is_public(&self) -> bool {
|
|
|
|
self.is_public
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn span(&self) -> &proc_macro2::Span {
|
|
|
|
&self.entire_span
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn name(&self) -> &syn::Ident {
|
|
|
|
&self.signature.ident
|
|
|
|
}
|
|
|
|
|
2020-09-02 06:15:22 +02:00
|
|
|
pub(crate) fn exported_name<'n>(&'n self) -> Cow<'n, str> {
|
|
|
|
if let Some(ref name) = self.params.name {
|
|
|
|
Cow::Borrowed(name.as_str())
|
|
|
|
} else {
|
|
|
|
Cow::Owned(self.signature.ident.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-02 09:39:08 +02:00
|
|
|
pub(crate) fn arg_list(&self) -> impl Iterator<Item = &syn::FnArg> {
|
2020-08-01 18:52:26 +02:00
|
|
|
self.signature.inputs.iter()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn arg_count(&self) -> usize {
|
|
|
|
self.signature.inputs.len()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn return_type(&self) -> Option<&syn::Type> {
|
|
|
|
if let syn::ReturnType::Type(_, ref rtype) = self.signature.output {
|
|
|
|
Some(rtype)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-24 00:53:30 +02:00
|
|
|
pub fn set_params(&mut self, mut params: ExportedFnParams) -> syn::Result<()> {
|
2020-08-24 00:22:29 +02:00
|
|
|
// Do not allow non-returning raw functions.
|
|
|
|
//
|
|
|
|
// This is caught now to avoid issues with diagnostics later.
|
2020-08-24 00:53:30 +02:00
|
|
|
if params.return_raw
|
|
|
|
&& mem::discriminant(&self.signature.output)
|
|
|
|
== mem::discriminant(&syn::ReturnType::Default)
|
|
|
|
{
|
|
|
|
return Err(syn::Error::new(
|
|
|
|
self.signature.span(),
|
|
|
|
"return_raw functions must return Result<T>",
|
|
|
|
));
|
2020-08-24 00:22:29 +02:00
|
|
|
}
|
|
|
|
|
2020-08-08 04:19:17 +02:00
|
|
|
self.params = params;
|
2020-08-24 00:22:29 +02:00
|
|
|
Ok(())
|
2020-08-08 04:19:17 +02:00
|
|
|
}
|
|
|
|
|
2020-08-01 18:52:26 +02:00
|
|
|
pub fn generate(self) -> proc_macro2::TokenStream {
|
2020-08-13 06:34:53 +02:00
|
|
|
let name: syn::Ident =
|
2020-08-16 12:24:42 +02:00
|
|
|
syn::Ident::new(&format!("rhai_fn_{}", self.name()), self.name().span());
|
2020-08-01 18:52:26 +02:00
|
|
|
let impl_block = self.generate_impl("Token");
|
2020-08-03 02:27:19 +02:00
|
|
|
let callable_block = self.generate_callable("Token");
|
|
|
|
let input_types_block = self.generate_input_types("Token");
|
2020-08-13 06:34:53 +02:00
|
|
|
let dyn_result_fn_block = self.generate_dynamic_fn();
|
2020-08-01 18:52:26 +02:00
|
|
|
quote! {
|
|
|
|
#[allow(unused)]
|
|
|
|
pub mod #name {
|
|
|
|
use super::*;
|
2020-08-03 02:27:19 +02:00
|
|
|
struct Token();
|
2020-08-01 18:52:26 +02:00
|
|
|
#impl_block
|
2020-08-03 02:27:19 +02:00
|
|
|
#callable_block
|
|
|
|
#input_types_block
|
2020-08-13 06:34:53 +02:00
|
|
|
#dyn_result_fn_block
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn generate_dynamic_fn(&self) -> proc_macro2::TokenStream {
|
2020-08-16 12:24:42 +02:00
|
|
|
let name = self.name().clone();
|
2020-08-13 06:34:53 +02:00
|
|
|
|
|
|
|
let mut dynamic_signature = self.signature.clone();
|
|
|
|
dynamic_signature.ident =
|
|
|
|
syn::Ident::new("dynamic_result_fn", proc_macro2::Span::call_site());
|
|
|
|
dynamic_signature.output = syn::parse2::<syn::ReturnType>(quote! {
|
|
|
|
-> Result<Dynamic, EvalBox>
|
|
|
|
})
|
|
|
|
.unwrap();
|
|
|
|
let arguments: Vec<syn::Ident> = dynamic_signature
|
|
|
|
.inputs
|
|
|
|
.iter()
|
|
|
|
.filter_map(|fnarg| {
|
|
|
|
if let syn::FnArg::Typed(syn::PatType { ref pat, .. }) = fnarg {
|
|
|
|
if let syn::Pat::Ident(ref ident) = pat.as_ref() {
|
|
|
|
Some(ident.ident.clone())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
2020-08-28 05:49:56 +02:00
|
|
|
let return_span = self.return_type().map(|r| r.span())
|
|
|
|
.unwrap_or_else(|| proc_macro2::Span::call_site());
|
2020-08-13 06:34:53 +02:00
|
|
|
if !self.params.return_raw {
|
2020-08-28 05:49:56 +02:00
|
|
|
quote_spanned! { return_span=>
|
2020-08-13 06:34:53 +02:00
|
|
|
type EvalBox = Box<EvalAltResult>;
|
|
|
|
pub #dynamic_signature {
|
|
|
|
Ok(Dynamic::from(super::#name(#(#arguments),*)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2020-08-28 05:49:56 +02:00
|
|
|
quote_spanned! { return_span=>
|
2020-08-13 06:34:53 +02:00
|
|
|
type EvalBox = Box<EvalAltResult>;
|
|
|
|
pub #dynamic_signature {
|
|
|
|
super::#name(#(#arguments),*)
|
|
|
|
}
|
2020-08-03 02:27:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn generate_callable(&self, on_type_name: &str) -> proc_macro2::TokenStream {
|
|
|
|
let token_name: syn::Ident = syn::Ident::new(on_type_name, self.name().span());
|
|
|
|
let callable_fn_name: syn::Ident = syn::Ident::new(
|
2020-08-06 08:10:27 +02:00
|
|
|
format!("{}_callable", on_type_name.to_lowercase()).as_str(),
|
|
|
|
self.name().span(),
|
|
|
|
);
|
2020-08-03 02:27:19 +02:00
|
|
|
quote! {
|
|
|
|
pub fn #callable_fn_name() -> CallableFunction {
|
|
|
|
CallableFunction::from_plugin(#token_name())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn generate_input_types(&self, on_type_name: &str) -> proc_macro2::TokenStream {
|
|
|
|
let token_name: syn::Ident = syn::Ident::new(on_type_name, self.name().span());
|
|
|
|
let input_types_fn_name: syn::Ident = syn::Ident::new(
|
2020-08-06 08:10:27 +02:00
|
|
|
format!("{}_input_types", on_type_name.to_lowercase()).as_str(),
|
|
|
|
self.name().span(),
|
|
|
|
);
|
2020-08-03 02:27:19 +02:00
|
|
|
quote! {
|
2020-08-14 06:04:24 +02:00
|
|
|
pub fn #input_types_fn_name() -> Box<[TypeId]> {
|
2020-08-03 02:27:19 +02:00
|
|
|
#token_name().input_types()
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn generate_impl(&self, on_type_name: &str) -> proc_macro2::TokenStream {
|
2020-08-16 12:24:42 +02:00
|
|
|
let sig_name = self.name().clone();
|
2020-08-17 17:35:04 +02:00
|
|
|
let name = self
|
|
|
|
.params
|
|
|
|
.name
|
|
|
|
.clone()
|
|
|
|
.unwrap_or_else(|| self.name().to_string());
|
2020-08-08 16:31:15 +02:00
|
|
|
|
2020-08-01 18:52:26 +02:00
|
|
|
let arg_count = self.arg_count();
|
|
|
|
let is_method_call = self.mutable_receiver();
|
|
|
|
|
|
|
|
let mut unpack_stmts: Vec<syn::Stmt> = Vec::new();
|
|
|
|
let mut unpack_exprs: Vec<syn::Expr> = Vec::new();
|
|
|
|
let mut input_type_exprs: Vec<syn::Expr> = Vec::new();
|
|
|
|
let skip_first_arg;
|
|
|
|
|
|
|
|
// Handle the first argument separately if the function has a "method like" receiver
|
|
|
|
if is_method_call {
|
|
|
|
skip_first_arg = true;
|
|
|
|
let first_arg = self.arg_list().next().unwrap();
|
|
|
|
let var = syn::Ident::new("arg0", proc_macro2::Span::call_site());
|
|
|
|
match first_arg {
|
2020-08-02 09:39:08 +02:00
|
|
|
syn::FnArg::Typed(pattern) => {
|
2020-08-01 18:52:26 +02:00
|
|
|
let arg_type: &syn::Type = {
|
|
|
|
match pattern.ty.as_ref() {
|
2020-08-02 09:39:08 +02:00
|
|
|
&syn::Type::Reference(syn::TypeReference { ref elem, .. }) => {
|
|
|
|
elem.as_ref()
|
|
|
|
}
|
2020-08-01 18:52:26 +02:00
|
|
|
ref p => p,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let downcast_span = quote_spanned!(
|
2020-08-07 01:36:15 +02:00
|
|
|
arg_type.span()=> &mut args[0usize].write_lock::<#arg_type>().unwrap());
|
2020-08-02 09:39:08 +02:00
|
|
|
unpack_stmts.push(
|
|
|
|
syn::parse2::<syn::Stmt>(quote! {
|
|
|
|
let #var: &mut _ = #downcast_span;
|
|
|
|
})
|
|
|
|
.unwrap(),
|
|
|
|
);
|
|
|
|
input_type_exprs.push(
|
|
|
|
syn::parse2::<syn::Expr>(quote_spanned!(
|
2020-08-14 06:04:24 +02:00
|
|
|
arg_type.span()=> TypeId::of::<#arg_type>()
|
2020-08-02 09:39:08 +02:00
|
|
|
))
|
|
|
|
.unwrap(),
|
|
|
|
);
|
|
|
|
}
|
2020-08-01 18:52:26 +02:00
|
|
|
syn::FnArg::Receiver(_) => todo!("true self parameters not implemented yet"),
|
|
|
|
}
|
|
|
|
unpack_exprs.push(syn::parse2::<syn::Expr>(quote! { #var }).unwrap());
|
|
|
|
} else {
|
|
|
|
skip_first_arg = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle the rest of the arguments, which all are passed by value.
|
|
|
|
//
|
|
|
|
// The only exception is strings, which need to be downcast to ImmutableString to enable a
|
|
|
|
// zero-copy conversion to &str by reference.
|
|
|
|
let str_type_path = syn::parse2::<syn::Path>(quote! { str }).unwrap();
|
|
|
|
for (i, arg) in self.arg_list().enumerate().skip(skip_first_arg as usize) {
|
|
|
|
let var = syn::Ident::new(&format!("arg{}", i), proc_macro2::Span::call_site());
|
|
|
|
let is_str_ref;
|
|
|
|
match arg {
|
2020-08-02 09:39:08 +02:00
|
|
|
syn::FnArg::Typed(pattern) => {
|
2020-08-01 18:52:26 +02:00
|
|
|
let arg_type: &syn::Type = pattern.ty.as_ref();
|
|
|
|
let downcast_span = match pattern.ty.as_ref() {
|
2020-08-02 09:39:08 +02:00
|
|
|
&syn::Type::Reference(syn::TypeReference {
|
|
|
|
mutability: None,
|
|
|
|
ref elem,
|
|
|
|
..
|
|
|
|
}) => match elem.as_ref() {
|
|
|
|
&syn::Type::Path(ref p) if p.path == str_type_path => {
|
|
|
|
is_str_ref = true;
|
|
|
|
quote_spanned!(arg_type.span()=>
|
2020-08-14 06:04:24 +02:00
|
|
|
mem::take(args[#i])
|
2020-08-12 02:05:52 +02:00
|
|
|
.clone().cast::<ImmutableString>())
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
2020-08-02 09:39:08 +02:00
|
|
|
_ => panic!("internal error: why wasn't this found earlier!?"),
|
2020-08-01 18:52:26 +02:00
|
|
|
},
|
|
|
|
_ => {
|
|
|
|
is_str_ref = false;
|
|
|
|
quote_spanned!(arg_type.span()=>
|
2020-08-14 06:04:24 +02:00
|
|
|
mem::take(args[#i]).clone().cast::<#arg_type>())
|
2020-08-02 09:39:08 +02:00
|
|
|
}
|
2020-08-01 18:52:26 +02:00
|
|
|
};
|
|
|
|
|
2020-08-02 09:39:08 +02:00
|
|
|
unpack_stmts.push(
|
|
|
|
syn::parse2::<syn::Stmt>(quote! {
|
|
|
|
let #var = #downcast_span;
|
|
|
|
})
|
|
|
|
.unwrap(),
|
|
|
|
);
|
2020-08-01 18:52:26 +02:00
|
|
|
if !is_str_ref {
|
2020-08-02 09:39:08 +02:00
|
|
|
input_type_exprs.push(
|
|
|
|
syn::parse2::<syn::Expr>(quote_spanned!(
|
2020-08-14 06:04:24 +02:00
|
|
|
arg_type.span()=> TypeId::of::<#arg_type>()
|
2020-08-02 09:39:08 +02:00
|
|
|
))
|
|
|
|
.unwrap(),
|
|
|
|
);
|
2020-08-01 18:52:26 +02:00
|
|
|
} else {
|
2020-08-02 09:39:08 +02:00
|
|
|
input_type_exprs.push(
|
|
|
|
syn::parse2::<syn::Expr>(quote_spanned!(
|
2020-08-14 06:04:24 +02:00
|
|
|
arg_type.span()=> TypeId::of::<ImmutableString>()
|
2020-08-02 09:39:08 +02:00
|
|
|
))
|
|
|
|
.unwrap(),
|
|
|
|
);
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
2020-08-02 09:39:08 +02:00
|
|
|
}
|
2020-08-01 18:52:26 +02:00
|
|
|
syn::FnArg::Receiver(_) => panic!("internal error: how did this happen!?"),
|
|
|
|
}
|
|
|
|
if !is_str_ref {
|
|
|
|
unpack_exprs.push(syn::parse2::<syn::Expr>(quote! { #var }).unwrap());
|
|
|
|
} else {
|
|
|
|
unpack_exprs.push(syn::parse2::<syn::Expr>(quote! { &#var }).unwrap());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// In method calls, the first argument will need to be mutably borrowed. Because Rust marks
|
|
|
|
// that as needing to borrow the entire array, all of the previous argument unpacking via
|
|
|
|
// clone needs to happen first.
|
|
|
|
if is_method_call {
|
|
|
|
let arg0 = unpack_stmts.remove(0);
|
|
|
|
unpack_stmts.push(arg0);
|
|
|
|
}
|
|
|
|
|
2020-08-09 21:19:39 +02:00
|
|
|
// Handle "raw returns", aka cases where the result is a dynamic or an error.
|
|
|
|
//
|
|
|
|
// This allows skipping the Dynamic::from wrap.
|
2020-08-28 05:49:56 +02:00
|
|
|
let return_span = self.return_type().map(|r| r.span())
|
|
|
|
.unwrap_or_else(|| proc_macro2::Span::call_site());
|
2020-08-09 21:19:39 +02:00
|
|
|
let return_expr = if !self.params.return_raw {
|
2020-08-28 05:49:56 +02:00
|
|
|
quote_spanned! { return_span=>
|
2020-08-16 12:24:42 +02:00
|
|
|
Ok(Dynamic::from(#sig_name(#(#unpack_exprs),*)))
|
2020-08-09 21:19:39 +02:00
|
|
|
}
|
|
|
|
} else {
|
2020-08-28 05:49:56 +02:00
|
|
|
quote_spanned! { return_span=>
|
2020-08-16 12:24:42 +02:00
|
|
|
#sig_name(#(#unpack_exprs),*)
|
2020-08-09 21:19:39 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-08-01 18:52:26 +02:00
|
|
|
let type_name = syn::Ident::new(on_type_name, proc_macro2::Span::call_site());
|
|
|
|
quote! {
|
2020-08-03 02:27:19 +02:00
|
|
|
impl PluginFunction for #type_name {
|
2020-08-01 18:52:26 +02:00
|
|
|
fn call(&self,
|
2020-08-03 02:27:19 +02:00
|
|
|
args: &mut [&mut Dynamic], pos: Position
|
|
|
|
) -> Result<Dynamic, Box<EvalAltResult>> {
|
2020-08-14 05:06:30 +02:00
|
|
|
debug_assert_eq!(args.len(), #arg_count,
|
|
|
|
"wrong arg count: {} != {}",
|
|
|
|
args.len(), #arg_count);
|
2020-08-01 18:52:26 +02:00
|
|
|
#(#unpack_stmts)*
|
2020-08-09 21:19:39 +02:00
|
|
|
#return_expr
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_method_call(&self) -> bool { #is_method_call }
|
|
|
|
fn is_varadic(&self) -> bool { false }
|
2020-08-03 02:27:19 +02:00
|
|
|
fn clone_boxed(&self) -> Box<dyn PluginFunction> { Box::new(#type_name()) }
|
2020-08-14 06:04:24 +02:00
|
|
|
fn input_types(&self) -> Box<[TypeId]> {
|
|
|
|
new_vec![#(#input_type_exprs),*].into_boxed_slice()
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod function_tests {
|
|
|
|
use super::ExportedFn;
|
|
|
|
|
|
|
|
use proc_macro2::TokenStream;
|
|
|
|
use quote::quote;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn minimal_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn do_nothing() { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_eq!(&item_fn.name().to_string(), "do_nothing");
|
|
|
|
assert!(!item_fn.mutable_receiver());
|
|
|
|
assert!(item_fn.is_public());
|
|
|
|
assert!(item_fn.return_type().is_none());
|
|
|
|
assert_eq!(item_fn.arg_list().count(), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn one_arg_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn do_something(x: usize) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_eq!(&item_fn.name().to_string(), "do_something");
|
|
|
|
assert_eq!(item_fn.arg_list().count(), 1);
|
|
|
|
assert!(!item_fn.mutable_receiver());
|
|
|
|
assert!(item_fn.is_public());
|
|
|
|
assert!(item_fn.return_type().is_none());
|
|
|
|
|
2020-08-02 09:39:08 +02:00
|
|
|
assert_eq!(
|
|
|
|
item_fn.arg_list().next().unwrap(),
|
|
|
|
&syn::parse2::<syn::FnArg>(quote! { x: usize }).unwrap()
|
|
|
|
);
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn two_arg_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn do_something(x: usize, y: f32) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_eq!(&item_fn.name().to_string(), "do_something");
|
|
|
|
assert_eq!(item_fn.arg_list().count(), 2);
|
|
|
|
assert!(!item_fn.mutable_receiver());
|
|
|
|
assert!(item_fn.is_public());
|
|
|
|
assert!(item_fn.return_type().is_none());
|
|
|
|
|
2020-08-02 09:39:08 +02:00
|
|
|
assert_eq!(
|
|
|
|
item_fn.arg_list().next().unwrap(),
|
|
|
|
&syn::parse2::<syn::FnArg>(quote! { x: usize }).unwrap()
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2020-08-24 00:53:30 +02:00
|
|
|
item_fn.arg_list().nth(1).unwrap(),
|
2020-08-02 09:39:08 +02:00
|
|
|
&syn::parse2::<syn::FnArg>(quote! { y: f32 }).unwrap()
|
|
|
|
);
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn usize_returning_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn get_magic_number() -> usize { 42 }
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_eq!(&item_fn.name().to_string(), "get_magic_number");
|
|
|
|
assert!(!item_fn.mutable_receiver());
|
|
|
|
assert!(item_fn.is_public());
|
|
|
|
assert_eq!(item_fn.arg_list().count(), 0);
|
2020-08-02 09:39:08 +02:00
|
|
|
assert_eq!(
|
|
|
|
item_fn.return_type().unwrap(),
|
|
|
|
&syn::Type::Path(syn::TypePath {
|
|
|
|
qself: None,
|
|
|
|
path: syn::parse2::<syn::Path>(quote! { usize }).unwrap()
|
|
|
|
})
|
2020-08-01 18:52:26 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ref_returning_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn get_magic_phrase() -> &'static str { "open sesame" }
|
|
|
|
};
|
|
|
|
|
|
|
|
let err = syn::parse2::<ExportedFn>(input_tokens).unwrap_err();
|
2020-08-02 09:39:08 +02:00
|
|
|
assert_eq!(format!("{}", err), "cannot return a reference to Rhai");
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ptr_returning_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn get_magic_phrase() -> *const str { "open sesame" }
|
|
|
|
};
|
|
|
|
|
|
|
|
let err = syn::parse2::<ExportedFn>(input_tokens).unwrap_err();
|
2020-08-02 09:39:08 +02:00
|
|
|
assert_eq!(format!("{}", err), "cannot return a pointer to Rhai");
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ref_arg_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn greet(who: &Person) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let err = syn::parse2::<ExportedFn>(input_tokens).unwrap_err();
|
2020-08-02 09:39:08 +02:00
|
|
|
assert_eq!(
|
|
|
|
format!("{}", err),
|
|
|
|
"references from Rhai in this position must be mutable"
|
|
|
|
);
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ref_second_arg_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn greet(count: usize, who: &Person) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let err = syn::parse2::<ExportedFn>(input_tokens).unwrap_err();
|
2020-08-02 09:39:08 +02:00
|
|
|
assert_eq!(
|
|
|
|
format!("{}", err),
|
|
|
|
"this type in this position passes from Rhai by value"
|
|
|
|
);
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mut_ref_second_arg_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn give(item_name: &str, who: &mut Person) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let err = syn::parse2::<ExportedFn>(input_tokens).unwrap_err();
|
2020-08-02 09:39:08 +02:00
|
|
|
assert_eq!(
|
|
|
|
format!("{}", err),
|
|
|
|
"this type in this position passes from Rhai by value"
|
|
|
|
);
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn str_arg_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn log(message: &str) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_eq!(&item_fn.name().to_string(), "log");
|
|
|
|
assert_eq!(item_fn.arg_list().count(), 1);
|
|
|
|
assert!(!item_fn.mutable_receiver());
|
|
|
|
assert!(item_fn.is_public());
|
|
|
|
assert!(item_fn.return_type().is_none());
|
|
|
|
|
2020-08-02 09:39:08 +02:00
|
|
|
assert_eq!(
|
|
|
|
item_fn.arg_list().next().unwrap(),
|
|
|
|
&syn::parse2::<syn::FnArg>(quote! { message: &str }).unwrap()
|
|
|
|
);
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn str_second_arg_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn log(level: usize, message: &str) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_eq!(&item_fn.name().to_string(), "log");
|
|
|
|
assert_eq!(item_fn.arg_list().count(), 2);
|
|
|
|
assert!(!item_fn.mutable_receiver());
|
|
|
|
assert!(item_fn.is_public());
|
|
|
|
assert!(item_fn.return_type().is_none());
|
|
|
|
|
2020-08-02 09:39:08 +02:00
|
|
|
assert_eq!(
|
|
|
|
item_fn.arg_list().next().unwrap(),
|
|
|
|
&syn::parse2::<syn::FnArg>(quote! { level: usize }).unwrap()
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2020-08-24 00:53:30 +02:00
|
|
|
item_fn.arg_list().nth(1).unwrap(),
|
2020-08-02 09:39:08 +02:00
|
|
|
&syn::parse2::<syn::FnArg>(quote! { message: &str }).unwrap()
|
|
|
|
);
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn private_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
fn do_nothing() { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_eq!(&item_fn.name().to_string(), "do_nothing");
|
|
|
|
assert!(!item_fn.mutable_receiver());
|
|
|
|
assert!(!item_fn.is_public());
|
|
|
|
assert!(item_fn.return_type().is_none());
|
|
|
|
assert_eq!(item_fn.arg_list().count(), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn receiver_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn act_upon(&mut self) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_eq!(&item_fn.name().to_string(), "act_upon");
|
|
|
|
assert!(item_fn.mutable_receiver());
|
|
|
|
assert!(item_fn.is_public());
|
|
|
|
assert!(item_fn.return_type().is_none());
|
|
|
|
assert_eq!(item_fn.arg_list().count(), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn immutable_receiver_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn act_upon(&self) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_eq!(&item_fn.name().to_string(), "act_upon");
|
|
|
|
assert!(item_fn.mutable_receiver());
|
|
|
|
assert!(item_fn.is_public());
|
|
|
|
assert!(item_fn.return_type().is_none());
|
|
|
|
assert_eq!(item_fn.arg_list().count(), 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod generate_tests {
|
|
|
|
use super::ExportedFn;
|
|
|
|
|
|
|
|
use proc_macro2::TokenStream;
|
|
|
|
use quote::quote;
|
|
|
|
|
|
|
|
fn assert_streams_eq(actual: TokenStream, expected: TokenStream) {
|
|
|
|
let actual = actual.to_string();
|
|
|
|
let expected = expected.to_string();
|
|
|
|
if &actual != &expected {
|
|
|
|
let mut counter = 0;
|
2020-08-02 09:39:08 +02:00
|
|
|
let iter = actual
|
|
|
|
.chars()
|
|
|
|
.zip(expected.chars())
|
2020-08-01 18:52:26 +02:00
|
|
|
.inspect(|_| counter += 1)
|
|
|
|
.skip_while(|(a, e)| *a == *e);
|
|
|
|
let (actual_diff, expected_diff) = {
|
|
|
|
let mut actual_diff = String::new();
|
|
|
|
let mut expected_diff = String::new();
|
|
|
|
for (a, e) in iter.take(50) {
|
|
|
|
actual_diff.push(a);
|
|
|
|
expected_diff.push(e);
|
|
|
|
}
|
|
|
|
(actual_diff, expected_diff)
|
|
|
|
};
|
|
|
|
eprintln!("actual != expected, diverge at char {}", counter);
|
|
|
|
}
|
|
|
|
assert_eq!(actual, expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-08-02 09:39:08 +02:00
|
|
|
fn minimal_fn() {
|
2020-08-01 18:52:26 +02:00
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn do_nothing() { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let expected_tokens = quote! {
|
|
|
|
#[allow(unused)]
|
2020-08-06 08:10:27 +02:00
|
|
|
pub mod rhai_fn_do_nothing {
|
2020-08-01 18:52:26 +02:00
|
|
|
use super::*;
|
2020-08-03 02:27:19 +02:00
|
|
|
struct Token();
|
|
|
|
impl PluginFunction for Token {
|
2020-08-01 18:52:26 +02:00
|
|
|
fn call(&self,
|
2020-08-03 02:27:19 +02:00
|
|
|
args: &mut [&mut Dynamic], pos: Position
|
|
|
|
) -> Result<Dynamic, Box<EvalAltResult>> {
|
2020-08-14 05:06:30 +02:00
|
|
|
debug_assert_eq!(args.len(), 0usize,
|
|
|
|
"wrong arg count: {} != {}", args.len(), 0usize);
|
2020-08-03 02:27:19 +02:00
|
|
|
Ok(Dynamic::from(do_nothing()))
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_method_call(&self) -> bool { false }
|
|
|
|
fn is_varadic(&self) -> bool { false }
|
2020-08-03 02:27:19 +02:00
|
|
|
fn clone_boxed(&self) -> Box<dyn PluginFunction> { Box::new(Token()) }
|
2020-08-14 06:04:24 +02:00
|
|
|
fn input_types(&self) -> Box<[TypeId]> {
|
|
|
|
new_vec![].into_boxed_slice()
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
}
|
2020-08-06 08:10:27 +02:00
|
|
|
pub fn token_callable() -> CallableFunction {
|
2020-08-03 02:27:19 +02:00
|
|
|
CallableFunction::from_plugin(Token())
|
|
|
|
}
|
2020-08-14 06:04:24 +02:00
|
|
|
pub fn token_input_types() -> Box<[TypeId]> {
|
2020-08-03 02:27:19 +02:00
|
|
|
Token().input_types()
|
|
|
|
}
|
2020-08-13 06:34:53 +02:00
|
|
|
type EvalBox = Box<EvalAltResult>;
|
|
|
|
pub fn dynamic_result_fn() -> Result<Dynamic, EvalBox> {
|
|
|
|
Ok(Dynamic::from(super::do_nothing()))
|
|
|
|
}
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_streams_eq(item_fn.generate(), expected_tokens);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn one_arg_usize_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn do_something(x: usize) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let expected_tokens = quote! {
|
|
|
|
#[allow(unused)]
|
2020-08-06 08:10:27 +02:00
|
|
|
pub mod rhai_fn_do_something {
|
2020-08-01 18:52:26 +02:00
|
|
|
use super::*;
|
2020-08-03 02:27:19 +02:00
|
|
|
struct Token();
|
|
|
|
impl PluginFunction for Token {
|
2020-08-01 18:52:26 +02:00
|
|
|
fn call(&self,
|
2020-08-03 02:27:19 +02:00
|
|
|
args: &mut [&mut Dynamic], pos: Position
|
|
|
|
) -> Result<Dynamic, Box<EvalAltResult>> {
|
2020-08-14 05:06:30 +02:00
|
|
|
debug_assert_eq!(args.len(), 1usize,
|
|
|
|
"wrong arg count: {} != {}", args.len(), 1usize);
|
2020-08-14 06:04:24 +02:00
|
|
|
let arg0 = mem::take(args[0usize]).clone().cast::<usize>();
|
2020-08-03 02:27:19 +02:00
|
|
|
Ok(Dynamic::from(do_something(arg0)))
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_method_call(&self) -> bool { false }
|
|
|
|
fn is_varadic(&self) -> bool { false }
|
2020-08-03 02:27:19 +02:00
|
|
|
fn clone_boxed(&self) -> Box<dyn PluginFunction> { Box::new(Token()) }
|
2020-08-14 06:04:24 +02:00
|
|
|
fn input_types(&self) -> Box<[TypeId]> {
|
|
|
|
new_vec![TypeId::of::<usize>()].into_boxed_slice()
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
}
|
2020-08-06 08:10:27 +02:00
|
|
|
pub fn token_callable() -> CallableFunction {
|
2020-08-03 02:27:19 +02:00
|
|
|
CallableFunction::from_plugin(Token())
|
|
|
|
}
|
2020-08-14 06:04:24 +02:00
|
|
|
pub fn token_input_types() -> Box<[TypeId]> {
|
2020-08-03 02:27:19 +02:00
|
|
|
Token().input_types()
|
|
|
|
}
|
2020-08-13 06:34:53 +02:00
|
|
|
type EvalBox = Box<EvalAltResult>;
|
|
|
|
pub fn dynamic_result_fn(x: usize) -> Result<Dynamic, EvalBox> {
|
|
|
|
Ok(Dynamic::from(super::do_something(x)))
|
|
|
|
}
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_streams_eq(item_fn.generate(), expected_tokens);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn one_arg_usize_fn_impl() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn do_something(x: usize) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
let expected_tokens = quote! {
|
2020-08-03 02:27:19 +02:00
|
|
|
impl PluginFunction for MyType {
|
2020-08-01 18:52:26 +02:00
|
|
|
fn call(&self,
|
2020-08-03 02:27:19 +02:00
|
|
|
args: &mut [&mut Dynamic], pos: Position
|
|
|
|
) -> Result<Dynamic, Box<EvalAltResult>> {
|
2020-08-14 05:06:30 +02:00
|
|
|
debug_assert_eq!(args.len(), 1usize,
|
|
|
|
"wrong arg count: {} != {}", args.len(), 1usize);
|
2020-08-14 06:04:24 +02:00
|
|
|
let arg0 = mem::take(args[0usize]).clone().cast::<usize>();
|
2020-08-03 02:27:19 +02:00
|
|
|
Ok(Dynamic::from(do_something(arg0)))
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_method_call(&self) -> bool { false }
|
|
|
|
fn is_varadic(&self) -> bool { false }
|
2020-08-03 02:27:19 +02:00
|
|
|
fn clone_boxed(&self) -> Box<dyn PluginFunction> { Box::new(MyType()) }
|
2020-08-14 06:04:24 +02:00
|
|
|
fn input_types(&self) -> Box<[TypeId]> {
|
|
|
|
new_vec![TypeId::of::<usize>()].into_boxed_slice()
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_streams_eq(item_fn.generate_impl("MyType"), expected_tokens);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn two_arg_returning_usize_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn add_together(x: usize, y: usize) -> usize { x + y }
|
|
|
|
};
|
|
|
|
|
|
|
|
let expected_tokens = quote! {
|
|
|
|
#[allow(unused)]
|
2020-08-06 08:10:27 +02:00
|
|
|
pub mod rhai_fn_add_together {
|
2020-08-01 18:52:26 +02:00
|
|
|
use super::*;
|
2020-08-03 02:27:19 +02:00
|
|
|
struct Token();
|
|
|
|
impl PluginFunction for Token {
|
2020-08-01 18:52:26 +02:00
|
|
|
fn call(&self,
|
2020-08-03 02:27:19 +02:00
|
|
|
args: &mut [&mut Dynamic], pos: Position
|
|
|
|
) -> Result<Dynamic, Box<EvalAltResult>> {
|
2020-08-14 05:06:30 +02:00
|
|
|
debug_assert_eq!(args.len(), 2usize,
|
|
|
|
"wrong arg count: {} != {}", args.len(), 2usize);
|
2020-08-14 06:04:24 +02:00
|
|
|
let arg0 = mem::take(args[0usize]).clone().cast::<usize>();
|
|
|
|
let arg1 = mem::take(args[1usize]).clone().cast::<usize>();
|
2020-08-03 02:27:19 +02:00
|
|
|
Ok(Dynamic::from(add_together(arg0, arg1)))
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_method_call(&self) -> bool { false }
|
|
|
|
fn is_varadic(&self) -> bool { false }
|
2020-08-03 02:27:19 +02:00
|
|
|
fn clone_boxed(&self) -> Box<dyn PluginFunction> { Box::new(Token()) }
|
2020-08-14 06:04:24 +02:00
|
|
|
fn input_types(&self) -> Box<[TypeId]> {
|
|
|
|
new_vec![TypeId::of::<usize>(),
|
|
|
|
TypeId::of::<usize>()].into_boxed_slice()
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
}
|
2020-08-06 08:10:27 +02:00
|
|
|
pub fn token_callable() -> CallableFunction {
|
2020-08-03 02:27:19 +02:00
|
|
|
CallableFunction::from_plugin(Token())
|
|
|
|
}
|
2020-08-14 06:04:24 +02:00
|
|
|
pub fn token_input_types() -> Box<[TypeId]> {
|
2020-08-03 02:27:19 +02:00
|
|
|
Token().input_types()
|
|
|
|
}
|
2020-08-13 06:34:53 +02:00
|
|
|
type EvalBox = Box<EvalAltResult>;
|
|
|
|
pub fn dynamic_result_fn(x: usize, y: usize) -> Result<Dynamic, EvalBox> {
|
|
|
|
Ok(Dynamic::from(super::add_together(x, y)))
|
|
|
|
}
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert_streams_eq(item_fn.generate(), expected_tokens);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn mut_arg_usize_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn increment(x: &mut usize, y: usize) { *x += y; }
|
|
|
|
};
|
|
|
|
|
|
|
|
let expected_tokens = quote! {
|
|
|
|
#[allow(unused)]
|
2020-08-06 08:10:27 +02:00
|
|
|
pub mod rhai_fn_increment {
|
2020-08-01 18:52:26 +02:00
|
|
|
use super::*;
|
2020-08-03 02:27:19 +02:00
|
|
|
struct Token();
|
|
|
|
impl PluginFunction for Token {
|
2020-08-01 18:52:26 +02:00
|
|
|
fn call(&self,
|
2020-08-03 02:27:19 +02:00
|
|
|
args: &mut [&mut Dynamic], pos: Position
|
|
|
|
) -> Result<Dynamic, Box<EvalAltResult>> {
|
2020-08-14 05:06:30 +02:00
|
|
|
debug_assert_eq!(args.len(), 2usize,
|
|
|
|
"wrong arg count: {} != {}", args.len(), 2usize);
|
2020-08-14 06:04:24 +02:00
|
|
|
let arg1 = mem::take(args[1usize]).clone().cast::<usize>();
|
2020-08-07 01:36:15 +02:00
|
|
|
let arg0: &mut _ = &mut args[0usize].write_lock::<usize>().unwrap();
|
2020-08-03 02:27:19 +02:00
|
|
|
Ok(Dynamic::from(increment(arg0, arg1)))
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_method_call(&self) -> bool { true }
|
|
|
|
fn is_varadic(&self) -> bool { false }
|
2020-08-03 02:27:19 +02:00
|
|
|
fn clone_boxed(&self) -> Box<dyn PluginFunction> { Box::new(Token()) }
|
2020-08-14 06:04:24 +02:00
|
|
|
fn input_types(&self) -> Box<[TypeId]> {
|
|
|
|
new_vec![TypeId::of::<usize>(),
|
|
|
|
TypeId::of::<usize>()].into_boxed_slice()
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
}
|
2020-08-06 08:10:27 +02:00
|
|
|
pub fn token_callable() -> CallableFunction {
|
2020-08-03 02:27:19 +02:00
|
|
|
CallableFunction::from_plugin(Token())
|
|
|
|
}
|
2020-08-14 06:04:24 +02:00
|
|
|
pub fn token_input_types() -> Box<[TypeId]> {
|
2020-08-03 02:27:19 +02:00
|
|
|
Token().input_types()
|
|
|
|
}
|
2020-08-13 06:34:53 +02:00
|
|
|
type EvalBox = Box<EvalAltResult>;
|
|
|
|
pub fn dynamic_result_fn(x: &mut usize, y: usize) -> Result<Dynamic, EvalBox> {
|
|
|
|
Ok(Dynamic::from(super::increment(x, y)))
|
|
|
|
}
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert!(item_fn.mutable_receiver());
|
|
|
|
assert_streams_eq(item_fn.generate(), expected_tokens);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn str_arg_fn() {
|
|
|
|
let input_tokens: TokenStream = quote! {
|
|
|
|
pub fn special_print(message: &str) { eprintln!("----{}----", message); }
|
|
|
|
};
|
|
|
|
|
|
|
|
let expected_tokens = quote! {
|
|
|
|
#[allow(unused)]
|
2020-08-06 08:10:27 +02:00
|
|
|
pub mod rhai_fn_special_print {
|
2020-08-01 18:52:26 +02:00
|
|
|
use super::*;
|
2020-08-03 02:27:19 +02:00
|
|
|
struct Token();
|
|
|
|
impl PluginFunction for Token {
|
2020-08-01 18:52:26 +02:00
|
|
|
fn call(&self,
|
2020-08-03 02:27:19 +02:00
|
|
|
args: &mut [&mut Dynamic], pos: Position
|
|
|
|
) -> Result<Dynamic, Box<EvalAltResult>> {
|
2020-08-14 05:06:30 +02:00
|
|
|
debug_assert_eq!(args.len(), 1usize,
|
|
|
|
"wrong arg count: {} != {}", args.len(), 1usize);
|
2020-08-14 06:04:24 +02:00
|
|
|
let arg0 = mem::take(args[0usize]).clone().cast::<ImmutableString>();
|
2020-08-03 02:27:19 +02:00
|
|
|
Ok(Dynamic::from(special_print(&arg0)))
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_method_call(&self) -> bool { false }
|
|
|
|
fn is_varadic(&self) -> bool { false }
|
2020-08-03 02:27:19 +02:00
|
|
|
fn clone_boxed(&self) -> Box<dyn PluginFunction> { Box::new(Token()) }
|
2020-08-14 06:04:24 +02:00
|
|
|
fn input_types(&self) -> Box<[TypeId]> {
|
|
|
|
new_vec![TypeId::of::<ImmutableString>()].into_boxed_slice()
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
}
|
2020-08-06 08:10:27 +02:00
|
|
|
pub fn token_callable() -> CallableFunction {
|
2020-08-03 02:27:19 +02:00
|
|
|
CallableFunction::from_plugin(Token())
|
|
|
|
}
|
2020-08-14 06:04:24 +02:00
|
|
|
pub fn token_input_types() -> Box<[TypeId]> {
|
2020-08-03 02:27:19 +02:00
|
|
|
Token().input_types()
|
|
|
|
}
|
2020-08-13 06:34:53 +02:00
|
|
|
type EvalBox = Box<EvalAltResult>;
|
|
|
|
pub fn dynamic_result_fn(message: &str) -> Result<Dynamic, EvalBox> {
|
|
|
|
Ok(Dynamic::from(super::special_print(message)))
|
|
|
|
}
|
2020-08-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let item_fn = syn::parse2::<ExportedFn>(input_tokens).unwrap();
|
|
|
|
assert!(!item_fn.mutable_receiver());
|
|
|
|
assert_streams_eq(item_fn.generate(), expected_tokens);
|
|
|
|
}
|
|
|
|
}
|