rust-analyzer/crates/ra_ide/src/syntax_highlighting.rs

400 lines
14 KiB
Rust
Raw Normal View History

2020-02-27 13:00:51 +00:00
//! Implements syntax highlighting.
2020-02-27 08:46:34 +00:00
mod tags;
mod html;
2020-02-27 13:15:32 +00:00
#[cfg(test)]
mod tests;
2020-02-26 16:08:15 +00:00
use hir::{Name, Semantics};
use ra_ide_db::{
2020-03-03 17:54:39 +00:00
defs::{classify_name, classify_name_ref, Definition, NameClass, NameRefClass},
RootDatabase,
};
2019-05-23 18:18:22 +00:00
use ra_prof::profile;
use ra_syntax::{
2020-02-27 16:19:53 +00:00
ast::{self, HasQuotes, HasStringValue},
AstNode, AstToken, Direction, NodeOrToken, SyntaxElement,
SyntaxKind::*,
SyntaxToken, TextRange, WalkEvent, T,
};
2020-02-18 22:52:53 +00:00
use rustc_hash::FxHashMap;
2019-01-08 19:33:36 +00:00
2020-03-03 17:54:39 +00:00
use crate::{call_info::call_info_for_token, Analysis, FileId};
2019-03-23 16:34:49 +00:00
pub(crate) use html::highlight_as_html;
2020-02-27 13:00:51 +00:00
pub use tags::{Highlight, HighlightModifier, HighlightModifiers, HighlightTag};
#[derive(Debug, Clone)]
2019-03-23 16:34:49 +00:00
pub struct HighlightedRange {
pub range: TextRange,
2020-02-26 18:39:32 +00:00
pub highlight: Highlight,
pub binding_hash: Option<u64>,
2019-03-23 16:34:49 +00:00
}
2019-01-08 19:33:36 +00:00
pub(crate) fn highlight(
2020-02-25 13:38:50 +00:00
db: &RootDatabase,
file_id: FileId,
2020-02-27 10:37:21 +00:00
range_to_highlight: Option<TextRange>,
2020-02-25 13:38:50 +00:00
) -> Vec<HighlightedRange> {
let _p = profile("highlight");
let sema = Semantics::new(db);
2020-02-27 10:37:21 +00:00
// Determine the root based on the given range.
let (root, range_to_highlight) = {
let source_file = sema.parse(file_id);
match range_to_highlight {
Some(range) => {
let node = match source_file.syntax().covering_element(range) {
NodeOrToken::Node(it) => it,
NodeOrToken::Token(it) => it.parent(),
};
(node, range)
}
None => (source_file.syntax().clone(), source_file.syntax().text_range()),
}
};
2020-02-25 13:38:50 +00:00
let mut bindings_shadow_count: FxHashMap<Name, u32> = FxHashMap::default();
// We use a stack for the DFS traversal below.
// When we leave a node, the we use it to flatten the highlighted ranges.
let mut res: Vec<Vec<HighlightedRange>> = vec![Vec::new()];
2020-02-27 10:56:42 +00:00
let mut current_macro_call: Option<ast::MacroCall> = None;
2020-02-27 13:00:51 +00:00
// Walk all nodes, keeping track of whether we are inside a macro or not.
// If in macro, expand it first and highlight the expanded code.
for event in root.preorder_with_tokens() {
match &event {
WalkEvent::Enter(_) => res.push(Vec::new()),
WalkEvent::Leave(_) => {
/* Flattens the highlighted ranges.
*
* For example `#[cfg(feature = "foo")]` contains the nested ranges:
* 1) parent-range: Attribute [0, 23)
* 2) child-range: String [16, 21)
*
* The following code implements the flattening, for our example this results to:
* `[Attribute [0, 16), String [16, 21), Attribute [21, 23)]`
*/
let children = res.pop().unwrap();
let prev = res.last_mut().unwrap();
let needs_flattening = !children.is_empty()
&& !prev.is_empty()
&& children.first().unwrap().range.is_subrange(&prev.last().unwrap().range);
if !needs_flattening {
prev.extend(children);
} else {
let mut parent = prev.pop().unwrap();
for ele in children {
assert!(ele.range.is_subrange(&parent.range));
let mut cloned = parent.clone();
parent.range = TextRange::from_to(parent.range.start(), ele.range.start());
cloned.range = TextRange::from_to(ele.range.end(), cloned.range.end());
if !parent.range.is_empty() {
prev.push(parent);
}
prev.push(ele);
parent = cloned;
}
if !parent.range.is_empty() {
prev.push(parent);
}
}
}
};
let current = res.last_mut().expect("during DFS traversal, the stack must not be empty");
2020-02-27 10:39:54 +00:00
let event_range = match &event {
WalkEvent::Enter(it) => it.text_range(),
WalkEvent::Leave(it) => it.text_range(),
};
2020-02-27 13:00:51 +00:00
// Element outside of the viewport, no need to highlight
if range_to_highlight.intersection(&event_range).is_none() {
2020-02-27 10:39:54 +00:00
continue;
}
2020-02-27 13:00:51 +00:00
// Track "inside macro" state
2020-02-27 10:56:42 +00:00
match event.clone().map(|it| it.into_node().and_then(ast::MacroCall::cast)) {
WalkEvent::Enter(Some(mc)) => {
current_macro_call = Some(mc.clone());
2020-02-27 13:00:51 +00:00
if let Some(range) = macro_call_range(&mc) {
current.push(HighlightedRange {
2020-02-27 10:56:42 +00:00
range,
highlight: HighlightTag::Macro.into(),
binding_hash: None,
});
2020-02-27 10:39:54 +00:00
}
2020-02-27 10:56:42 +00:00
continue;
}
WalkEvent::Leave(Some(mc)) => {
assert!(current_macro_call == Some(mc));
current_macro_call = None;
continue;
}
_ => (),
}
2020-02-27 13:00:51 +00:00
let element = match event {
2020-02-27 10:56:42 +00:00
WalkEvent::Enter(it) => it,
WalkEvent::Leave(_) => continue,
};
2020-02-27 15:05:35 +00:00
2020-02-27 13:00:51 +00:00
let range = element.text_range();
2020-02-27 10:56:42 +00:00
2020-02-27 13:00:51 +00:00
let element_to_highlight = if current_macro_call.is_some() {
// Inside a macro -- expand it first
2020-02-27 15:05:35 +00:00
let token = match element.clone().into_token() {
2020-02-27 13:00:51 +00:00
Some(it) if it.parent().kind() == TOKEN_TREE => it,
_ => continue,
};
let token = sema.descend_into_macros(token.clone());
let parent = token.parent();
// We only care Name and Name_ref
match (token.kind(), parent.kind()) {
(IDENT, NAME) | (IDENT, NAME_REF) => parent.into(),
_ => token.into(),
}
2020-02-27 13:00:51 +00:00
} else {
2020-02-27 15:05:35 +00:00
element.clone()
2020-02-27 13:00:51 +00:00
};
2020-02-27 10:56:42 +00:00
2020-02-27 15:05:35 +00:00
if let Some(token) = element.as_token().cloned().and_then(ast::RawString::cast) {
let expanded = element_to_highlight.as_token().unwrap().clone();
if highlight_injection(current, &sema, token, expanded).is_some() {
2020-02-27 15:05:35 +00:00
continue;
}
}
2020-02-27 10:56:42 +00:00
if let Some((highlight, binding_hash)) =
2020-02-27 13:00:51 +00:00
highlight_element(&sema, &mut bindings_shadow_count, element_to_highlight)
2020-02-27 10:56:42 +00:00
{
current.push(HighlightedRange { range, highlight, binding_hash });
}
}
assert_eq!(res.len(), 1, "after DFS traversal, the stack should only contain a single element");
let mut res = res.pop().unwrap();
res.sort_by_key(|range| range.range.start());
// Check that ranges are sorted and disjoint
assert!(res
.iter()
.zip(res.iter().skip(1))
.all(|(left, right)| left.range.end() <= right.range.start()));
res
}
2020-02-27 13:00:51 +00:00
fn macro_call_range(macro_call: &ast::MacroCall) -> Option<TextRange> {
let path = macro_call.path()?;
let name_ref = path.segment()?.name_ref()?;
let range_start = name_ref.syntax().text_range().start();
let mut range_end = name_ref.syntax().text_range().end();
for sibling in path.syntax().siblings_with_tokens(Direction::Next) {
match sibling.kind() {
T![!] | IDENT => range_end = sibling.text_range().end(),
_ => (),
}
}
Some(TextRange::from_to(range_start, range_end))
}
2020-01-14 16:24:00 +00:00
2020-02-27 13:00:51 +00:00
fn highlight_element(
sema: &Semantics<RootDatabase>,
bindings_shadow_count: &mut FxHashMap<Name, u32>,
2020-02-27 13:00:51 +00:00
element: SyntaxElement,
2020-02-26 18:39:32 +00:00
) -> Option<(Highlight, Option<u64>)> {
let db = sema.db;
let mut binding_hash = None;
2020-02-27 13:00:51 +00:00
let highlight: Highlight = match element.kind() {
FN_DEF => {
bindings_shadow_count.clear();
return None;
2019-03-23 16:34:49 +00:00
}
2020-02-27 13:00:51 +00:00
// Highlight definitions depending on the "type" of the definition.
NAME => {
2020-02-27 13:00:51 +00:00
let name = element.into_node().and_then(ast::Name::cast).unwrap();
let name_kind = classify_name(sema, &name);
2020-03-03 17:36:39 +00:00
if let Some(NameClass::Definition(Definition::Local(local))) = &name_kind {
if let Some(name) = local.name(db) {
let shadow_count = bindings_shadow_count.entry(name.clone()).or_default();
*shadow_count += 1;
binding_hash = Some(calc_binding_hash(&name, *shadow_count))
2019-03-23 16:34:49 +00:00
}
};
match name_kind {
2020-03-03 17:36:39 +00:00
Some(NameClass::Definition(def)) => {
highlight_name(db, def) | HighlightModifier::Definition
}
Some(NameClass::ConstReference(def)) => highlight_name(db, def),
None => highlight_name_by_syntax(name) | HighlightModifier::Definition,
}
}
2020-02-27 13:00:51 +00:00
// Highlight references like the definitions they resolve to
NAME_REF if element.ancestors().any(|it| it.kind() == ATTR) => return None,
NAME_REF => {
let name_ref = element.into_node().and_then(ast::NameRef::cast).unwrap();
let name_kind = classify_name_ref(sema, &name_ref)?;
match name_kind {
2020-03-03 17:36:39 +00:00
NameRefClass::Definition(def) => {
if let Definition::Local(local) = &def {
if let Some(name) = local.name(db) {
let shadow_count =
bindings_shadow_count.entry(name.clone()).or_default();
binding_hash = Some(calc_binding_hash(&name, *shadow_count))
}
};
highlight_name(db, def)
2020-02-27 13:00:51 +00:00
}
NameRefClass::FieldShorthand { .. } => HighlightTag::Field.into(),
}
2020-02-27 13:00:51 +00:00
}
// Simple token-based highlighting
COMMENT => HighlightTag::Comment.into(),
2020-02-28 11:06:54 +00:00
STRING | RAW_STRING | RAW_BYTE_STRING | BYTE_STRING => HighlightTag::StringLiteral.into(),
2020-02-27 13:00:51 +00:00
ATTR => HighlightTag::Attribute.into(),
2020-02-28 11:06:54 +00:00
INT_NUMBER | FLOAT_NUMBER => HighlightTag::NumericLiteral.into(),
BYTE => HighlightTag::ByteLiteral.into(),
CHAR => HighlightTag::CharLiteral.into(),
LIFETIME => {
let h = Highlight::new(HighlightTag::Lifetime);
2020-03-03 15:41:52 +00:00
match element.parent().map(|it| it.kind()) {
Some(LIFETIME_PARAM) | Some(LABEL) => h | HighlightModifier::Definition,
_ => h,
2020-03-03 15:41:52 +00:00
}
}
2020-02-27 13:00:51 +00:00
k if k.is_keyword() => {
let h = Highlight::new(HighlightTag::Keyword);
match k {
T![break]
| T![continue]
| T![else]
| T![for]
| T![if]
| T![loop]
| T![match]
| T![return]
| T![while] => h | HighlightModifier::ControlFlow,
2020-02-27 13:00:51 +00:00
T![unsafe] => h | HighlightModifier::Unsafe,
_ => h,
}
}
_ => return None,
};
2020-02-26 18:39:32 +00:00
return Some((highlight, binding_hash));
fn calc_binding_hash(name: &Name, shadow_count: u32) -> u64 {
fn hash<T: std::hash::Hash + std::fmt::Debug>(x: T) -> u64 {
use std::{collections::hash_map::DefaultHasher, hash::Hasher};
let mut hasher = DefaultHasher::new();
x.hash(&mut hasher);
hasher.finish()
}
hash((name, shadow_count))
2019-03-23 16:34:49 +00:00
}
}
2020-03-03 17:36:39 +00:00
fn highlight_name(db: &RootDatabase, def: Definition) -> Highlight {
2020-02-19 13:56:22 +00:00
match def {
2020-03-03 17:36:39 +00:00
Definition::Macro(_) => HighlightTag::Macro,
Definition::StructField(_) => HighlightTag::Field,
Definition::ModuleDef(def) => match def {
2020-02-27 13:00:51 +00:00
hir::ModuleDef::Module(_) => HighlightTag::Module,
hir::ModuleDef::Function(_) => HighlightTag::Function,
2020-02-27 18:00:10 +00:00
hir::ModuleDef::Adt(hir::Adt::Struct(_)) => HighlightTag::Struct,
hir::ModuleDef::Adt(hir::Adt::Enum(_)) => HighlightTag::Enum,
hir::ModuleDef::Adt(hir::Adt::Union(_)) => HighlightTag::Union,
2020-02-28 11:06:54 +00:00
hir::ModuleDef::EnumVariant(_) => HighlightTag::EnumVariant,
2020-02-27 13:00:51 +00:00
hir::ModuleDef::Const(_) => HighlightTag::Constant,
2020-02-28 11:06:54 +00:00
hir::ModuleDef::Static(_) => HighlightTag::Static,
2020-02-27 18:00:10 +00:00
hir::ModuleDef::Trait(_) => HighlightTag::Trait,
hir::ModuleDef::TypeAlias(_) => HighlightTag::TypeAlias,
hir::ModuleDef::BuiltinType(_) => HighlightTag::BuiltinType,
2020-02-27 13:00:51 +00:00
},
2020-03-03 17:36:39 +00:00
Definition::SelfType(_) => HighlightTag::SelfType,
Definition::TypeParam(_) => HighlightTag::TypeParam,
2020-02-28 11:06:54 +00:00
// FIXME: distinguish between locals and parameters
2020-03-03 17:36:39 +00:00
Definition::Local(local) => {
2020-02-28 11:06:54 +00:00
let mut h = Highlight::new(HighlightTag::Local);
2019-12-20 20:14:30 +00:00
if local.is_mut(db) || local.ty(db).is_mutable_reference() {
2020-02-26 18:39:32 +00:00
h |= HighlightModifier::Mutable;
}
2020-02-26 18:39:32 +00:00
return h;
}
}
2020-02-26 18:39:32 +00:00
.into()
}
2020-02-27 13:00:51 +00:00
fn highlight_name_by_syntax(name: ast::Name) -> Highlight {
let default = HighlightTag::Function.into();
let parent = match name.syntax().parent() {
Some(it) => it,
_ => return default,
};
match parent.kind() {
2020-02-27 18:00:10 +00:00
STRUCT_DEF => HighlightTag::Struct.into(),
ENUM_DEF => HighlightTag::Enum.into(),
2020-02-28 14:03:09 +00:00
UNION_DEF => HighlightTag::Union.into(),
2020-02-27 18:00:10 +00:00
TRAIT_DEF => HighlightTag::Trait.into(),
TYPE_ALIAS_DEF => HighlightTag::TypeAlias.into(),
2020-02-27 13:00:51 +00:00
TYPE_PARAM => HighlightTag::TypeParam.into(),
RECORD_FIELD_DEF => HighlightTag::Field.into(),
_ => default,
}
}
2020-02-27 15:05:35 +00:00
fn highlight_injection(
acc: &mut Vec<HighlightedRange>,
sema: &Semantics<RootDatabase>,
literal: ast::RawString,
expanded: SyntaxToken,
) -> Option<()> {
let call_info = call_info_for_token(&sema, expanded)?;
let idx = call_info.active_parameter?;
let name = call_info.signature.parameter_names.get(idx)?;
2020-03-03 16:03:46 +00:00
if !name.starts_with("ra_fixture") {
2020-02-27 15:05:35 +00:00
return None;
}
let value = literal.value()?;
let (analysis, tmp_file_id) = Analysis::from_single_file(value);
if let Some(range) = literal.open_quote_text_range() {
acc.push(HighlightedRange {
range,
2020-02-28 11:06:54 +00:00
highlight: HighlightTag::StringLiteral.into(),
2020-02-27 15:05:35 +00:00
binding_hash: None,
})
}
for mut h in analysis.highlight(tmp_file_id).unwrap() {
if let Some(r) = literal.map_range_up(h.range) {
h.range = r;
acc.push(h)
}
}
if let Some(range) = literal.close_quote_text_range() {
acc.push(HighlightedRange {
range,
2020-02-28 11:06:54 +00:00
highlight: HighlightTag::StringLiteral.into(),
2020-02-27 15:05:35 +00:00
binding_hash: None,
})
}
Some(())
}