rust/crates/ra_hir_expand/src/lib.rs

249 lines
7.7 KiB
Rust
Raw Normal View History

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
pub mod db;
2019-10-29 03:15:51 -05:00
pub mod ast_id_map;
2019-10-30 10:50:10 -05:00
pub mod either;
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-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 07:11:42 -05:00
use std::hash::{Hash, Hasher};
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::{
ast::{self, AstNode},
2019-11-08 22:00:46 -06:00
SyntaxNode, TextRange, 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-11-09 21:03:24 -06:00
use crate::builtin_macro::BuiltinExpander;
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);
loc.ast_id.file_id().original_file(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-11-08 22:00:46 -06:00
let arg_start = loc.ast_id.to_node(db).token_tree()?.syntax().text_range().start();
let def_start =
2019-11-11 04:45:55 -06:00
loc.def.ast_id.to_node(db).token_tree()?.syntax().text_range().start();
2019-11-08 14:00:27 -06:00
let macro_def = db.macro_def(loc.def)?;
let shift = macro_def.0.shift();
2019-11-08 22:00:46 -06:00
let exp_map = db.parse_macro(macro_file)?.1;
let macro_arg = db.macro_arg(macro_file.macro_call_id)?;
2019-11-08 14:00:27 -06:00
2019-11-08 22:00:46 -06:00
let arg_start = (loc.ast_id.file_id, arg_start);
2019-11-11 04:45:55 -06:00
let def_start = (loc.def.ast_id.file_id, def_start);
2019-11-08 14:00:27 -06:00
2019-11-08 22:00:46 -06:00
Some(ExpansionInfo { arg_start, def_start, macro_arg, macro_def, exp_map, shift })
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,
macro_file_kind: MacroFileKind,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum MacroFileKind {
Items,
Expr,
}
/// `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-11-09 21:03:24 -06:00
pub krate: CrateId,
pub ast_id: AstId<ast::MacroCall>,
2019-11-11 04:45:55 -06:00
pub kind: MacroDefKind,
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,
BuiltIn(BuiltinExpander),
2019-10-29 07:11:42 -05:00
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct MacroCallLoc {
pub def: MacroDefId,
pub ast_id: AstId<ast::MacroCall>,
}
impl MacroCallId {
pub fn as_file(self, kind: MacroFileKind) -> HirFileId {
let macro_file = MacroFile { macro_call_id: self, macro_file_kind: kind };
macro_file.into()
}
}
2019-11-03 08:46:12 -06:00
#[derive(Debug, Clone, PartialEq, Eq)]
2019-11-03 13:12:19 -06:00
/// ExpansionInfo mainly describes how to map text range between src and expanded macro
2019-11-03 08:46:12 -06:00
pub struct ExpansionInfo {
2019-11-08 22:00:46 -06:00
pub(crate) arg_start: (HirFileId, TextUnit),
pub(crate) def_start: (HirFileId, TextUnit),
pub(crate) shift: u32,
2019-11-08 14:00:27 -06:00
2019-11-09 21:03:24 -06:00
pub(crate) macro_def: Arc<(db::TokenExpander, mbe::TokenMap)>,
2019-11-08 22:00:46 -06:00
pub(crate) macro_arg: Arc<(tt::Subtree, mbe::TokenMap)>,
pub(crate) exp_map: Arc<mbe::RevTokenMap>,
2019-11-03 08:46:12 -06:00
}
impl ExpansionInfo {
2019-11-08 14:00:27 -06:00
pub fn find_range(&self, from: TextRange) -> Option<(HirFileId, TextRange)> {
2019-11-08 22:00:46 -06:00
let token_id = look_in_rev_map(&self.exp_map, from)?;
2019-11-09 03:49:35 -06:00
let (token_map, (file_id, start_offset), token_id) = if token_id.0 >= self.shift {
2019-11-08 22:00:46 -06:00
(&self.macro_arg.1, self.arg_start, tt::TokenId(token_id.0 - self.shift).into())
} else {
(&self.macro_def.1, self.def_start, token_id)
};
2019-11-03 08:46:12 -06:00
2019-11-08 22:00:46 -06:00
let range = token_map.relative_range_of(token_id)?;
2019-11-09 03:49:35 -06:00
return Some((file_id, range + start_offset));
fn look_in_rev_map(exp_map: &mbe::RevTokenMap, from: TextRange) -> Option<tt::TokenId> {
exp_map.ranges.iter().find(|&it| it.0.is_subrange(&from)).map(|it| it.1)
}
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>>` ?
#[derive(Debug)]
pub struct AstId<N: AstNode> {
file_id: HirFileId,
file_ast_id: FileAstId<N>,
}
impl<N: AstNode> Clone for AstId<N> {
fn clone(&self) -> AstId<N> {
*self
}
}
impl<N: AstNode> Copy for AstId<N> {}
impl<N: AstNode> PartialEq for AstId<N> {
fn eq(&self, other: &Self) -> bool {
(self.file_id, self.file_ast_id) == (other.file_id, other.file_ast_id)
}
}
impl<N: AstNode> Eq for AstId<N> {}
impl<N: AstNode> Hash for AstId<N> {
fn hash<H: Hasher>(&self, hasher: &mut H) {
(self.file_id, self.file_ast_id).hash(hasher);
}
}
impl<N: AstNode> AstId<N> {
pub fn new(file_id: HirFileId, file_ast_id: FileAstId<N>) -> AstId<N> {
AstId { file_id, file_ast_id }
}
pub fn file_id(&self) -> HirFileId {
self.file_id
}
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-10-29 07:25:46 -05:00
db.ast_id_map(self.file_id).get(self.file_ast_id).to_node(&root)
2019-10-29 07:11:42 -05:00
}
}
2019-11-02 15:11:05 -05:00
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash)]
2019-11-02 15:11:05 -05:00
pub struct Source<T> {
pub file_id: HirFileId,
2019-11-15 15:05:10 -06:00
// FIXME: this stores all kind of things, not only `ast`.
// There should be a better name...
2019-11-02 15:11:05 -05:00
pub ast: T,
}
impl<T> Source<T> {
pub fn new(file_id: HirFileId, ast: T) -> Source<T> {
Source { file_id, ast }
}
2019-11-02 15:11:05 -05:00
pub fn map<F: FnOnce(T) -> U, U>(self, f: F) -> Source<U> {
Source { file_id: self.file_id, ast: f(self.ast) }
}
pub fn as_ref(&self) -> Source<&T> {
Source { file_id: self.file_id, ast: &self.ast }
}
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")
}
}