mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-02 19:31:39 +03:00
Show more information in lsp status bar item
* Distinguish between checking for updates and downloading * Show dismissable error message when downloading failed and there is no cached server. Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
parent
ededfff3a8
commit
79910ba931
16
Cargo.lock
generated
16
Cargo.lock
generated
@ -178,6 +178,17 @@ dependencies = [
|
|||||||
"syn",
|
"syn",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "async-broadcast"
|
||||||
|
version = "0.3.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "90622698a1218e0b2fb846c97b5f19a0831f6baddee73d9454156365ccfa473b"
|
||||||
|
dependencies = [
|
||||||
|
"easy-parallel",
|
||||||
|
"event-listener",
|
||||||
|
"futures-core",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "async-channel"
|
name = "async-channel"
|
||||||
version = "1.6.1"
|
version = "1.6.1"
|
||||||
@ -1926,9 +1937,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "futures-core"
|
name = "futures-core"
|
||||||
version = "0.3.12"
|
version = "0.3.21"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "79e5145dde8da7d1b3892dad07a9c98fc04bc39892b1ecc9692cf53e2b780a65"
|
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "futures-executor"
|
name = "futures-executor"
|
||||||
@ -2619,6 +2630,7 @@ name = "language"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
"async-broadcast",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"client",
|
"client",
|
||||||
"clock",
|
"clock",
|
||||||
|
@ -30,6 +30,7 @@ text = { path = "../text" }
|
|||||||
theme = { path = "../theme" }
|
theme = { path = "../theme" }
|
||||||
util = { path = "../util" }
|
util = { path = "../util" }
|
||||||
anyhow = "1.0.38"
|
anyhow = "1.0.38"
|
||||||
|
async-broadcast = "0.3.4"
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
|
@ -7,7 +7,7 @@ pub mod proto;
|
|||||||
mod tests;
|
mod tests;
|
||||||
|
|
||||||
use anyhow::{anyhow, Result};
|
use anyhow::{anyhow, Result};
|
||||||
use client::http::HttpClient;
|
use client::http::{self, HttpClient};
|
||||||
use collections::HashSet;
|
use collections::HashSet;
|
||||||
use futures::{
|
use futures::{
|
||||||
future::{BoxFuture, Shared},
|
future::{BoxFuture, Shared},
|
||||||
@ -17,7 +17,6 @@ use gpui::{AppContext, Task};
|
|||||||
use highlight_map::HighlightMap;
|
use highlight_map::HighlightMap;
|
||||||
use lazy_static::lazy_static;
|
use lazy_static::lazy_static;
|
||||||
use parking_lot::Mutex;
|
use parking_lot::Mutex;
|
||||||
use postage::watch;
|
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use std::{
|
use std::{
|
||||||
cell::RefCell,
|
cell::RefCell,
|
||||||
@ -59,11 +58,22 @@ pub trait ToLspPosition {
|
|||||||
fn to_lsp_position(self) -> lsp::Position;
|
fn to_lsp_position(self) -> lsp::Position;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub struct LspBinaryVersion {
|
||||||
|
pub name: String,
|
||||||
|
pub url: http::Url,
|
||||||
|
}
|
||||||
|
|
||||||
pub trait LspExt: 'static + Send + Sync {
|
pub trait LspExt: 'static + Send + Sync {
|
||||||
fn fetch_latest_language_server(
|
fn fetch_latest_server_version(
|
||||||
&self,
|
&self,
|
||||||
http: Arc<dyn HttpClient>,
|
http: Arc<dyn HttpClient>,
|
||||||
|
) -> BoxFuture<'static, Result<LspBinaryVersion>>;
|
||||||
|
fn fetch_server_binary(
|
||||||
|
&self,
|
||||||
|
version: LspBinaryVersion,
|
||||||
|
http: Arc<dyn HttpClient>,
|
||||||
) -> BoxFuture<'static, Result<PathBuf>>;
|
) -> BoxFuture<'static, Result<PathBuf>>;
|
||||||
|
fn cached_server_binary(&self) -> BoxFuture<'static, Option<PathBuf>>;
|
||||||
fn process_diagnostics(&self, diagnostics: &mut lsp::PublishDiagnosticsParams);
|
fn process_diagnostics(&self, diagnostics: &mut lsp::PublishDiagnosticsParams);
|
||||||
fn label_for_completion(
|
fn label_for_completion(
|
||||||
&self,
|
&self,
|
||||||
@ -118,7 +128,7 @@ pub struct BracketPair {
|
|||||||
pub struct Language {
|
pub struct Language {
|
||||||
pub(crate) config: LanguageConfig,
|
pub(crate) config: LanguageConfig,
|
||||||
pub(crate) grammar: Option<Arc<Grammar>>,
|
pub(crate) grammar: Option<Arc<Grammar>>,
|
||||||
pub(crate) lsp_ext: Option<Box<dyn LspExt>>,
|
pub(crate) lsp_ext: Option<Arc<dyn LspExt>>,
|
||||||
lsp_binary_path: Mutex<Option<Shared<BoxFuture<'static, Result<PathBuf, Arc<anyhow::Error>>>>>>,
|
lsp_binary_path: Mutex<Option<Shared<BoxFuture<'static, Result<PathBuf, Arc<anyhow::Error>>>>>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -131,19 +141,28 @@ pub struct Grammar {
|
|||||||
pub(crate) highlight_map: Mutex<HighlightMap>,
|
pub(crate) highlight_map: Mutex<HighlightMap>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub enum LanguageServerBinaryStatus {
|
||||||
|
CheckingForUpdate,
|
||||||
|
Downloading,
|
||||||
|
Downloaded,
|
||||||
|
Cached,
|
||||||
|
Failed,
|
||||||
|
}
|
||||||
|
|
||||||
pub struct LanguageRegistry {
|
pub struct LanguageRegistry {
|
||||||
languages: Vec<Arc<Language>>,
|
languages: Vec<Arc<Language>>,
|
||||||
pending_lsp_binaries_tx: Arc<Mutex<watch::Sender<usize>>>,
|
lsp_binary_statuses_tx: async_broadcast::Sender<(Arc<Language>, LanguageServerBinaryStatus)>,
|
||||||
pending_lsp_binaries_rx: watch::Receiver<usize>,
|
lsp_binary_statuses_rx: async_broadcast::Receiver<(Arc<Language>, LanguageServerBinaryStatus)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl LanguageRegistry {
|
impl LanguageRegistry {
|
||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
let (pending_lsp_binaries_tx, pending_lsp_binaries_rx) = watch::channel();
|
let (lsp_binary_statuses_tx, lsp_binary_statuses_rx) = async_broadcast::broadcast(16);
|
||||||
Self {
|
Self {
|
||||||
languages: Default::default(),
|
languages: Default::default(),
|
||||||
pending_lsp_binaries_tx: Arc::new(Mutex::new(pending_lsp_binaries_tx)),
|
lsp_binary_statuses_tx,
|
||||||
pending_lsp_binaries_rx,
|
lsp_binary_statuses_rx,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -211,7 +230,7 @@ impl LanguageRegistry {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let lsp_ext = language.lsp_ext.as_ref()?;
|
let lsp_ext = language.lsp_ext.clone()?;
|
||||||
let background = cx.background().clone();
|
let background = cx.background().clone();
|
||||||
let server_binary_path = {
|
let server_binary_path = {
|
||||||
Some(
|
Some(
|
||||||
@ -219,15 +238,13 @@ impl LanguageRegistry {
|
|||||||
.lsp_binary_path
|
.lsp_binary_path
|
||||||
.lock()
|
.lock()
|
||||||
.get_or_insert_with(|| {
|
.get_or_insert_with(|| {
|
||||||
let pending_lsp_binaries_tx = self.pending_lsp_binaries_tx.clone();
|
get_server_binary_path(
|
||||||
let language_server_path =
|
lsp_ext,
|
||||||
lsp_ext.fetch_latest_language_server(http_client);
|
language.clone(),
|
||||||
async move {
|
http_client,
|
||||||
*pending_lsp_binaries_tx.lock().borrow_mut() += 1;
|
self.lsp_binary_statuses_tx.clone(),
|
||||||
let path = language_server_path.map_err(Arc::new).await;
|
)
|
||||||
*pending_lsp_binaries_tx.lock().borrow_mut() -= 1;
|
.map_err(Arc::new)
|
||||||
path
|
|
||||||
}
|
|
||||||
.boxed()
|
.boxed()
|
||||||
.shared()
|
.shared()
|
||||||
})
|
})
|
||||||
@ -242,11 +259,68 @@ impl LanguageRegistry {
|
|||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn pending_lsp_binaries(&self) -> watch::Receiver<usize> {
|
pub fn language_server_binary_statuses(
|
||||||
self.pending_lsp_binaries_rx.clone()
|
&self,
|
||||||
|
) -> async_broadcast::Receiver<(Arc<Language>, LanguageServerBinaryStatus)> {
|
||||||
|
self.lsp_binary_statuses_rx.clone()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn get_server_binary_path(
|
||||||
|
lsp_ext: Arc<dyn LspExt>,
|
||||||
|
language: Arc<Language>,
|
||||||
|
http_client: Arc<dyn HttpClient>,
|
||||||
|
statuses: async_broadcast::Sender<(Arc<Language>, LanguageServerBinaryStatus)>,
|
||||||
|
) -> Result<PathBuf> {
|
||||||
|
let path = fetch_latest_server_binary_path(
|
||||||
|
lsp_ext.clone(),
|
||||||
|
language.clone(),
|
||||||
|
http_client,
|
||||||
|
statuses.clone(),
|
||||||
|
)
|
||||||
|
.await;
|
||||||
|
if path.is_err() {
|
||||||
|
if let Some(cached_path) = lsp_ext.cached_server_binary().await {
|
||||||
|
statuses
|
||||||
|
.broadcast((language.clone(), LanguageServerBinaryStatus::Cached))
|
||||||
|
.await?;
|
||||||
|
return Ok(cached_path);
|
||||||
|
} else {
|
||||||
|
statuses
|
||||||
|
.broadcast((language.clone(), LanguageServerBinaryStatus::Failed))
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
path
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn fetch_latest_server_binary_path(
|
||||||
|
lsp_ext: Arc<dyn LspExt>,
|
||||||
|
language: Arc<Language>,
|
||||||
|
http_client: Arc<dyn HttpClient>,
|
||||||
|
lsp_binary_statuses_tx: async_broadcast::Sender<(Arc<Language>, LanguageServerBinaryStatus)>,
|
||||||
|
) -> Result<PathBuf> {
|
||||||
|
lsp_binary_statuses_tx
|
||||||
|
.broadcast((
|
||||||
|
language.clone(),
|
||||||
|
LanguageServerBinaryStatus::CheckingForUpdate,
|
||||||
|
))
|
||||||
|
.await?;
|
||||||
|
let version_info = lsp_ext
|
||||||
|
.fetch_latest_server_version(http_client.clone())
|
||||||
|
.await?;
|
||||||
|
lsp_binary_statuses_tx
|
||||||
|
.broadcast((language.clone(), LanguageServerBinaryStatus::Downloading))
|
||||||
|
.await?;
|
||||||
|
let path = lsp_ext
|
||||||
|
.fetch_server_binary(version_info, http_client)
|
||||||
|
.await?;
|
||||||
|
lsp_binary_statuses_tx
|
||||||
|
.broadcast((language.clone(), LanguageServerBinaryStatus::Downloaded))
|
||||||
|
.await?;
|
||||||
|
Ok(path)
|
||||||
|
}
|
||||||
|
|
||||||
impl Language {
|
impl Language {
|
||||||
pub fn new(config: LanguageConfig, ts_language: Option<tree_sitter::Language>) -> Self {
|
pub fn new(config: LanguageConfig, ts_language: Option<tree_sitter::Language>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
@ -306,8 +380,8 @@ impl Language {
|
|||||||
Ok(self)
|
Ok(self)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn with_lsp_ext(mut self, processor: impl LspExt) -> Self {
|
pub fn with_lsp_ext(mut self, lsp_ext: impl LspExt) -> Self {
|
||||||
self.lsp_ext = Some(Box::new(processor));
|
self.lsp_ext = Some(Arc::new(lsp_ext));
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,13 +1,24 @@
|
|||||||
use crate::{ItemViewHandle, Settings, StatusItemView};
|
use crate::{ItemViewHandle, Settings, StatusItemView};
|
||||||
use futures::StreamExt;
|
use futures::StreamExt;
|
||||||
use gpui::{elements::*, Entity, RenderContext, View, ViewContext};
|
use gpui::{
|
||||||
use language::LanguageRegistry;
|
action, elements::*, platform::CursorStyle, Entity, MutableAppContext, RenderContext, View,
|
||||||
|
ViewContext,
|
||||||
|
};
|
||||||
|
use language::{LanguageRegistry, LanguageServerBinaryStatus};
|
||||||
use postage::watch;
|
use postage::watch;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
action!(DismissErrorMessage);
|
||||||
|
|
||||||
pub struct LspStatus {
|
pub struct LspStatus {
|
||||||
pending_lsp_binaries: usize,
|
|
||||||
settings_rx: watch::Receiver<Settings>,
|
settings_rx: watch::Receiver<Settings>,
|
||||||
|
checking_for_update: Vec<String>,
|
||||||
|
downloading: Vec<String>,
|
||||||
|
failed: Vec<String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn init(cx: &mut MutableAppContext) {
|
||||||
|
cx.add_action(LspStatus::dismiss_error_message);
|
||||||
}
|
}
|
||||||
|
|
||||||
impl LspStatus {
|
impl LspStatus {
|
||||||
@ -16,12 +27,33 @@ impl LspStatus {
|
|||||||
settings_rx: watch::Receiver<Settings>,
|
settings_rx: watch::Receiver<Settings>,
|
||||||
cx: &mut ViewContext<Self>,
|
cx: &mut ViewContext<Self>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
let mut pending_lsp_binaries = languages.pending_lsp_binaries();
|
let mut status_events = languages.language_server_binary_statuses();
|
||||||
cx.spawn_weak(|this, mut cx| async move {
|
cx.spawn_weak(|this, mut cx| async move {
|
||||||
while let Some(pending_lsp_binaries) = pending_lsp_binaries.next().await {
|
while let Some((language, event)) = status_events.next().await {
|
||||||
if let Some(this) = this.upgrade(&cx) {
|
if let Some(this) = this.upgrade(&cx) {
|
||||||
this.update(&mut cx, |this, cx| {
|
this.update(&mut cx, |this, cx| {
|
||||||
this.pending_lsp_binaries = pending_lsp_binaries;
|
for vector in [
|
||||||
|
&mut this.checking_for_update,
|
||||||
|
&mut this.downloading,
|
||||||
|
&mut this.failed,
|
||||||
|
] {
|
||||||
|
vector.retain(|name| name != language.name());
|
||||||
|
}
|
||||||
|
|
||||||
|
match event {
|
||||||
|
LanguageServerBinaryStatus::CheckingForUpdate => {
|
||||||
|
this.checking_for_update.push(language.name().to_string());
|
||||||
|
}
|
||||||
|
LanguageServerBinaryStatus::Downloading => {
|
||||||
|
this.downloading.push(language.name().to_string());
|
||||||
|
}
|
||||||
|
LanguageServerBinaryStatus::Failed => {
|
||||||
|
this.failed.push(language.name().to_string());
|
||||||
|
}
|
||||||
|
LanguageServerBinaryStatus::Downloaded
|
||||||
|
| LanguageServerBinaryStatus::Cached => {}
|
||||||
|
}
|
||||||
|
|
||||||
cx.notify();
|
cx.notify();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
@ -31,10 +63,17 @@ impl LspStatus {
|
|||||||
})
|
})
|
||||||
.detach();
|
.detach();
|
||||||
Self {
|
Self {
|
||||||
pending_lsp_binaries: 0,
|
|
||||||
settings_rx,
|
settings_rx,
|
||||||
|
checking_for_update: Default::default(),
|
||||||
|
downloading: Default::default(),
|
||||||
|
failed: Default::default(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn dismiss_error_message(&mut self, _: &DismissErrorMessage, cx: &mut ViewContext<Self>) {
|
||||||
|
self.failed.clear();
|
||||||
|
cx.notify();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Entity for LspStatus {
|
impl Entity for LspStatus {
|
||||||
@ -46,16 +85,49 @@ impl View for LspStatus {
|
|||||||
"LspStatus"
|
"LspStatus"
|
||||||
}
|
}
|
||||||
|
|
||||||
fn render(&mut self, _: &mut RenderContext<Self>) -> ElementBox {
|
fn render(&mut self, cx: &mut RenderContext<Self>) -> ElementBox {
|
||||||
if self.pending_lsp_binaries == 0 {
|
|
||||||
Empty::new().boxed()
|
|
||||||
} else {
|
|
||||||
let theme = &self.settings_rx.borrow().theme;
|
let theme = &self.settings_rx.borrow().theme;
|
||||||
|
if !self.downloading.is_empty() {
|
||||||
Label::new(
|
Label::new(
|
||||||
"Downloading language servers...".to_string(),
|
format!(
|
||||||
|
"Downloading {} language server{}...",
|
||||||
|
self.downloading.join(", "),
|
||||||
|
if self.downloading.len() > 1 { "s" } else { "" }
|
||||||
|
),
|
||||||
theme.workspace.status_bar.lsp_message.clone(),
|
theme.workspace.status_bar.lsp_message.clone(),
|
||||||
)
|
)
|
||||||
.boxed()
|
.boxed()
|
||||||
|
} else if !self.checking_for_update.is_empty() {
|
||||||
|
Label::new(
|
||||||
|
format!(
|
||||||
|
"Checking for updates to {} language server{}...",
|
||||||
|
self.checking_for_update.join(", "),
|
||||||
|
if self.checking_for_update.len() > 1 {
|
||||||
|
"s"
|
||||||
|
} else {
|
||||||
|
""
|
||||||
|
}
|
||||||
|
),
|
||||||
|
theme.workspace.status_bar.lsp_message.clone(),
|
||||||
|
)
|
||||||
|
.boxed()
|
||||||
|
} else if !self.failed.is_empty() {
|
||||||
|
MouseEventHandler::new::<Self, _, _>(0, cx, |_, _| {
|
||||||
|
Label::new(
|
||||||
|
format!(
|
||||||
|
"Failed to download {} language server{}. Click to dismiss.",
|
||||||
|
self.failed.join(", "),
|
||||||
|
if self.failed.len() > 1 { "s" } else { "" }
|
||||||
|
),
|
||||||
|
theme.workspace.status_bar.lsp_message.clone(),
|
||||||
|
)
|
||||||
|
.boxed()
|
||||||
|
})
|
||||||
|
.with_cursor_style(CursorStyle::PointingHand)
|
||||||
|
.on_click(|cx| cx.dispatch_action(DismissErrorMessage))
|
||||||
|
.boxed()
|
||||||
|
} else {
|
||||||
|
Empty::new().boxed()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ use rust_embed::RustEmbed;
|
|||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use smol::fs::{self, File};
|
use smol::fs::{self, File};
|
||||||
use std::{borrow::Cow, env::consts, path::PathBuf, str, sync::Arc};
|
use std::{borrow::Cow, env::consts, path::PathBuf, str, sync::Arc};
|
||||||
use util::ResultExt;
|
use util::{ResultExt, TryFutureExt};
|
||||||
|
|
||||||
#[derive(RustEmbed)]
|
#[derive(RustEmbed)]
|
||||||
#[folder = "languages"]
|
#[folder = "languages"]
|
||||||
@ -29,11 +29,12 @@ struct GithubReleaseAsset {
|
|||||||
browser_download_url: http::Url,
|
browser_download_url: http::Url,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RustLsp {
|
impl LspExt for RustLsp {
|
||||||
async fn download(
|
fn fetch_latest_server_version(
|
||||||
destination_dir_path: PathBuf,
|
&self,
|
||||||
http: Arc<dyn HttpClient>,
|
http: Arc<dyn HttpClient>,
|
||||||
) -> anyhow::Result<PathBuf> {
|
) -> BoxFuture<'static, Result<LspBinaryVersion>> {
|
||||||
|
async move {
|
||||||
let release = http
|
let release = http
|
||||||
.send(
|
.send(
|
||||||
surf::RequestBuilder::new(
|
surf::RequestBuilder::new(
|
||||||
@ -51,18 +52,37 @@ impl RustLsp {
|
|||||||
.body_json::<GithubRelease>()
|
.body_json::<GithubRelease>()
|
||||||
.await
|
.await
|
||||||
.map_err(|err| anyhow!("error parsing latest release: {}", err))?;
|
.map_err(|err| anyhow!("error parsing latest release: {}", err))?;
|
||||||
let release_name = format!("rust-analyzer-{}-apple-darwin.gz", consts::ARCH);
|
let asset_name = format!("rust-analyzer-{}-apple-darwin.gz", consts::ARCH);
|
||||||
let asset = release
|
let asset = release
|
||||||
.assets
|
.assets
|
||||||
.iter()
|
.iter()
|
||||||
.find(|asset| asset.name == release_name)
|
.find(|asset| asset.name == asset_name)
|
||||||
.ok_or_else(|| anyhow!("no release found matching {:?}", release_name))?;
|
.ok_or_else(|| anyhow!("no release found matching {:?}", asset_name))?;
|
||||||
|
Ok(LspBinaryVersion {
|
||||||
|
name: release.name,
|
||||||
|
url: asset.browser_download_url.clone(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
.boxed()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn fetch_server_binary(
|
||||||
|
&self,
|
||||||
|
version: LspBinaryVersion,
|
||||||
|
http: Arc<dyn HttpClient>,
|
||||||
|
) -> BoxFuture<'static, Result<PathBuf>> {
|
||||||
|
async move {
|
||||||
|
let destination_dir_path = dirs::home_dir()
|
||||||
|
.ok_or_else(|| anyhow!("can't determine home directory"))?
|
||||||
|
.join(".zed/rust-analyzer");
|
||||||
|
fs::create_dir_all(&destination_dir_path).await?;
|
||||||
|
let destination_path =
|
||||||
|
destination_dir_path.join(format!("rust-analyzer-{}", version.name));
|
||||||
|
|
||||||
let destination_path = destination_dir_path.join(format!("rust-analyzer-{}", release.name));
|
|
||||||
if fs::metadata(&destination_path).await.is_err() {
|
if fs::metadata(&destination_path).await.is_err() {
|
||||||
let response = http
|
let response = http
|
||||||
.send(
|
.send(
|
||||||
surf::RequestBuilder::new(Method::Get, asset.browser_download_url.clone())
|
surf::RequestBuilder::new(Method::Get, version.url)
|
||||||
.middleware(surf::middleware::Redirect::default())
|
.middleware(surf::middleware::Redirect::default())
|
||||||
.build(),
|
.build(),
|
||||||
)
|
)
|
||||||
@ -76,47 +96,39 @@ impl RustLsp {
|
|||||||
<fs::Permissions as fs::unix::PermissionsExt>::from_mode(0o755),
|
<fs::Permissions as fs::unix::PermissionsExt>::from_mode(0o755),
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
|
if let Some(mut entries) = fs::read_dir(&destination_dir_path).await.log_err() {
|
||||||
|
while let Some(entry) = entries.next().await {
|
||||||
|
if let Some(entry) = entry.log_err() {
|
||||||
|
let entry_path = entry.path();
|
||||||
|
if entry_path.as_path() != destination_path {
|
||||||
|
fs::remove_file(&entry_path).await.log_err();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok::<_, anyhow::Error>(destination_path)
|
Ok(destination_path)
|
||||||
|
}
|
||||||
|
.boxed()
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
impl LspExt for RustLsp {
|
fn cached_server_binary(&self) -> BoxFuture<'static, Option<PathBuf>> {
|
||||||
fn fetch_latest_language_server(
|
|
||||||
&self,
|
|
||||||
http: Arc<dyn HttpClient>,
|
|
||||||
) -> BoxFuture<'static, Result<PathBuf>> {
|
|
||||||
async move {
|
async move {
|
||||||
let destination_dir_path = dirs::home_dir()
|
let destination_dir_path = dirs::home_dir()
|
||||||
.ok_or_else(|| anyhow!("can't determine home directory"))?
|
.ok_or_else(|| anyhow!("can't determine home directory"))?
|
||||||
.join(".zed/rust-analyzer");
|
.join(".zed/rust-analyzer");
|
||||||
fs::create_dir_all(&destination_dir_path).await?;
|
fs::create_dir_all(&destination_dir_path).await?;
|
||||||
|
|
||||||
let downloaded_bin_path = Self::download(destination_dir_path.clone(), http).await;
|
let mut last = None;
|
||||||
let mut last_cached_bin_path = None;
|
let mut entries = fs::read_dir(&destination_dir_path).await?;
|
||||||
if let Some(mut entries) = fs::read_dir(&destination_dir_path).await.log_err() {
|
|
||||||
while let Some(entry) = entries.next().await {
|
while let Some(entry) = entries.next().await {
|
||||||
if let Some(entry) = entry.log_err() {
|
last = Some(entry?.path());
|
||||||
let entry_path = entry.path();
|
|
||||||
if let Ok(downloaded_bin_path) = downloaded_bin_path.as_ref() {
|
|
||||||
if downloaded_bin_path != entry_path.as_path() {
|
|
||||||
fs::remove_file(&entry_path).await.log_err();
|
|
||||||
}
|
}
|
||||||
|
last.ok_or_else(|| anyhow!("no cached binary"))
|
||||||
}
|
}
|
||||||
last_cached_bin_path = Some(entry_path);
|
.log_err()
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if downloaded_bin_path.is_err() {
|
|
||||||
if let Some(last_cached_bin_path) = last_cached_bin_path {
|
|
||||||
return Ok(last_cached_bin_path);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
downloaded_bin_path
|
|
||||||
}
|
|
||||||
.boxed()
|
.boxed()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,6 +43,8 @@ pub fn init(app_state: &Arc<AppState>, cx: &mut gpui::MutableAppContext) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
workspace::lsp_status::init(cx);
|
||||||
|
|
||||||
cx.add_bindings(vec![
|
cx.add_bindings(vec![
|
||||||
Binding::new("cmd-=", AdjustBufferFontSize(1.), None),
|
Binding::new("cmd-=", AdjustBufferFontSize(1.), None),
|
||||||
Binding::new("cmd--", AdjustBufferFontSize(-1.), None),
|
Binding::new("cmd--", AdjustBufferFontSize(-1.), None),
|
||||||
|
Loading…
Reference in New Issue
Block a user