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

416 lines
12 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-26 16:08:15 +00:00
use hir::{Name, Semantics};
use ra_ide_db::{
defs::{classify_name, NameDefinition},
RootDatabase,
};
2019-05-23 18:18:22 +00:00
use ra_prof::profile;
use ra_syntax::{
2020-02-27 13:00:51 +00:00
ast, AstNode, Direction, NodeOrToken, SyntaxElement, SyntaxKind::*, TextRange, WalkEvent, T,
};
2020-02-18 22:52:53 +00:00
use rustc_hash::FxHashMap;
2019-01-08 19:33:36 +00:00
use crate::{references::classify_name_ref, 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};
2019-03-23 16:34:49 +00:00
#[derive(Debug)]
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();
let mut res = 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() {
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) {
2020-02-27 10:56:42 +00:00
res.push(HighlightedRange {
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 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
let token = match element.into_token() {
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 {
element
};
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
{
2020-02-27 13:00:51 +00:00
res.push(HighlightedRange { range, highlight, binding_hash });
}
}
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-02-19 13:56:22 +00:00
if let Some(NameDefinition::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 {
Some(name_kind) => highlight_name(db, name_kind),
2020-02-27 13:00:51 +00:00
None => highlight_name_by_syntax(name),
2019-03-23 16:34:49 +00:00
}
}
2020-02-27 13:00:51 +00:00
// Highlight references like the definitions they resolve to
// Special-case field init shorthand
NAME_REF if element.parent().and_then(ast::RecordField::cast).is_some() => {
HighlightTag::Field.into()
}
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)?;
if let NameDefinition::Local(local) = &name_kind {
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, name_kind)
}
// Simple token-based highlighting
COMMENT => HighlightTag::Comment.into(),
STRING | RAW_STRING | RAW_BYTE_STRING | BYTE_STRING => HighlightTag::LiteralString.into(),
ATTR => HighlightTag::Attribute.into(),
2020-02-26 18:39:32 +00:00
INT_NUMBER | FLOAT_NUMBER => HighlightTag::LiteralNumeric.into(),
BYTE => HighlightTag::LiteralByte.into(),
CHAR => HighlightTag::LiteralChar.into(),
LIFETIME => HighlightTag::TypeLifetime.into(),
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::Control,
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-02-26 18:39:32 +00:00
fn highlight_name(db: &RootDatabase, def: NameDefinition) -> Highlight {
2020-02-19 13:56:22 +00:00
match def {
2020-02-26 18:39:32 +00:00
NameDefinition::Macro(_) => HighlightTag::Macro,
NameDefinition::StructField(_) => HighlightTag::Field,
2020-02-27 13:00:51 +00:00
NameDefinition::ModuleDef(def) => match def {
hir::ModuleDef::Module(_) => HighlightTag::Module,
hir::ModuleDef::Function(_) => HighlightTag::Function,
hir::ModuleDef::Adt(_) => HighlightTag::Type,
hir::ModuleDef::EnumVariant(_) => HighlightTag::Constant,
hir::ModuleDef::Const(_) => HighlightTag::Constant,
hir::ModuleDef::Static(_) => HighlightTag::Constant,
hir::ModuleDef::Trait(_) => HighlightTag::Type,
hir::ModuleDef::TypeAlias(_) => HighlightTag::Type,
hir::ModuleDef::BuiltinType(_) => {
return HighlightTag::Type | HighlightModifier::Builtin
}
},
2020-02-26 18:39:32 +00:00
NameDefinition::SelfType(_) => HighlightTag::TypeSelf,
NameDefinition::TypeParam(_) => HighlightTag::TypeParam,
2020-02-19 13:56:22 +00:00
NameDefinition::Local(local) => {
2020-02-26 18:39:32 +00:00
let mut h = Highlight::new(HighlightTag::Variable);
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() {
STRUCT_DEF | ENUM_DEF | TRAIT_DEF | TYPE_ALIAS_DEF => HighlightTag::Type.into(),
TYPE_PARAM => HighlightTag::TypeParam.into(),
RECORD_FIELD_DEF => HighlightTag::Field.into(),
_ => default,
}
}
2019-03-23 16:34:49 +00:00
#[cfg(test)]
mod tests {
2020-01-14 11:16:48 +00:00
use std::fs;
use test_utils::{assert_eq_text, project_dir, read_text};
2019-03-23 16:34:49 +00:00
2020-02-25 13:38:50 +00:00
use crate::{
mock_analysis::{single_file, MockAnalysis},
FileRange, TextRange,
};
2020-01-14 11:16:48 +00:00
2019-03-23 16:34:49 +00:00
#[test]
2020-01-15 15:53:01 +00:00
fn test_highlighting() {
2019-03-23 16:34:49 +00:00
let (analysis, file_id) = single_file(
r#"
2019-05-23 10:26:38 +00:00
#[derive(Clone, Debug)]
struct Foo {
pub x: i32,
pub y: i32,
}
fn foo<T>() -> T {
unimplemented!();
2019-05-28 18:27:54 +00:00
foo::<i32>();
2019-05-23 10:26:38 +00:00
}
macro_rules! def_fn {
($($tt:tt)*) => {$($tt)*}
}
def_fn!{
fn bar() -> u32 {
100
}
}
2019-03-23 16:34:49 +00:00
// comment
2019-05-25 10:42:34 +00:00
fn main() {
2019-03-23 16:34:49 +00:00
println!("Hello, {}!", 92);
2019-05-23 10:26:38 +00:00
let mut vec = Vec::new();
2019-05-25 10:42:34 +00:00
if true {
2019-12-20 13:10:31 +00:00
let x = 92;
vec.push(Foo { x, y: 1 });
2019-05-25 10:42:34 +00:00
}
2019-05-23 10:26:38 +00:00
unsafe { vec.set_len(0); }
let mut x = 42;
let y = &mut x;
let z = &y;
y;
2019-05-25 10:42:34 +00:00
}
2019-12-07 19:05:08 +00:00
enum E<X> {
V(X)
}
impl<X> E<X> {
fn new<T>() -> E<T> {}
}
2019-05-26 09:56:31 +00:00
"#
.trim(),
2019-03-23 16:34:49 +00:00
);
2019-11-27 18:32:33 +00:00
let dst_file = project_dir().join("crates/ra_ide/src/snapshots/highlighting.html");
let actual_html = &analysis.highlight_as_html(file_id, false).unwrap();
2019-05-25 10:42:34 +00:00
let expected_html = &read_text(&dst_file);
2020-01-14 11:16:48 +00:00
fs::write(dst_file, &actual_html).unwrap();
2019-05-25 10:42:34 +00:00
assert_eq_text!(expected_html, actual_html);
2019-03-23 16:34:49 +00:00
}
#[test]
fn test_rainbow_highlighting() {
let (analysis, file_id) = single_file(
r#"
fn main() {
let hello = "hello";
let x = hello.to_string();
let y = hello.to_string();
let x = "other color please!";
let y = x.to_string();
}
fn bar() {
let mut hello = "hello";
}
2019-05-26 09:56:31 +00:00
"#
.trim(),
);
2019-11-27 18:44:38 +00:00
let dst_file = project_dir().join("crates/ra_ide/src/snapshots/rainbow_highlighting.html");
2019-05-26 09:56:31 +00:00
let actual_html = &analysis.highlight_as_html(file_id, true).unwrap();
let expected_html = &read_text(&dst_file);
2020-01-14 11:16:48 +00:00
fs::write(dst_file, &actual_html).unwrap();
assert_eq_text!(expected_html, actual_html);
}
2020-01-14 11:16:48 +00:00
#[test]
fn accidentally_quadratic() {
let file = project_dir().join("crates/ra_syntax/test_data/accidentally_quadratic");
let src = fs::read_to_string(file).unwrap();
let mut mock = MockAnalysis::new();
let file_id = mock.add_file("/main.rs", &src);
let host = mock.analysis_host();
// let t = std::time::Instant::now();
let _ = host.analysis().highlight(file_id).unwrap();
// eprintln!("elapsed: {:?}", t.elapsed());
}
2020-02-25 13:38:50 +00:00
#[test]
fn test_ranges() {
let (analysis, file_id) = single_file(
r#"
#[derive(Clone, Debug)]
struct Foo {
pub x: i32,
pub y: i32,
}"#,
);
// The "x"
2020-02-25 13:38:50 +00:00
let highlights = &analysis
.highlight_range(FileRange {
file_id,
range: TextRange::offset_len(82.into(), 1.into()),
2020-02-25 13:38:50 +00:00
})
.unwrap();
2020-02-26 18:39:32 +00:00
assert_eq!(&highlights[0].highlight.to_string(), "field");
2020-02-25 13:38:50 +00:00
}
2019-01-08 19:33:36 +00:00
}