2019-06-13 23:56:59 +02:00
|
|
|
use proc_macro2::TokenStream as TokenStream2;
|
2020-05-26 12:52:10 +02:00
|
|
|
use quote::{quote, format_ident};
|
2020-06-11 19:18:29 +02:00
|
|
|
use rtic_syntax::{ast::App, Context};
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
use crate::{
|
|
|
|
analyze::Analysis,
|
|
|
|
check::Extra,
|
2020-09-01 19:04:55 +02:00
|
|
|
codegen::{locals, module, resources_struct},
|
2019-06-13 23:56:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Generates support code for `#[idle]` functions
|
|
|
|
pub fn codegen(
|
|
|
|
app: &App,
|
|
|
|
analysis: &Analysis,
|
|
|
|
extra: &Extra,
|
|
|
|
) -> (
|
|
|
|
// const_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>,
|
2020-05-26 12:52:10 +02:00
|
|
|
// user_idle_imports
|
|
|
|
Vec<TokenStream2>,
|
2019-06-13 23:56:59 +02:00
|
|
|
// call_idle
|
|
|
|
TokenStream2,
|
|
|
|
) {
|
2020-08-27 13:21:56 +02:00
|
|
|
if app.idles.len() > 0 {
|
2020-09-01 18:12:42 +02:00
|
|
|
let idle = &app.idles.first().unwrap();
|
2019-06-13 23:56:59 +02:00
|
|
|
let mut needs_lt = false;
|
|
|
|
let mut const_app = None;
|
|
|
|
let mut root_idle = vec![];
|
|
|
|
let mut locals_pat = None;
|
|
|
|
let mut locals_new = None;
|
|
|
|
|
2020-05-26 12:52:10 +02:00
|
|
|
let mut user_idle_imports = vec![];
|
|
|
|
|
|
|
|
let name = &idle.name;
|
|
|
|
|
2019-06-13 23:56:59 +02:00
|
|
|
if !idle.args.resources.is_empty() {
|
|
|
|
let (item, constructor) =
|
2020-08-27 13:21:56 +02:00
|
|
|
resources_struct::codegen(Context::Idle, 0, &mut needs_lt, app, analysis);
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
root_idle.push(item);
|
|
|
|
const_app = Some(constructor);
|
2020-05-26 12:52:10 +02:00
|
|
|
|
|
|
|
let name_resource = format_ident!("{}Resources", name);
|
|
|
|
user_idle_imports.push(quote!(
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
use super::#name_resource;
|
|
|
|
));
|
|
|
|
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if !idle.locals.is_empty() {
|
2020-08-27 13:21:56 +02:00
|
|
|
let (locals, pat) = locals::codegen(Context::Idle, &idle.locals, app);
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
locals_new = Some(quote!(#name::Locals::new()));
|
|
|
|
locals_pat = Some(pat);
|
|
|
|
root_idle.push(locals);
|
|
|
|
}
|
|
|
|
|
2020-08-27 13:21:56 +02:00
|
|
|
root_idle.push(module::codegen(Context::Idle, needs_lt, app, extra));
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
let attrs = &idle.attrs;
|
|
|
|
let context = &idle.context;
|
|
|
|
let stmts = &idle.stmts;
|
2019-08-20 15:11:24 +02:00
|
|
|
let locals_pat = locals_pat.iter();
|
2019-06-13 23:56:59 +02:00
|
|
|
let user_idle = Some(quote!(
|
|
|
|
#(#attrs)*
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
fn #name(#(#locals_pat,)* #context: #name::Context) -> ! {
|
2020-06-11 19:18:29 +02:00
|
|
|
use rtic::Mutex as _;
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
#(#stmts)*
|
|
|
|
}
|
|
|
|
));
|
2020-05-26 12:52:10 +02:00
|
|
|
user_idle_imports.push(quote!(
|
|
|
|
#(#attrs)*
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
#cfg_core
|
|
|
|
use super::#name;
|
|
|
|
));
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2019-08-20 15:11:24 +02:00
|
|
|
let locals_new = locals_new.iter();
|
2020-05-29 14:50:28 +02:00
|
|
|
let call_idle = quote!(crate::#name(
|
2019-06-13 23:56:59 +02:00
|
|
|
#(#locals_new,)*
|
2020-06-11 19:18:29 +02:00
|
|
|
#name::Context::new(&rtic::export::Priority::new(0))
|
2019-06-13 23:56:59 +02:00
|
|
|
));
|
|
|
|
|
2020-05-26 12:52:10 +02:00
|
|
|
(const_app, root_idle, user_idle, user_idle_imports, call_idle)
|
2019-06-13 23:56:59 +02:00
|
|
|
} else {
|
|
|
|
(
|
|
|
|
None,
|
|
|
|
vec![],
|
|
|
|
None,
|
2020-05-26 12:52:10 +02:00
|
|
|
vec![],
|
2019-06-13 23:56:59 +02:00
|
|
|
quote!(loop {
|
2020-06-11 19:18:29 +02:00
|
|
|
rtic::export::wfi()
|
2019-06-13 23:56:59 +02:00
|
|
|
}),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|