1use std::sync::Arc;
2
3use settings::WorktreeId;
4use util::rel_path::RelPath;
5
6// Re-export ManifestName from language_core.
7pub use language_core::ManifestName;
8
9/// Represents a manifest query; given a path to a file, the manifest provider is tasked with finding a path to the directory containing the manifest for that file.
10///
11/// Since parts of the path might have already been explored, there's an additional `depth` parameter that indicates to what ancestry level a given path should be explored.
12/// For example, given a path like `foo/bar/baz`, a depth of 2 would explore `foo/bar/baz` and `foo/bar`, but not `foo`.
13pub struct ManifestQuery {
14 /// Path to the file, relative to worktree root.
15 pub path: Arc<RelPath>,
16 pub depth: usize,
17 pub delegate: Arc<dyn ManifestDelegate>,
18}
19
20pub trait ManifestProvider {
21 fn name(&self) -> ManifestName;
22 fn search(&self, query: ManifestQuery) -> Option<Arc<RelPath>>;
23}
24
25pub trait ManifestDelegate: Send + Sync {
26 fn worktree_id(&self) -> WorktreeId;
27 fn exists(&self, path: &RelPath, is_dir: Option<bool>) -> bool;
28}