Skip to main content

dev_prune/
workspace.rs

1// Copyright 2026 VKrishna04
2// SPDX-License-Identifier: Apache-2.0
3
4// Workspace discovery — finds every package-manager project inside a repository.
5//
6// A repository is not necessarily one project. A monorepo can carry `frontend/` on
7// pnpm, `services/api/` on uv, and `cli/` on cargo, or hold all three manifests side
8// by side in the root. This module walks the repo once and reports every directory
9// where at least one adapter applies, so the engine can prune, verify and restore each
10// of them independently.
11//
12// The walk deliberately never descends into the directories it is looking for. A
13// `node_modules` tree contains thousands of nested `package.json` files, each of which
14// would otherwise register as its own project.
15
16use std::path::{Path, PathBuf};
17
18use walkdir::{DirEntry, WalkDir};
19
20use crate::adapters::{self, PackageManager};
21
22/// The depth [`discover`] uses when no configuration says otherwise.
23///
24/// Re-exported from [`crate::constants`] so callers that only need the default do not
25/// have to reach past this module for it.
26pub const MAX_DEPTH: usize = crate::constants::DEFAULT_SCAN_DEPTH;
27
28/// The depth to walk `repo_root` with, given the global setting.
29///
30/// Resolution order is the same one every other tunable follows: the repository's own
31/// `.devprune.json` wins over the global setting, which wins over the default. A config
32/// that will not parse is *not* consulted — the caller reports that repository as a
33/// `config_error` and never gets here — so this deliberately looks only at a config it
34/// could read.
35pub fn resolve_depth(repo_root: &Path, global: usize) -> usize {
36    let configured = crate::config::PerRepoConfig::load_with_diagnostics(repo_root)
37        .ok()
38        .flatten()
39        .and_then(|c| c.scan_depth)
40        .unwrap_or(global);
41    clamp_depth(configured)
42}
43
44/// Hold a requested depth inside the range the walk can afford.
45///
46/// A zero would find nothing at all — not even the repository root, which is depth 0 in
47/// `WalkDir` terms but only yields projects because the walk includes it — so it is
48/// raised to 1 rather than silently pruning nothing. The ceiling keeps a mistyped
49/// `scan_depth: 900` from turning a background pass into a full-disk crawl.
50pub fn clamp_depth(requested: usize) -> usize {
51    requested.clamp(1, crate::constants::MAX_SCAN_DEPTH_LIMIT)
52}
53
54/// Directory names that are never descended into.
55///
56/// Hidden directories, virtual environments and nested repositories are excluded
57/// separately in [`is_scannable`] because they cannot be matched by name alone.
58/// Several of these hold whole projects of their own: `deps/` is full of Elixir
59/// packages with their own `mix.exs`, `.build/` of Swift checkouts with their own
60/// `Package.swift`. Descending would register a dependency as a project and offer to
61/// prune inside something the parent repository rebuilds wholesale.
62const SKIP_DIRS: &[&str] = &[
63    "node_modules",
64    "target",
65    "vendor",
66    "bower_components",
67    "__pypackages__",
68    "Pods",
69    "deps",
70    "_build",
71    ".build",
72];
73
74/// A directory inside a repository that at least one package manager owns.
75pub struct Project {
76    /// Absolute path to the project directory.
77    pub path: PathBuf,
78    /// Path relative to the repository root, `/`-separated. `"."` for the root itself.
79    pub relative: String,
80    /// Adapters that apply here. More than one is normal — cargo and npm in the same
81    /// directory own `target` and `node_modules` respectively.
82    pub adapters: Vec<Box<dyn PackageManager>>,
83}
84
85/// Find every package-manager project in `repo_root`, including the root itself.
86///
87/// Walks to the default depth. Callers that have the user's settings to hand should use
88/// [`discover_to_depth`] with [`resolve_depth`] instead.
89///
90/// Returns an empty vector when nothing in the tree is recognised.
91pub fn discover(repo_root: &Path) -> Vec<Project> {
92    discover_to_depth(repo_root, MAX_DEPTH)
93}
94
95/// [`discover`], to an explicit depth.
96///
97/// `depth` is clamped, so a caller cannot hand this an unbounded or useless walk even by
98/// reading a hand-edited config straight off disk.
99pub fn discover_to_depth(repo_root: &Path, depth: usize) -> Vec<Project> {
100    discover_with(repo_root, depth, adapters::detect_adapters)
101}
102
103/// [`discover_to_depth`], counting managers the user has switched off for pruning too.
104///
105/// For the one caller that is asking which package managers a repository *uses* rather
106/// than which ones a pass would act on: see [`adapters::detect_all_adapters`].
107pub fn discover_all_to_depth(repo_root: &Path, depth: usize) -> Vec<Project> {
108    discover_with(repo_root, depth, adapters::detect_all_adapters)
109}
110
111/// The walk both discovery functions share, parameterised only by which detector runs
112/// at each directory.
113fn discover_with(
114    repo_root: &Path,
115    depth: usize,
116    detect: fn(&Path) -> Vec<Box<dyn PackageManager>>,
117) -> Vec<Project> {
118    WalkDir::new(repo_root)
119        .follow_links(false)
120        .max_depth(clamp_depth(depth))
121        // Directory order otherwise comes from the filesystem, so the same repository
122        // lists its projects in a different order on different machines — and so does
123        // every prune summary and JSON document built from them.
124        .sort_by_file_name()
125        .into_iter()
126        .filter_entry(|entry| entry.depth() == 0 || is_scannable(entry))
127        .flatten()
128        .filter(|entry| entry.file_type().is_dir())
129        .filter_map(|entry| {
130            let adapters = detect(entry.path());
131            if adapters.is_empty() {
132                return None;
133            }
134            Some(Project {
135                relative: relative_label(repo_root, entry.path()),
136                path: entry.path().to_path_buf(),
137                adapters,
138            })
139        })
140        .collect()
141}
142
143/// Whether the walk should descend into this entry.
144fn is_scannable(entry: &DirEntry) -> bool {
145    // Symlinked directories report as symlinks with `follow_links(false)` and are never
146    // descended, so only real directories need filtering. Files pass through untouched.
147    if !entry.file_type().is_dir() {
148        return true;
149    }
150
151    let name = entry.file_name().to_string_lossy();
152
153    // `.git`, `.venv`, `.tox`, `.next`, `.turbo`, editor state — none of them hold
154    // projects worth pruning, and all of them are expensive to walk.
155    if name.starts_with('.') {
156        return false;
157    }
158
159    if SKIP_DIRS.contains(&name.as_ref()) {
160        return false;
161    }
162
163    let path = entry.path();
164
165    // A virtual environment can be called anything; `pyvenv.cfg` is the marker. It is
166    // pruneable output, not a project, and it contains a full package tree.
167    if path.join("pyvenv.cfg").exists() {
168        return false;
169    }
170
171    // Submodules and nested clones are separate repositories with their own activity
172    // history and their own `.devprune.json`. They are registered and pruned in their
173    // own right, never as part of their parent.
174    if path.join(".git").exists() {
175        return false;
176    }
177
178    true
179}
180
181/// Render `path` relative to `root` with forward slashes; `"."` when they are equal.
182///
183/// Used for every user-facing directory label so that `frontend/node_modules` reads the
184/// same on Windows as on Linux, and so the interactive selector can address a specific
185/// nested directory unambiguously.
186pub fn relative_label(root: &Path, path: &Path) -> String {
187    match path.strip_prefix(root) {
188        Ok(rel) if rel.as_os_str().is_empty() => ".".to_string(),
189        Ok(rel) => rel.to_string_lossy().replace('\\', "/"),
190        Err(_) => path.display().to_string(),
191    }
192}
193
194#[cfg(test)]
195mod tests {
196    use super::*;
197    use std::fs;
198    use tempfile::TempDir;
199
200    /// Create `dir` and drop the given files into it.
201    fn project(root: &Path, rel: &str, files: &[&str]) -> PathBuf {
202        let dir = if rel == "." {
203            root.to_path_buf()
204        } else {
205            root.join(rel)
206        };
207        fs::create_dir_all(&dir).unwrap();
208        for file in files {
209            fs::write(dir.join(file), "{}").unwrap();
210        }
211        dir
212    }
213
214    fn names(projects: &[Project]) -> Vec<(String, Vec<&'static str>)> {
215        let mut out: Vec<(String, Vec<&'static str>)> = projects
216            .iter()
217            .map(|p| {
218                let mut adapters: Vec<&'static str> = p.adapters.iter().map(|a| a.name()).collect();
219                adapters.sort_unstable();
220                (p.relative.clone(), adapters)
221            })
222            .collect();
223        out.sort();
224        out
225    }
226
227    #[test]
228    fn discovers_nothing_in_an_empty_tree() {
229        let tmp = TempDir::new().unwrap();
230        assert!(discover(tmp.path()).is_empty());
231    }
232
233    #[test]
234    fn discovers_three_ecosystems_in_one_root() {
235        let tmp = TempDir::new().unwrap();
236        project(
237            tmp.path(),
238            ".",
239            &["package.json", "package-lock.json", "uv.lock", "go.mod"],
240        );
241
242        assert_eq!(
243            names(&discover(tmp.path())),
244            vec![(".".to_string(), vec!["go", "npm", "uv"])]
245        );
246    }
247
248    #[test]
249    fn discovers_ecosystems_at_different_depths() {
250        let tmp = TempDir::new().unwrap();
251        project(tmp.path(), "frontend", &["pnpm-lock.yaml"]);
252        project(tmp.path(), "services/api", &["uv.lock"]);
253        project(tmp.path(), "tools/cli", &["go.mod"]);
254
255        assert_eq!(
256            names(&discover(tmp.path())),
257            vec![
258                ("frontend".to_string(), vec!["pnpm"]),
259                ("services/api".to_string(), vec!["uv"]),
260                ("tools/cli".to_string(), vec!["go"]),
261            ]
262        );
263    }
264
265    #[test]
266    fn combines_a_root_project_with_nested_ones() {
267        let tmp = TempDir::new().unwrap();
268        project(tmp.path(), ".", &["go.mod"]);
269        project(tmp.path(), "web", &["package.json", "package-lock.json"]);
270
271        assert_eq!(
272            names(&discover(tmp.path())),
273            vec![
274                (".".to_string(), vec!["go"]),
275                ("web".to_string(), vec!["npm"]),
276            ]
277        );
278    }
279
280    #[test]
281    fn never_descends_into_node_modules() {
282        let tmp = TempDir::new().unwrap();
283        project(tmp.path(), ".", &["package.json", "package-lock.json"]);
284        // A dependency that ships its own lockfile must not become a project.
285        project(
286            tmp.path(),
287            "node_modules/some-dep",
288            &["package.json", "package-lock.json"],
289        );
290
291        assert_eq!(names(&discover(tmp.path())).len(), 1);
292    }
293
294    #[test]
295    fn never_descends_into_target_or_vendor() {
296        let tmp = TempDir::new().unwrap();
297        project(tmp.path(), ".", &["go.mod"]);
298        project(tmp.path(), "target/debug/build/x", &["go.mod"]);
299        project(tmp.path(), "vendor/dep", &["go.mod"]);
300
301        assert_eq!(
302            names(&discover(tmp.path())),
303            vec![(".".to_string(), vec!["go"])]
304        );
305    }
306
307    #[test]
308    fn never_descends_into_a_virtual_environment() {
309        let tmp = TempDir::new().unwrap();
310        project(tmp.path(), ".", &["uv.lock"]);
311        let venv = project(tmp.path(), "my_env", &["pyvenv.cfg"]);
312        project(&venv, "lib/site-packages/dep", &["go.mod"]);
313
314        assert_eq!(
315            names(&discover(tmp.path())),
316            vec![(".".to_string(), vec!["uv"])]
317        );
318    }
319
320    #[test]
321    fn never_descends_into_a_nested_repository() {
322        let tmp = TempDir::new().unwrap();
323        project(tmp.path(), ".", &["go.mod"]);
324        let sub = project(tmp.path(), "submodule", &["package-lock.json"]);
325        fs::create_dir(sub.join(".git")).unwrap();
326
327        assert_eq!(
328            names(&discover(tmp.path())),
329            vec![(".".to_string(), vec!["go"])]
330        );
331    }
332
333    #[test]
334    fn never_descends_into_hidden_directories() {
335        let tmp = TempDir::new().unwrap();
336        project(tmp.path(), ".github/actions/thing", &["package-lock.json"]);
337        assert!(discover(tmp.path()).is_empty());
338    }
339
340    #[test]
341    fn stops_at_the_depth_cap() {
342        let tmp = TempDir::new().unwrap();
343        let deep = "a/b/c/d/e/f/g/h";
344        project(tmp.path(), deep, &["Cargo.toml"]);
345        assert!(discover(tmp.path()).is_empty());
346    }
347
348    #[test]
349    fn relative_label_is_slash_separated() {
350        let root = Path::new("/repo");
351        assert_eq!(relative_label(root, Path::new("/repo")), ".");
352        assert_eq!(
353            relative_label(root, Path::new("/repo/a/b/node_modules")),
354            "a/b/node_modules"
355        );
356    }
357}