Fix project environment not working correctly with multiple worktrees (#22246)
Fixes https://github.com/zed-industries/zed/issues/21972 This fixes two bugs: **Bug 1**: this bug caused us to only ever load a single environment in a multi-worktree project, thanks to this line: ```rust if let Some(task) = self.get_environment_task.as_ref() ``` We'd only ever run a single task per project, which is wrong. What does code does is to cache the tasks per `worktree_id`, which means we don't even need to cache the environments again, since we can just cache the `Shared<Task<...>>`. **Bug 2**: we assumed that every `worktree_abs_path` is a directory, which lead to `Failed to run direnv` log messages when opening a project that had a worktree with a single file open (easy to reproduce: open a normal project, open your settings, close Zed, reopen it — the settings faile caused environments to not load) It's fixed by checking whether the `worktree_abs_path` is an absolute directory. Since this is always running locally, it's fine to use `smol::fs` here instead of using our `Fs`. Release Notes: - Fixed shell environments not being loaded properly to be used by language servers and terminals in case a project had multiple worktrees. - Fixed `Failed to run direnv` messages showing up in case Zed restored a window that contained a worktree with a single file. https://github.com/zed-industries/zed/issues/21972
This commit is contained in:
parent
11260e6d37
commit
96ad022cd7
2 changed files with 97 additions and 94 deletions
|
@ -14,8 +14,7 @@ use crate::{
|
||||||
|
|
||||||
pub struct ProjectEnvironment {
|
pub struct ProjectEnvironment {
|
||||||
cli_environment: Option<HashMap<String, String>>,
|
cli_environment: Option<HashMap<String, String>>,
|
||||||
get_environment_task: Option<Shared<Task<Option<HashMap<String, String>>>>>,
|
environments: HashMap<WorktreeId, Shared<Task<Option<HashMap<String, String>>>>>,
|
||||||
cached_shell_environments: HashMap<WorktreeId, HashMap<String, String>>,
|
|
||||||
environment_error_messages: HashMap<WorktreeId, EnvironmentErrorMessage>,
|
environment_error_messages: HashMap<WorktreeId, EnvironmentErrorMessage>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,27 +34,15 @@ impl ProjectEnvironment {
|
||||||
|
|
||||||
Self {
|
Self {
|
||||||
cli_environment,
|
cli_environment,
|
||||||
get_environment_task: None,
|
environments: Default::default(),
|
||||||
cached_shell_environments: Default::default(),
|
|
||||||
environment_error_messages: Default::default(),
|
environment_error_messages: Default::default(),
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(any(test, feature = "test-support"))]
|
|
||||||
pub(crate) fn set_cached(
|
|
||||||
&mut self,
|
|
||||||
shell_environments: &[(WorktreeId, HashMap<String, String>)],
|
|
||||||
) {
|
|
||||||
self.cached_shell_environments = shell_environments
|
|
||||||
.iter()
|
|
||||||
.cloned()
|
|
||||||
.collect::<HashMap<_, _>>();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn remove_worktree_environment(&mut self, worktree_id: WorktreeId) {
|
pub(crate) fn remove_worktree_environment(&mut self, worktree_id: WorktreeId) {
|
||||||
self.cached_shell_environments.remove(&worktree_id);
|
|
||||||
self.environment_error_messages.remove(&worktree_id);
|
self.environment_error_messages.remove(&worktree_id);
|
||||||
|
self.environments.remove(&worktree_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the inherited CLI environment, if this project was opened from the Zed CLI.
|
/// Returns the inherited CLI environment, if this project was opened from the Zed CLI.
|
||||||
|
@ -91,96 +78,83 @@ impl ProjectEnvironment {
|
||||||
worktree_abs_path: Option<Arc<Path>>,
|
worktree_abs_path: Option<Arc<Path>>,
|
||||||
cx: &ModelContext<Self>,
|
cx: &ModelContext<Self>,
|
||||||
) -> Shared<Task<Option<HashMap<String, String>>>> {
|
) -> Shared<Task<Option<HashMap<String, String>>>> {
|
||||||
if let Some(task) = self.get_environment_task.as_ref() {
|
if cfg!(any(test, feature = "test-support")) {
|
||||||
|
return Task::ready(Some(HashMap::default())).shared();
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(cli_environment) = self.get_cli_environment() {
|
||||||
|
return cx
|
||||||
|
.spawn(|_, _| async move {
|
||||||
|
let path = cli_environment
|
||||||
|
.get("PATH")
|
||||||
|
.map(|path| path.as_str())
|
||||||
|
.unwrap_or_default();
|
||||||
|
log::info!(
|
||||||
|
"using project environment variables from CLI. PATH={:?}",
|
||||||
|
path
|
||||||
|
);
|
||||||
|
Some(cli_environment)
|
||||||
|
})
|
||||||
|
.shared();
|
||||||
|
}
|
||||||
|
|
||||||
|
let Some((worktree_id, worktree_abs_path)) = worktree_id.zip(worktree_abs_path) else {
|
||||||
|
return Task::ready(None).shared();
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Some(task) = self.environments.get(&worktree_id) {
|
||||||
task.clone()
|
task.clone()
|
||||||
} else {
|
} else {
|
||||||
let task = self
|
let task = self
|
||||||
.build_environment_task(worktree_id, worktree_abs_path, cx)
|
.get_worktree_env(worktree_id, worktree_abs_path, cx)
|
||||||
.shared();
|
.shared();
|
||||||
|
self.environments.insert(worktree_id, task.clone());
|
||||||
self.get_environment_task = Some(task.clone());
|
|
||||||
task
|
task
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn build_environment_task(
|
|
||||||
&mut self,
|
|
||||||
worktree_id: Option<WorktreeId>,
|
|
||||||
worktree_abs_path: Option<Arc<Path>>,
|
|
||||||
cx: &ModelContext<Self>,
|
|
||||||
) -> Task<Option<HashMap<String, String>>> {
|
|
||||||
let worktree = worktree_id.zip(worktree_abs_path);
|
|
||||||
|
|
||||||
let cli_environment = self.get_cli_environment();
|
|
||||||
if let Some(environment) = cli_environment {
|
|
||||||
cx.spawn(|_, _| async move {
|
|
||||||
let path = environment
|
|
||||||
.get("PATH")
|
|
||||||
.map(|path| path.as_str())
|
|
||||||
.unwrap_or_default();
|
|
||||||
log::info!(
|
|
||||||
"using project environment variables from CLI. PATH={:?}",
|
|
||||||
path
|
|
||||||
);
|
|
||||||
Some(environment)
|
|
||||||
})
|
|
||||||
} else if let Some((worktree_id, worktree_abs_path)) = worktree {
|
|
||||||
self.get_worktree_env(worktree_id, worktree_abs_path, cx)
|
|
||||||
} else {
|
|
||||||
Task::ready(None)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_worktree_env(
|
fn get_worktree_env(
|
||||||
&mut self,
|
&mut self,
|
||||||
worktree_id: WorktreeId,
|
worktree_id: WorktreeId,
|
||||||
worktree_abs_path: Arc<Path>,
|
worktree_abs_path: Arc<Path>,
|
||||||
cx: &ModelContext<Self>,
|
cx: &ModelContext<Self>,
|
||||||
) -> Task<Option<HashMap<String, String>>> {
|
) -> Task<Option<HashMap<String, String>>> {
|
||||||
let cached_env = self.cached_shell_environments.get(&worktree_id).cloned();
|
let load_direnv = ProjectSettings::get_global(cx).load_direnv.clone();
|
||||||
if let Some(env) = cached_env {
|
|
||||||
Task::ready(Some(env))
|
|
||||||
} else {
|
|
||||||
let load_direnv = ProjectSettings::get_global(cx).load_direnv.clone();
|
|
||||||
|
|
||||||
cx.spawn(|this, mut cx| async move {
|
cx.spawn(|this, mut cx| async move {
|
||||||
let (mut shell_env, error_message) = cx
|
let (mut shell_env, error_message) = cx
|
||||||
.background_executor()
|
.background_executor()
|
||||||
.spawn({
|
.spawn({
|
||||||
let cwd = worktree_abs_path.clone();
|
let worktree_abs_path = worktree_abs_path.clone();
|
||||||
async move { load_shell_environment(&cwd, &load_direnv).await }
|
async move {
|
||||||
})
|
load_worktree_shell_environment(&worktree_abs_path, &load_direnv).await
|
||||||
.await;
|
}
|
||||||
|
})
|
||||||
|
.await;
|
||||||
|
|
||||||
if let Some(shell_env) = shell_env.as_mut() {
|
if let Some(shell_env) = shell_env.as_mut() {
|
||||||
let path = shell_env
|
let path = shell_env
|
||||||
.get("PATH")
|
.get("PATH")
|
||||||
.map(|path| path.as_str())
|
.map(|path| path.as_str())
|
||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
log::info!(
|
log::info!(
|
||||||
"using project environment variables shell launched in {:?}. PATH={:?}",
|
"using project environment variables shell launched in {:?}. PATH={:?}",
|
||||||
worktree_abs_path,
|
worktree_abs_path,
|
||||||
path
|
path
|
||||||
);
|
);
|
||||||
this.update(&mut cx, |this, _| {
|
|
||||||
this.cached_shell_environments
|
|
||||||
.insert(worktree_id, shell_env.clone());
|
|
||||||
})
|
|
||||||
.log_err();
|
|
||||||
|
|
||||||
set_origin_marker(shell_env, EnvironmentOrigin::WorktreeShell);
|
set_origin_marker(shell_env, EnvironmentOrigin::WorktreeShell);
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(error) = error_message {
|
if let Some(error) = error_message {
|
||||||
this.update(&mut cx, |this, _| {
|
this.update(&mut cx, |this, _| {
|
||||||
this.environment_error_messages.insert(worktree_id, error);
|
this.environment_error_messages.insert(worktree_id, error);
|
||||||
})
|
})
|
||||||
.log_err();
|
.log_err();
|
||||||
}
|
}
|
||||||
|
|
||||||
shell_env
|
shell_env
|
||||||
})
|
})
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -213,6 +187,42 @@ impl EnvironmentErrorMessage {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn load_worktree_shell_environment(
|
||||||
|
worktree_abs_path: &Path,
|
||||||
|
load_direnv: &DirenvSettings,
|
||||||
|
) -> (
|
||||||
|
Option<HashMap<String, String>>,
|
||||||
|
Option<EnvironmentErrorMessage>,
|
||||||
|
) {
|
||||||
|
match smol::fs::metadata(worktree_abs_path).await {
|
||||||
|
Ok(meta) => {
|
||||||
|
let dir = if meta.is_dir() {
|
||||||
|
worktree_abs_path
|
||||||
|
} else if let Some(parent) = worktree_abs_path.parent() {
|
||||||
|
parent
|
||||||
|
} else {
|
||||||
|
return (
|
||||||
|
None,
|
||||||
|
Some(EnvironmentErrorMessage(format!(
|
||||||
|
"Failed to load shell environment in {}: not a directory",
|
||||||
|
worktree_abs_path.display()
|
||||||
|
))),
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
load_shell_environment(&dir, load_direnv).await
|
||||||
|
}
|
||||||
|
Err(err) => (
|
||||||
|
None,
|
||||||
|
Some(EnvironmentErrorMessage(format!(
|
||||||
|
"Failed to load shell environment in {}: {}",
|
||||||
|
worktree_abs_path.display(),
|
||||||
|
err
|
||||||
|
))),
|
||||||
|
),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(any(test, feature = "test-support"))]
|
#[cfg(any(test, feature = "test-support"))]
|
||||||
async fn load_shell_environment(
|
async fn load_shell_environment(
|
||||||
_dir: &Path,
|
_dir: &Path,
|
||||||
|
|
|
@ -1207,13 +1207,6 @@ impl Project {
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
project.update(cx, |project, cx| {
|
|
||||||
let tree_id = tree.read(cx).id();
|
|
||||||
project.environment.update(cx, |environment, _| {
|
|
||||||
environment.set_cached(&[(tree_id, HashMap::default())])
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
tree.update(cx, |tree, _| tree.as_local().unwrap().scan_complete())
|
tree.update(cx, |tree, _| tree.as_local().unwrap().scan_complete())
|
||||||
.await;
|
.await;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue