2019-06-13 23:56:59 +02:00
|
|
|
use proc_macro2::TokenStream as TokenStream2;
|
2020-10-15 18:50:17 +02:00
|
|
|
use quote::quote;
|
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,
|
2021-07-06 22:47:48 +02:00
|
|
|
codegen::{local_resources_struct, module, shared_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,
|
|
|
|
) -> (
|
2020-10-01 18:17:15 +02:00
|
|
|
// mod_app_idle -- the `${idle}Resources` constructor
|
2021-07-07 21:03:56 +02:00
|
|
|
Vec<TokenStream2>,
|
2019-06-13 23:56:59 +02:00
|
|
|
// 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,
|
|
|
|
) {
|
2021-07-06 22:47:48 +02:00
|
|
|
if let Some(idle) = &app.idle {
|
2021-07-07 21:03:56 +02:00
|
|
|
let mut shared_needs_lt = false;
|
|
|
|
let mut local_needs_lt = false;
|
|
|
|
let mut mod_app = vec![];
|
2019-06-13 23:56:59 +02:00
|
|
|
let mut root_idle = vec![];
|
|
|
|
|
2020-05-26 12:52:10 +02:00
|
|
|
let name = &idle.name;
|
|
|
|
|
2021-07-06 22:47:48 +02:00
|
|
|
if !idle.args.shared_resources.is_empty() {
|
2021-07-07 21:03:56 +02:00
|
|
|
let (item, constructor) =
|
|
|
|
shared_resources_struct::codegen(Context::Idle, &mut shared_needs_lt, app);
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
root_idle.push(item);
|
2021-07-07 21:03:56 +02:00
|
|
|
mod_app.push(constructor);
|
2019-06-13 23:56:59 +02:00
|
|
|
}
|
|
|
|
|
2021-07-07 21:03:56 +02:00
|
|
|
if !idle.args.local_resources.is_empty() {
|
|
|
|
let (item, constructor) =
|
|
|
|
local_resources_struct::codegen(Context::Idle, &mut local_needs_lt, app);
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2021-07-07 21:03:56 +02:00
|
|
|
root_idle.push(item);
|
|
|
|
|
|
|
|
mod_app.push(constructor);
|
|
|
|
}
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2020-10-11 19:41:57 +02:00
|
|
|
root_idle.push(module::codegen(
|
|
|
|
Context::Idle,
|
2021-07-07 21:03:56 +02:00
|
|
|
shared_needs_lt,
|
|
|
|
local_needs_lt,
|
2020-10-11 19:41:57 +02:00
|
|
|
app,
|
|
|
|
analysis,
|
|
|
|
extra,
|
|
|
|
));
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
let attrs = &idle.attrs;
|
|
|
|
let context = &idle.context;
|
|
|
|
let stmts = &idle.stmts;
|
|
|
|
let user_idle = Some(quote!(
|
|
|
|
#(#attrs)*
|
|
|
|
#[allow(non_snake_case)]
|
2021-07-06 22:47:48 +02:00
|
|
|
fn #name(#context: #name::Context) -> ! {
|
2020-06-11 19:18:29 +02:00
|
|
|
use rtic::Mutex as _;
|
2020-11-14 16:02:36 +01:00
|
|
|
use rtic::mutex_prelude::*;
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
#(#stmts)*
|
|
|
|
}
|
|
|
|
));
|
|
|
|
|
2021-05-06 19:40:37 +02:00
|
|
|
let call_idle = quote!(#name(
|
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-10-15 18:50:17 +02:00
|
|
|
(mod_app, root_idle, user_idle, call_idle)
|
2019-06-13 23:56:59 +02:00
|
|
|
} else {
|
|
|
|
(
|
2021-07-07 21:03:56 +02:00
|
|
|
vec![],
|
2019-06-13 23:56:59 +02:00
|
|
|
vec![],
|
|
|
|
None,
|
|
|
|
quote!(loop {
|
2020-06-11 19:18:29 +02:00
|
|
|
rtic::export::wfi()
|
2019-06-13 23:56:59 +02:00
|
|
|
}),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|