rtic/macros/src/lib.rs

52 lines
1.2 KiB
Rust
Raw Normal View History

#![deny(warnings)]
2017-07-04 18:26:11 +02:00
#![recursion_limit = "128"]
extern crate proc_macro;
use proc_macro::TokenStream;
use std::{fs, path::Path};
use rtfm_syntax::Settings;
mod analyze;
2017-07-04 18:26:11 +02:00
mod check;
2018-11-03 17:02:41 +01:00
mod codegen;
#[cfg(test)]
mod tests;
2017-07-12 06:44:54 +02:00
2018-11-03 17:02:41 +01:00
#[proc_macro_attribute]
pub fn app(args: TokenStream, input: TokenStream) -> TokenStream {
let (app, analysis) = match rtfm_syntax::parse(
args,
input,
Settings {
2019-06-18 10:31:31 +02:00
parse_cores: cfg!(feature = "heterogeneous") || cfg!(feature = "homogeneous"),
parse_exception: true,
parse_extern_interrupt: true,
parse_interrupt: true,
parse_schedule: true,
optimize_priorities: true,
..Settings::default()
},
) {
2018-11-03 17:02:41 +01:00
Err(e) => return e.to_compile_error().into(),
Ok(x) => x,
2018-11-03 17:02:41 +01:00
};
let extra = match check::app(&app, &analysis) {
Err(e) => return e.to_compile_error().into(),
Ok(x) => x,
};
let analysis = analyze::app(analysis, &app);
2017-07-04 18:26:11 +02:00
let ts = codegen::app(&app, &analysis, &extra);
// Try to write the expanded code to disk
if Path::new("target").exists() {
fs::write("target/rtfm-expansion.rs", ts.to_string()).ok();
}
ts.into()
2017-07-04 18:26:11 +02:00
}