]> git.lizzy.rs Git - rust.git/blob - crates/hir_expand/src/db.rs
Downmap the token in attribute inputs when expanding speculatively
[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::{syntax_node_to_token_tree, 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: &SyntaxNode,
145     token_to_map: SyntaxToken,
146 ) -> Option<(SyntaxNode, SyntaxToken)> {
147     let loc = db.lookup_intern_macro(actual_macro_call);
148     let macro_def = db.macro_def(loc.def)?;
149     let token_range = token_to_map.text_range();
150
151     // Build the subtree and token mapping for the speculative args
152     let censor = censor_for_macro_input(&loc, &speculative_args);
153     let (mut tt, spec_args_tmap) =
154         mbe::syntax_node_to_token_tree_censored(&speculative_args, censor);
155
156     let (attr_arg, token_id) = match loc.kind {
157         MacroCallKind::Attr { invoc_attr_index, .. } => {
158             // Attributes may have an input token tree, build the subtree and map for this as well
159             // then try finding a token id for our token if it is inside this input subtree.
160             let item = ast::Item::cast(speculative_args.clone())?;
161             let attr = item.attrs().nth(invoc_attr_index as usize)?;
162             match attr.token_tree() {
163                 Some(token_tree) => {
164                     let (mut tree, map) = syntax_node_to_token_tree(attr.token_tree()?.syntax());
165                     tree.delimiter = None;
166
167                     let shift = mbe::Shift::new(&tt);
168                     shift.shift_all(&mut tree);
169
170                     let token_id = if token_tree.syntax().text_range().contains_range(token_range) {
171                         let attr_input_start =
172                             token_tree.left_delimiter_token()?.text_range().start();
173                         let range = token_range.checked_sub(attr_input_start)?;
174                         let token_id = shift.shift(map.token_by_range(range)?);
175                         Some(token_id)
176                     } else {
177                         None
178                     };
179                     (Some(tree), token_id)
180                 }
181                 _ => (None, None),
182             }
183         }
184         _ => (None, None),
185     };
186     let token_id = match token_id {
187         Some(token_id) => token_id,
188         // token wasn't inside an attribute input so it has to be in the general macro input
189         None => {
190             let range = token_range.checked_sub(speculative_args.text_range().start())?;
191             let token_id = spec_args_tmap.token_by_range(range)?;
192             macro_def.map_id_down(token_id)
193         }
194     };
195
196     // Do the actual expansion, we need to directly expand the proc macro due to the attribute args
197     // Otherwise the expand query will fetch the non speculative attribute args and pass those instead.
198     let speculative_expansion = if let MacroDefKind::ProcMacro(expander, ..) = loc.def.kind {
199         tt.delimiter = None;
200         expander.expand(db, loc.krate, &tt, attr_arg.as_ref())
201     } else {
202         macro_def.expand(db, actual_macro_call, &tt)
203     };
204
205     let expand_to = macro_expand_to(db, actual_macro_call);
206     let (node, rev_tmap) =
207         token_tree_to_syntax_node(&speculative_expansion.value, expand_to).ok()?;
208
209     let range = rev_tmap.first_range_by_token(token_id, token_to_map.kind())?;
210     let token = node.syntax_node().covering_element(range).into_token()?;
211     Some((node.syntax_node(), token))
212 }
213
214 fn ast_id_map(db: &dyn AstDatabase, file_id: HirFileId) -> Arc<AstIdMap> {
215     let map = db.parse_or_expand(file_id).map(|it| AstIdMap::from_source(&it)).unwrap_or_default();
216     Arc::new(map)
217 }
218
219 fn parse_or_expand(db: &dyn AstDatabase, file_id: HirFileId) -> Option<SyntaxNode> {
220     match file_id.0 {
221         HirFileIdRepr::FileId(file_id) => Some(db.parse(file_id).tree().syntax().clone()),
222         HirFileIdRepr::MacroFile(macro_file) => {
223             db.parse_macro_expansion(macro_file).value.map(|(it, _)| it.syntax_node())
224         }
225     }
226 }
227
228 fn parse_macro_expansion(
229     db: &dyn AstDatabase,
230     macro_file: MacroFile,
231 ) -> ExpandResult<Option<(Parse<SyntaxNode>, Arc<mbe::TokenMap>)>> {
232     let _p = profile::span("parse_macro_expansion");
233     let result = db.macro_expand(macro_file.macro_call_id);
234
235     if let Some(err) = &result.err {
236         // Note:
237         // The final goal we would like to make all parse_macro success,
238         // such that the following log will not call anyway.
239         let loc: MacroCallLoc = db.lookup_intern_macro(macro_file.macro_call_id);
240         let node = loc.kind.to_node(db);
241
242         // collect parent information for warning log
243         let parents =
244             std::iter::successors(loc.kind.file_id().call_node(db), |it| it.file_id.call_node(db))
245                 .map(|n| format!("{:#}", n.value))
246                 .collect::<Vec<_>>()
247                 .join("\n");
248
249         tracing::warn!(
250             "fail on macro_parse: (reason: {:?} macro_call: {:#}) parents: {}",
251             err,
252             node.value,
253             parents
254         );
255     }
256     let tt = match result.value {
257         Some(tt) => tt,
258         None => return ExpandResult { value: None, err: result.err },
259     };
260
261     let expand_to = macro_expand_to(db, macro_file.macro_call_id);
262
263     tracing::debug!("expanded = {}", tt.as_debug_string());
264     tracing::debug!("kind = {:?}", expand_to);
265
266     let (parse, rev_token_map) = match token_tree_to_syntax_node(&tt, expand_to) {
267         Ok(it) => it,
268         Err(err) => {
269             tracing::debug!(
270                 "failed to parse expansion to {:?} = {}",
271                 expand_to,
272                 tt.as_debug_string()
273             );
274             return ExpandResult::only_err(err);
275         }
276     };
277
278     match result.err {
279         Some(err) => {
280             // Safety check for recursive identity macro.
281             let node = parse.syntax_node();
282             let file: HirFileId = macro_file.into();
283             let call_node = match file.call_node(db) {
284                 Some(it) => it,
285                 None => {
286                     return ExpandResult::only_err(err);
287                 }
288             };
289             if is_self_replicating(&node, &call_node.value) {
290                 ExpandResult::only_err(err)
291             } else {
292                 ExpandResult { value: Some((parse, Arc::new(rev_token_map))), err: Some(err) }
293             }
294         }
295         None => {
296             tracing::debug!("parse = {:?}", parse.syntax_node().kind());
297             ExpandResult { value: Some((parse, Arc::new(rev_token_map))), err: None }
298         }
299     }
300 }
301
302 fn macro_arg(db: &dyn AstDatabase, id: MacroCallId) -> Option<Arc<(tt::Subtree, mbe::TokenMap)>> {
303     let arg = db.macro_arg_text(id)?;
304     let loc = db.lookup_intern_macro(id);
305
306     let node = SyntaxNode::new_root(arg);
307     let censor = censor_for_macro_input(&loc, &node);
308     let (mut tt, tmap) = mbe::syntax_node_to_token_tree_censored(&node, censor);
309
310     if loc.def.is_proc_macro() {
311         // proc macros expect their inputs without parentheses, MBEs expect it with them included
312         tt.delimiter = None;
313     }
314
315     Some(Arc::new((tt, tmap)))
316 }
317
318 fn censor_for_macro_input(loc: &MacroCallLoc, node: &SyntaxNode) -> Option<TextRange> {
319     match loc.kind {
320         MacroCallKind::FnLike { .. } => None,
321         MacroCallKind::Derive { derive_attr_index, .. } => match ast::Item::cast(node.clone()) {
322             Some(item) => item
323                 .attrs()
324                 .map(|attr| attr.syntax().text_range())
325                 .take(derive_attr_index as usize + 1)
326                 .fold1(TextRange::cover),
327             None => None,
328         },
329         MacroCallKind::Attr { invoc_attr_index, .. } => match ast::Item::cast(node.clone()) {
330             Some(item) => {
331                 item.attrs().nth(invoc_attr_index as usize).map(|attr| attr.syntax().text_range())
332             }
333             None => None,
334         },
335     }
336 }
337
338 fn macro_arg_text(db: &dyn AstDatabase, id: MacroCallId) -> Option<GreenNode> {
339     let loc = db.lookup_intern_macro(id);
340     let arg = loc.kind.arg(db)?;
341     if matches!(loc.kind, MacroCallKind::FnLike { .. }) {
342         let first = arg.first_child_or_token().map_or(T![.], |it| it.kind());
343         let last = arg.last_child_or_token().map_or(T![.], |it| it.kind());
344         let well_formed_tt =
345             matches!((first, last), (T!['('], T![')']) | (T!['['], T![']']) | (T!['{'], T!['}']));
346         if !well_formed_tt {
347             // Don't expand malformed (unbalanced) macro invocations. This is
348             // less than ideal, but trying to expand unbalanced  macro calls
349             // sometimes produces pathological, deeply nested code which breaks
350             // all kinds of things.
351             //
352             // Some day, we'll have explicit recursion counters for all
353             // recursive things, at which point this code might be removed.
354             cov_mark::hit!(issue9358_bad_macro_stack_overflow);
355             return None;
356         }
357     }
358     Some(arg.green().into())
359 }
360
361 fn macro_def(db: &dyn AstDatabase, id: MacroDefId) -> Option<Arc<TokenExpander>> {
362     match id.kind {
363         MacroDefKind::Declarative(ast_id) => match ast_id.to_node(db) {
364             ast::Macro::MacroRules(macro_rules) => {
365                 let arg = macro_rules.token_tree()?;
366                 let (tt, def_site_token_map) = mbe::syntax_node_to_token_tree(arg.syntax());
367                 let mac = match mbe::MacroRules::parse(&tt) {
368                     Ok(it) => it,
369                     Err(err) => {
370                         let name = macro_rules.name().map(|n| n.to_string()).unwrap_or_default();
371                         tracing::warn!("fail on macro_def parse ({}): {:?} {:#?}", name, err, tt);
372                         return None;
373                     }
374                 };
375                 Some(Arc::new(TokenExpander::MacroRules { mac, def_site_token_map }))
376             }
377             ast::Macro::MacroDef(macro_def) => {
378                 let arg = macro_def.body()?;
379                 let (tt, def_site_token_map) = mbe::syntax_node_to_token_tree(arg.syntax());
380                 let mac = match mbe::MacroDef::parse(&tt) {
381                     Ok(it) => it,
382                     Err(err) => {
383                         let name = macro_def.name().map(|n| n.to_string()).unwrap_or_default();
384                         tracing::warn!("fail on macro_def parse ({}): {:?} {:#?}", name, err, tt);
385                         return None;
386                     }
387                 };
388                 Some(Arc::new(TokenExpander::MacroDef { mac, def_site_token_map }))
389             }
390         },
391         MacroDefKind::BuiltIn(expander, _) => Some(Arc::new(TokenExpander::Builtin(expander))),
392         MacroDefKind::BuiltInAttr(expander, _) => {
393             Some(Arc::new(TokenExpander::BuiltinAttr(expander)))
394         }
395         MacroDefKind::BuiltInDerive(expander, _) => {
396             Some(Arc::new(TokenExpander::BuiltinDerive(expander)))
397         }
398         MacroDefKind::BuiltInEager(..) => None,
399         MacroDefKind::ProcMacro(expander, ..) => Some(Arc::new(TokenExpander::ProcMacro(expander))),
400     }
401 }
402
403 fn macro_expand(db: &dyn AstDatabase, id: MacroCallId) -> ExpandResult<Option<Arc<tt::Subtree>>> {
404     let _p = profile::span("macro_expand");
405     let loc: MacroCallLoc = db.lookup_intern_macro(id);
406     if let Some(eager) = &loc.eager {
407         return ExpandResult {
408             value: Some(eager.arg_or_expansion.clone()),
409             // FIXME: There could be errors here!
410             err: None,
411         };
412     }
413
414     let macro_arg = match db.macro_arg(id) {
415         Some(it) => it,
416         None => return ExpandResult::str_err("Failed to lower macro args to token tree".into()),
417     };
418
419     let expander = match db.macro_def(loc.def) {
420         Some(it) => it,
421         None => return ExpandResult::str_err("Failed to find macro definition".into()),
422     };
423     let ExpandResult { value: tt, err } = expander.expand(db, id, &macro_arg.0);
424     // Set a hard limit for the expanded tt
425     let count = tt.count();
426     // XXX: Make ExpandResult a real error and use .map_err instead?
427     if TOKEN_LIMIT.check(count).is_err() {
428         return ExpandResult::str_err(format!(
429             "macro invocation exceeds token limit: produced {} tokens, limit is {}",
430             count,
431             TOKEN_LIMIT.inner(),
432         ));
433     }
434
435     ExpandResult { value: Some(Arc::new(tt)), err }
436 }
437
438 fn macro_expand_error(db: &dyn AstDatabase, macro_call: MacroCallId) -> Option<ExpandError> {
439     db.macro_expand(macro_call).err
440 }
441
442 fn expand_proc_macro(db: &dyn AstDatabase, id: MacroCallId) -> ExpandResult<tt::Subtree> {
443     let loc: MacroCallLoc = db.lookup_intern_macro(id);
444     let macro_arg = match db.macro_arg(id) {
445         Some(it) => it,
446         None => return ExpandResult::str_err("No arguments for proc-macro".to_string()),
447     };
448
449     let expander = match loc.def.kind {
450         MacroDefKind::ProcMacro(expander, ..) => expander,
451         _ => unreachable!(),
452     };
453
454     let attr_arg = match &loc.kind {
455         MacroCallKind::Attr { attr_args, .. } => {
456             let mut attr_args = attr_args.0.clone();
457             mbe::Shift::new(&macro_arg.0).shift_all(&mut attr_args);
458             Some(attr_args)
459         }
460         _ => None,
461     };
462
463     expander.expand(db, loc.krate, &macro_arg.0, attr_arg.as_ref())
464 }
465
466 fn is_self_replicating(from: &SyntaxNode, to: &SyntaxNode) -> bool {
467     if diff(from, to).is_empty() {
468         return true;
469     }
470     if let Some(stmts) = ast::MacroStmts::cast(from.clone()) {
471         if stmts.statements().any(|stmt| diff(stmt.syntax(), to).is_empty()) {
472             return true;
473         }
474         if let Some(expr) = stmts.expr() {
475             if diff(expr.syntax(), to).is_empty() {
476                 return true;
477             }
478         }
479     }
480     false
481 }
482
483 fn hygiene_frame(db: &dyn AstDatabase, file_id: HirFileId) -> Arc<HygieneFrame> {
484     Arc::new(HygieneFrame::new(db, file_id))
485 }
486
487 fn macro_expand_to(db: &dyn AstDatabase, id: MacroCallId) -> ExpandTo {
488     let loc: MacroCallLoc = db.lookup_intern_macro(id);
489     loc.kind.expand_to()
490 }
491
492 fn token_tree_to_syntax_node(
493     tt: &tt::Subtree,
494     expand_to: ExpandTo,
495 ) -> Result<(Parse<SyntaxNode>, mbe::TokenMap), ExpandError> {
496     let entry_point = match expand_to {
497         ExpandTo::Statements => mbe::ParserEntryPoint::Statements,
498         ExpandTo::Items => mbe::ParserEntryPoint::Items,
499         ExpandTo::Pattern => mbe::ParserEntryPoint::Pattern,
500         ExpandTo::Type => mbe::ParserEntryPoint::Type,
501         ExpandTo::Expr => mbe::ParserEntryPoint::Expr,
502     };
503     mbe::token_tree_to_syntax_node(tt, entry_point)
504 }