Skip to main content

mir_analyzer/session/
stubs.rs

1use super::*;
2
3impl AnalysisSession {
4    /// Deprecated — stub loading is now fully lazy per-AST.
5    ///
6    /// This is an alias for [`Self::ensure_all_stubs`] kept for API
7    /// compatibility. Internal analysis paths use [`Self::prepare_ast_for_analysis`]
8    /// which loads only the stubs referenced by the file under analysis.
9    #[deprecated(note = "use ensure_all_stubs() or ensure_stubs_for_ast() instead")]
10    pub fn ensure_essential_stubs(&self) {
11        self.ensure_all_stubs();
12    }
13
14    /// Load every embedded PHP stub plus any configured user stubs.
15    /// Use for batch tools (CLI, full project analysis) where comprehensive
16    /// symbol coverage matters more than cold-start latency.
17    pub fn ensure_all_stubs(&self) {
18        let paths: Vec<&'static str> = crate::stubs::stub_files().iter().map(|&(p, _)| p).collect();
19        self.db.ingest_stub_paths(&paths, self.php_version);
20        self.ensure_user_stubs_loaded();
21    }
22
23    /// Ensure the embedded stub that defines `name` (a function) is ingested.
24    /// Returns `true` when a matching stub exists (whether or not it was
25    /// already loaded), `false` when `name` isn't a known PHP built-in.
26    ///
27    /// Most callers should use [`Self::ensure_stubs_for_ast`] instead —
28    /// it auto-discovers needed stubs from a parsed file.
29    #[doc(hidden)]
30    pub fn ensure_stub_for_function(&self, name: &str) -> bool {
31        match crate::stubs::stub_path_for_function(name) {
32            Some(path) => {
33                self.db.ingest_stub_paths(&[path], self.php_version);
34                true
35            }
36            None => false,
37        }
38    }
39
40    /// Ensure the embedded stub that defines `fqcn` (a class / interface /
41    /// trait / enum) is ingested. Case-insensitive lookup with optional
42    /// leading backslash.
43    ///
44    /// Most callers should use [`Self::ensure_stubs_for_ast`] instead.
45    #[doc(hidden)]
46    pub fn ensure_stub_for_class(&self, fqcn: &str) -> bool {
47        match crate::stubs::stub_path_for_class(fqcn) {
48            Some(path) => {
49                self.db.ingest_stub_paths(&[path], self.php_version);
50                true
51            }
52            None => false,
53        }
54    }
55
56    /// Ensure the embedded stub that defines `name` (a constant) is ingested.
57    ///
58    /// Most callers should use [`Self::ensure_stubs_for_ast`] instead.
59    #[doc(hidden)]
60    pub fn ensure_stub_for_constant(&self, name: &str) -> bool {
61        match crate::stubs::stub_path_for_constant(name) {
62            Some(path) => {
63                self.db.ingest_stub_paths(&[path], self.php_version);
64                true
65            }
66            None => false,
67        }
68    }
69
70    /// Number of distinct embedded stubs currently ingested into the session.
71    /// Useful for diagnostics and bench reporting.
72    pub fn loaded_stub_count(&self) -> usize {
73        self.db.loaded_stubs.lock().len()
74    }
75
76    /// Auto-discover and ingest the embedded stubs needed to cover every
77    /// built-in PHP function / class / constant referenced by `source`.
78    ///
79    /// Used by [`crate::FileAnalyzer::analyze`] to keep essentials-only mode
80    /// correct without forcing callers to enumerate which stubs they need.
81    /// Idempotent — already-loaded stubs are skipped via [`Self::loaded_stubs`].
82    ///
83    /// The discovery scan is a coarse identifier sweep (see
84    /// [`crate::stubs::collect_referenced_builtin_paths`]) — it may pull in
85    /// a slightly larger set than the file strictly needs, but never misses
86    /// a referenced built-in. Cost is sub-millisecond per file.
87    ///
88    /// Fast path: if every embedded stub is already loaded (e.g. after a
89    /// batch tool called [`Self::ensure_all_stubs`]), the source scan
90    /// is skipped entirely.
91    pub fn ensure_stubs_for_source(&self, source: &str) {
92        // Cheap check first: skip the scan entirely when we already know we
93        // have everything. Avoids a ~50-500µs source walk on every analyze
94        // call in batch / warm-session scenarios.
95        {
96            let loaded = self.db.loaded_stubs.lock();
97            if loaded.len() >= crate::stubs::stub_files().len() {
98                return;
99            }
100        }
101        let paths = crate::stubs::collect_referenced_builtin_paths(source);
102        if paths.is_empty() {
103            return;
104        }
105        self.db.ingest_stub_paths(&paths, self.php_version);
106    }
107
108    /// Discover and ingest stubs by walking the parsed AST of a PHP file.
109    ///
110    /// Similar to [`Self::ensure_stubs_for_source`], but takes an already-parsed
111    /// AST instead of raw source text. Produces zero false positives since it
112    /// only extracts identifiers from actual AST nodes (not from strings or
113    /// comments). Preferred over `ensure_stubs_for_source` when the AST is
114    /// already available (e.g., in [`crate::FileAnalyzer`]).
115    ///
116    /// Idempotent and skips the scan if all stubs are already loaded.
117    pub fn ensure_stubs_for_ast(&self, program: &php_ast::owned::Program) {
118        {
119            let loaded = self.db.loaded_stubs.lock();
120            if loaded.len() >= crate::stubs::stub_files().len() {
121                return;
122            }
123        }
124        let paths = crate::stubs::collect_referenced_builtin_paths_from_ast(program);
125        if paths.is_empty() {
126            return;
127        }
128        self.db.ingest_stub_paths(&paths, self.php_version);
129    }
130
131    /// Returns true if this session has a configured class resolver
132    /// (typically a PSR-4 / classmap autoloader chained with the stub
133    /// resolver). Used by `FileAnalyzer` to skip the AST-scan preload
134    /// when no resolver is wired up.
135    pub fn has_resolver(&self) -> bool {
136        self.resolver.is_some()
137    }
138
139    /// Index vendor `autoload.files` entries the first time analysis runs.
140    ///
141    /// Composer's `autoload.files` lists files that define global functions and
142    /// constants (e.g. Laravel helpers). These are invisible to the PSR-4 class
143    /// resolver — there is no function-name → file-path mapping without
144    /// parsing them first.  Rather than per-function lazy resolution, this
145    /// loads all pending vendor eager files at once on the first
146    /// [`Self::prepare_ast_for_analysis`] call.
147    ///
148    /// The mutex is held for the duration of the load, so concurrent callers
149    /// block here until the files are indexed.  Subsequent calls see `None`
150    /// and return immediately (O(1)).  Files are read via the session's
151    /// [`crate::SourceProvider`], so LSP VFS overrides are respected.
152    pub(crate) fn ensure_vendor_eager_functions(&self) {
153        let mut guard = self.pending_eager_function_files.lock();
154        let files = match guard.take() {
155            None => return,
156            Some(f) if f.is_empty() => return,
157            Some(f) => f,
158        };
159        // Guard remains held (now `None`) — concurrent callers block here
160        // until `index_batch` returns and all functions are indexed.
161        let sources: Vec<(std::sync::Arc<str>, std::sync::Arc<str>)> = files
162            .iter()
163            .filter_map(|p| {
164                let text = self.source_provider.read(p.to_string_lossy().as_ref())?;
165                Some((std::sync::Arc::from(p.to_string_lossy().as_ref()), text))
166            })
167            .collect();
168        if !sources.is_empty() {
169            let cancel = crate::IndexCancel::new();
170            self.index_batch(&sources, crate::IndexParallelism::Sequential, &cancel);
171        }
172    }
173
174    /// Run all pre-passes (builtin-stub loading, vendor-eager-file loading,
175    /// and PSR-4 class preloading) before body analysis of a single file.
176    ///
177    /// Replaces the two separate `ensure_stubs_for_ast` /
178    /// `preload_psr4_classes_for_ast` calls at every `FileAnalyzer::analyze`
179    /// site.
180    pub fn prepare_ast_for_analysis(&self, program: &php_ast::owned::Program, file: &str) {
181        self.ensure_stubs_for_ast(program);
182        self.ensure_vendor_eager_functions();
183        self.priority_index_for_ast(program, file);
184    }
185
186    /// Current warm-up generation; capture before a prepare + mark pair so a
187    /// concurrent [`Self::bump_prepare_generation`] invalidates the mark.
188    pub(crate) fn prepare_generation_snapshot(&self) -> u64 {
189        self.prepare_generation
190            .load(std::sync::atomic::Ordering::Acquire)
191    }
192
193    /// Whether `file`'s warm-up already ran against `current_text` in
194    /// `generation`. See the `prepared_files` field docs for the invalidation
195    /// rules.
196    pub(crate) fn is_prepared_for_analysis(
197        &self,
198        file: &str,
199        current_text: &std::sync::Arc<str>,
200        generation: u64,
201    ) -> bool {
202        self.prepared_files
203            .read()
204            .get(file)
205            .is_some_and(|(text, prepared_gen)| {
206                *prepared_gen == generation && std::sync::Arc::ptr_eq(text, current_text)
207            })
208    }
209
210    /// Record that `file`'s warm-up ran against `text`. `generation` must be
211    /// the [`Self::prepare_generation_snapshot`] taken *before* the warm-up —
212    /// a bump in between leaves the entry stale, which is the safe direction.
213    pub(crate) fn mark_prepared_for_analysis(
214        &self,
215        file: &std::sync::Arc<str>,
216        text: std::sync::Arc<str>,
217        generation: u64,
218    ) {
219        self.prepared_files
220            .write()
221            .insert(file.clone(), (text, generation));
222    }
223
224    /// Drop `file`'s warm-up skip entry (its loaded state is being removed).
225    pub(crate) fn forget_prepared(&self, file: &str) {
226        self.prepared_files.write().remove(file);
227    }
228
229    /// Invalidate every warm-up skip entry. Call when previously loaded
230    /// declarations may have been removed outside [`Self::ingest_file`] /
231    /// [`Self::invalidate_file`] — e.g. a host that writes file text straight
232    /// into the salsa layer and detects a declaration-level change. A prepared
233    /// file might then need its warm-up re-run to lazy-load a replacement
234    /// (a vendor class shadowed by a since-deleted project class).
235    pub fn bump_prepare_generation(&self) {
236        self.prepare_generation
237            .fetch_add(1, std::sync::atomic::Ordering::Release);
238    }
239
240    /// Priority-index the classes directly referenced by `file`'s AST.
241    ///
242    /// In the eager-static-input model the background indexer
243    /// ([`Self::index_batch`]) walks the whole vendor tree, but it may not have
244    /// reached every file the open buffer references yet. To avoid a transient
245    /// false `UndefinedClass` during the warm-up window, this **reorders** that
246    /// static work: it resolves the buffer's *direct* class references and
247    /// loads any not-yet-indexed ones immediately, jumping them to the front of
248    /// the queue.
249    ///
250    /// This is bounded by the number of distinct direct references in **one**
251    /// file — no transitive BFS, no depth/total budget, no pinning. Inheritance
252    /// ancestors and signature types of those classes are picked up by the
253    /// background walk (or, for navigation, by [`Self::hover`] /
254    /// [`Self::definition_of`]). Because `bump_workspace_revision` no longer
255    /// nulls the workspace index singleton, each [`Self::load_class`] here costs
256    /// only a resolver lookup + parse (or cache hit) + one tier-aware merge,
257    /// invalidating just the actively-analyzed file's memo once — not the whole
258    /// cache. Once background indexing completes this is a no-op (every
259    /// reference already resolves).
260    pub fn priority_index_for_ast(&self, program: &php_ast::owned::Program, file: &str) {
261        if self.resolver.is_none() {
262            return;
263        }
264        let refs = collect_class_refs_from_ast(program);
265        if refs.is_empty() {
266            return;
267        }
268        // Resolve names against the file's namespace/imports up front, then
269        // drop the snapshot before loading (which mutates inputs).
270        let resolved: Vec<String> = {
271            let db = self.snapshot_db();
272            refs.into_iter()
273                .map(|raw| crate::db::resolve_name(&db, file, &raw))
274                .collect()
275        };
276        for fqcn in resolved {
277            // load_class is a no-op when the class is already indexed (the
278            // common case once the background walk has passed this file).
279            self.load_class(&fqcn);
280        }
281    }
282
283    fn ensure_user_stubs_loaded(&self) {
284        self.db
285            .ingest_user_stubs(&self.user_stub_files, &self.user_stub_dirs);
286    }
287}