Skip to main content

fallow_core/plugins/registry/
helpers.rs

1//! Helper functions for plugin registry orchestration.
2//!
3//! Contains pattern aggregation, external plugin processing, config file discovery,
4//! config result merging, and plugin detection logic.
5
6use std::borrow::Cow;
7use std::ffi::{OsStr, OsString};
8use std::path::{Path, PathBuf};
9
10use rustc_hash::{FxHashMap, FxHashSet};
11
12use fallow_config::{ExternalPluginDef, PackageJson, PluginDetection, UsedClassMemberRule};
13
14use crate::discover::SOURCE_EXTENSIONS;
15
16use super::super::{PathRule, Plugin, PluginResult, PluginUsedExportRule, UsedExportRule};
17use super::{AggregatedPluginResult, PluginRegexValidationError, PluginRegexValidationErrorInput};
18
19/// True when a config pattern names a source-extension config file living
20/// directly in some directory (no path separator, no leading dot, all expanded
21/// extensions are in `SOURCE_EXTENSIONS`).
22///
23/// Such patterns describe files that are already in the discovered file set, so
24/// Phase 3a's in-memory matchers can find them after a `**/` prefix is added.
25/// Callers use this to skip the corresponding filesystem fallback walk in
26/// `discover_config_files`, which is the dominant cost on large monorepos.
27#[must_use]
28pub fn is_source_ext_root_pattern(pat: &str) -> bool {
29    if pat.is_empty() || pat.contains('/') {
30        return false;
31    }
32    for expanded in expand_brace_pattern(pat) {
33        if expanded.starts_with('.') {
34            return false;
35        }
36        let Some(ext) = std::path::Path::new(&expanded).extension() else {
37            return false;
38        };
39        let Some(ext_str) = ext.to_str() else {
40            return false;
41        };
42        if !SOURCE_EXTENSIONS.contains(&ext_str) {
43            return false;
44        }
45    }
46    true
47}
48
49/// Prepare a config pattern for `globset::Glob`.
50#[must_use]
51pub fn prepare_config_pattern(pat: &str) -> Cow<'_, str> {
52    if is_source_ext_root_pattern(pat) {
53        Cow::Owned(format!("**/{pat}"))
54    } else {
55        Cow::Borrowed(pat)
56    }
57}
58
59/// Collect static patterns from a single plugin into the aggregated result.
60pub fn process_static_patterns(
61    plugin: &dyn Plugin,
62    root: &Path,
63    result: &mut AggregatedPluginResult,
64) {
65    let pname = plugin.name().to_string();
66    result.active_plugins.push(pname.clone());
67    result
68        .entry_point_roles
69        .insert(pname.clone(), plugin.entry_point_role());
70
71    collect_static_plugin_rules(plugin, &pname, result);
72    collect_static_plugin_metadata(plugin, root, result);
73}
74
75/// Collect a plugin's entry/used-export/class-member/config/always-used rules
76/// into the aggregate, all scoped under `pname`.
77fn collect_static_plugin_rules(
78    plugin: &dyn Plugin,
79    pname: &str,
80    result: &mut AggregatedPluginResult,
81) {
82    for rule in plugin.entry_pattern_rules() {
83        result.entry_patterns.push((rule, pname.to_string()));
84    }
85    for pat in plugin.config_patterns() {
86        result.config_patterns.push((*pat).to_string());
87    }
88    for pat in plugin.always_used() {
89        result
90            .always_used
91            .push(((*pat).to_string(), pname.to_string()));
92    }
93    for rule in plugin.used_export_rules() {
94        result
95            .used_exports
96            .push(PluginUsedExportRule::new(pname.to_string(), rule));
97    }
98    for member in plugin.used_class_members() {
99        result
100            .used_class_members
101            .push(UsedClassMemberRule::from(*member));
102    }
103    for rule in plugin.used_class_member_rules() {
104        result.used_class_members.push(rule);
105    }
106    result
107        .framework_class_member_contracts
108        .extend(plugin.framework_class_member_contracts());
109    for pat in plugin.fixture_glob_patterns() {
110        result
111            .fixture_patterns
112            .push(((*pat).to_string(), pname.to_string()));
113    }
114}
115
116/// Collect a plugin's dependency/virtual-module/alias/auto-import metadata into
117/// the aggregate.
118fn collect_static_plugin_metadata(
119    plugin: &dyn Plugin,
120    root: &Path,
121    result: &mut AggregatedPluginResult,
122) {
123    for dep in plugin.tooling_dependencies() {
124        result.tooling_dependencies.push((*dep).to_string());
125    }
126    for prefix in plugin.virtual_module_prefixes() {
127        result.virtual_module_prefixes.push((*prefix).to_string());
128    }
129    for suffix in plugin.virtual_package_suffixes() {
130        result.virtual_package_suffixes.push((*suffix).to_string());
131    }
132    for pattern in plugin.generated_import_patterns() {
133        result
134            .generated_import_patterns
135            .push((*pattern).to_string());
136    }
137    for prefix in plugin.generated_type_import_prefixes() {
138        result
139            .generated_type_import_prefixes
140            .push((*prefix).to_string());
141    }
142    for (prefix, replacement) in plugin.path_aliases(root) {
143        result.path_aliases.push((prefix.to_string(), replacement));
144    }
145    result
146        .framework_static_dir_mappings
147        .extend(plugin.static_dir_mappings(root));
148    result
149        .auto_imports
150        .extend(plugin.auto_imports(root).into_iter().map(|mut rule| {
151            if rule.scope.is_empty() {
152                rule.scope.push(root.to_path_buf());
153            }
154            rule
155        }));
156    result
157        .provided_dependencies
158        .extend(plugin.provided_dependencies());
159}
160
161/// Resolve package.json metadata hooks for active plugins.
162pub fn process_package_json_metadata(
163    active: &[&dyn Plugin],
164    pkg: &PackageJson,
165    root: &Path,
166    result: &mut AggregatedPluginResult,
167    regex_errors: &mut Vec<PluginRegexValidationError>,
168) {
169    for plugin in active {
170        let package_referenced = plugin.package_json_referenced_dependencies(pkg, root);
171        if !package_referenced.is_empty() {
172            let pkg_path = root.join("package.json");
173            result.package_referenced_dependencies.extend(
174                package_referenced
175                    .into_iter()
176                    .map(|dep| (pkg_path.clone(), dep)),
177            );
178        }
179        let plugin_result = plugin.resolve_package_json(pkg, root);
180        if plugin_result.is_empty() {
181            continue;
182        }
183        tracing::debug!(
184            plugin = plugin.name(),
185            deps = plugin_result.referenced_dependencies.len(),
186            "resolved package.json metadata"
187        );
188        if let Err(mut errors) = process_config_result(plugin.name(), plugin_result, result, None) {
189            regex_errors.append(&mut errors);
190        }
191    }
192}
193
194/// Determine whether an external plugin activates against the given project.
195///
196/// Shared between `process_external_plugins` and the collision-warning
197/// helper in `registry::mod` so both paths agree on activation semantics.
198pub fn is_external_plugin_active(
199    ext: &ExternalPluginDef,
200    all_deps: &[String],
201    root: &Path,
202    discovered_files: &[PathBuf],
203) -> bool {
204    if let Some(detection) = &ext.detection {
205        let all_dep_refs: Vec<&str> = all_deps.iter().map(String::as_str).collect();
206        check_plugin_detection(detection, &all_dep_refs, root, discovered_files)
207    } else if !ext.enablers.is_empty() {
208        ext.enablers.iter().any(|enabler| {
209            if enabler.ends_with('/') {
210                all_deps.iter().any(|d| d.starts_with(enabler))
211            } else {
212                all_deps.iter().any(|d| d == enabler)
213            }
214        })
215    } else {
216        false
217    }
218}
219
220/// Process external plugin definitions, checking activation and aggregating patterns.
221pub fn process_external_plugins(
222    external_plugins: &[ExternalPluginDef],
223    all_deps: &[String],
224    root: &Path,
225    discovered_files: &[PathBuf],
226    result: &mut AggregatedPluginResult,
227) {
228    for ext in external_plugins {
229        let is_active = is_external_plugin_active(ext, all_deps, root, discovered_files);
230        if is_active {
231            result.active_plugins.push(ext.name.clone());
232            result
233                .entry_point_roles
234                .insert(ext.name.clone(), ext.entry_point_role);
235            result.entry_patterns.extend(
236                ext.entry_points
237                    .iter()
238                    .map(|p| (PathRule::new(p.clone()), ext.name.clone())),
239            );
240            if !ext.manifest_entries.is_empty() {
241                result.entry_patterns.extend(
242                    crate::plugins::manifest_entries::evaluate_manifest_entries(ext, root)
243                        .into_iter()
244                        .map(|rule| (rule, ext.name.clone())),
245                );
246            }
247            result.config_patterns.extend(ext.config_patterns.clone());
248            result.always_used.extend(
249                ext.config_patterns
250                    .iter()
251                    .chain(ext.always_used.iter())
252                    .map(|p| (p.clone(), ext.name.clone())),
253            );
254            result
255                .tooling_dependencies
256                .extend(ext.tooling_dependencies.clone());
257            for ue in &ext.used_exports {
258                result.used_exports.push(PluginUsedExportRule::new(
259                    ext.name.clone(),
260                    UsedExportRule::new(ue.pattern.clone(), ue.exports.clone()),
261                ));
262            }
263            result
264                .used_class_members
265                .extend(ext.used_class_members.iter().cloned());
266        }
267    }
268}
269
270/// In-memory directory listing of config-candidate files (and discovered source
271/// files), keyed by absolute directory, used to resolve plugin config patterns
272/// without re-walking the filesystem.
273///
274/// Built once from the files the discovery walk already collected, so a
275/// `discover_config_files` lookup that previously cost one filesystem stat per
276/// `(plugin, ancestor-directory, pattern)` becomes an in-memory set lookup. The
277/// walk respects `.gitignore` / `ignorePatterns` / the hidden-directory
278/// allowlist, so config discovery via this index follows the same traversal
279/// rules as source discovery (the raw filesystem path used in production mode
280/// does not); see the crate docs / CHANGELOG for that deliberate refinement.
281pub struct ConfigCandidateIndex {
282    dirs: FxHashMap<PathBuf, FxHashSet<OsString>>,
283}
284
285impl ConfigCandidateIndex {
286    /// Build the index from absolute file paths (discovered source files unioned
287    /// with non-source config candidates). Files with no parent or no file name
288    /// are skipped.
289    #[must_use]
290    pub(crate) fn build<'a>(paths: impl IntoIterator<Item = &'a Path>) -> Self {
291        let mut dirs: FxHashMap<PathBuf, FxHashSet<OsString>> = FxHashMap::default();
292        for path in paths {
293            if let (Some(parent), Some(name)) = (path.parent(), path.file_name()) {
294                dirs.entry(parent.to_path_buf())
295                    .or_default()
296                    .insert(name.to_os_string());
297            }
298        }
299        Self { dirs }
300    }
301
302    /// Whether the discovery walk collected the file at `path`.
303    #[must_use]
304    pub(crate) fn contains_file(&self, path: &Path) -> bool {
305        match (path.parent(), path.file_name()) {
306            (Some(dir), Some(name)) => self.dir_contains(dir, name),
307            _ => false,
308        }
309    }
310
311    /// Whether the directory `dir` contains a file named `name`, per the files
312    /// the discovery walk collected. Used by file-based plugin activation to
313    /// avoid a per-directory filesystem `read` probe.
314    #[must_use]
315    pub(crate) fn dir_contains(&self, dir: &Path, name: &OsStr) -> bool {
316        self.dirs.get(dir).is_some_and(|names| names.contains(name))
317    }
318
319    /// Whether any directory at or below `root` contains a file named `name`,
320    /// per the files the discovery walk collected. Lets a plugin activate from
321    /// a sentinel file nested anywhere under `root` (e.g. a `.env.schema` in a
322    /// workspace subdirectory) without a recursive filesystem walk.
323    #[must_use]
324    pub(crate) fn any_descendant_contains(&self, root: &Path, name: &OsStr) -> bool {
325        self.dirs
326            .iter()
327            .any(|(dir, names)| dir.starts_with(root) && names.contains(name))
328    }
329
330    /// Whether any directory at or below `root` contains a file whose name
331    /// matches `matcher`, per the files the discovery walk collected. The glob
332    /// analogue of [`Self::any_descendant_contains`], used to activate a plugin
333    /// from a wildcard config filename (e.g. `tsconfig.*.json`) nested anywhere
334    /// under `root` without a recursive filesystem walk.
335    #[must_use]
336    pub(crate) fn any_descendant_matches(
337        &self,
338        root: &Path,
339        matcher: &globset::GlobMatcher,
340    ) -> bool {
341        self.dirs.iter().any(|(dir, names)| {
342            dir.starts_with(root) && names.iter().any(|name| matcher.is_match(Path::new(name)))
343        })
344    }
345
346    fn glob_matches_in_dir(&self, dir: &Path, matcher: &globset::GlobMatcher) -> Vec<PathBuf> {
347        self.dirs.get(dir).map_or_else(Vec::new, |names| {
348            names
349                .iter()
350                .filter(|name| matcher.is_match(Path::new(name)))
351                .map(|name| dir.join(name))
352                .collect()
353        })
354    }
355}
356
357/// Discover config files for plugins that were not matched against the
358/// discovered source set.
359///
360/// This intentionally probes only known search roots instead of recursively
361/// globbing the whole repository tree. Large monorepos often contain enormous
362/// `node_modules` directories, and a full `**/project.json` walk becomes
363/// pathological there. Callers should therefore pass a focused root list such
364/// as the repo root, workspace roots, and ancestors of discovered source files.
365///
366/// When `candidate_index` is `Some` (the non-production fast path), patterns are
367/// resolved against the in-memory directory index the discovery walk already
368/// built, avoiding one filesystem stat per `(plugin, root, pattern)`. When it is
369/// `None` (production mode), the filesystem is probed directly.
370///
371/// When `production_mode` is `false`, source-extension root-anchored patterns
372/// (e.g., `webpack.config.{ts,js,mjs,cjs}`) are skipped because Phase 3a's
373/// `**/`-prefixed matcher already finds them in the discovered source file
374/// set. In production mode, the file walker excludes `*.config.*` and dotfile
375/// configs, so the FS walk is still required to keep the discovery correct.
376pub fn discover_config_files<'a>(
377    config_matchers: &[(&'a dyn Plugin, Vec<globset::GlobMatcher>)],
378    resolved_plugins: &FxHashSet<&str>,
379    roots: &[&Path],
380    production_mode: bool,
381    candidate_index: Option<&ConfigCandidateIndex>,
382) -> Vec<(PathBuf, &'a dyn Plugin)> {
383    use rayon::prelude::*;
384    let mut pending: Vec<(&'a dyn Plugin, &Path, String, bool)> = Vec::new();
385    for (plugin, _) in config_matchers {
386        // A resolved plugin still probes the patterns that source discovery
387        // cannot index, such as `build/webpack.prod.js`: Phase 3a never saw
388        // those files, so a root config found there does not cover them. The
389        // `seen` set below removes a duplicate hit.
390        let resolved = resolved_plugins.contains(plugin.name());
391        for root in roots {
392            for pat in plugin.config_patterns() {
393                if !production_mode && is_source_ext_root_pattern(pat) {
394                    continue;
395                }
396                if resolved && !pattern_needs_filesystem(pat) {
397                    continue;
398                }
399                pending.push((*plugin, *root, pat.to_string(), resolved));
400            }
401        }
402    }
403
404    let hits: Vec<(PathBuf, &'a dyn Plugin)> = pending
405        .par_iter()
406        .flat_map_iter(|(plugin, root, pat, resolved)| {
407            expand_brace_pattern(pat)
408                .into_iter()
409                .flat_map(|expanded| match candidate_index {
410                    // A pattern under a non-allowlisted hidden directory
411                    // (e.g. `.config/prisma.ts`) is never descended by the
412                    // discovery walk, so it cannot be in the in-memory index;
413                    // probe the filesystem for those few patterns even on the
414                    // fast path so they stay discoverable.
415                    Some(index) if !pattern_needs_filesystem(&expanded) => {
416                        match_pattern_in_index(root, &expanded, index)
417                    }
418                    _ => discover_pattern_matches(root, &expanded),
419                })
420                // Phase 3a already read an indexed file of a resolved plugin,
421                // such as a config in a plugin's discovery hidden directory.
422                .filter(|path| {
423                    !*resolved || !candidate_index.is_some_and(|index| index.contains_file(path))
424                })
425                .map(move |path| (path, *plugin))
426                .collect::<Vec<_>>()
427        })
428        .collect();
429
430    let mut seen: FxHashSet<(PathBuf, &'a str)> = FxHashSet::default();
431    let mut config_files: Vec<(PathBuf, &'a dyn Plugin)> = Vec::with_capacity(hits.len());
432    for (path, plugin) in hits {
433        if seen.insert((path.clone(), plugin.name())) {
434            config_files.push((path, plugin));
435        }
436    }
437    config_files
438}
439
440fn pattern_has_glob(pattern: &str) -> bool {
441    pattern.contains('*') || pattern.contains('?') || pattern.contains('[')
442}
443
444/// True when `pattern` has a directory component (any component before the
445/// basename) that the discovery walk does not index: a hidden directory NOT on
446/// the walk's traversal allowlist, or a directory that a built-in ignore
447/// pattern excludes, such as `build`. The in-memory candidate index cannot
448/// contain files under them, so the filesystem probe is required to keep those
449/// configs (e.g. `.config/prisma.ts`, `build/webpack.prod.js`) discoverable.
450fn pattern_needs_filesystem(pattern: &str) -> bool {
451    let mut components = pattern.split('/').peekable();
452    let mut needs_fs = false;
453    while let Some(component) = components.next() {
454        if components.peek().is_none() {
455            break; // the basename is not a directory component
456        }
457        if component.starts_with('.')
458            && component != "."
459            && component != ".."
460            && !crate::discover::is_allowed_hidden_dir(OsStr::new(component))
461        {
462            needs_fs = true;
463            break;
464        }
465        if is_default_ignored_directory(component) {
466            needs_fs = true;
467            break;
468        }
469    }
470    needs_fs
471}
472
473/// Whether a built-in ignore pattern of the form `**/<name>/**` excludes a
474/// directory of this name from source discovery.
475fn is_default_ignored_directory(name: &str) -> bool {
476    fallow_config::DEFAULT_IGNORE_PATTERNS
477        .iter()
478        .any(|pattern| {
479            pattern
480                .strip_prefix("**/")
481                .and_then(|rest| rest.strip_suffix("/**"))
482                .is_some_and(|directory| directory == name)
483        })
484}
485
486/// In-memory equivalent of [`discover_pattern_matches`], resolving `pattern`
487/// against `index` instead of the filesystem. Mirrors that function's structure
488/// arm-for-arm (plain path, `**/` strip, parent/glob split) so the two produce
489/// identical hits for any file the index contains.
490fn match_pattern_in_index(
491    root: &Path,
492    pattern: &str,
493    index: &ConfigCandidateIndex,
494) -> Vec<PathBuf> {
495    if !pattern_has_glob(pattern) {
496        let path = root.join(pattern);
497        return match (path.parent(), path.file_name()) {
498            (Some(dir), Some(name)) if index.dir_contains(dir, name) => vec![path],
499            _ => Vec::new(),
500        };
501    }
502
503    if let Some(stripped) = pattern.strip_prefix("**/") {
504        return match_pattern_in_index(root, stripped, index);
505    }
506
507    let (dir, file_pattern) = match pattern.rsplit_once('/') {
508        Some((parent, file_pattern)) if !pattern_has_glob(parent) => {
509            (root.join(parent), file_pattern)
510        }
511        Some(_) => return Vec::new(),
512        None => (root.to_path_buf(), pattern),
513    };
514
515    let Ok(matcher) = globset::Glob::new(file_pattern).map(|g| g.compile_matcher()) else {
516        return Vec::new();
517    };
518    index.glob_matches_in_dir(&dir, &matcher)
519}
520
521fn discover_pattern_matches(root: &Path, pattern: &str) -> Vec<PathBuf> {
522    if !pattern_has_glob(pattern) {
523        let path = root.join(pattern);
524        return if path.is_file() {
525            vec![path]
526        } else {
527            Vec::new()
528        };
529    }
530
531    if let Some(stripped) = pattern.strip_prefix("**/") {
532        return discover_pattern_matches(root, stripped);
533    }
534
535    let (dir, file_pattern) = match pattern.rsplit_once('/') {
536        Some((parent, file_pattern)) if !pattern_has_glob(parent) => {
537            (root.join(parent), file_pattern)
538        }
539        Some(_) => return Vec::new(),
540        None => (root.to_path_buf(), pattern),
541    };
542
543    scan_dir_for_pattern(&dir, file_pattern)
544}
545
546fn scan_dir_for_pattern(dir: &Path, file_pattern: &str) -> Vec<PathBuf> {
547    let Ok(matcher) = globset::Glob::new(file_pattern).map(|g| g.compile_matcher()) else {
548        return Vec::new();
549    };
550    let Ok(entries) = std::fs::read_dir(dir) else {
551        return Vec::new();
552    };
553
554    entries
555        .filter_map(Result::ok)
556        .map(|entry| entry.path())
557        .filter(|path| path.is_file())
558        .filter(|path| {
559            path.file_name()
560                .is_some_and(|name| matcher.is_match(std::path::Path::new(name)))
561        })
562        .collect()
563}
564
565fn expand_brace_pattern(pattern: &str) -> Vec<String> {
566    let Some(open) = pattern.find('{') else {
567        return vec![pattern.to_string()];
568    };
569    let Some(close_rel) = pattern[open + 1..].find('}') else {
570        return vec![pattern.to_string()];
571    };
572    let close = open + 1 + close_rel;
573
574    let prefix = &pattern[..open];
575    let suffix = &pattern[close + 1..];
576    let inner = &pattern[open + 1..close];
577    let mut expanded = Vec::new();
578    for option in inner.split(',') {
579        for tail in expand_brace_pattern(suffix) {
580            expanded.push(format!("{prefix}{option}{tail}"));
581        }
582    }
583    expanded
584}
585
586/// Validate the user-supplied exclude regexes attached to a `PathRule`.
587///
588/// The originating plugin and source config file are surfaced so users can
589/// locate every typo in one config-load error.
590fn collect_path_rule_regex_errors(
591    rule: &crate::plugins::PathRule,
592    plugin_name: &str,
593    config_path: Option<&Path>,
594    rule_kind: &'static str,
595    errors: &mut Vec<PluginRegexValidationError>,
596) {
597    for pattern in &rule.exclude_regexes {
598        if let Err(source) = regex::Regex::new(pattern) {
599            errors.push(PluginRegexValidationError::new(
600                PluginRegexValidationErrorInput {
601                    plugin_name,
602                    config_path,
603                    rule_kind,
604                    field: "exclude_regexes",
605                    rule_pattern: &rule.pattern,
606                    regex_pattern: pattern,
607                    source: &source,
608                },
609            ));
610        }
611    }
612    for pattern in &rule.exclude_segment_regexes {
613        if let Err(source) = regex::Regex::new(pattern) {
614            errors.push(PluginRegexValidationError::new(
615                PluginRegexValidationErrorInput {
616                    plugin_name,
617                    config_path,
618                    rule_kind,
619                    field: "exclude_segment_regexes",
620                    rule_pattern: &rule.pattern,
621                    regex_pattern: pattern,
622                    source: &source,
623                },
624            ));
625        }
626    }
627}
628
629/// Merge a `PluginResult` from config parsing into the aggregated result.
630///
631/// `config_path` is the source config file the plugin parsed (when known).
632/// It is only used to enrich config-load errors so users can find their typo.
633/// Tests and inline package.json fallbacks may pass `None`.
634pub fn process_config_result(
635    plugin_name: &str,
636    plugin_result: PluginResult,
637    result: &mut AggregatedPluginResult,
638    config_path: Option<&Path>,
639) -> Result<(), Vec<PluginRegexValidationError>> {
640    let mut regex_errors = Vec::new();
641
642    for rule in &plugin_result.entry_patterns {
643        collect_path_rule_regex_errors(
644            rule,
645            plugin_name,
646            config_path,
647            "entry_patterns[]",
648            &mut regex_errors,
649        );
650    }
651    for rule in &plugin_result.used_exports {
652        collect_path_rule_regex_errors(
653            &rule.path,
654            plugin_name,
655            config_path,
656            "used_exports[].path",
657            &mut regex_errors,
658        );
659    }
660    if !regex_errors.is_empty() {
661        return Err(regex_errors);
662    }
663    merge_plugin_result_fields(plugin_name, plugin_result, result);
664    Ok(())
665}
666
667/// Merge a validated `PluginResult`'s payload fields into the aggregate, applying
668/// the per-plugin `replace_*` semantics for entry patterns, used-export rules,
669/// and path aliases.
670fn merge_plugin_result_fields(
671    pname: &str,
672    plugin_result: PluginResult,
673    result: &mut AggregatedPluginResult,
674) {
675    if plugin_result.replace_entry_patterns && !plugin_result.entry_patterns.is_empty() {
676        result.entry_patterns.retain(|(_, name)| name != pname);
677    }
678    if plugin_result.replace_used_export_rules && !plugin_result.used_exports.is_empty() {
679        result.used_exports.retain(|rule| rule.plugin_name != pname);
680    }
681    result.entry_patterns.extend(
682        plugin_result
683            .entry_patterns
684            .into_iter()
685            .map(|rule| (rule, pname.to_string())),
686    );
687    result.used_exports.extend(
688        plugin_result
689            .used_exports
690            .into_iter()
691            .map(|rule| PluginUsedExportRule::new(pname.to_string(), rule)),
692    );
693    result
694        .used_class_members
695        .extend(plugin_result.used_class_members);
696    result
697        .referenced_dependencies
698        .extend(plugin_result.referenced_dependencies);
699    result
700        .package_referenced_dependencies
701        .extend(plugin_result.package_referenced_dependencies);
702    result.discovered_always_used.extend(
703        plugin_result
704            .always_used_files
705            .into_iter()
706            .map(|p| (p, pname.to_string())),
707    );
708    for (prefix, replacement) in plugin_result.path_aliases {
709        result
710            .path_aliases
711            .retain(|(existing_prefix, _)| existing_prefix != &prefix);
712        result.path_aliases.push((prefix, replacement));
713    }
714    result.setup_files.extend(
715        plugin_result
716            .setup_files
717            .into_iter()
718            .map(|p| (p, pname.to_string())),
719    );
720    result.fixture_patterns.extend(
721        plugin_result
722            .fixture_patterns
723            .into_iter()
724            .map(|p| (p, pname.to_string())),
725    );
726    result
727        .scss_include_paths
728        .extend(plugin_result.scss_include_paths);
729    result
730        .static_dir_mappings
731        .extend(plugin_result.static_dir_mappings);
732    result
733        .framework_static_dir_mappings
734        .extend(plugin_result.framework_static_dir_mappings);
735    result
736        .provided_dependencies
737        .extend(plugin_result.provided_dependencies);
738    result
739        .federation_sources
740        .extend(plugin_result.federation_sources);
741    for diagnostic in plugin_result.config_diagnostics {
742        if !result.config_diagnostics.contains(&diagnostic) {
743            result.config_diagnostics.push(diagnostic);
744        }
745    }
746}
747
748/// Check if a plugin already has a config file matched against discovered files.
749pub fn check_has_config_file(
750    plugin: &dyn Plugin,
751    config_matchers: &[(&dyn Plugin, Vec<globset::GlobMatcher>)],
752    relative_files: &[(PathBuf, String)],
753) -> bool {
754    !plugin.config_patterns().is_empty()
755        && config_matchers.iter().any(|(p, matchers)| {
756            p.name() == plugin.name()
757                && relative_files
758                    .iter()
759                    .any(|(_, rel)| matchers.iter().any(|m| m.is_match(rel.as_str())))
760        })
761}
762
763/// Check if a `PluginDetection` condition is satisfied.
764pub fn check_plugin_detection(
765    detection: &PluginDetection,
766    all_deps: &[&str],
767    root: &Path,
768    discovered_files: &[PathBuf],
769) -> bool {
770    match detection {
771        PluginDetection::Dependency { package } => all_deps.iter().any(|d| *d == package),
772        PluginDetection::FileExists { pattern } => {
773            if let Ok(matcher) = globset::Glob::new(pattern).map(|g| g.compile_matcher()) {
774                for file in discovered_files {
775                    let relative = file.strip_prefix(root).unwrap_or(file);
776                    if matcher.is_match(relative) {
777                        return true;
778                    }
779                }
780            }
781            let full_pattern = root.join(pattern).to_string_lossy().to_string();
782            glob::glob(&full_pattern)
783                .ok()
784                .is_some_and(|mut g| g.next().is_some())
785        }
786        PluginDetection::All { conditions } => conditions
787            .iter()
788            .all(|c| check_plugin_detection(c, all_deps, root, discovered_files)),
789        PluginDetection::Any { conditions } => conditions
790            .iter()
791            .any(|c| check_plugin_detection(c, all_deps, root, discovered_files)),
792    }
793}
794
795#[cfg(test)]
796mod tests {
797    use super::*;
798
799    #[test]
800    fn pattern_needs_filesystem_only_for_non_allowlisted_hidden_dirs() {
801        // `.config` is a hidden directory not on the walk's allowlist, so a
802        // config under it is never in the in-memory index and must be probed.
803        assert!(pattern_needs_filesystem(".config/prisma.ts"));
804        // Plain, nested-non-hidden, dotfile-basename, `**/`, and allowlisted
805        // hidden-dir (`.storybook`) patterns all resolve from the index.
806        assert!(!pattern_needs_filesystem("tsconfig.json"));
807        assert!(!pattern_needs_filesystem("prisma/schema.prisma"));
808        assert!(!pattern_needs_filesystem(".eslintrc.json"));
809        assert!(!pattern_needs_filesystem("**/project.json"));
810        assert!(!pattern_needs_filesystem(".storybook/main.ts"));
811        assert!(!pattern_needs_filesystem("a/b/c.json"));
812        // A directory that a built-in ignore pattern excludes is not indexed.
813        assert!(pattern_needs_filesystem("build/webpack.prod.js"));
814        assert!(!pattern_needs_filesystem("config/webpack.prod.js"));
815    }
816
817    #[test]
818    fn config_candidate_index_matches_plain_nested_and_glob_shapes() {
819        let root = Path::new("/project");
820        let index = ConfigCandidateIndex::build([
821            Path::new("/project/tsconfig.json"),
822            Path::new("/project/packages/a/tsconfig.json"),
823            Path::new("/project/prisma/schema.prisma"),
824            Path::new("/project/src/main.ts"),
825        ]);
826
827        // Plain basename resolved at the project root and at a nested root.
828        assert_eq!(
829            match_pattern_in_index(root, "tsconfig.json", &index),
830            vec![PathBuf::from("/project/tsconfig.json")]
831        );
832        assert_eq!(
833            match_pattern_in_index(Path::new("/project/packages/a"), "tsconfig.json", &index),
834            vec![PathBuf::from("/project/packages/a/tsconfig.json")]
835        );
836        // Nested non-glob, `**/` strip, and a basename glob.
837        assert_eq!(
838            match_pattern_in_index(root, "prisma/schema.prisma", &index),
839            vec![PathBuf::from("/project/prisma/schema.prisma")]
840        );
841        assert_eq!(
842            match_pattern_in_index(root, "**/tsconfig.json", &index),
843            vec![PathBuf::from("/project/tsconfig.json")]
844        );
845        assert_eq!(
846            match_pattern_in_index(Path::new("/project/prisma"), "*.prisma", &index),
847            vec![PathBuf::from("/project/prisma/schema.prisma")]
848        );
849        // A pattern present in no indexed directory yields nothing.
850        assert!(match_pattern_in_index(root, "missing.json", &index).is_empty());
851    }
852}