rhai/codegen/src/module.rs

328 lines
10 KiB
Rust
Raw Normal View History

2020-08-01 18:52:26 +02:00
use quote::{quote, ToTokens};
2020-08-24 00:53:30 +02:00
use syn::{parse::Parse, parse::ParseStream};
2020-08-01 18:52:26 +02:00
2020-08-24 00:53:30 +02:00
use crate::function::ExportedFn;
2020-08-01 18:52:26 +02:00
use crate::rhai_module::ExportedConst;
2020-08-14 06:04:24 +02:00
#[cfg(no_std)]
use alloc::vec as new_vec;
#[cfg(not(no_std))]
use std::vec as new_vec;
#[cfg(no_std)]
use core::mem;
2020-08-22 06:05:18 +02:00
#[cfg(not(no_std))]
use std::mem;
2020-08-14 06:04:24 +02:00
use std::borrow::Cow;
use crate::attrs::{AttrItem, ExportInfo, ExportScope, ExportedParams};
use crate::function::ExportedFnParams;
#[derive(Debug, Default)]
pub(crate) struct ExportedModParams {
pub name: Option<String>,
skip: bool,
pub scope: ExportScope,
}
impl Parse for ExportedModParams {
fn parse(args: ParseStream) -> syn::Result<Self> {
if args.is_empty() {
return Ok(ExportedModParams::default());
}
2020-08-24 00:53:30 +02:00
let info = crate::attrs::parse_attr_items(args)?;
Self::from_info(info)
}
}
impl ExportedParams for ExportedModParams {
fn parse_stream(args: ParseStream) -> syn::Result<Self> {
Self::parse(args)
}
fn no_attrs() -> Self {
Default::default()
}
2020-08-24 00:53:30 +02:00
fn from_info(info: ExportInfo) -> syn::Result<Self> {
let ExportInfo { items: attrs, .. } = info;
let mut name = None;
let mut skip = false;
let mut scope = ExportScope::default();
2020-08-24 00:53:30 +02:00
for attr in attrs {
2020-09-09 23:24:37 +02:00
let AttrItem { key, value, .. } = attr;
2020-08-24 00:53:30 +02:00
match (key.to_string().as_ref(), value) {
("name", Some(s)) => name = Some(s.value()),
2020-08-24 00:53:30 +02:00
("name", None) => return Err(syn::Error::new(key.span(), "requires value")),
("skip", None) => skip = true,
2020-08-24 00:53:30 +02:00
("skip", Some(s)) => return Err(syn::Error::new(s.span(), "extraneous value")),
("export_prefix", Some(s)) => scope = ExportScope::Prefix(s.value()),
("export_prefix", None) => {
return Err(syn::Error::new(key.span(), "requires value"))
}
("export_all", None) => scope = ExportScope::All,
("export_all", Some(s)) => {
return Err(syn::Error::new(s.span(), "extraneous value"))
}
(attr, _) => {
return Err(syn::Error::new(
2020-08-24 00:53:30 +02:00
key.span(),
format!("unknown attribute '{}'", attr),
))
}
}
}
2020-08-24 00:53:30 +02:00
Ok(ExportedModParams {
name,
skip,
scope,
2020-08-24 00:53:30 +02:00
..Default::default()
})
}
}
2020-08-01 18:52:26 +02:00
#[derive(Debug)]
pub(crate) struct Module {
mod_all: Option<syn::ItemMod>,
fns: Vec<ExportedFn>,
consts: Vec<ExportedConst>,
submodules: Vec<Module>,
params: ExportedModParams,
2020-08-01 18:52:26 +02:00
}
impl Module {
pub fn set_params(&mut self, params: ExportedModParams) -> syn::Result<()> {
self.params = params;
Ok(())
}
}
2020-08-01 18:52:26 +02:00
impl Parse for Module {
fn parse(input: ParseStream) -> syn::Result<Self> {
let mut mod_all: syn::ItemMod = input.parse()?;
2020-08-01 18:52:26 +02:00
let fns: Vec<_>;
let mut consts: Vec<_> = new_vec![];
let mut submodules: Vec<_> = Vec::new();
if let Some((_, ref mut content)) = mod_all.content {
// Gather and parse functions.
2020-08-02 09:39:08 +02:00
fns = content
.iter_mut()
2020-08-02 09:39:08 +02:00
.filter_map(|item| match item {
syn::Item::Fn(f) => Some(f),
2020-08-02 09:39:08 +02:00
_ => None,
2020-08-01 18:52:26 +02:00
})
2020-08-24 00:53:30 +02:00
.try_fold(Vec::new(), |mut vec, itemfn| {
// #[cfg] attributes are not allowed on functions
crate::attrs::deny_cfg_attr(&itemfn.attrs)?;
let params: ExportedFnParams =
2020-08-24 00:53:30 +02:00
match crate::attrs::inner_item_attributes(&mut itemfn.attrs, "rhai_fn") {
Ok(p) => p,
Err(e) => return Err(e),
};
2020-08-01 18:52:26 +02:00
syn::parse2::<ExportedFn>(itemfn.to_token_stream())
.and_then(|mut f| {
f.set_params(params)?;
Ok(f)
})
2020-08-24 00:53:30 +02:00
.map(|f| vec.push(f))
2020-08-01 18:52:26 +02:00
.map(|_| vec)
})?;
// Gather and parse constants definitions.
for item in content.iter() {
match item {
2020-08-02 09:39:08 +02:00
syn::Item::Const(syn::ItemConst {
vis,
ref expr,
ident,
attrs,
ty,
2020-08-02 09:39:08 +02:00
..
}) => {
// #[cfg] attributes are not allowed on const declarations
2020-08-24 00:53:30 +02:00
crate::attrs::deny_cfg_attr(&attrs)?;
2020-08-02 09:39:08 +02:00
if let syn::Visibility::Public(_) = vis {
consts.push((ident.to_string(), ty.clone(), expr.as_ref().clone()));
2020-08-02 09:39:08 +02:00
}
2020-08-24 00:53:30 +02:00
}
_ => {}
}
2020-08-24 00:53:30 +02:00
}
// Gather and parse submodule definitions.
//
// They are actually removed from the module's body, because they will need
// re-generating later when generated code is added.
submodules.reserve(content.len() - fns.len() - consts.len());
let mut i = 0;
while i < content.len() {
2020-08-24 00:53:30 +02:00
if let syn::Item::Mod(_) = &content[i] {
let mut itemmod = match content.remove(i) {
syn::Item::Mod(m) => m,
_ => unreachable!(),
};
let params: ExportedModParams =
2020-08-24 00:53:30 +02:00
match crate::attrs::inner_item_attributes(&mut itemmod.attrs, "rhai_mod") {
Ok(p) => p,
Err(e) => return Err(e),
};
let module =
syn::parse2::<Module>(itemmod.to_token_stream()).and_then(|mut m| {
m.set_params(params)?;
Ok(m)
})?;
2020-08-24 00:53:30 +02:00
submodules.push(module);
} else {
i += 1;
}
}
2020-08-01 18:52:26 +02:00
} else {
2020-08-14 06:04:24 +02:00
fns = new_vec![];
2020-08-01 18:52:26 +02:00
}
Ok(Module {
mod_all: Some(mod_all),
fns,
consts,
submodules,
params: ExportedModParams::default(),
2020-08-01 18:52:26 +02:00
})
}
}
2020-09-13 16:12:11 +02:00
#[allow(dead_code)]
2020-08-01 18:52:26 +02:00
impl Module {
2020-08-22 06:05:18 +02:00
pub fn attrs(&self) -> Option<&Vec<syn::Attribute>> {
self.mod_all.as_ref().map(|m| &m.attrs)
}
pub fn module_name(&self) -> Option<&syn::Ident> {
self.mod_all.as_ref().map(|m| &m.ident)
}
pub fn exported_name(&self) -> Option<Cow<str>> {
if let Some(ref s) = self.params.name {
Some(Cow::Borrowed(s))
} else {
self.module_name().map(|m| Cow::Owned(m.to_string()))
}
}
pub fn update_scope(&mut self, parent_scope: &ExportScope) {
let keep = match (self.params.skip, parent_scope) {
(true, _) => false,
(_, ExportScope::PubOnly) => {
if let Some(ref mod_all) = self.mod_all {
matches!(mod_all.vis, syn::Visibility::Public(_))
} else {
false
}
}
(_, ExportScope::Prefix(s)) => {
if let Some(ref mod_all) = self.mod_all {
mod_all.ident.to_string().starts_with(s)
} else {
false
}
}
(_, ExportScope::All) => true,
};
self.params.skip = !keep;
}
2020-08-24 00:53:30 +02:00
pub fn skipped(&self) -> bool {
self.params.skip
}
2020-08-01 18:52:26 +02:00
pub fn generate(self) -> proc_macro2::TokenStream {
match self.generate_inner() {
Ok(tokens) => tokens,
Err(e) => e.to_compile_error(),
}
}
2020-08-24 00:53:30 +02:00
fn generate_inner(self) -> Result<proc_macro2::TokenStream, syn::Error> {
// Check for collisions if the "name" attribute was used on inner functions.
2020-08-24 00:53:30 +02:00
crate::rhai_module::check_rename_collisions(&self.fns)?;
2020-08-24 00:53:30 +02:00
// Extract the current structure of the module.
let Module {
mod_all,
mut fns,
2020-08-24 00:53:30 +02:00
consts,
mut submodules,
params,
..
} = self;
2020-08-01 18:52:26 +02:00
let mut mod_all = mod_all.unwrap();
let mod_name = mod_all.ident.clone();
let (_, orig_content) = mod_all.content.take().unwrap();
2020-08-22 06:05:18 +02:00
let mod_attrs = mem::replace(&mut mod_all.attrs, Vec::with_capacity(0));
2020-08-01 18:52:26 +02:00
2020-08-24 00:53:30 +02:00
if !params.skip {
// Generate new module items.
//
// This is done before inner module recursive generation, because that is destructive.
let mod_gen = crate::rhai_module::generate_body(
&mut fns,
&consts,
&mut submodules,
&params.scope,
);
2020-08-24 00:53:30 +02:00
// NB: submodules must have their new items for exporting generated in depth-first order
// to avoid issues caused by re-parsing them
let inner_modules: Vec<proc_macro2::TokenStream> = submodules.drain(..)
.try_fold::<Vec<proc_macro2::TokenStream>, _,
Result<Vec<proc_macro2::TokenStream>, syn::Error>>(
Vec::new(), |mut acc, m| { acc.push(m.generate_inner()?); Ok(acc) })?;
// Regenerate the module with the new content added.
Ok(quote! {
#(#mod_attrs)*
pub mod #mod_name {
#(#orig_content)*
#(#inner_modules)*
#mod_gen
}
})
} else {
// Regenerate the original module as-is.
Ok(quote! {
#(#mod_attrs)*
pub mod #mod_name {
#(#orig_content)*
}
})
}
}
pub fn name(&self) -> Option<&syn::Ident> {
self.mod_all.as_ref().map(|m| &m.ident)
}
pub fn consts(&self) -> &[ExportedConst] {
&self.consts
}
pub fn fns(&self) -> &[ExportedFn] {
&self.fns
}
pub fn submodules(&self) -> &[Module] {
&self.submodules
}
pub fn content(&self) -> Option<&Vec<syn::Item>> {
match self.mod_all {
2020-08-24 00:53:30 +02:00
Some(syn::ItemMod {
content: Some((_, ref vec)),
..
}) => Some(vec),
_ => None,
2020-08-01 18:52:26 +02:00
}
}
}