Skip to content

Commit ec645f2

Browse files
Merge #4066
4066: Fix restart missing arguments in proc-macro-srv r=edwin0cheng a=edwin0cheng cc @Veetaha Co-authored-by: Edwin Cheng <[email protected]>
2 parents 0ad6b6d + ce382e6 commit ec645f2

File tree

1 file changed

+52
-51
lines changed

1 file changed

+52
-51
lines changed

crates/ra_proc_macro/src/process.rs

+52-51
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use crate::rpc::{ExpansionResult, ExpansionTask, ListMacrosResult, ListMacrosTas
99
use io::{BufRead, BufReader};
1010
use std::{
1111
convert::{TryFrom, TryInto},
12-
ffi::OsStr,
12+
ffi::{OsStr, OsString},
1313
io::{self, Write},
1414
path::{Path, PathBuf},
1515
process::{Child, Command, Stdio},
@@ -28,56 +28,6 @@ pub(crate) struct ProcMacroProcessThread {
2828
handle: jod_thread::JoinHandle<()>,
2929
}
3030

31-
struct Task {
32-
req: Request,
33-
result_tx: Sender<Option<Response>>,
34-
}
35-
36-
struct Process {
37-
path: PathBuf,
38-
child: Child,
39-
}
40-
41-
impl Drop for Process {
42-
fn drop(&mut self) {
43-
let _ = self.child.kill();
44-
}
45-
}
46-
47-
impl Process {
48-
fn run(
49-
process_path: PathBuf,
50-
args: impl IntoIterator<Item = impl AsRef<OsStr>>,
51-
) -> io::Result<Process> {
52-
let child = Command::new(&process_path)
53-
.args(args)
54-
.stdin(Stdio::piped())
55-
.stdout(Stdio::piped())
56-
.stderr(Stdio::null())
57-
.spawn()?;
58-
59-
Ok(Process { path: process_path, child })
60-
}
61-
62-
fn restart(&mut self) -> io::Result<()> {
63-
let _ = self.child.kill();
64-
self.child = Command::new(&self.path)
65-
.stdin(Stdio::piped())
66-
.stdout(Stdio::piped())
67-
.stderr(Stdio::null())
68-
.spawn()?;
69-
Ok(())
70-
}
71-
72-
fn stdio(&mut self) -> Option<(impl Write, impl BufRead)> {
73-
let stdin = self.child.stdin.take()?;
74-
let stdout = self.child.stdout.take()?;
75-
let read = BufReader::new(stdout);
76-
77-
Some((stdin, read))
78-
}
79-
}
80-
8131
impl ProcMacroProcessSrv {
8232
pub fn run(
8333
process_path: PathBuf,
@@ -192,6 +142,57 @@ fn client_loop(task_rx: Receiver<Task>, mut process: Process) {
192142
}
193143
}
194144

145+
struct Task {
146+
req: Request,
147+
result_tx: Sender<Option<Response>>,
148+
}
149+
150+
struct Process {
151+
path: PathBuf,
152+
args: Vec<OsString>,
153+
child: Child,
154+
}
155+
156+
impl Drop for Process {
157+
fn drop(&mut self) {
158+
let _ = self.child.kill();
159+
}
160+
}
161+
162+
impl Process {
163+
fn run(
164+
path: PathBuf,
165+
args: impl IntoIterator<Item = impl AsRef<OsStr>>,
166+
) -> io::Result<Process> {
167+
let args = args.into_iter().map(|s| s.as_ref().into()).collect();
168+
let child = mk_child(&path, &args)?;
169+
Ok(Process { path, args, child })
170+
}
171+
172+
fn restart(&mut self) -> io::Result<()> {
173+
let _ = self.child.kill();
174+
self.child = mk_child(&self.path, &self.args)?;
175+
Ok(())
176+
}
177+
178+
fn stdio(&mut self) -> Option<(impl Write, impl BufRead)> {
179+
let stdin = self.child.stdin.take()?;
180+
let stdout = self.child.stdout.take()?;
181+
let read = BufReader::new(stdout);
182+
183+
Some((stdin, read))
184+
}
185+
}
186+
187+
fn mk_child(path: &Path, args: impl IntoIterator<Item = impl AsRef<OsStr>>) -> io::Result<Child> {
188+
Command::new(&path)
189+
.args(args)
190+
.stdin(Stdio::piped())
191+
.stdout(Stdio::piped())
192+
.stderr(Stdio::null())
193+
.spawn()
194+
}
195+
195196
fn send_request(
196197
mut writer: &mut impl Write,
197198
mut reader: &mut impl BufRead,

0 commit comments

Comments
 (0)