rust-analyzer/crates/flycheck/src/lib.rs

321 lines
11 KiB
Rust
Raw Normal View History

//! cargo_check provides the functionality needed to run `cargo check` or
//! another compatible command (f.x. clippy) in a background thread and provide
//! LSP diagnostics based on the output of the command.
2020-03-31 22:16:16 +00:00
use std::{
fmt,
io::{self, BufReader},
2020-04-01 10:03:06 +00:00
path::PathBuf,
process::{Command, Stdio},
time::Instant,
};
2020-06-25 11:47:22 +00:00
use crossbeam_channel::{never, select, unbounded, Receiver, Sender};
2020-05-14 23:58:39 +00:00
pub use cargo_metadata::diagnostic::{
2020-05-15 00:08:50 +00:00
Applicability, Diagnostic, DiagnosticLevel, DiagnosticSpan, DiagnosticSpanMacroExpansion,
2020-05-14 23:58:39 +00:00
};
2020-04-01 16:41:43 +00:00
#[derive(Clone, Debug, PartialEq, Eq)]
2020-04-01 10:31:42 +00:00
pub enum FlycheckConfig {
CargoCommand {
command: String,
all_targets: bool,
all_features: bool,
features: Vec<String>,
extra_args: Vec<String>,
},
CustomCommand {
command: String,
args: Vec<String>,
},
}
impl fmt::Display for FlycheckConfig {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
FlycheckConfig::CargoCommand { command, .. } => write!(f, "cargo {}", command),
FlycheckConfig::CustomCommand { command, args } => {
write!(f, "{} {}", command, args.join(" "))
}
}
}
}
/// Flycheck wraps the shared state and communication machinery used for
/// running `cargo check` (or other compatible command) and providing
/// diagnostics based on the output.
/// The spawned thread is shut down when this struct is dropped.
#[derive(Debug)]
pub struct FlycheckHandle {
// XXX: drop order is significant
2020-06-25 07:26:13 +00:00
cmd_send: Sender<Restart>,
2020-06-25 07:19:01 +00:00
handle: jod_thread::JoinHandle,
}
impl FlycheckHandle {
2020-06-25 06:39:33 +00:00
pub fn spawn(
2020-06-25 07:19:01 +00:00
sender: Box<dyn Fn(Message) + Send>,
2020-06-25 06:39:33 +00:00
config: FlycheckConfig,
workspace_root: PathBuf,
) -> FlycheckHandle {
2020-06-25 07:26:13 +00:00
let (cmd_send, cmd_recv) = unbounded::<Restart>();
let handle = jod_thread::spawn(move || {
2020-06-25 11:47:22 +00:00
FlycheckActor::new(sender, config, workspace_root).run(cmd_recv);
});
2020-06-25 06:39:33 +00:00
FlycheckHandle { cmd_send, handle }
}
/// Schedule a re-start of the cargo check worker.
pub fn update(&self) {
2020-06-25 07:26:13 +00:00
self.cmd_send.send(Restart).unwrap();
}
}
#[derive(Debug)]
2020-06-25 07:19:01 +00:00
pub enum Message {
/// Request a clearing of all cached diagnostics from the check watcher
ClearDiagnostics,
/// Request adding a diagnostic with fixes included to a file
2020-05-14 23:58:39 +00:00
AddDiagnostic { workspace_root: PathBuf, diagnostic: Diagnostic },
/// Request check progress notification to client
2020-06-25 07:19:01 +00:00
Progress(Progress),
}
#[derive(Debug)]
2020-06-25 07:19:01 +00:00
pub enum Progress {
Being,
2020-06-25 07:19:01 +00:00
DidCheckCrate(String),
End,
}
2020-06-25 07:26:13 +00:00
struct Restart;
struct FlycheckActor {
2020-06-25 07:19:01 +00:00
sender: Box<dyn Fn(Message) + Send>,
2020-04-01 10:03:06 +00:00
config: FlycheckConfig,
workspace_root: PathBuf,
last_update_req: Option<Instant>,
2020-03-31 22:39:50 +00:00
/// WatchThread exists to wrap around the communication needed to be able to
/// run `cargo check` without blocking. Currently the Rust standard library
/// doesn't provide a way to read sub-process output without blocking, so we
/// have to wrap sub-processes output handling in a thread and pass messages
/// back over a channel.
2020-06-25 11:47:22 +00:00
// XXX: drop order is significant
check_process: Option<(Receiver<CheckEvent>, jod_thread::JoinHandle)>,
}
enum Event {
Restart(Restart),
CheckEvent(Option<CheckEvent>),
}
impl FlycheckActor {
2020-06-25 06:39:33 +00:00
fn new(
2020-06-25 07:19:01 +00:00
sender: Box<dyn Fn(Message) + Send>,
2020-06-25 06:39:33 +00:00
config: FlycheckConfig,
workspace_root: PathBuf,
) -> FlycheckActor {
2020-06-25 11:47:22 +00:00
FlycheckActor { sender, config, workspace_root, last_update_req: None, check_process: None }
}
2020-06-25 11:47:22 +00:00
fn run(&mut self, inbox: Receiver<Restart>) {
2020-03-30 11:38:01 +00:00
// If we rerun the thread, we need to discard the previous check results first
2020-06-25 11:47:22 +00:00
self.send(Message::ClearDiagnostics);
self.send(Message::Progress(Progress::End));
while let Some(event) = self.next_event(&inbox) {
match event {
Event::Restart(Restart) => self.last_update_req = Some(Instant::now()),
Event::CheckEvent(None) => {
// Watcher finished, replace it with a never channel to
// avoid busy-waiting.
self.check_process = None;
}
2020-06-25 11:47:22 +00:00
Event::CheckEvent(Some(event)) => match event {
CheckEvent::Begin => {
self.send(Message::Progress(Progress::Being));
}
CheckEvent::End => {
self.send(Message::Progress(Progress::End));
}
CheckEvent::Msg(cargo_metadata::Message::CompilerArtifact(msg)) => {
self.send(Message::Progress(Progress::DidCheckCrate(msg.target.name)));
}
CheckEvent::Msg(cargo_metadata::Message::CompilerMessage(msg)) => {
self.send(Message::AddDiagnostic {
workspace_root: self.workspace_root.clone(),
diagnostic: msg.message,
});
}
2020-06-25 11:47:22 +00:00
CheckEvent::Msg(cargo_metadata::Message::BuildScriptExecuted(_))
| CheckEvent::Msg(cargo_metadata::Message::BuildFinished(_))
| CheckEvent::Msg(cargo_metadata::Message::TextLine(_))
| CheckEvent::Msg(cargo_metadata::Message::Unknown) => {}
},
}
if self.should_recheck() {
2020-03-31 22:39:50 +00:00
self.last_update_req = None;
2020-06-25 07:19:01 +00:00
self.send(Message::ClearDiagnostics);
2020-03-31 22:39:50 +00:00
self.restart_check_process();
}
}
}
2020-06-25 11:47:22 +00:00
fn next_event(&self, inbox: &Receiver<Restart>) -> Option<Event> {
let check_chan = self.check_process.as_ref().map(|(chan, _thread)| chan);
select! {
recv(inbox) -> msg => msg.ok().map(Event::Restart),
recv(check_chan.unwrap_or(&never())) -> msg => Some(Event::CheckEvent(msg.ok())),
}
2020-03-30 11:38:01 +00:00
}
fn should_recheck(&mut self) -> bool {
if let Some(_last_update_req) = &self.last_update_req {
// We currently only request an update on save, as we need up to
// date source on disk for cargo check to do it's magic, so we
// don't really need to debounce the requests at this point.
return true;
}
false
}
2020-03-31 22:39:50 +00:00
fn restart_check_process(&mut self) {
// First, clear and cancel the old thread
self.check_process = None;
2020-04-01 10:31:42 +00:00
let mut cmd = match &self.config {
FlycheckConfig::CargoCommand {
command,
all_targets,
all_features,
extra_args,
features,
} => {
2020-05-08 12:54:29 +00:00
let mut cmd = Command::new(ra_toolchain::cargo());
2020-04-01 10:31:42 +00:00
cmd.arg(command);
2020-05-08 12:54:29 +00:00
cmd.args(&["--workspace", "--message-format=json", "--manifest-path"])
.arg(self.workspace_root.join("Cargo.toml"));
2020-04-01 10:31:42 +00:00
if *all_targets {
cmd.arg("--all-targets");
}
if *all_features {
cmd.arg("--all-features");
} else if !features.is_empty() {
cmd.arg("--features");
cmd.arg(features.join(" "));
}
2020-04-01 10:31:42 +00:00
cmd.args(extra_args);
cmd
}
FlycheckConfig::CustomCommand { command, args } => {
let mut cmd = Command::new(command);
cmd.args(args);
cmd
2020-04-01 10:03:06 +00:00
}
};
2020-04-01 10:31:42 +00:00
cmd.current_dir(&self.workspace_root);
2020-03-31 22:39:50 +00:00
let (message_send, message_recv) = unbounded();
2020-06-25 11:47:22 +00:00
let thread = jod_thread::spawn(move || {
2020-03-31 22:39:50 +00:00
// If we trigger an error here, we will do so in the loop instead,
// which will break out of the loop, and continue the shutdown
let _ = message_send.send(CheckEvent::Begin);
2020-04-01 10:03:06 +00:00
let res = run_cargo(cmd, &mut |message| {
2020-03-31 22:39:50 +00:00
// Skip certain kinds of messages to only spend time on what's useful
match &message {
2020-06-25 07:19:01 +00:00
cargo_metadata::Message::CompilerArtifact(artifact) if artifact.fresh => {
return true
}
cargo_metadata::Message::BuildScriptExecuted(_)
| cargo_metadata::Message::Unknown => return true,
2020-03-31 22:39:50 +00:00
_ => {}
}
// if the send channel was closed, we want to shutdown
message_send.send(CheckEvent::Msg(message)).is_ok()
});
if let Err(err) = res {
// FIXME: make the `message_send` to be `Sender<Result<CheckEvent, CargoError>>`
// to display user-caused misconfiguration errors instead of just logging them here
log::error!("Cargo watcher failed {:?}", err);
}
// We can ignore any error here, as we are already in the progress
// of shutting down.
let _ = message_send.send(CheckEvent::End);
2020-06-25 11:47:22 +00:00
});
self.check_process = Some((message_recv, thread))
2020-03-31 22:39:50 +00:00
}
2020-06-25 06:39:33 +00:00
2020-06-25 07:19:01 +00:00
fn send(&self, check_task: Message) {
2020-06-25 06:39:33 +00:00
(self.sender)(check_task)
}
}
enum CheckEvent {
Begin,
Msg(cargo_metadata::Message),
End,
}
2020-03-31 16:43:22 +00:00
fn run_cargo(
2020-04-01 10:03:06 +00:00
mut command: Command,
on_message: &mut dyn FnMut(cargo_metadata::Message) -> bool,
2020-04-01 10:45:37 +00:00
) -> io::Result<()> {
let mut child =
command.stdout(Stdio::piped()).stderr(Stdio::null()).stdin(Stdio::null()).spawn()?;
// We manually read a line at a time, instead of using serde's
// stream deserializers, because the deserializer cannot recover
// from an error, resulting in it getting stuck, because we try to
// be resillient against failures.
//
// Because cargo only outputs one JSON object per line, we can
// simply skip a line if it doesn't parse, which just ignores any
// erroneus output.
let stdout = BufReader::new(child.stdout.take().unwrap());
let mut read_at_least_one_message = false;
for message in cargo_metadata::Message::parse_stream(stdout) {
let message = match message {
Ok(message) => message,
Err(err) => {
log::error!("Invalid json from cargo check, ignoring ({})", err);
continue;
}
};
read_at_least_one_message = true;
if !on_message(message) {
break;
}
}
// It is okay to ignore the result, as it only errors if the process is already dead
let _ = child.kill();
2020-04-01 10:45:37 +00:00
let exit_status = child.wait()?;
if !exit_status.success() && !read_at_least_one_message {
// FIXME: Read the stderr to display the reason, see `read2()` reference in PR comment:
// https://github.com/rust-analyzer/rust-analyzer/pull/3632#discussion_r395605298
return Err(io::Error::new(
io::ErrorKind::Other,
2020-03-22 10:01:49 +00:00
format!(
2020-04-01 10:03:06 +00:00
"the command produced no valid metadata (exit code: {:?}): {:?}",
2020-04-01 10:45:37 +00:00
exit_status, command
),
));
}
2020-04-01 10:45:37 +00:00
Ok(())
}