mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 12:42:52 +01:00
f96b25fdf2
More work
96 lines
2.6 KiB
Rust
96 lines
2.6 KiB
Rust
use proc_macro2::TokenStream as TokenStream2;
|
|
use quote::quote;
|
|
use rtic_syntax::{ast::App, Context};
|
|
|
|
use crate::{
|
|
analyze::Analysis,
|
|
check::Extra,
|
|
codegen::{locals, module, resources_struct},
|
|
};
|
|
|
|
/// Generates support code for `#[idle]` functions
|
|
pub fn codegen(
|
|
app: &App,
|
|
analysis: &Analysis,
|
|
extra: &Extra,
|
|
) -> (
|
|
// mod_app_idle -- the `${idle}Resources` constructor
|
|
Option<TokenStream2>,
|
|
// root_idle -- items that must be placed in the root of the crate:
|
|
// - the `${idle}Locals` struct
|
|
// - the `${idle}Resources` struct
|
|
// - the `${idle}` module, which contains types like `${idle}::Context`
|
|
Vec<TokenStream2>,
|
|
// user_idle
|
|
Option<TokenStream2>,
|
|
// call_idle
|
|
TokenStream2,
|
|
) {
|
|
if app.idles.len() > 0 {
|
|
let idle = &app.idles.first().unwrap();
|
|
let mut needs_lt = false;
|
|
let mut mod_app = None;
|
|
let mut root_idle = vec![];
|
|
let mut locals_pat = None;
|
|
let mut locals_new = None;
|
|
|
|
let name = &idle.name;
|
|
|
|
if !idle.args.resources.is_empty() {
|
|
let (item, constructor) =
|
|
resources_struct::codegen(Context::Idle, 0, &mut needs_lt, app, analysis);
|
|
|
|
root_idle.push(item);
|
|
mod_app = Some(constructor);
|
|
}
|
|
|
|
if !idle.locals.is_empty() {
|
|
let (locals, pat) = locals::codegen(Context::Idle, &idle.locals, app);
|
|
|
|
locals_new = Some(quote!(#name::Locals::new()));
|
|
locals_pat = Some(pat);
|
|
root_idle.push(locals);
|
|
}
|
|
|
|
root_idle.push(module::codegen(
|
|
Context::Idle,
|
|
needs_lt,
|
|
app,
|
|
analysis,
|
|
extra,
|
|
));
|
|
|
|
let attrs = &idle.attrs;
|
|
let context = &idle.context;
|
|
let stmts = &idle.stmts;
|
|
let locals_pat = locals_pat.iter();
|
|
let user_idle = Some(quote!(
|
|
#(#attrs)*
|
|
#[allow(non_snake_case)]
|
|
fn #name(#(#locals_pat,)* #context: #name::Context) -> ! {
|
|
use rtic::Mutex as _;
|
|
|
|
#(#stmts)*
|
|
}
|
|
));
|
|
|
|
let app_name = &app.name;
|
|
let app_path = quote! {crate::#app_name};
|
|
let locals_new = locals_new.iter();
|
|
let call_idle = quote!(#app_path::#name(
|
|
#(#locals_new,)*
|
|
#name::Context::new(&rtic::export::Priority::new(0))
|
|
));
|
|
|
|
(mod_app, root_idle, user_idle, call_idle)
|
|
} else {
|
|
(
|
|
None,
|
|
vec![],
|
|
None,
|
|
quote!(loop {
|
|
rtic::export::wfi()
|
|
}),
|
|
)
|
|
}
|
|
}
|