]> git.lizzy.rs Git - rust.git/blob - crates/hir_expand/src/db.rs
Merge #10157
[rust.git] / crates / hir_expand / src / db.rs
1 //! Defines database & queries for macro expansion.
2
3 use std::sync::Arc;
4
5 use base_db::{salsa, SourceDatabase};
6 use itertools::Itertools;
7 use limit::Limit;
8 use mbe::{ExpandError, ExpandResult};
9 use syntax::{
10     algo::diff,
11     ast::{self, AttrsOwner, NameOwner},
12     AstNode, GreenNode, Parse, SyntaxNode, SyntaxToken, TextRange, T,
13 };
14
15 use crate::{
16     ast_id_map::AstIdMap, hygiene::HygieneFrame, BuiltinAttrExpander, BuiltinDeriveExpander,
17     BuiltinFnLikeExpander, ExpandTo, HirFileId, HirFileIdRepr, MacroCallId, MacroCallKind,
18     MacroCallLoc, MacroDefId, MacroDefKind, MacroFile, ProcMacroExpander,
19 };
20
21 /// Total limit on the number of tokens produced by any macro invocation.
22 ///
23 /// If an invocation produces more tokens than this limit, it will not be stored in the database and
24 /// an error will be emitted.
25 ///
26 /// Actual max for `analysis-stats .` at some point: 30672.
27 static TOKEN_LIMIT: Limit = Limit::new(524_288);
28
29 #[derive(Debug, Clone, Eq, PartialEq)]
30 pub enum TokenExpander {
31     /// Old-style `macro_rules`.
32     MacroRules { mac: mbe::MacroRules, def_site_token_map: mbe::TokenMap },
33     /// AKA macros 2.0.
34     MacroDef { mac: mbe::MacroDef, def_site_token_map: mbe::TokenMap },
35     /// Stuff like `line!` and `file!`.
36     Builtin(BuiltinFnLikeExpander),
37     /// `global_allocator` and such.
38     BuiltinAttr(BuiltinAttrExpander),
39     /// `derive(Copy)` and such.
40     BuiltinDerive(BuiltinDeriveExpander),
41     /// The thing we love the most here in rust-analyzer -- procedural macros.
42     ProcMacro(ProcMacroExpander),
43 }
44
45 impl TokenExpander {
46     fn expand(
47         &self,
48         db: &dyn AstDatabase,
49         id: MacroCallId,
50         tt: &tt::Subtree,
51     ) -> mbe::ExpandResult<tt::Subtree> {
52         match self {
53             TokenExpander::MacroRules { mac, .. } => mac.expand(tt),
54             TokenExpander::MacroDef { mac, .. } => mac.expand(tt),
55             TokenExpander::Builtin(it) => it.expand(db, id, tt),
56             TokenExpander::BuiltinAttr(it) => it.expand(db, id, tt),
57             TokenExpander::BuiltinDerive(it) => it.expand(db, id, tt),
58             TokenExpander::ProcMacro(_) => {
59                 // We store the result in salsa db to prevent non-deterministic behavior in
60                 // some proc-macro implementation
61                 // See #4315 for details
62                 db.expand_proc_macro(id)
63             }
64         }
65     }
66
67     pub(crate) fn map_id_down(&self, id: tt::TokenId) -> tt::TokenId {
68         match self {
69             TokenExpander::MacroRules { mac, .. } => mac.map_id_down(id),
70             TokenExpander::MacroDef { mac, .. } => mac.map_id_down(id),
71             TokenExpander::Builtin(..)
72             | TokenExpander::BuiltinAttr(..)
73             | TokenExpander::BuiltinDerive(..)
74             | TokenExpander::ProcMacro(..) => id,
75         }
76     }
77
78     pub(crate) fn map_id_up(&self, id: tt::TokenId) -> (tt::TokenId, mbe::Origin) {
79         match self {
80             TokenExpander::MacroRules { mac, .. } => mac.map_id_up(id),
81             TokenExpander::MacroDef { mac, .. } => mac.map_id_up(id),
82             TokenExpander::Builtin(..)
83             | TokenExpander::BuiltinAttr(..)
84             | TokenExpander::BuiltinDerive(..)
85             | TokenExpander::ProcMacro(..) => (id, mbe::Origin::Call),
86         }
87     }
88 }
89
90 // FIXME: rename to ExpandDatabase
91 #[salsa::query_group(AstDatabaseStorage)]
92 pub trait AstDatabase: SourceDatabase {
93     fn ast_id_map(&self, file_id: HirFileId) -> Arc<AstIdMap>;
94
95     /// Main public API -- parses a hir file, not caring whether it's a real
96     /// file or a macro expansion.
97     #[salsa::transparent]
98     fn parse_or_expand(&self, file_id: HirFileId) -> Option<SyntaxNode>;
99     /// Implementation for the macro case.
100     fn parse_macro_expansion(
101         &self,
102         macro_file: MacroFile,
103     ) -> ExpandResult<Option<(Parse<SyntaxNode>, Arc<mbe::TokenMap>)>>;
104
105     /// Macro ids. That's probably the tricksiest bit in rust-analyzer, and the
106     /// reason why we use salsa at all.
107     ///
108     /// We encode macro definitions into ids of macro calls, this what allows us
109     /// to be incremental.
110     #[salsa::interned]
111     fn intern_macro(&self, macro_call: MacroCallLoc) -> MacroCallId;
112
113     /// Lowers syntactic macro call to a token tree representation.
114     #[salsa::transparent]
115     fn macro_arg(&self, id: MacroCallId) -> Option<Arc<(tt::Subtree, mbe::TokenMap)>>;
116     /// Extracts syntax node, corresponding to a macro call. That's a firewall
117     /// query, only typing in the macro call itself changes the returned
118     /// subtree.
119     fn macro_arg_text(&self, id: MacroCallId) -> Option<GreenNode>;
120     /// Gets the expander for this macro. This compiles declarative macros, and
121     /// just fetches procedural ones.
122     fn macro_def(&self, id: MacroDefId) -> Option<Arc<TokenExpander>>;
123
124     /// Expand macro call to a token tree. This query is LRUed (we keep 128 or so results in memory)
125     fn macro_expand(&self, macro_call: MacroCallId) -> ExpandResult<Option<Arc<tt::Subtree>>>;
126     /// Special case of the previous query for procedural macros. We can't LRU
127     /// proc macros, since they are not deterministic in general, and
128     /// non-determinism breaks salsa in a very, very, very bad way. @edwin0cheng
129     /// heroically debugged this once!
130     fn expand_proc_macro(&self, call: MacroCallId) -> ExpandResult<tt::Subtree>;
131     /// Firewall query that returns the error from the `macro_expand` query.
132     fn macro_expand_error(&self, macro_call: MacroCallId) -> Option<ExpandError>;
133
134     fn hygiene_frame(&self, file_id: HirFileId) -> Arc<HygieneFrame>;
135 }
136
137 /// This expands the given macro call, but with different arguments. This is
138 /// used for completion, where we want to see what 'would happen' if we insert a
139 /// token. The `token_to_map` mapped down into the expansion, with the mapped
140 /// token returned.
141 pub fn expand_speculative(
142     db: &dyn AstDatabase,
143     actual_macro_call: MacroCallId,
144     speculative_args: &ast::TokenTree,
145     token_to_map: SyntaxToken,
146 ) -> Option<(SyntaxNode, SyntaxToken)> {
147     let (tt, tmap_1) = mbe::syntax_node_to_token_tree(speculative_args.syntax());
148     let range =
149         token_to_map.text_range().checked_sub(speculative_args.syntax().text_range().start())?;
150     let token_id = tmap_1.token_by_range(range)?;
151
152     let macro_def = {
153         let loc: MacroCallLoc = db.lookup_intern_macro(actual_macro_call);
154         db.macro_def(loc.def)?
155     };
156
157     let speculative_expansion = macro_def.expand(db, actual_macro_call, &tt);
158
159     let expand_to = macro_expand_to(db, actual_macro_call);
160
161     let (node, tmap_2) = token_tree_to_syntax_node(&speculative_expansion.value, expand_to).ok()?;
162
163     let token_id = macro_def.map_id_down(token_id);
164     let range = tmap_2.first_range_by_token(token_id, token_to_map.kind())?;
165     let token = node.syntax_node().covering_element(range).into_token()?;
166     Some((node.syntax_node(), token))
167 }
168
169 fn ast_id_map(db: &dyn AstDatabase, file_id: HirFileId) -> Arc<AstIdMap> {
170     let map = db.parse_or_expand(file_id).map(|it| AstIdMap::from_source(&it)).unwrap_or_default();
171     Arc::new(map)
172 }
173
174 fn parse_or_expand(db: &dyn AstDatabase, file_id: HirFileId) -> Option<SyntaxNode> {
175     match file_id.0 {
176         HirFileIdRepr::FileId(file_id) => Some(db.parse(file_id).tree().syntax().clone()),
177         HirFileIdRepr::MacroFile(macro_file) => {
178             db.parse_macro_expansion(macro_file).value.map(|(it, _)| it.syntax_node())
179         }
180     }
181 }
182
183 fn parse_macro_expansion(
184     db: &dyn AstDatabase,
185     macro_file: MacroFile,
186 ) -> ExpandResult<Option<(Parse<SyntaxNode>, Arc<mbe::TokenMap>)>> {
187     let _p = profile::span("parse_macro_expansion");
188     let result = db.macro_expand(macro_file.macro_call_id);
189
190     if let Some(err) = &result.err {
191         // Note:
192         // The final goal we would like to make all parse_macro success,
193         // such that the following log will not call anyway.
194         let loc: MacroCallLoc = db.lookup_intern_macro(macro_file.macro_call_id);
195         let node = loc.kind.to_node(db);
196
197         // collect parent information for warning log
198         let parents =
199             std::iter::successors(loc.kind.file_id().call_node(db), |it| it.file_id.call_node(db))
200                 .map(|n| format!("{:#}", n.value))
201                 .collect::<Vec<_>>()
202                 .join("\n");
203
204         tracing::warn!(
205             "fail on macro_parse: (reason: {:?} macro_call: {:#}) parents: {}",
206             err,
207             node.value,
208             parents
209         );
210     }
211     let tt = match result.value {
212         Some(tt) => tt,
213         None => return ExpandResult { value: None, err: result.err },
214     };
215
216     let expand_to = macro_expand_to(db, macro_file.macro_call_id);
217
218     tracing::debug!("expanded = {}", tt.as_debug_string());
219     tracing::debug!("kind = {:?}", expand_to);
220
221     let (parse, rev_token_map) = match token_tree_to_syntax_node(&tt, expand_to) {
222         Ok(it) => it,
223         Err(err) => {
224             tracing::debug!(
225                 "failed to parse expansion to {:?} = {}",
226                 expand_to,
227                 tt.as_debug_string()
228             );
229             return ExpandResult::only_err(err);
230         }
231     };
232
233     match result.err {
234         Some(err) => {
235             // Safety check for recursive identity macro.
236             let node = parse.syntax_node();
237             let file: HirFileId = macro_file.into();
238             let call_node = match file.call_node(db) {
239                 Some(it) => it,
240                 None => {
241                     return ExpandResult::only_err(err);
242                 }
243             };
244             if is_self_replicating(&node, &call_node.value) {
245                 ExpandResult::only_err(err)
246             } else {
247                 ExpandResult { value: Some((parse, Arc::new(rev_token_map))), err: Some(err) }
248             }
249         }
250         None => {
251             tracing::debug!("parse = {:?}", parse.syntax_node().kind());
252             ExpandResult { value: Some((parse, Arc::new(rev_token_map))), err: None }
253         }
254     }
255 }
256
257 fn macro_arg(db: &dyn AstDatabase, id: MacroCallId) -> Option<Arc<(tt::Subtree, mbe::TokenMap)>> {
258     let arg = db.macro_arg_text(id)?;
259     let loc = db.lookup_intern_macro(id);
260
261     let node = SyntaxNode::new_root(arg);
262     let censor = match loc.kind {
263         MacroCallKind::FnLike { .. } => None,
264         MacroCallKind::Derive { derive_attr_index, .. } => match ast::Item::cast(node.clone()) {
265             Some(item) => item
266                 .attrs()
267                 .map(|attr| attr.syntax().text_range())
268                 .take(derive_attr_index as usize + 1)
269                 .fold1(TextRange::cover),
270             None => None,
271         },
272         MacroCallKind::Attr { invoc_attr_index, .. } => match ast::Item::cast(node.clone()) {
273             Some(item) => {
274                 item.attrs().nth(invoc_attr_index as usize).map(|attr| attr.syntax().text_range())
275             }
276             None => None,
277         },
278     };
279     let (mut tt, tmap) = mbe::syntax_node_to_token_tree_censored(&node, censor);
280
281     if loc.def.is_proc_macro() {
282         // proc macros expect their inputs without parentheses, MBEs expect it with them included
283         tt.delimiter = None;
284     }
285
286     Some(Arc::new((tt, tmap)))
287 }
288
289 fn macro_arg_text(db: &dyn AstDatabase, id: MacroCallId) -> Option<GreenNode> {
290     let loc = db.lookup_intern_macro(id);
291     let arg = loc.kind.arg(db)?;
292     if matches!(loc.kind, MacroCallKind::FnLike { .. }) {
293         let first = arg.first_child_or_token().map_or(T![.], |it| it.kind());
294         let last = arg.last_child_or_token().map_or(T![.], |it| it.kind());
295         let well_formed_tt =
296             matches!((first, last), (T!['('], T![')']) | (T!['['], T![']']) | (T!['{'], T!['}']));
297         if !well_formed_tt {
298             // Don't expand malformed (unbalanced) macro invocations. This is
299             // less than ideal, but trying to expand unbalanced  macro calls
300             // sometimes produces pathological, deeply nested code which breaks
301             // all kinds of things.
302             //
303             // Some day, we'll have explicit recursion counters for all
304             // recursive things, at which point this code might be removed.
305             cov_mark::hit!(issue9358_bad_macro_stack_overflow);
306             return None;
307         }
308     }
309     Some(arg.green().into())
310 }
311
312 fn macro_def(db: &dyn AstDatabase, id: MacroDefId) -> Option<Arc<TokenExpander>> {
313     match id.kind {
314         MacroDefKind::Declarative(ast_id) => match ast_id.to_node(db) {
315             ast::Macro::MacroRules(macro_rules) => {
316                 let arg = macro_rules.token_tree()?;
317                 let (tt, def_site_token_map) = mbe::syntax_node_to_token_tree(arg.syntax());
318                 let mac = match mbe::MacroRules::parse(&tt) {
319                     Ok(it) => it,
320                     Err(err) => {
321                         let name = macro_rules.name().map(|n| n.to_string()).unwrap_or_default();
322                         tracing::warn!("fail on macro_def parse ({}): {:?} {:#?}", name, err, tt);
323                         return None;
324                     }
325                 };
326                 Some(Arc::new(TokenExpander::MacroRules { mac, def_site_token_map }))
327             }
328             ast::Macro::MacroDef(macro_def) => {
329                 let arg = macro_def.body()?;
330                 let (tt, def_site_token_map) = mbe::syntax_node_to_token_tree(arg.syntax());
331                 let mac = match mbe::MacroDef::parse(&tt) {
332                     Ok(it) => it,
333                     Err(err) => {
334                         let name = macro_def.name().map(|n| n.to_string()).unwrap_or_default();
335                         tracing::warn!("fail on macro_def parse ({}): {:?} {:#?}", name, err, tt);
336                         return None;
337                     }
338                 };
339                 Some(Arc::new(TokenExpander::MacroDef { mac, def_site_token_map }))
340             }
341         },
342         MacroDefKind::BuiltIn(expander, _) => Some(Arc::new(TokenExpander::Builtin(expander))),
343         MacroDefKind::BuiltInAttr(expander, _) => {
344             Some(Arc::new(TokenExpander::BuiltinAttr(expander)))
345         }
346         MacroDefKind::BuiltInDerive(expander, _) => {
347             Some(Arc::new(TokenExpander::BuiltinDerive(expander)))
348         }
349         MacroDefKind::BuiltInEager(..) => None,
350         MacroDefKind::ProcMacro(expander, ..) => Some(Arc::new(TokenExpander::ProcMacro(expander))),
351     }
352 }
353
354 fn macro_expand(db: &dyn AstDatabase, id: MacroCallId) -> ExpandResult<Option<Arc<tt::Subtree>>> {
355     let _p = profile::span("macro_expand");
356     let loc: MacroCallLoc = db.lookup_intern_macro(id);
357     if let Some(eager) = &loc.eager {
358         return ExpandResult {
359             value: Some(eager.arg_or_expansion.clone()),
360             // FIXME: There could be errors here!
361             err: None,
362         };
363     }
364
365     let macro_arg = match db.macro_arg(id) {
366         Some(it) => it,
367         None => return ExpandResult::str_err("Failed to lower macro args to token tree".into()),
368     };
369
370     let macro_rules = match db.macro_def(loc.def) {
371         Some(it) => it,
372         None => return ExpandResult::str_err("Failed to find macro definition".into()),
373     };
374     let ExpandResult { value: tt, err } = macro_rules.expand(db, id, &macro_arg.0);
375     // Set a hard limit for the expanded tt
376     let count = tt.count();
377     // XXX: Make ExpandResult a real error and use .map_err instead?
378     if TOKEN_LIMIT.check(count).is_err() {
379         return ExpandResult::str_err(format!(
380             "macro invocation exceeds token limit: produced {} tokens, limit is {}",
381             count,
382             TOKEN_LIMIT.inner(),
383         ));
384     }
385
386     ExpandResult { value: Some(Arc::new(tt)), err }
387 }
388
389 fn macro_expand_error(db: &dyn AstDatabase, macro_call: MacroCallId) -> Option<ExpandError> {
390     db.macro_expand(macro_call).err
391 }
392
393 fn expand_proc_macro(db: &dyn AstDatabase, id: MacroCallId) -> ExpandResult<tt::Subtree> {
394     let loc: MacroCallLoc = db.lookup_intern_macro(id);
395     let macro_arg = match db.macro_arg(id) {
396         Some(it) => it,
397         None => return ExpandResult::str_err("No arguments for proc-macro".to_string()),
398     };
399
400     let expander = match loc.def.kind {
401         MacroDefKind::ProcMacro(expander, ..) => expander,
402         _ => unreachable!(),
403     };
404
405     let attr_arg = match &loc.kind {
406         MacroCallKind::Attr { attr_args, .. } => {
407             let mut attr_args = attr_args.0.clone();
408             mbe::Shift::new(&macro_arg.0).shift_all(&mut attr_args);
409             Some(attr_args)
410         }
411         _ => None,
412     };
413
414     expander.expand(db, loc.krate, &macro_arg.0, attr_arg.as_ref())
415 }
416
417 fn is_self_replicating(from: &SyntaxNode, to: &SyntaxNode) -> bool {
418     if diff(from, to).is_empty() {
419         return true;
420     }
421     if let Some(stmts) = ast::MacroStmts::cast(from.clone()) {
422         if stmts.statements().any(|stmt| diff(stmt.syntax(), to).is_empty()) {
423             return true;
424         }
425         if let Some(expr) = stmts.expr() {
426             if diff(expr.syntax(), to).is_empty() {
427                 return true;
428             }
429         }
430     }
431     false
432 }
433
434 fn hygiene_frame(db: &dyn AstDatabase, file_id: HirFileId) -> Arc<HygieneFrame> {
435     Arc::new(HygieneFrame::new(db, file_id))
436 }
437
438 fn macro_expand_to(db: &dyn AstDatabase, id: MacroCallId) -> ExpandTo {
439     let loc: MacroCallLoc = db.lookup_intern_macro(id);
440     loc.kind.expand_to()
441 }
442
443 fn token_tree_to_syntax_node(
444     tt: &tt::Subtree,
445     expand_to: ExpandTo,
446 ) -> Result<(Parse<SyntaxNode>, mbe::TokenMap), ExpandError> {
447     let fragment = match expand_to {
448         ExpandTo::Statements => mbe::FragmentKind::Statements,
449         ExpandTo::Items => mbe::FragmentKind::Items,
450         ExpandTo::Pattern => mbe::FragmentKind::Pattern,
451         ExpandTo::Type => mbe::FragmentKind::Type,
452         ExpandTo::Expr => mbe::FragmentKind::Expr,
453     };
454     mbe::token_tree_to_syntax_node(tt, fragment)
455 }