mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-11 20:58:54 +00:00
add cancelation module & cancelation backtraces
This commit is contained in:
parent
62c40b0e91
commit
93996fecdc
5 changed files with 92 additions and 15 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -668,6 +668,7 @@ dependencies = [
|
||||||
name = "ra_db"
|
name = "ra_db"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"ra_editor 0.1.0",
|
"ra_editor 0.1.0",
|
||||||
"ra_syntax 0.1.0",
|
"ra_syntax 0.1.0",
|
||||||
|
|
|
@ -5,6 +5,7 @@ version = "0.1.0"
|
||||||
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
|
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
backtrace = "0.3.1"
|
||||||
relative-path = "0.4.0"
|
relative-path = "0.4.0"
|
||||||
salsa = "0.8.0"
|
salsa = "0.8.0"
|
||||||
rustc-hash = "1.0"
|
rustc-hash = "1.0"
|
||||||
|
|
85
crates/ra_db/src/cancelation.rs
Normal file
85
crates/ra_db/src/cancelation.rs
Normal file
|
@ -0,0 +1,85 @@
|
||||||
|
//! Utility types to support cancellation.
|
||||||
|
//!
|
||||||
|
//! In a typical IDE use-case, requests and modification happen concurrently, as
|
||||||
|
//! in the following scenario:
|
||||||
|
//!
|
||||||
|
//! * user types a character,
|
||||||
|
//! * a syntax highlighting process is started
|
||||||
|
//! * user types next character, while syntax highlighting *is still in
|
||||||
|
//! progress*.
|
||||||
|
//!
|
||||||
|
//! In this situation, we want to react to modification as quckly as possible.
|
||||||
|
//! At the same time, in-progress results are not very interesting, because they
|
||||||
|
//! are invalidated by the edit anyway. So, we first cancel all in-flight
|
||||||
|
//! requests, and then apply modification knowing that it won't intrfere with
|
||||||
|
//! any background processing (this bit is handled by salsa, see
|
||||||
|
//! `BaseDatabase::check_canceled` method).
|
||||||
|
|
||||||
|
use std::{
|
||||||
|
cmp,
|
||||||
|
hash::{Hash, Hasher},
|
||||||
|
sync::Arc,
|
||||||
|
};
|
||||||
|
|
||||||
|
use backtrace::Backtrace;
|
||||||
|
use parking_lot::Mutex;
|
||||||
|
|
||||||
|
/// An "error" signifing that the operation was canceled.
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct Canceled {
|
||||||
|
backtrace: Arc<Mutex<Backtrace>>,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub type Cancelable<T> = Result<T, Canceled>;
|
||||||
|
|
||||||
|
impl Canceled {
|
||||||
|
pub(crate) fn new() -> Canceled {
|
||||||
|
let bt = Backtrace::new_unresolved();
|
||||||
|
Canceled {
|
||||||
|
backtrace: Arc::new(Mutex::new(bt)),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl std::fmt::Display for Canceled {
|
||||||
|
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
fmt.write_str("canceled")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl std::fmt::Debug for Canceled {
|
||||||
|
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
let mut bt = self.backtrace.lock();
|
||||||
|
let bt: &mut Backtrace = &mut *bt;
|
||||||
|
bt.resolve();
|
||||||
|
write!(fmt, "canceled at:\n{:?}", bt)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl std::error::Error for Canceled {}
|
||||||
|
|
||||||
|
impl PartialEq for Canceled {
|
||||||
|
fn eq(&self, _: &Canceled) -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Eq for Canceled {}
|
||||||
|
|
||||||
|
impl Hash for Canceled {
|
||||||
|
fn hash<H: Hasher>(&self, hasher: &mut H) {
|
||||||
|
().hash(hasher)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl cmp::Ord for Canceled {
|
||||||
|
fn cmp(&self, _: &Canceled) -> cmp::Ordering {
|
||||||
|
cmp::Ordering::Equal
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl cmp::PartialOrd for Canceled {
|
||||||
|
fn partial_cmp(&self, other: &Canceled) -> Option<cmp::Ordering> {
|
||||||
|
Some(self.cmp(other))
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,27 +1,17 @@
|
||||||
//! ra_db defines basic database traits. Concrete DB is defined by ra_analysis.
|
//! ra_db defines basic database traits. Concrete DB is defined by ra_analysis.
|
||||||
|
mod cancelation;
|
||||||
mod syntax_ptr;
|
mod syntax_ptr;
|
||||||
mod input;
|
mod input;
|
||||||
mod loc2id;
|
mod loc2id;
|
||||||
pub mod mock;
|
pub mod mock;
|
||||||
|
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
use ra_editor::LineIndex;
|
use ra_editor::LineIndex;
|
||||||
use ra_syntax::{TextUnit, SourceFileNode};
|
use ra_syntax::{TextUnit, SourceFileNode};
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
|
||||||
pub struct Canceled;
|
|
||||||
|
|
||||||
pub type Cancelable<T> = Result<T, Canceled>;
|
|
||||||
|
|
||||||
impl std::fmt::Display for Canceled {
|
|
||||||
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
||||||
fmt.write_str("canceled")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl std::error::Error for Canceled {}
|
|
||||||
|
|
||||||
pub use crate::{
|
pub use crate::{
|
||||||
|
cancelation::{Canceled, Cancelable},
|
||||||
syntax_ptr::LocalSyntaxPtr,
|
syntax_ptr::LocalSyntaxPtr,
|
||||||
input::{
|
input::{
|
||||||
FilesDatabase, FileId, CrateId, SourceRoot, SourceRootId, CrateGraph,
|
FilesDatabase, FileId, CrateId, SourceRoot, SourceRootId, CrateGraph,
|
||||||
|
@ -48,7 +38,7 @@ macro_rules! impl_numeric_id {
|
||||||
pub trait BaseDatabase: salsa::Database {
|
pub trait BaseDatabase: salsa::Database {
|
||||||
fn check_canceled(&self) -> Cancelable<()> {
|
fn check_canceled(&self) -> Cancelable<()> {
|
||||||
if self.salsa_runtime().is_current_revision_canceled() {
|
if self.salsa_runtime().is_current_revision_canceled() {
|
||||||
Err(Canceled)
|
Err(Canceled::new())
|
||||||
} else {
|
} else {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
@ -427,7 +427,7 @@ impl<'a> PoolDispatcher<'a> {
|
||||||
RawResponse::err(
|
RawResponse::err(
|
||||||
id,
|
id,
|
||||||
ErrorCode::ContentModified as i32,
|
ErrorCode::ContentModified as i32,
|
||||||
format!("content modified: {}", e),
|
format!("content modified: {:?}", e),
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
RawResponse::err(
|
RawResponse::err(
|
||||||
|
|
Loading…
Reference in a new issue