2019-10-29 08:01:14 -05:00
|
|
|
//! `ra_hir_expand` deals with macro expansion.
|
2019-10-29 03:15:51 -05:00
|
|
|
//!
|
2019-10-29 08:01:14 -05:00
|
|
|
//! Specifically, it implements a concept of `MacroFile` -- a file whose syntax
|
|
|
|
//! tree originates not from the text of some `FileId`, but from some macro
|
|
|
|
//! expansion.
|
2019-10-29 03:15:51 -05:00
|
|
|
|
2019-10-29 06:55:39 -05:00
|
|
|
pub mod db;
|
2019-10-29 03:15:51 -05:00
|
|
|
pub mod ast_id_map;
|
2019-10-30 10:56:20 -05:00
|
|
|
pub mod name;
|
2019-10-30 11:10:53 -05:00
|
|
|
pub mod hygiene;
|
2019-11-02 15:42:38 -05:00
|
|
|
pub mod diagnostics;
|
2019-12-05 08:10:33 -06:00
|
|
|
pub mod builtin_derive;
|
2019-11-09 21:03:24 -06:00
|
|
|
pub mod builtin_macro;
|
2019-11-11 00:14:39 -06:00
|
|
|
pub mod quote;
|
2019-10-29 06:55:39 -05:00
|
|
|
|
2019-11-28 07:00:03 -06:00
|
|
|
use std::hash::Hash;
|
2019-11-08 22:00:46 -06:00
|
|
|
use std::sync::Arc;
|
2019-10-29 07:11:42 -05:00
|
|
|
|
|
|
|
use ra_db::{salsa, CrateId, FileId};
|
2019-11-02 15:11:05 -05:00
|
|
|
use ra_syntax::{
|
2019-11-17 11:15:55 -06:00
|
|
|
algo,
|
2019-11-02 15:11:05 -05:00
|
|
|
ast::{self, AstNode},
|
2019-11-18 06:08:39 -06:00
|
|
|
SyntaxNode, SyntaxToken, TextUnit,
|
2019-11-02 15:11:05 -05:00
|
|
|
};
|
2019-10-29 07:11:42 -05:00
|
|
|
|
2019-10-30 08:12:55 -05:00
|
|
|
use crate::ast_id_map::FileAstId;
|
2019-12-05 08:10:33 -06:00
|
|
|
use crate::builtin_derive::BuiltinDeriveExpander;
|
2019-11-23 07:54:39 -06:00
|
|
|
use crate::builtin_macro::BuiltinFnLikeExpander;
|
2019-10-29 07:11:42 -05:00
|
|
|
|
2019-11-22 11:11:33 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test_db;
|
|
|
|
|
2019-10-29 07:11:42 -05:00
|
|
|
/// Input to the analyzer is a set of files, where each file is identified by
|
|
|
|
/// `FileId` and contains source code. However, another source of source code in
|
|
|
|
/// Rust are macros: each macro can be thought of as producing a "temporary
|
|
|
|
/// file". To assign an id to such a file, we use the id of the macro call that
|
|
|
|
/// produced the file. So, a `HirFileId` is either a `FileId` (source code
|
|
|
|
/// written by user), or a `MacroCallId` (source code produced by macro).
|
|
|
|
///
|
|
|
|
/// What is a `MacroCallId`? Simplifying, it's a `HirFileId` of a file
|
|
|
|
/// containing the call plus the offset of the macro call in the file. Note that
|
|
|
|
/// this is a recursive definition! However, the size_of of `HirFileId` is
|
|
|
|
/// finite (because everything bottoms out at the real `FileId`) and small
|
|
|
|
/// (`MacroCallId` uses the location interner).
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct HirFileId(HirFileIdRepr);
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
enum HirFileIdRepr {
|
|
|
|
FileId(FileId),
|
|
|
|
MacroFile(MacroFile),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<FileId> for HirFileId {
|
|
|
|
fn from(id: FileId) -> Self {
|
|
|
|
HirFileId(HirFileIdRepr::FileId(id))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<MacroFile> for HirFileId {
|
|
|
|
fn from(id: MacroFile) -> Self {
|
|
|
|
HirFileId(HirFileIdRepr::MacroFile(id))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl HirFileId {
|
|
|
|
/// For macro-expansion files, returns the file original source file the
|
|
|
|
/// expansion originated from.
|
2019-10-30 08:12:55 -05:00
|
|
|
pub fn original_file(self, db: &dyn db::AstDatabase) -> FileId {
|
2019-10-29 07:11:42 -05:00
|
|
|
match self.0 {
|
|
|
|
HirFileIdRepr::FileId(file_id) => file_id,
|
|
|
|
HirFileIdRepr::MacroFile(macro_file) => {
|
|
|
|
let loc = db.lookup_intern_macro(macro_file.macro_call_id);
|
2019-12-05 08:10:33 -06:00
|
|
|
loc.kind.file_id().original_file(db)
|
2019-10-29 07:11:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-03 11:44:23 -06:00
|
|
|
|
2019-12-06 12:30:15 -06:00
|
|
|
/// If this is a macro call, returns the syntax node of the call.
|
|
|
|
pub fn call_node(self, db: &dyn db::AstDatabase) -> Option<InFile<SyntaxNode>> {
|
|
|
|
match self.0 {
|
|
|
|
HirFileIdRepr::FileId(_) => None,
|
|
|
|
HirFileIdRepr::MacroFile(macro_file) => {
|
|
|
|
let loc = db.lookup_intern_macro(macro_file.macro_call_id);
|
|
|
|
Some(loc.kind.node(db))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-03 11:44:23 -06:00
|
|
|
/// Return expansion information if it is a macro-expansion file
|
2019-11-08 22:00:46 -06:00
|
|
|
pub fn expansion_info(self, db: &dyn db::AstDatabase) -> Option<ExpansionInfo> {
|
2019-11-03 11:44:23 -06:00
|
|
|
match self.0 {
|
|
|
|
HirFileIdRepr::FileId(_) => None,
|
|
|
|
HirFileIdRepr::MacroFile(macro_file) => {
|
|
|
|
let loc: MacroCallLoc = db.lookup_intern_macro(macro_file.macro_call_id);
|
|
|
|
|
2019-12-05 08:10:33 -06:00
|
|
|
let arg_tt = loc.kind.arg(db)?;
|
|
|
|
let def_tt = loc.def.ast_id?.to_node(db).token_tree()?;
|
2019-11-08 14:00:27 -06:00
|
|
|
|
|
|
|
let macro_def = db.macro_def(loc.def)?;
|
2019-11-17 11:15:55 -06:00
|
|
|
let (parse, exp_map) = db.parse_macro(macro_file)?;
|
2019-11-08 22:00:46 -06:00
|
|
|
let macro_arg = db.macro_arg(macro_file.macro_call_id)?;
|
2019-11-08 14:00:27 -06:00
|
|
|
|
2019-11-17 11:15:55 -06:00
|
|
|
Some(ExpansionInfo {
|
2019-11-28 03:50:26 -06:00
|
|
|
expanded: InFile::new(self, parse.syntax_node()),
|
2019-12-05 08:10:33 -06:00
|
|
|
arg: InFile::new(loc.kind.file_id(), arg_tt),
|
|
|
|
def: InFile::new(loc.def.ast_id?.file_id, def_tt),
|
2019-11-17 11:15:55 -06:00
|
|
|
macro_arg,
|
|
|
|
macro_def,
|
|
|
|
exp_map,
|
|
|
|
})
|
2019-11-03 11:44:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-29 07:11:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct MacroFile {
|
|
|
|
macro_call_id: MacroCallId,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// `MacroCallId` identifies a particular macro invocation, like
|
|
|
|
/// `println!("Hello, {}", world)`.
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub struct MacroCallId(salsa::InternId);
|
2019-10-29 08:19:08 -05:00
|
|
|
impl salsa::InternKey for MacroCallId {
|
|
|
|
fn from_intern_id(v: salsa::InternId) -> Self {
|
|
|
|
MacroCallId(v)
|
|
|
|
}
|
|
|
|
fn as_intern_id(&self) -> salsa::InternId {
|
|
|
|
self.0
|
|
|
|
}
|
|
|
|
}
|
2019-10-29 07:11:42 -05:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-11-11 04:45:55 -06:00
|
|
|
pub struct MacroDefId {
|
2019-12-05 08:10:33 -06:00
|
|
|
// FIXME: krate and ast_id are currently optional because we don't have a
|
|
|
|
// definition location for built-in derives. There is one, though: the
|
|
|
|
// standard library defines them. The problem is that it uses the new
|
|
|
|
// `macro` syntax for this, which we don't support yet. As soon as we do
|
|
|
|
// (which will probably require touching this code), we can instead use
|
|
|
|
// that (and also remove the hacks for resolving built-in derives).
|
|
|
|
pub krate: Option<CrateId>,
|
|
|
|
pub ast_id: Option<AstId<ast::MacroCall>>,
|
2019-11-11 04:45:55 -06:00
|
|
|
pub kind: MacroDefKind,
|
2019-11-09 21:03:24 -06:00
|
|
|
}
|
|
|
|
|
2019-11-26 11:33:08 -06:00
|
|
|
impl MacroDefId {
|
2019-12-05 08:10:33 -06:00
|
|
|
pub fn as_call_id(self, db: &dyn db::AstDatabase, kind: MacroCallKind) -> MacroCallId {
|
|
|
|
db.intern_macro(MacroCallLoc { def: self, kind })
|
2019-11-26 11:33:08 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 21:03:24 -06:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
2019-11-11 04:45:55 -06:00
|
|
|
pub enum MacroDefKind {
|
|
|
|
Declarative,
|
2019-11-23 07:54:39 -06:00
|
|
|
BuiltIn(BuiltinFnLikeExpander),
|
2019-12-05 08:10:33 -06:00
|
|
|
// FIXME: maybe just Builtin and rename BuiltinFnLikeExpander to BuiltinExpander
|
|
|
|
BuiltInDerive(BuiltinDeriveExpander),
|
2019-10-29 07:11:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct MacroCallLoc {
|
2019-11-26 11:33:08 -06:00
|
|
|
pub(crate) def: MacroDefId,
|
2019-12-05 08:10:33 -06:00
|
|
|
pub(crate) kind: MacroCallKind,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub enum MacroCallKind {
|
|
|
|
FnLike(AstId<ast::MacroCall>),
|
|
|
|
Attr(AstId<ast::ModuleItem>),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MacroCallKind {
|
|
|
|
pub fn file_id(&self) -> HirFileId {
|
|
|
|
match self {
|
|
|
|
MacroCallKind::FnLike(ast_id) => ast_id.file_id,
|
|
|
|
MacroCallKind::Attr(ast_id) => ast_id.file_id,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-06 12:30:15 -06:00
|
|
|
pub fn node(&self, db: &dyn db::AstDatabase) -> InFile<SyntaxNode> {
|
|
|
|
match self {
|
|
|
|
MacroCallKind::FnLike(ast_id) => ast_id.with_value(ast_id.to_node(db).syntax().clone()),
|
|
|
|
MacroCallKind::Attr(ast_id) => ast_id.with_value(ast_id.to_node(db).syntax().clone()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-05 08:10:33 -06:00
|
|
|
pub fn arg(&self, db: &dyn db::AstDatabase) -> Option<SyntaxNode> {
|
|
|
|
match self {
|
|
|
|
MacroCallKind::FnLike(ast_id) => {
|
|
|
|
Some(ast_id.to_node(db).token_tree()?.syntax().clone())
|
|
|
|
}
|
|
|
|
MacroCallKind::Attr(ast_id) => Some(ast_id.to_node(db).syntax().clone()),
|
|
|
|
}
|
|
|
|
}
|
2019-10-29 07:11:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl MacroCallId {
|
2019-12-08 02:16:52 -06:00
|
|
|
pub fn as_file(self) -> HirFileId {
|
|
|
|
MacroFile { macro_call_id: self }.into()
|
2019-10-29 07:11:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-03 13:12:19 -06:00
|
|
|
/// ExpansionInfo mainly describes how to map text range between src and expanded macro
|
2019-11-17 11:15:55 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
2019-11-03 08:46:12 -06:00
|
|
|
pub struct ExpansionInfo {
|
2019-11-28 03:50:26 -06:00
|
|
|
expanded: InFile<SyntaxNode>,
|
2019-12-05 08:10:33 -06:00
|
|
|
arg: InFile<SyntaxNode>,
|
2019-11-28 03:50:26 -06:00
|
|
|
def: InFile<ast::TokenTree>,
|
2019-11-08 14:00:27 -06:00
|
|
|
|
2019-11-17 11:15:55 -06:00
|
|
|
macro_def: Arc<(db::TokenExpander, mbe::TokenMap)>,
|
|
|
|
macro_arg: Arc<(tt::Subtree, mbe::TokenMap)>,
|
2019-11-18 07:08:41 -06:00
|
|
|
exp_map: Arc<mbe::TokenMap>,
|
2019-11-03 08:46:12 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ExpansionInfo {
|
2019-11-28 03:50:26 -06:00
|
|
|
pub fn map_token_down(&self, token: InFile<&SyntaxToken>) -> Option<InFile<SyntaxToken>> {
|
2019-11-18 06:08:39 -06:00
|
|
|
assert_eq!(token.file_id, self.arg.file_id);
|
2019-12-05 08:10:33 -06:00
|
|
|
let range = token.value.text_range().checked_sub(self.arg.value.text_range().start())?;
|
2019-11-17 11:15:55 -06:00
|
|
|
let token_id = self.macro_arg.1.token_by_range(range)?;
|
2019-11-17 10:11:43 -06:00
|
|
|
let token_id = self.macro_def.0.map_id_down(token_id);
|
2019-11-16 07:49:26 -06:00
|
|
|
|
2019-11-17 11:15:55 -06:00
|
|
|
let range = self.exp_map.range_by_token(token_id)?;
|
|
|
|
|
2019-11-20 00:40:36 -06:00
|
|
|
let token = algo::find_covering_element(&self.expanded.value, range).into_token()?;
|
2019-11-17 11:15:55 -06:00
|
|
|
|
2019-11-20 04:09:21 -06:00
|
|
|
Some(self.expanded.with_value(token))
|
2019-11-16 07:49:26 -06:00
|
|
|
}
|
|
|
|
|
2019-11-28 03:50:26 -06:00
|
|
|
pub fn map_token_up(&self, token: InFile<&SyntaxToken>) -> Option<InFile<SyntaxToken>> {
|
2019-11-20 00:40:36 -06:00
|
|
|
let token_id = self.exp_map.token_by_range(token.value.text_range())?;
|
2019-11-09 03:49:35 -06:00
|
|
|
|
2019-11-17 10:11:43 -06:00
|
|
|
let (token_id, origin) = self.macro_def.0.map_id_up(token_id);
|
2019-11-18 06:08:39 -06:00
|
|
|
let (token_map, tt) = match origin {
|
2019-12-05 08:10:33 -06:00
|
|
|
mbe::Origin::Call => (&self.macro_arg.1, self.arg.clone()),
|
|
|
|
mbe::Origin::Def => {
|
|
|
|
(&self.macro_def.1, self.def.as_ref().map(|tt| tt.syntax().clone()))
|
|
|
|
}
|
2019-11-08 22:00:46 -06:00
|
|
|
};
|
2019-11-03 08:46:12 -06:00
|
|
|
|
2019-11-18 07:08:41 -06:00
|
|
|
let range = token_map.range_by_token(token_id)?;
|
2019-12-05 08:10:33 -06:00
|
|
|
let token = algo::find_covering_element(&tt.value, range + tt.value.text_range().start())
|
|
|
|
.into_token()?;
|
2019-11-20 04:09:21 -06:00
|
|
|
Some(tt.with_value(token))
|
2019-11-03 08:46:12 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-29 07:11:42 -05:00
|
|
|
/// `AstId` points to an AST node in any file.
|
|
|
|
///
|
|
|
|
/// It is stable across reparses, and can be used as salsa key/value.
|
|
|
|
// FIXME: isn't this just a `Source<FileAstId<N>>` ?
|
2019-11-28 07:00:03 -06:00
|
|
|
pub type AstId<N> = InFile<FileAstId<N>>;
|
2019-10-29 07:11:42 -05:00
|
|
|
|
|
|
|
impl<N: AstNode> AstId<N> {
|
2019-10-30 08:12:55 -05:00
|
|
|
pub fn to_node(&self, db: &dyn db::AstDatabase) -> N {
|
2019-10-29 07:22:20 -05:00
|
|
|
let root = db.parse_or_expand(self.file_id).unwrap();
|
2019-11-28 07:00:03 -06:00
|
|
|
db.ast_id_map(self.file_id).get(self.value).to_node(&root)
|
2019-10-29 07:11:42 -05:00
|
|
|
}
|
|
|
|
}
|
2019-11-02 15:11:05 -05:00
|
|
|
|
2019-11-28 03:50:26 -06:00
|
|
|
/// `InFile<T>` stores a value of `T` inside a particular file/syntax tree.
|
2019-11-20 00:40:36 -06:00
|
|
|
///
|
|
|
|
/// Typical usages are:
|
|
|
|
///
|
2019-11-28 03:50:26 -06:00
|
|
|
/// * `InFile<SyntaxNode>` -- syntax node in a file
|
|
|
|
/// * `InFile<ast::FnDef>` -- ast node in a file
|
|
|
|
/// * `InFile<TextUnit>` -- offset in a file
|
2019-11-14 01:30:30 -06:00
|
|
|
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash)]
|
2019-11-28 03:50:26 -06:00
|
|
|
pub struct InFile<T> {
|
2019-11-02 15:11:05 -05:00
|
|
|
pub file_id: HirFileId,
|
2019-11-20 00:40:36 -06:00
|
|
|
pub value: T,
|
2019-11-02 15:11:05 -05:00
|
|
|
}
|
|
|
|
|
2019-11-28 03:50:26 -06:00
|
|
|
impl<T> InFile<T> {
|
|
|
|
pub fn new(file_id: HirFileId, value: T) -> InFile<T> {
|
|
|
|
InFile { file_id, value }
|
2019-11-15 14:24:56 -06:00
|
|
|
}
|
|
|
|
|
2019-11-15 15:40:54 -06:00
|
|
|
// Similarly, naming here is stupid...
|
2019-11-28 03:50:26 -06:00
|
|
|
pub fn with_value<U>(&self, value: U) -> InFile<U> {
|
|
|
|
InFile::new(self.file_id, value)
|
2019-11-15 15:40:54 -06:00
|
|
|
}
|
|
|
|
|
2019-11-28 03:50:26 -06:00
|
|
|
pub fn map<F: FnOnce(T) -> U, U>(self, f: F) -> InFile<U> {
|
|
|
|
InFile::new(self.file_id, f(self.value))
|
2019-11-02 15:11:05 -05:00
|
|
|
}
|
2019-11-28 03:50:26 -06:00
|
|
|
pub fn as_ref(&self) -> InFile<&T> {
|
2019-11-20 04:09:21 -06:00
|
|
|
self.with_value(&self.value)
|
2019-11-14 01:30:30 -06:00
|
|
|
}
|
2019-11-02 15:11:05 -05:00
|
|
|
pub fn file_syntax(&self, db: &impl db::AstDatabase) -> SyntaxNode {
|
|
|
|
db.parse_or_expand(self.file_id).expect("source created from invalid file")
|
|
|
|
}
|
|
|
|
}
|
2019-12-06 14:46:18 -06:00
|
|
|
|
|
|
|
impl<T: Clone> InFile<&T> {
|
|
|
|
pub fn cloned(&self) -> InFile<T> {
|
|
|
|
self.with_value(self.value.clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl InFile<SyntaxNode> {
|
|
|
|
pub fn ancestors_with_macros<'a>(
|
|
|
|
self,
|
|
|
|
db: &'a impl crate::db::AstDatabase,
|
|
|
|
) -> impl Iterator<Item = InFile<SyntaxNode>> + 'a {
|
|
|
|
std::iter::successors(Some(self), move |node| match node.value.parent() {
|
|
|
|
Some(parent) => Some(node.with_value(parent)),
|
|
|
|
None => {
|
|
|
|
let parent_node = node.file_id.call_node(db)?;
|
|
|
|
Some(parent_node)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|