rust/crates/proc_macro_api/src/lib.rs

147 lines
4.5 KiB
Rust
Raw Normal View History

2020-03-18 07:56:46 -05:00
//! Client-side Proc-Macro crate
//!
//! We separate proc-macro expanding logic to an extern program to allow
//! different implementations (e.g. wasm or dylib loading). And this crate
2020-04-20 13:26:10 -05:00
//! is used to provide basic infrastructure for communication between two
2020-03-25 21:49:23 -05:00
//! processes: Client (RA itself), Server (the external program)
2020-03-18 07:56:46 -05:00
2020-03-26 15:26:34 -05:00
pub mod msg;
mod process;
mod rpc;
mod version;
2020-03-26 15:26:34 -05:00
use paths::{AbsPath, AbsPathBuf};
use std::{
ffi::OsStr,
io,
2021-07-12 08:19:53 -05:00
sync::{Arc, Mutex},
};
2020-08-12 09:46:20 -05:00
use tt::{SmolStr, Subtree};
2021-07-08 09:40:14 -05:00
use crate::process::ProcMacroProcessSrv;
2020-08-12 09:46:20 -05:00
pub use rpc::{
2021-08-28 15:38:39 -05:00
flat::FlatTree, ExpansionResult, ExpansionTask, ListMacrosResult, ListMacrosTask, ProcMacroKind,
};
pub use version::{read_dylib_info, RustCInfo};
2020-03-26 15:26:34 -05:00
/// A handle to an external process which load dylibs with macros (.so or .dll)
/// and runs actual macro expansion functions.
#[derive(Debug)]
pub struct ProcMacroServer {
/// Currently, the proc macro process expands all procedural macros sequentially.
///
/// That means that concurrent salsa requests may block each other when expanding proc macros,
/// which is unfortunate, but simple and good enough for the time being.
///
/// Therefore, we just wrap the `ProcMacroProcessSrv` in a mutex here.
process: Arc<Mutex<ProcMacroProcessSrv>>,
}
/// A handle to a specific macro (a `#[proc_macro]` annotated function).
///
/// It exists withing a context of a specific [`ProcMacroProcess`] -- currently
/// we share a single expander process for all macros.
2020-03-26 15:26:34 -05:00
#[derive(Debug, Clone)]
pub struct ProcMacro {
2021-07-12 08:19:53 -05:00
process: Arc<Mutex<ProcMacroProcessSrv>>,
dylib_path: AbsPathBuf,
2020-03-26 11:41:44 -05:00
name: SmolStr,
kind: ProcMacroKind,
2020-03-18 07:56:46 -05:00
}
impl Eq for ProcMacro {}
impl PartialEq for ProcMacro {
2020-03-26 15:26:34 -05:00
fn eq(&self, other: &Self) -> bool {
self.name == other.name
&& self.kind == other.kind
2020-03-26 15:26:34 -05:00
&& self.dylib_path == other.dylib_path
&& Arc::ptr_eq(&self.process, &other.process)
}
}
impl ProcMacroServer {
2021-07-08 09:40:14 -05:00
/// Spawns an external process as the proc macro server and returns a client connected to it.
pub fn spawn(
process_path: AbsPathBuf,
2020-04-20 13:26:10 -05:00
args: impl IntoIterator<Item = impl AsRef<OsStr>>,
) -> io::Result<ProcMacroServer> {
2021-07-08 09:40:14 -05:00
let process = ProcMacroProcessSrv::run(process_path, args)?;
Ok(ProcMacroServer { process: Arc::new(Mutex::new(process)) })
2020-03-18 07:56:46 -05:00
}
pub fn load_dylib(&self, dylib_path: &AbsPath) -> Vec<ProcMacro> {
let _p = profile::span("ProcMacroClient::by_dylib_path");
match version::read_dylib_info(dylib_path) {
Ok(info) => {
if info.version.0 < 1 || info.version.1 < 47 {
eprintln!("proc-macro {} built by {:#?} is not supported by Rust Analyzer, please update your rust version.", dylib_path.display(), info);
}
}
Err(err) => {
eprintln!(
"proc-macro {} failed to find the given version. Reason: {}",
dylib_path.display(),
err
);
}
}
2021-07-12 08:19:53 -05:00
let macros = match self
.process
.lock()
.unwrap_or_else(|e| e.into_inner())
.find_proc_macros(dylib_path)
{
Err(err) => {
eprintln!("Failed to find proc macros. Error: {:#?}", err);
return vec![];
2020-03-26 15:26:34 -05:00
}
Ok(macros) => macros,
};
macros
.into_iter()
.map(|(name, kind)| ProcMacro {
process: self.process.clone(),
name: name.into(),
kind,
dylib_path: dylib_path.to_path_buf(),
})
.collect()
2020-03-18 04:47:59 -05:00
}
}
impl ProcMacro {
pub fn name(&self) -> &str {
&self.name
}
pub fn kind(&self) -> ProcMacroKind {
self.kind
}
pub fn expand(
&self,
subtree: &Subtree,
attr: Option<&Subtree>,
env: Vec<(String, String)>,
) -> Result<Subtree, tt::ExpansionError> {
let task = ExpansionTask {
macro_body: FlatTree::new(subtree),
macro_name: self.name.to_string(),
attributes: attr.map(FlatTree::new),
lib: self.dylib_path.to_path_buf().into(),
env,
};
let result: ExpansionResult = self
.process
.lock()
.unwrap_or_else(|e| e.into_inner())
.send_task(msg::Request::ExpansionMacro(task))?;
Ok(result.expansion.to_subtree())
}
}