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
|
|
|
mod rpc;
|
|
|
|
mod process;
|
|
|
|
pub mod msg;
|
|
|
|
|
2020-03-18 07:56:46 -05:00
|
|
|
use std::{
|
2020-04-16 15:08:01 -05:00
|
|
|
ffi::OsStr,
|
2020-04-20 13:26:10 -05:00
|
|
|
io,
|
2020-03-18 07:56:46 -05:00
|
|
|
path::{Path, PathBuf},
|
|
|
|
sync::Arc,
|
|
|
|
};
|
|
|
|
|
2020-08-12 09:46:20 -05:00
|
|
|
use tt::{SmolStr, Subtree};
|
|
|
|
|
|
|
|
use crate::process::{ProcMacroProcessSrv, ProcMacroProcessThread};
|
|
|
|
|
2020-04-01 00:11:26 -05:00
|
|
|
pub use rpc::{ExpansionResult, ExpansionTask, ListMacrosResult, ListMacrosTask, ProcMacroKind};
|
2020-03-26 15:26:34 -05:00
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
2020-03-18 07:56:46 -05:00
|
|
|
pub struct ProcMacroProcessExpander {
|
2020-03-25 21:49:23 -05:00
|
|
|
process: Arc<ProcMacroProcessSrv>,
|
2020-03-26 15:26:34 -05:00
|
|
|
dylib_path: PathBuf,
|
2020-03-26 11:41:44 -05:00
|
|
|
name: SmolStr,
|
2020-03-18 07:56:46 -05:00
|
|
|
}
|
|
|
|
|
2020-03-26 15:26:34 -05:00
|
|
|
impl Eq for ProcMacroProcessExpander {}
|
|
|
|
impl PartialEq for ProcMacroProcessExpander {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.name == other.name
|
|
|
|
&& self.dylib_path == other.dylib_path
|
|
|
|
&& Arc::ptr_eq(&self.process, &other.process)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-12 09:46:20 -05:00
|
|
|
impl tt::TokenExpander for ProcMacroProcessExpander {
|
2020-03-26 11:41:44 -05:00
|
|
|
fn expand(
|
2020-03-18 07:56:46 -05:00
|
|
|
&self,
|
2020-03-26 15:26:34 -05:00
|
|
|
subtree: &Subtree,
|
2020-03-26 11:41:44 -05:00
|
|
|
_attr: Option<&Subtree>,
|
2020-08-12 09:46:20 -05:00
|
|
|
) -> Result<Subtree, tt::ExpansionError> {
|
2020-03-26 15:26:34 -05:00
|
|
|
self.process.custom_derive(&self.dylib_path, subtree, &self.name)
|
2020-03-18 07:56:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-26 23:55:58 -05:00
|
|
|
#[derive(Debug)]
|
2020-03-26 15:26:34 -05:00
|
|
|
enum ProcMacroClientKind {
|
2020-03-26 23:55:58 -05:00
|
|
|
Process { process: Arc<ProcMacroProcessSrv>, thread: ProcMacroProcessThread },
|
2020-03-18 07:56:46 -05:00
|
|
|
Dummy,
|
|
|
|
}
|
|
|
|
|
2020-03-26 23:55:58 -05:00
|
|
|
#[derive(Debug)]
|
2020-03-26 15:26:34 -05:00
|
|
|
pub struct ProcMacroClient {
|
|
|
|
kind: ProcMacroClientKind,
|
|
|
|
}
|
|
|
|
|
2020-03-18 07:56:46 -05:00
|
|
|
impl ProcMacroClient {
|
2020-04-20 13:26:10 -05:00
|
|
|
pub fn extern_process(
|
|
|
|
process_path: PathBuf,
|
|
|
|
args: impl IntoIterator<Item = impl AsRef<OsStr>>,
|
|
|
|
) -> io::Result<ProcMacroClient> {
|
2020-04-16 08:13:57 -05:00
|
|
|
let (thread, process) = ProcMacroProcessSrv::run(process_path, args)?;
|
2020-03-26 23:55:58 -05:00
|
|
|
Ok(ProcMacroClient {
|
|
|
|
kind: ProcMacroClientKind::Process { process: Arc::new(process), thread },
|
|
|
|
})
|
2020-03-18 07:56:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn dummy() -> ProcMacroClient {
|
2020-03-26 15:26:34 -05:00
|
|
|
ProcMacroClient { kind: ProcMacroClientKind::Dummy }
|
2020-03-18 07:56:46 -05:00
|
|
|
}
|
|
|
|
|
2020-08-12 09:46:20 -05:00
|
|
|
pub fn by_dylib_path(&self, dylib_path: &Path) -> Vec<(SmolStr, Arc<dyn tt::TokenExpander>)> {
|
2020-03-26 15:26:34 -05:00
|
|
|
match &self.kind {
|
|
|
|
ProcMacroClientKind::Dummy => vec![],
|
2020-03-26 23:55:58 -05:00
|
|
|
ProcMacroClientKind::Process { process, .. } => {
|
2020-03-26 15:26:34 -05:00
|
|
|
let macros = match process.find_proc_macros(dylib_path) {
|
|
|
|
Err(err) => {
|
2020-04-20 13:26:10 -05:00
|
|
|
eprintln!("Failed to find proc macros. Error: {:#?}", err);
|
2020-03-26 15:26:34 -05:00
|
|
|
return vec![];
|
|
|
|
}
|
|
|
|
Ok(macros) => macros,
|
|
|
|
};
|
|
|
|
|
|
|
|
macros
|
|
|
|
.into_iter()
|
|
|
|
.filter_map(|(name, kind)| {
|
|
|
|
match kind {
|
2020-08-15 08:34:56 -05:00
|
|
|
ProcMacroKind::CustomDerive | ProcMacroKind::FuncLike => {
|
2020-03-26 15:26:34 -05:00
|
|
|
let name = SmolStr::new(&name);
|
2020-08-12 09:46:20 -05:00
|
|
|
let expander: Arc<dyn tt::TokenExpander> =
|
2020-03-26 15:26:34 -05:00
|
|
|
Arc::new(ProcMacroProcessExpander {
|
|
|
|
process: process.clone(),
|
|
|
|
name: name.clone(),
|
|
|
|
dylib_path: dylib_path.into(),
|
|
|
|
});
|
|
|
|
Some((name, expander))
|
|
|
|
}
|
2020-08-15 08:34:56 -05:00
|
|
|
// FIXME: Attribute macro are currently unsupported.
|
|
|
|
ProcMacroKind::Attr => None,
|
2020-03-26 15:26:34 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
}
|
2020-03-18 04:47:59 -05:00
|
|
|
}
|
|
|
|
}
|