//! Project-wide storage of the tasks available, capable of updating itself from the sources set. use std::{ borrow::Cow, cmp::{self, Reverse}, path::{Path, PathBuf}, sync::Arc, }; use anyhow::Result; use collections::{btree_map, BTreeMap, VecDeque}; use futures::{ channel::mpsc::{unbounded, UnboundedSender}, StreamExt, }; use gpui::{AppContext, Context, Model, ModelContext, Task}; use itertools::Itertools; use language::{ContextProvider, File, Language, Location}; use task::{ static_source::StaticSource, ResolvedTask, TaskContext, TaskId, TaskTemplate, TaskTemplates, TaskVariables, VariableName, }; use text::{Point, ToPoint}; use util::{post_inc, NumericPrefixWithSuffix, ResultExt}; use worktree::WorktreeId; use crate::Project; /// Inventory tracks available tasks for a given project. pub struct Inventory { sources: Vec, last_scheduled_tasks: VecDeque<(TaskSourceKind, ResolvedTask)>, update_sender: UnboundedSender<()>, _update_pooler: Task>, } struct SourceInInventory { source: StaticSource, kind: TaskSourceKind, } /// Kind of a source the tasks are fetched from, used to display more source information in the UI. #[derive(Debug, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)] pub enum TaskSourceKind { /// bash-like commands spawned by users, not associated with any path UserInput, /// Tasks from the worktree's .zed/task.json Worktree { id: WorktreeId, abs_path: PathBuf, id_base: Cow<'static, str>, }, /// ~/.config/zed/task.json - like global files with task definitions, applicable to any path AbsPath { id_base: Cow<'static, str>, abs_path: PathBuf, }, /// Languages-specific tasks coming from extensions. Language { name: Arc }, } impl TaskSourceKind { pub fn abs_path(&self) -> Option<&Path> { match self { Self::AbsPath { abs_path, .. } | Self::Worktree { abs_path, .. } => Some(abs_path), Self::UserInput | Self::Language { .. } => None, } } pub fn worktree(&self) -> Option { match self { Self::Worktree { id, .. } => Some(*id), _ => None, } } pub fn to_id_base(&self) -> String { match self { TaskSourceKind::UserInput => "oneshot".to_string(), TaskSourceKind::AbsPath { id_base, abs_path } => { format!("{id_base}_{}", abs_path.display()) } TaskSourceKind::Worktree { id, id_base, abs_path, } => { format!("{id_base}_{id}_{}", abs_path.display()) } TaskSourceKind::Language { name } => format!("language_{name}"), } } } impl Inventory { pub fn new(cx: &mut AppContext) -> Model { cx.new_model(|cx| { let (update_sender, mut rx) = unbounded(); let _update_pooler = cx.spawn(|this, mut cx| async move { while let Some(()) = rx.next().await { this.update(&mut cx, |_, cx| { cx.notify(); })?; } Ok(()) }); Self { sources: Vec::new(), last_scheduled_tasks: VecDeque::new(), update_sender, _update_pooler, } }) } /// If the task with the same path was not added yet, /// registers a new tasks source to fetch for available tasks later. /// Unless a source is removed, ignores future additions for the same path. pub fn add_source( &mut self, kind: TaskSourceKind, create_source: impl FnOnce(UnboundedSender<()>, &mut AppContext) -> StaticSource, cx: &mut ModelContext, ) { let abs_path = kind.abs_path(); if abs_path.is_some() { if let Some(a) = self.sources.iter().find(|s| s.kind.abs_path() == abs_path) { log::debug!("Source for path {abs_path:?} already exists, not adding. Old kind: {OLD_KIND:?}, new kind: {kind:?}", OLD_KIND = a.kind); return; } } let source = create_source(self.update_sender.clone(), cx); let source = SourceInInventory { source, kind }; self.sources.push(source); cx.notify(); } /// If present, removes the local static source entry that has the given path, /// making corresponding task definitions unavailable in the fetch results. /// /// Now, entry for this path can be re-added again. pub fn remove_local_static_source(&mut self, abs_path: &Path) { self.sources.retain(|s| s.kind.abs_path() != Some(abs_path)); } /// If present, removes the worktree source entry that has the given worktree id, /// making corresponding task definitions unavailable in the fetch results. /// /// Now, entry for this path can be re-added again. pub fn remove_worktree_sources(&mut self, worktree: WorktreeId) { self.sources.retain(|s| s.kind.worktree() != Some(worktree)); } /// Pulls its task sources relevant to the worktree and the language given, /// returns all task templates with their source kinds, in no specific order. pub fn list_tasks( &self, file: Option>, language: Option>, worktree: Option, cx: &AppContext, ) -> Vec<(TaskSourceKind, TaskTemplate)> { let task_source_kind = language.as_ref().map(|language| TaskSourceKind::Language { name: language.name(), }); let language_tasks = language .and_then(|language| language.context_provider()?.associated_tasks(file, cx)) .into_iter() .flat_map(|tasks| tasks.0.into_iter()) .flat_map(|task| Some((task_source_kind.as_ref()?, task))); self.sources .iter() .filter(|source| { let source_worktree = source.kind.worktree(); worktree.is_none() || source_worktree.is_none() || source_worktree == worktree }) .flat_map(|source| { source .source .tasks_to_schedule() .0 .into_iter() .map(|task| (&source.kind, task)) }) .chain(language_tasks) .map(|(task_source_kind, task)| (task_source_kind.clone(), task)) .collect() } /// Pulls its task sources relevant to the worktree and the language given and resolves them with the [`TaskContext`] given. /// Joins the new resolutions with the resolved tasks that were used (spawned) before, /// orders them so that the most recently used come first, all equally used ones are ordered so that the most specific tasks come first. /// Deduplicates the tasks by their labels and splits the ordered list into two: used tasks and the rest, newly resolved tasks. pub fn used_and_current_resolved_tasks( &self, remote_templates_task: Option>>>, worktree: Option, location: Option, task_context: &TaskContext, cx: &AppContext, ) -> Task<( Vec<(TaskSourceKind, ResolvedTask)>, Vec<(TaskSourceKind, ResolvedTask)>, )> { let language = location .as_ref() .and_then(|location| location.buffer.read(cx).language_at(location.range.start)); let task_source_kind = language.as_ref().map(|language| TaskSourceKind::Language { name: language.name(), }); let file = location .as_ref() .and_then(|location| location.buffer.read(cx).file().cloned()); let language_tasks = language .and_then(|language| language.context_provider()?.associated_tasks(file, cx)) .into_iter() .flat_map(|tasks| tasks.0.into_iter()) .flat_map(|task| Some((task_source_kind.as_ref()?, task))); let mut lru_score = 0_u32; let mut task_usage = self .last_scheduled_tasks .iter() .rev() .filter(|(task_kind, _)| { if matches!(task_kind, TaskSourceKind::Language { .. }) { Some(task_kind) == task_source_kind.as_ref() } else { true } }) .fold( BTreeMap::default(), |mut tasks, (task_source_kind, resolved_task)| { tasks.entry(&resolved_task.id).or_insert_with(|| { (task_source_kind, resolved_task, post_inc(&mut lru_score)) }); tasks }, ); let not_used_score = post_inc(&mut lru_score); let mut currently_resolved_tasks = self .sources .iter() .filter(|source| { let source_worktree = source.kind.worktree(); worktree.is_none() || source_worktree.is_none() || source_worktree == worktree }) .flat_map(|source| { source .source .tasks_to_schedule() .0 .into_iter() .map(|task| (&source.kind, task)) }) .chain(language_tasks.filter(|_| remote_templates_task.is_none())) .filter_map(|(kind, task)| { let id_base = kind.to_id_base(); Some((kind, task.resolve_task(&id_base, task_context)?)) }) .map(|(kind, task)| { let lru_score = task_usage .remove(&task.id) .map(|(_, _, lru_score)| lru_score) .unwrap_or(not_used_score); (kind.clone(), task, lru_score) }) .collect::>(); let previously_spawned_tasks = task_usage .into_iter() .map(|(_, (kind, task, lru_score))| (kind.clone(), task.clone(), lru_score)) .collect::>(); let task_context = task_context.clone(); cx.spawn(move |_| async move { let remote_templates = match remote_templates_task { Some(task) => match task.await.log_err() { Some(remote_templates) => remote_templates, None => return (Vec::new(), Vec::new()), }, None => Vec::new(), }; let remote_tasks = remote_templates.into_iter().filter_map(|(kind, task)| { let id_base = kind.to_id_base(); Some(( kind, task.resolve_task(&id_base, &task_context)?, not_used_score, )) }); currently_resolved_tasks.extend(remote_tasks); let mut tasks_by_label = BTreeMap::default(); tasks_by_label = previously_spawned_tasks.into_iter().fold( tasks_by_label, |mut tasks_by_label, (source, task, lru_score)| { match tasks_by_label.entry((source, task.resolved_label.clone())) { btree_map::Entry::Occupied(mut o) => { let (_, previous_lru_score) = o.get(); if previous_lru_score >= &lru_score { o.insert((task, lru_score)); } } btree_map::Entry::Vacant(v) => { v.insert((task, lru_score)); } } tasks_by_label }, ); tasks_by_label = currently_resolved_tasks.iter().fold( tasks_by_label, |mut tasks_by_label, (source, task, lru_score)| { match tasks_by_label.entry((source.clone(), task.resolved_label.clone())) { btree_map::Entry::Occupied(mut o) => { let (previous_task, _) = o.get(); let new_template = task.original_task(); if new_template != previous_task.original_task() { o.insert((task.clone(), *lru_score)); } } btree_map::Entry::Vacant(v) => { v.insert((task.clone(), *lru_score)); } } tasks_by_label }, ); let resolved = tasks_by_label .into_iter() .map(|((kind, _), (task, lru_score))| (kind, task, lru_score)) .sorted_by(task_lru_comparator) .filter_map(|(kind, task, lru_score)| { if lru_score < not_used_score { Some((kind, task)) } else { None } }) .collect::>(); ( resolved, currently_resolved_tasks .into_iter() .sorted_unstable_by(task_lru_comparator) .map(|(kind, task, _)| (kind, task)) .collect(), ) }) } /// Returns the last scheduled task by task_id if provided. /// Otherwise, returns the last scheduled task. pub fn last_scheduled_task( &self, task_id: Option<&TaskId>, ) -> Option<(TaskSourceKind, ResolvedTask)> { if let Some(task_id) = task_id { self.last_scheduled_tasks .iter() .find(|(_, task)| &task.id == task_id) .cloned() } else { self.last_scheduled_tasks.back().cloned() } } /// Registers task "usage" as being scheduled – to be used for LRU sorting when listing all tasks. pub fn task_scheduled( &mut self, task_source_kind: TaskSourceKind, resolved_task: ResolvedTask, ) { self.last_scheduled_tasks .push_back((task_source_kind, resolved_task)); if self.last_scheduled_tasks.len() > 5_000 { self.last_scheduled_tasks.pop_front(); } } /// Deletes a resolved task from history, using its id. /// A similar may still resurface in `used_and_current_resolved_tasks` when its [`TaskTemplate`] is resolved again. pub fn delete_previously_used(&mut self, id: &TaskId) { self.last_scheduled_tasks.retain(|(_, task)| &task.id != id); } } fn task_lru_comparator( (kind_a, task_a, lru_score_a): &(TaskSourceKind, ResolvedTask, u32), (kind_b, task_b, lru_score_b): &(TaskSourceKind, ResolvedTask, u32), ) -> cmp::Ordering { lru_score_a // First, display recently used templates above all. .cmp(&lru_score_b) // Then, ensure more specific sources are displayed first. .then(task_source_kind_preference(kind_a).cmp(&task_source_kind_preference(kind_b))) // After that, display first more specific tasks, using more template variables. // Bonus points for tasks with symbol variables. .then(task_variables_preference(task_a).cmp(&task_variables_preference(task_b))) // Finally, sort by the resolved label, but a bit more specifically, to avoid mixing letters and digits. .then({ NumericPrefixWithSuffix::from_numeric_prefixed_str(&task_a.resolved_label) .cmp(&NumericPrefixWithSuffix::from_numeric_prefixed_str( &task_b.resolved_label, )) .then(task_a.resolved_label.cmp(&task_b.resolved_label)) .then(kind_a.cmp(kind_b)) }) } fn task_source_kind_preference(kind: &TaskSourceKind) -> u32 { match kind { TaskSourceKind::Language { .. } => 1, TaskSourceKind::UserInput => 2, TaskSourceKind::Worktree { .. } => 3, TaskSourceKind::AbsPath { .. } => 4, } } fn task_variables_preference(task: &ResolvedTask) -> Reverse { let task_variables = task.substituted_variables(); Reverse(if task_variables.contains(&VariableName::Symbol) { task_variables.len() + 1 } else { task_variables.len() }) } #[cfg(test)] mod test_inventory { use gpui::{AppContext, Model, TestAppContext}; use itertools::Itertools; use task::{ static_source::{StaticSource, TrackedFile}, TaskContext, TaskTemplate, TaskTemplates, }; use worktree::WorktreeId; use crate::Inventory; use super::{task_source_kind_preference, TaskSourceKind, UnboundedSender}; pub(super) fn static_test_source( task_names: impl IntoIterator, updates: UnboundedSender<()>, cx: &mut AppContext, ) -> StaticSource { let tasks = TaskTemplates( task_names .into_iter() .map(|name| TaskTemplate { label: name, command: "test command".to_owned(), ..TaskTemplate::default() }) .collect(), ); let (tx, rx) = futures::channel::mpsc::unbounded(); let file = TrackedFile::new(rx, updates, cx); tx.unbounded_send(serde_json::to_string(&tasks).unwrap()) .unwrap(); StaticSource::new(file) } pub(super) fn task_template_names( inventory: &Model, worktree: Option, cx: &mut TestAppContext, ) -> Vec { inventory.update(cx, |inventory, cx| { inventory .list_tasks(None, None, worktree, cx) .into_iter() .map(|(_, task)| task.label) .sorted() .collect() }) } pub(super) fn register_task_used( inventory: &Model, task_name: &str, cx: &mut TestAppContext, ) { inventory.update(cx, |inventory, cx| { let (task_source_kind, task) = inventory .list_tasks(None, None, None, cx) .into_iter() .find(|(_, task)| task.label == task_name) .unwrap_or_else(|| panic!("Failed to find task with name {task_name}")); let id_base = task_source_kind.to_id_base(); inventory.task_scheduled( task_source_kind.clone(), task.resolve_task(&id_base, &TaskContext::default()) .unwrap_or_else(|| panic!("Failed to resolve task with name {task_name}")), ); }); } pub(super) async fn list_tasks( inventory: &Model, worktree: Option, cx: &mut TestAppContext, ) -> Vec<(TaskSourceKind, String)> { let (used, current) = inventory .update(cx, |inventory, cx| { inventory.used_and_current_resolved_tasks( None, worktree, None, &TaskContext::default(), cx, ) }) .await; let mut all = used; all.extend(current); all.into_iter() .map(|(source_kind, task)| (source_kind, task.resolved_label)) .sorted_by_key(|(kind, label)| (task_source_kind_preference(kind), label.clone())) .collect() } } /// A context provided that tries to provide values for all non-custom [`VariableName`] variants for a currently opened file. /// Applied as a base for every custom [`ContextProvider`] unless explicitly oped out. pub struct BasicContextProvider { project: Model, } impl BasicContextProvider { pub fn new(project: Model) -> Self { Self { project } } } impl ContextProvider for BasicContextProvider { fn build_context( &self, _: &TaskVariables, location: &Location, cx: &mut AppContext, ) -> Result { let buffer = location.buffer.read(cx); let buffer_snapshot = buffer.snapshot(); let symbols = buffer_snapshot.symbols_containing(location.range.start, None); let symbol = symbols.unwrap_or_default().last().map(|symbol| { let range = symbol .name_ranges .last() .cloned() .unwrap_or(0..symbol.text.len()); symbol.text[range].to_string() }); let current_file = buffer .file() .and_then(|file| file.as_local()) .map(|file| file.abs_path(cx).to_string_lossy().to_string()); let Point { row, column } = location.range.start.to_point(&buffer_snapshot); let row = row + 1; let column = column + 1; let selected_text = buffer .chars_for_range(location.range.clone()) .collect::(); let mut task_variables = TaskVariables::from_iter([ (VariableName::Row, row.to_string()), (VariableName::Column, column.to_string()), ]); if let Some(symbol) = symbol { task_variables.insert(VariableName::Symbol, symbol); } if !selected_text.trim().is_empty() { task_variables.insert(VariableName::SelectedText, selected_text); } let worktree_abs_path = buffer .file() .map(|file| WorktreeId::from_usize(file.worktree_id())) .and_then(|worktree_id| { self.project .read(cx) .worktree_for_id(worktree_id, cx) .map(|worktree| worktree.read(cx).abs_path()) }); if let Some(worktree_path) = worktree_abs_path { task_variables.insert( VariableName::WorktreeRoot, worktree_path.to_string_lossy().to_string(), ); if let Some(full_path) = current_file.as_ref() { let relative_path = pathdiff::diff_paths(full_path, worktree_path); if let Some(relative_path) = relative_path { task_variables.insert( VariableName::RelativeFile, relative_path.to_string_lossy().into_owned(), ); } } } if let Some(path_as_string) = current_file { let path = Path::new(&path_as_string); if let Some(filename) = path.file_name().and_then(|f| f.to_str()) { task_variables.insert(VariableName::Filename, String::from(filename)); } if let Some(stem) = path.file_stem().and_then(|s| s.to_str()) { task_variables.insert(VariableName::Stem, stem.into()); } if let Some(dirname) = path.parent().and_then(|s| s.to_str()) { task_variables.insert(VariableName::Dirname, dirname.into()); } task_variables.insert(VariableName::File, path_as_string); } Ok(task_variables) } } /// A ContextProvider that doesn't provide any task variables on it's own, though it has some associated tasks. pub struct ContextProviderWithTasks { templates: TaskTemplates, } impl ContextProviderWithTasks { pub fn new(definitions: TaskTemplates) -> Self { Self { templates: definitions, } } } impl ContextProvider for ContextProviderWithTasks { fn associated_tasks( &self, _: Option>, _: &AppContext, ) -> Option { Some(self.templates.clone()) } } #[cfg(test)] mod tests { use gpui::TestAppContext; use super::test_inventory::*; use super::*; #[gpui::test] async fn test_task_list_sorting(cx: &mut TestAppContext) { let inventory = cx.update(Inventory::new); let initial_tasks = resolved_task_names(&inventory, None, cx).await; assert!( initial_tasks.is_empty(), "No tasks expected for empty inventory, but got {initial_tasks:?}" ); let initial_tasks = task_template_names(&inventory, None, cx); assert!( initial_tasks.is_empty(), "No tasks expected for empty inventory, but got {initial_tasks:?}" ); inventory.update(cx, |inventory, cx| { inventory.add_source( TaskSourceKind::UserInput, |tx, cx| static_test_source(vec!["3_task".to_string()], tx, cx), cx, ); }); inventory.update(cx, |inventory, cx| { inventory.add_source( TaskSourceKind::UserInput, |tx, cx| { static_test_source( vec![ "1_task".to_string(), "2_task".to_string(), "1_a_task".to_string(), ], tx, cx, ) }, cx, ); }); cx.run_until_parked(); let expected_initial_state = [ "1_a_task".to_string(), "1_task".to_string(), "2_task".to_string(), "3_task".to_string(), ]; assert_eq!( task_template_names(&inventory, None, cx), &expected_initial_state, ); assert_eq!( resolved_task_names(&inventory, None, cx).await, &expected_initial_state, "Tasks with equal amount of usages should be sorted alphanumerically" ); register_task_used(&inventory, "2_task", cx); assert_eq!( task_template_names(&inventory, None, cx), &expected_initial_state, ); assert_eq!( resolved_task_names(&inventory, None, cx).await, vec![ "2_task".to_string(), "2_task".to_string(), "1_a_task".to_string(), "1_task".to_string(), "3_task".to_string() ], ); register_task_used(&inventory, "1_task", cx); register_task_used(&inventory, "1_task", cx); register_task_used(&inventory, "1_task", cx); register_task_used(&inventory, "3_task", cx); assert_eq!( task_template_names(&inventory, None, cx), &expected_initial_state, ); assert_eq!( resolved_task_names(&inventory, None, cx).await, vec![ "3_task".to_string(), "1_task".to_string(), "2_task".to_string(), "3_task".to_string(), "1_task".to_string(), "2_task".to_string(), "1_a_task".to_string(), ], ); inventory.update(cx, |inventory, cx| { inventory.add_source( TaskSourceKind::UserInput, |tx, cx| { static_test_source(vec!["10_hello".to_string(), "11_hello".to_string()], tx, cx) }, cx, ); }); cx.run_until_parked(); let expected_updated_state = [ "10_hello".to_string(), "11_hello".to_string(), "1_a_task".to_string(), "1_task".to_string(), "2_task".to_string(), "3_task".to_string(), ]; assert_eq!( task_template_names(&inventory, None, cx), &expected_updated_state, ); assert_eq!( resolved_task_names(&inventory, None, cx).await, vec![ "3_task".to_string(), "1_task".to_string(), "2_task".to_string(), "3_task".to_string(), "1_task".to_string(), "2_task".to_string(), "1_a_task".to_string(), "10_hello".to_string(), "11_hello".to_string(), ], ); register_task_used(&inventory, "11_hello", cx); assert_eq!( task_template_names(&inventory, None, cx), &expected_updated_state, ); assert_eq!( resolved_task_names(&inventory, None, cx).await, vec![ "11_hello".to_string(), "3_task".to_string(), "1_task".to_string(), "2_task".to_string(), "11_hello".to_string(), "3_task".to_string(), "1_task".to_string(), "2_task".to_string(), "1_a_task".to_string(), "10_hello".to_string(), ], ); } #[gpui::test] async fn test_inventory_static_task_filters(cx: &mut TestAppContext) { let inventory_with_statics = cx.update(Inventory::new); let common_name = "common_task_name"; let path_1 = Path::new("path_1"); let path_2 = Path::new("path_2"); let worktree_1 = WorktreeId::from_usize(1); let worktree_path_1 = Path::new("worktree_path_1"); let worktree_2 = WorktreeId::from_usize(2); let worktree_path_2 = Path::new("worktree_path_2"); inventory_with_statics.update(cx, |inventory, cx| { inventory.add_source( TaskSourceKind::UserInput, |tx, cx| { static_test_source( vec!["user_input".to_string(), common_name.to_string()], tx, cx, ) }, cx, ); inventory.add_source( TaskSourceKind::AbsPath { id_base: "test source".into(), abs_path: path_1.to_path_buf(), }, |tx, cx| { static_test_source( vec!["static_source_1".to_string(), common_name.to_string()], tx, cx, ) }, cx, ); inventory.add_source( TaskSourceKind::AbsPath { id_base: "test source".into(), abs_path: path_2.to_path_buf(), }, |tx, cx| { static_test_source( vec!["static_source_2".to_string(), common_name.to_string()], tx, cx, ) }, cx, ); inventory.add_source( TaskSourceKind::Worktree { id: worktree_1, abs_path: worktree_path_1.to_path_buf(), id_base: "test_source".into(), }, |tx, cx| { static_test_source( vec!["worktree_1".to_string(), common_name.to_string()], tx, cx, ) }, cx, ); inventory.add_source( TaskSourceKind::Worktree { id: worktree_2, abs_path: worktree_path_2.to_path_buf(), id_base: "test_source".into(), }, |tx, cx| { static_test_source( vec!["worktree_2".to_string(), common_name.to_string()], tx, cx, ) }, cx, ); }); cx.run_until_parked(); let worktree_independent_tasks = vec![ ( TaskSourceKind::AbsPath { id_base: "test source".into(), abs_path: path_1.to_path_buf(), }, "static_source_1".to_string(), ), ( TaskSourceKind::AbsPath { id_base: "test source".into(), abs_path: path_1.to_path_buf(), }, common_name.to_string(), ), ( TaskSourceKind::AbsPath { id_base: "test source".into(), abs_path: path_2.to_path_buf(), }, common_name.to_string(), ), ( TaskSourceKind::AbsPath { id_base: "test source".into(), abs_path: path_2.to_path_buf(), }, "static_source_2".to_string(), ), (TaskSourceKind::UserInput, common_name.to_string()), (TaskSourceKind::UserInput, "user_input".to_string()), ]; let worktree_1_tasks = [ ( TaskSourceKind::Worktree { id: worktree_1, abs_path: worktree_path_1.to_path_buf(), id_base: "test_source".into(), }, common_name.to_string(), ), ( TaskSourceKind::Worktree { id: worktree_1, abs_path: worktree_path_1.to_path_buf(), id_base: "test_source".into(), }, "worktree_1".to_string(), ), ]; let worktree_2_tasks = [ ( TaskSourceKind::Worktree { id: worktree_2, abs_path: worktree_path_2.to_path_buf(), id_base: "test_source".into(), }, common_name.to_string(), ), ( TaskSourceKind::Worktree { id: worktree_2, abs_path: worktree_path_2.to_path_buf(), id_base: "test_source".into(), }, "worktree_2".to_string(), ), ]; let all_tasks = worktree_1_tasks .iter() .chain(worktree_2_tasks.iter()) // worktree-less tasks come later in the list .chain(worktree_independent_tasks.iter()) .cloned() .sorted_by_key(|(kind, label)| (task_source_kind_preference(kind), label.clone())) .collect::>(); assert_eq!( list_tasks(&inventory_with_statics, None, cx).await, all_tasks ); assert_eq!( list_tasks(&inventory_with_statics, Some(worktree_1), cx).await, worktree_1_tasks .iter() .chain(worktree_independent_tasks.iter()) .cloned() .sorted_by_key(|(kind, label)| (task_source_kind_preference(kind), label.clone())) .collect::>(), ); assert_eq!( list_tasks(&inventory_with_statics, Some(worktree_2), cx).await, worktree_2_tasks .iter() .chain(worktree_independent_tasks.iter()) .cloned() .sorted_by_key(|(kind, label)| (task_source_kind_preference(kind), label.clone())) .collect::>(), ); } pub(super) async fn resolved_task_names( inventory: &Model, worktree: Option, cx: &mut TestAppContext, ) -> Vec { let (used, current) = inventory .update(cx, |inventory, cx| { inventory.used_and_current_resolved_tasks( None, worktree, None, &TaskContext::default(), cx, ) }) .await; used.into_iter() .chain(current) .map(|(_, task)| task.original_task().label.clone()) .collect() } }