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 // Rayon: when this is the first `index_batch` call it seeds the
171 // symbol index from every registered file, not just this chunk.
172 self.index_batch(&sources, crate::IndexParallelism::Rayon, &cancel);
173 }
174 }
175
176 /// Run all pre-passes (builtin-stub loading, vendor-eager-file loading,
177 /// and PSR-4 class preloading) before body analysis of a single file.
178 ///
179 /// Replaces the two separate `ensure_stubs_for_ast` /
180 /// `preload_psr4_classes_for_ast` calls at every `FileAnalyzer::analyze`
181 /// site.
182 pub fn prepare_ast_for_analysis(&self, program: &php_ast::owned::Program, file: &str) {
183 self.ensure_stubs_for_ast(program);
184 self.ensure_vendor_eager_functions();
185 self.priority_index_for_ast(program, file);
186 }
187
188 /// Run `file`'s Phase-1 warm-up — resolve its direct class references and
189 /// lazy-load any not yet indexed — and record it as prepared against its
190 /// current text. No-op when the file is unknown or already prepared.
191 ///
192 /// This is the write-path home of the warm-up: hosts call it (via
193 /// [`Self::ingest_file_prepared`]) when text lands, so read paths
194 /// (`references_to_in_files`, `reanalyze_files_cancellable`) find every
195 /// candidate prepared and stay pure. Loading mutates salsa inputs, so the
196 /// parse snapshot is scoped and dropped before the warm-up runs — callers
197 /// must not hold a live snapshot across this call.
198 pub fn prepare_file_for_analysis(&self, path: &std::sync::Arc<str>) {
199 let generation = self.prepare_generation_snapshot();
200 let (parsed, text) = {
201 let db = self.snapshot_db();
202 let Some(sf) = db.lookup_source_file(path.as_ref()) else {
203 return;
204 };
205 let text = sf.text(&db as &dyn crate::db::MirDatabase).clone();
206 if self.is_prepared_for_analysis(path.as_ref(), &text, generation) {
207 return;
208 }
209 (
210 crate::db::parse_file(&db as &dyn crate::db::MirDatabase, sf)
211 .0
212 .clone(),
213 text,
214 )
215 };
216 self.prepare_ast_for_analysis(&parsed.program, path.as_ref());
217 self.mark_prepared_for_analysis(path, text, generation);
218 }
219
220 /// Current warm-up generation; capture before a prepare + mark pair so a
221 /// concurrent [`Self::bump_prepare_generation`] invalidates the mark.
222 pub(crate) fn prepare_generation_snapshot(&self) -> u64 {
223 self.prepare_generation
224 .load(std::sync::atomic::Ordering::Acquire)
225 }
226
227 /// Whether `file`'s warm-up already ran against `current_text` in
228 /// `generation`. See the `prepared_files` field docs for the invalidation
229 /// rules.
230 pub(crate) fn is_prepared_for_analysis(
231 &self,
232 file: &str,
233 current_text: &std::sync::Arc<str>,
234 generation: u64,
235 ) -> bool {
236 self.prepared_files
237 .read()
238 .get(file)
239 .is_some_and(|(text, prepared_gen)| {
240 *prepared_gen == generation && std::sync::Arc::ptr_eq(text, current_text)
241 })
242 }
243
244 /// Record that `file`'s warm-up ran against `text`. `generation` must be
245 /// the [`Self::prepare_generation_snapshot`] taken *before* the warm-up —
246 /// a bump in between leaves the entry stale, which is the safe direction.
247 pub(crate) fn mark_prepared_for_analysis(
248 &self,
249 file: &std::sync::Arc<str>,
250 text: std::sync::Arc<str>,
251 generation: u64,
252 ) {
253 self.prepared_files
254 .write()
255 .insert(file.clone(), (text, generation));
256 }
257
258 /// Drop `file`'s warm-up skip entry (its loaded state is being removed).
259 pub(crate) fn forget_prepared(&self, file: &str) {
260 self.prepared_files.write().remove(file);
261 }
262
263 /// Invalidate every warm-up skip entry. Call when previously loaded
264 /// declarations may have been removed outside [`Self::ingest_file`] /
265 /// [`Self::invalidate_file`] — e.g. a host that writes file text straight
266 /// into the salsa layer and detects a declaration-level change. A prepared
267 /// file might then need its warm-up re-run to lazy-load a replacement
268 /// (a vendor class shadowed by a since-deleted project class).
269 pub fn bump_prepare_generation(&self) {
270 self.prepare_generation
271 .fetch_add(1, std::sync::atomic::Ordering::Release);
272 }
273
274 /// Priority-index the classes directly referenced by `file`'s AST.
275 ///
276 /// In the eager-static-input model the background indexer
277 /// ([`Self::index_batch`]) walks the whole vendor tree, but it may not have
278 /// reached every file the open buffer references yet. To avoid a transient
279 /// false `UndefinedClass` during the warm-up window, this **reorders** that
280 /// static work: it resolves the buffer's *direct* class references and
281 /// loads any not-yet-indexed ones immediately, jumping them to the front of
282 /// the queue.
283 ///
284 /// This is bounded by the number of distinct direct references in **one**
285 /// file — no transitive BFS, no depth/total budget, no pinning. Inheritance
286 /// ancestors and signature types of those classes are picked up by the
287 /// background walk (or, for navigation, by [`Self::hover`] /
288 /// [`Self::definition_of`]). Because `bump_workspace_revision` no longer
289 /// nulls the workspace index singleton, each [`Self::load_class`] here costs
290 /// only a resolver lookup + parse (or cache hit) + one tier-aware merge,
291 /// invalidating just the actively-analyzed file's memo once — not the whole
292 /// cache. Once background indexing completes this is a no-op (every
293 /// reference already resolves).
294 pub fn priority_index_for_ast(&self, program: &php_ast::owned::Program, file: &str) {
295 if self.resolver.is_none() {
296 return;
297 }
298 let refs = collect_class_refs_from_ast(program);
299 if refs.is_empty() {
300 return;
301 }
302 // Resolve names against the file's namespace/imports up front, then
303 // drop the snapshot before loading (which mutates inputs).
304 let resolved: Vec<String> = {
305 let db = self.snapshot_db();
306 refs.into_iter()
307 .map(|raw| crate::db::resolve_name(&db, file, &raw))
308 .collect()
309 };
310 for fqcn in resolved {
311 // load_class is a no-op when the class is already indexed (the
312 // common case once the background walk has passed this file).
313 self.load_class(&fqcn);
314 }
315 }
316
317 fn ensure_user_stubs_loaded(&self) {
318 self.db
319 .ingest_user_stubs(&self.user_stub_files, &self.user_stub_dirs);
320 }
321}