rust/crates/proc_macro_api/src/process.rs

129 lines
3.9 KiB
Rust
Raw Normal View History

2020-03-26 16:12:17 -05:00
//! Handle process life-time and message passing for proc-macro client
2020-03-26 15:26:34 -05:00
use std::{
2020-03-28 05:12:51 -05:00
convert::{TryFrom, TryInto},
ffi::{OsStr, OsString},
2020-08-12 09:46:20 -05:00
io::{self, BufRead, BufReader, Write},
2020-03-26 15:26:34 -05:00
path::{Path, PathBuf},
2021-07-08 09:40:14 -05:00
process::{Child, ChildStdin, ChildStdout, Command, Stdio},
sync::Mutex,
2020-03-26 15:26:34 -05:00
};
2021-02-01 13:24:09 -06:00
use stdx::JodChild;
2020-08-12 09:46:20 -05:00
use crate::{
msg::{ErrorCode, Message, Request, Response, ResponseError},
rpc::{ListMacrosResult, ListMacrosTask, ProcMacroKind},
2020-08-12 09:46:20 -05:00
};
2021-07-08 10:10:35 -05:00
#[derive(Debug)]
2020-03-26 15:26:34 -05:00
pub(crate) struct ProcMacroProcessSrv {
2021-07-08 09:40:14 -05:00
process: Mutex<Process>,
stdio: Mutex<(ChildStdin, BufReader<ChildStdout>)>,
2020-03-26 15:26:34 -05:00
}
impl ProcMacroProcessSrv {
pub(crate) fn run(
2020-04-20 13:26:10 -05:00
process_path: PathBuf,
args: impl IntoIterator<Item = impl AsRef<OsStr>>,
2021-07-08 09:40:14 -05:00
) -> io::Result<ProcMacroProcessSrv> {
let mut process = Process::run(process_path, args)?;
let (stdin, stdout) = process.stdio().expect("couldn't access child stdio");
let srv = ProcMacroProcessSrv {
process: Mutex::new(process),
stdio: Mutex::new((stdin, stdout)),
};
Ok(srv)
2020-03-26 15:26:34 -05:00
}
pub(crate) fn find_proc_macros(
2020-03-26 15:26:34 -05:00
&self,
dylib_path: &Path,
2020-08-12 09:46:20 -05:00
) -> Result<Vec<(String, ProcMacroKind)>, tt::ExpansionError> {
2020-03-26 15:26:34 -05:00
let task = ListMacrosTask { lib: dylib_path.to_path_buf() };
2020-03-28 05:12:51 -05:00
let result: ListMacrosResult = self.send_task(Request::ListMacro(task))?;
2020-03-26 15:26:34 -05:00
Ok(result.macros)
}
pub(crate) fn send_task<R>(&self, req: Request) -> Result<R, tt::ExpansionError>
2020-03-26 15:26:34 -05:00
where
2020-03-28 05:12:51 -05:00
R: TryFrom<Response, Error = &'static str>,
2020-03-26 15:26:34 -05:00
{
2021-07-08 09:40:14 -05:00
let mut guard = self.stdio.lock().unwrap_or_else(|e| e.into_inner());
let stdio = &mut *guard;
let (stdin, stdout) = (&mut stdio.0, &mut stdio.1);
2021-07-08 09:40:14 -05:00
let mut buf = String::new();
let res = match send_request(stdin, stdout, req, &mut buf) {
Ok(res) => res,
Err(err) => {
2021-07-08 09:40:14 -05:00
let mut process = self.process.lock().unwrap_or_else(|e| e.into_inner());
log::error!(
"proc macro server crashed, server process state: {:?}, server request error: {:?}",
process.child.try_wait(),
err
);
2020-03-28 05:12:51 -05:00
let res = Response::Error(ResponseError {
code: ErrorCode::ServerErrorEnd,
message: "proc macro server crashed".into(),
2020-03-28 05:12:51 -05:00
});
2021-07-08 09:40:14 -05:00
Some(res)
2020-03-26 15:26:34 -05:00
}
2021-07-08 09:40:14 -05:00
};
match res {
Some(Response::Error(err)) => Err(tt::ExpansionError::ExpansionError(err.message)),
Some(res) => Ok(res.try_into().map_err(|err| {
tt::ExpansionError::Unknown(format!("Fail to get response, reason : {:#?} ", err))
})?),
None => Err(tt::ExpansionError::Unknown("Empty result".into())),
2020-03-26 15:26:34 -05:00
}
}
}
2021-07-08 09:40:14 -05:00
#[derive(Debug)]
2020-04-20 16:22:17 -05:00
struct Process {
2021-02-01 13:24:09 -06:00
child: JodChild,
2020-04-20 16:22:17 -05:00
}
impl Process {
fn run(
path: PathBuf,
args: impl IntoIterator<Item = impl AsRef<OsStr>>,
) -> io::Result<Process> {
let args: Vec<OsString> = args.into_iter().map(|s| s.as_ref().into()).collect();
2021-02-01 13:24:09 -06:00
let child = JodChild(mk_child(&path, &args)?);
Ok(Process { child })
2020-04-20 16:22:17 -05:00
}
2021-07-08 09:40:14 -05:00
fn stdio(&mut self) -> Option<(ChildStdin, BufReader<ChildStdout>)> {
2020-04-20 16:22:17 -05:00
let stdin = self.child.stdin.take()?;
let stdout = self.child.stdout.take()?;
let read = BufReader::new(stdout);
Some((stdin, read))
}
}
fn mk_child(path: &Path, args: impl IntoIterator<Item = impl AsRef<OsStr>>) -> io::Result<Child> {
Command::new(&path)
.args(args)
.stdin(Stdio::piped())
.stdout(Stdio::piped())
.stderr(Stdio::inherit())
2020-04-20 16:22:17 -05:00
.spawn()
}
2020-03-28 05:12:51 -05:00
fn send_request(
2020-03-26 15:26:34 -05:00
mut writer: &mut impl Write,
mut reader: &mut impl BufRead,
2020-03-28 05:12:51 -05:00
req: Request,
buf: &mut String,
) -> io::Result<Option<Response>> {
2020-03-28 05:12:51 -05:00
req.write(&mut writer)?;
Response::read(&mut reader, buf)
2020-03-26 15:26:34 -05:00
}