2020-04-01 05:11:26 +00:00
|
|
|
//! RA Proc Macro Server
|
|
|
|
//!
|
|
|
|
//! This library is able to call compiled Rust custom derive dynamic libraries on arbitrary code.
|
2021-06-14 04:57:10 +00:00
|
|
|
//! The general idea here is based on <https://github.com/fedochet/rust-proc-macro-expander>.
|
2020-04-01 05:11:26 +00:00
|
|
|
//!
|
2020-04-20 18:26:10 +00:00
|
|
|
//! But we adapt it to better fit RA needs:
|
2020-04-01 05:11:26 +00:00
|
|
|
//!
|
2020-08-12 14:46:20 +00:00
|
|
|
//! * We use `tt` for proc-macro `TokenStream` server, it is easier to manipulate and interact with
|
2020-04-20 18:26:10 +00:00
|
|
|
//! RA than `proc-macro2` token stream.
|
2020-04-01 05:11:26 +00:00
|
|
|
//! * By **copying** the whole rustc `lib_proc_macro` code, we are able to build this with `stable`
|
2020-08-13 10:07:28 +00:00
|
|
|
//! rustc rather than `unstable`. (Although in general ABI compatibility is still an issue)…
|
2020-11-02 12:13:32 +00:00
|
|
|
#![allow(unreachable_pub)]
|
2020-04-01 05:11:26 +00:00
|
|
|
|
2020-04-04 08:09:36 +00:00
|
|
|
mod dylib;
|
|
|
|
|
2021-07-12 14:47:47 +00:00
|
|
|
mod abis;
|
|
|
|
|
2021-08-28 17:36:41 +00:00
|
|
|
use proc_macro_api::{ExpansionResult, ExpansionTask, FlatTree, ListMacrosResult, ListMacrosTask};
|
2020-04-24 02:23:01 +00:00
|
|
|
use std::{
|
|
|
|
collections::{hash_map::Entry, HashMap},
|
2020-12-11 13:57:50 +00:00
|
|
|
env, fs,
|
2020-04-24 02:23:01 +00:00
|
|
|
path::{Path, PathBuf},
|
2020-04-25 04:30:28 +00:00
|
|
|
time::SystemTime,
|
2020-04-24 02:23:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
pub(crate) struct ProcMacroSrv {
|
2020-04-25 04:30:28 +00:00
|
|
|
expanders: HashMap<(PathBuf, SystemTime), dylib::Expander>,
|
2020-04-24 02:23:01 +00:00
|
|
|
}
|
2020-04-04 08:10:45 +00:00
|
|
|
|
2020-04-24 02:23:01 +00:00
|
|
|
impl ProcMacroSrv {
|
2021-08-28 17:36:41 +00:00
|
|
|
pub fn expand(&mut self, task: ExpansionTask) -> Result<ExpansionResult, String> {
|
2021-07-17 14:40:13 +00:00
|
|
|
let expander = self.expander(task.lib.as_ref())?;
|
2020-12-11 13:57:50 +00:00
|
|
|
|
|
|
|
let mut prev_env = HashMap::new();
|
|
|
|
for (k, v) in &task.env {
|
|
|
|
prev_env.insert(k.as_str(), env::var_os(k));
|
|
|
|
env::set_var(k, v);
|
|
|
|
}
|
|
|
|
|
2021-08-28 17:36:41 +00:00
|
|
|
let macro_body = task.macro_body.to_subtree();
|
|
|
|
let attributes = task.attributes.map(|it| it.to_subtree());
|
|
|
|
let result = expander
|
|
|
|
.expand(&task.macro_name, ¯o_body, attributes.as_ref())
|
|
|
|
.map(|it| FlatTree::new(&it));
|
2020-12-11 13:57:50 +00:00
|
|
|
|
|
|
|
for (k, _) in &task.env {
|
|
|
|
match &prev_env[k.as_str()] {
|
|
|
|
Some(v) => env::set_var(k, v),
|
|
|
|
None => env::remove_var(k),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
match result {
|
2020-04-24 02:23:01 +00:00
|
|
|
Ok(expansion) => Ok(ExpansionResult { expansion }),
|
2021-07-12 14:47:47 +00:00
|
|
|
Err(msg) => Err(format!("proc-macro panicked: {}", msg)),
|
2020-04-04 08:10:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-24 02:23:01 +00:00
|
|
|
pub fn list_macros(&mut self, task: &ListMacrosTask) -> Result<ListMacrosResult, String> {
|
2021-07-17 14:40:13 +00:00
|
|
|
let expander = self.expander(task.lib.as_ref())?;
|
2020-04-24 02:23:01 +00:00
|
|
|
Ok(ListMacrosResult { macros: expander.list_macros() })
|
|
|
|
}
|
2020-04-20 18:26:10 +00:00
|
|
|
|
2020-04-24 02:23:01 +00:00
|
|
|
fn expander(&mut self, path: &Path) -> Result<&dylib::Expander, String> {
|
2020-04-26 09:58:56 +00:00
|
|
|
let time = fs::metadata(path).and_then(|it| it.modified()).map_err(|err| {
|
|
|
|
format!("Failed to get file metadata for {}: {:?}", path.display(), err)
|
|
|
|
})?;
|
2020-04-25 04:30:28 +00:00
|
|
|
|
|
|
|
Ok(match self.expanders.entry((path.to_path_buf(), time)) {
|
2020-04-24 02:23:01 +00:00
|
|
|
Entry::Vacant(v) => v.insert(dylib::Expander::new(path).map_err(|err| {
|
|
|
|
format!("Cannot create expander for {}: {:?}", path.display(), err)
|
|
|
|
})?),
|
|
|
|
Entry::Occupied(e) => e.into_mut(),
|
|
|
|
})
|
|
|
|
}
|
2020-04-01 05:11:26 +00:00
|
|
|
}
|
2020-04-09 17:43:47 +00:00
|
|
|
|
2020-04-16 13:13:57 +00:00
|
|
|
pub mod cli;
|
|
|
|
|
2020-04-09 17:43:47 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|