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

529 lines
17 KiB
Rust
Raw Normal View History

//! FIXME: write short doc here
use hir::{Name, Semantics};
2019-01-26 08:20:30 +00:00
use ra_db::SourceDatabase;
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-25 13:38:50 +00:00
ast, AstNode, Direction, NodeOrToken, SyntaxElement, SyntaxKind, 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
use crate::{references::classify_name_ref, FileId};
2019-03-23 16:34:49 +00:00
pub mod tags {
pub const FIELD: &str = "field";
pub const FUNCTION: &str = "function";
pub const MODULE: &str = "module";
pub const CONSTANT: &str = "constant";
pub const MACRO: &str = "macro";
pub const VARIABLE: &str = "variable";
pub const VARIABLE_MUT: &str = "variable.mut";
pub const TYPE: &str = "type";
pub const TYPE_BUILTIN: &str = "type.builtin";
pub const TYPE_SELF: &str = "type.self";
pub const TYPE_PARAM: &str = "type.param";
pub const TYPE_LIFETIME: &str = "type.lifetime";
pub const LITERAL_BYTE: &str = "literal.byte";
pub const LITERAL_NUMERIC: &str = "literal.numeric";
pub const LITERAL_CHAR: &str = "literal.char";
pub const LITERAL_COMMENT: &str = "comment";
pub const LITERAL_STRING: &str = "string";
pub const LITERAL_ATTRIBUTE: &str = "attribute";
pub const KEYWORD: &str = "keyword";
pub const KEYWORD_UNSAFE: &str = "keyword.unsafe";
pub const KEYWORD_CONTROL: &str = "keyword.control";
}
2019-03-23 16:34:49 +00:00
#[derive(Debug)]
pub struct HighlightedRange {
pub range: TextRange,
pub tag: &'static str,
pub binding_hash: Option<u64>,
2019-03-23 16:34:49 +00:00
}
2019-01-08 19:33:36 +00:00
fn is_control_keyword(kind: SyntaxKind) -> bool {
match kind {
2019-05-21 13:28:10 +00:00
T![for]
| T![loop]
| T![while]
| T![continue]
| T![break]
| T![if]
| T![else]
| T![match]
| T![return] => true,
_ => false,
}
}
pub(crate) fn highlight(
2020-02-25 13:38:50 +00:00
db: &RootDatabase,
file_id: FileId,
range: Option<TextRange>,
) -> Vec<HighlightedRange> {
let _p = profile("highlight");
let sema = Semantics::new(db);
let root = sema.parse(file_id).syntax().clone();
2020-02-25 13:38:50 +00:00
let mut bindings_shadow_count: FxHashMap<Name, u32> = FxHashMap::default();
let mut res = Vec::new();
let mut in_macro_call = None;
// Determine the root based on the given range.
let (root, highlight_range) = if let Some(range) = range {
let root = match root.covering_element(range) {
2020-02-25 13:38:50 +00:00
NodeOrToken::Node(node) => node,
NodeOrToken::Token(token) => token.parent(),
};
(root, range)
} else {
(root.clone(), root.text_range())
2020-02-25 13:38:50 +00:00
};
for event in root.preorder_with_tokens() {
match event {
WalkEvent::Enter(node) => {
if node.text_range().intersection(&highlight_range).is_none() {
continue;
}
match node.kind() {
MACRO_CALL => {
in_macro_call = Some(node.clone());
if let Some(range) = highlight_macro(node) {
res.push(HighlightedRange {
range,
tag: tags::MACRO,
binding_hash: None,
});
}
}
_ if in_macro_call.is_some() => {
if let Some(token) = node.as_token() {
if let Some((tag, binding_hash)) = highlight_token_tree(
&sema,
&mut bindings_shadow_count,
token.clone(),
) {
res.push(HighlightedRange {
range: node.text_range(),
tag,
binding_hash,
});
}
}
}
_ => {
if let Some((tag, binding_hash)) =
highlight_node(&sema, &mut bindings_shadow_count, node.clone())
{
res.push(HighlightedRange {
range: node.text_range(),
tag,
binding_hash,
});
}
}
}
}
WalkEvent::Leave(node) => {
if node.text_range().intersection(&highlight_range).is_none() {
continue;
}
if let Some(m) = in_macro_call.as_ref() {
if *m == node {
in_macro_call = None;
}
}
}
}
}
res
}
fn highlight_macro(node: SyntaxElement) -> Option<TextRange> {
let macro_call = ast::MacroCall::cast(node.as_node()?.clone())?;
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
fn highlight_token_tree(
sema: &Semantics<RootDatabase>,
bindings_shadow_count: &mut FxHashMap<Name, u32>,
token: SyntaxToken,
) -> Option<(&'static str, Option<u64>)> {
if token.parent().kind() != TOKEN_TREE {
return None;
}
let token = sema.descend_into_macros(token.clone());
let expanded = {
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(),
}
};
highlight_node(sema, bindings_shadow_count, expanded)
}
fn highlight_node(
sema: &Semantics<RootDatabase>,
bindings_shadow_count: &mut FxHashMap<Name, u32>,
node: SyntaxElement,
) -> Option<(&'static str, Option<u64>)> {
let db = sema.db;
let mut binding_hash = None;
let tag = match node.kind() {
FN_DEF => {
bindings_shadow_count.clear();
return None;
2019-03-23 16:34:49 +00:00
}
COMMENT => tags::LITERAL_COMMENT,
STRING | RAW_STRING | RAW_BYTE_STRING | BYTE_STRING => tags::LITERAL_STRING,
ATTR => tags::LITERAL_ATTRIBUTE,
// Special-case field init shorthand
NAME_REF if node.parent().and_then(ast::RecordField::cast).is_some() => tags::FIELD,
NAME_REF if node.ancestors().any(|it| it.kind() == ATTR) => return None,
NAME_REF => {
let name_ref = node.as_node().cloned().and_then(ast::NameRef::cast).unwrap();
let name_kind = classify_name_ref(sema, &name_ref);
match name_kind {
Some(name_kind) => {
2020-02-19 13:56:22 +00:00
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)
}
_ => return None,
}
}
NAME => {
let name = node.as_node().cloned().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),
None => name.syntax().parent().map_or(tags::FUNCTION, |x| match x.kind() {
STRUCT_DEF | ENUM_DEF | TRAIT_DEF | TYPE_ALIAS_DEF => tags::TYPE,
TYPE_PARAM => tags::TYPE_PARAM,
RECORD_FIELD_DEF => tags::FIELD,
_ => tags::FUNCTION,
}),
2019-03-23 16:34:49 +00:00
}
}
INT_NUMBER | FLOAT_NUMBER => tags::LITERAL_NUMERIC,
BYTE => tags::LITERAL_BYTE,
CHAR => tags::LITERAL_CHAR,
LIFETIME => tags::TYPE_LIFETIME,
T![unsafe] => tags::KEYWORD_UNSAFE,
k if is_control_keyword(k) => tags::KEYWORD_CONTROL,
k if k.is_keyword() => tags::KEYWORD,
_ => return None,
};
return Some((tag, 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
}
}
pub(crate) fn highlight_as_html(db: &RootDatabase, file_id: FileId, rainbow: bool) -> String {
let parse = db.parse(file_id);
2019-05-25 10:42:34 +00:00
fn rainbowify(seed: u64) -> String {
use rand::prelude::*;
let mut rng = SmallRng::seed_from_u64(seed);
2019-05-26 09:56:31 +00:00
format!(
"hsl({h},{s}%,{l}%)",
h = rng.gen_range::<u16, _, _>(0, 361),
s = rng.gen_range::<u16, _, _>(42, 99),
l = rng.gen_range::<u16, _, _>(40, 91),
)
}
let mut ranges = highlight(db, file_id, None);
2019-05-25 10:42:34 +00:00
ranges.sort_by_key(|it| it.range.start());
// quick non-optimal heuristic to intersect token ranges and highlighted ranges
let mut frontier = 0;
let mut could_intersect: Vec<&HighlightedRange> = Vec::new();
let mut buf = String::new();
buf.push_str(&STYLE);
buf.push_str("<pre><code>");
2019-07-19 16:05:34 +00:00
let tokens = parse.tree().syntax().descendants_with_tokens().filter_map(|it| it.into_token());
2019-05-25 10:42:34 +00:00
for token in tokens {
2019-07-20 09:58:27 +00:00
could_intersect.retain(|it| token.text_range().start() <= it.range.end());
2019-05-25 10:42:34 +00:00
while let Some(r) = ranges.get(frontier) {
2019-07-20 09:58:27 +00:00
if r.range.start() <= token.text_range().end() {
2019-05-25 10:42:34 +00:00
could_intersect.push(r);
frontier += 1;
} else {
break;
}
}
let text = html_escape(&token.text());
let ranges = could_intersect
2019-05-25 10:42:34 +00:00
.iter()
2019-07-20 09:58:27 +00:00
.filter(|it| token.text_range().is_subrange(&it.range))
2019-05-25 10:42:34 +00:00
.collect::<Vec<_>>();
if ranges.is_empty() {
2019-05-25 10:42:34 +00:00
buf.push_str(&text);
} else {
let classes = ranges.iter().map(|x| x.tag).collect::<Vec<_>>().join(" ");
let binding_hash = ranges.first().and_then(|x| x.binding_hash);
let color = match (rainbow, binding_hash) {
2019-05-26 09:56:31 +00:00
(true, Some(hash)) => format!(
" data-binding-hash=\"{}\" style=\"color: {};\"",
hash,
rainbowify(hash)
),
_ => "".into(),
};
buf.push_str(&format!("<span class=\"{}\"{}>{}</span>", classes, color, text));
2019-05-25 10:42:34 +00:00
}
}
buf.push_str("</code></pre>");
buf
}
2020-02-19 13:56:22 +00:00
fn highlight_name(db: &RootDatabase, def: NameDefinition) -> &'static str {
match def {
NameDefinition::Macro(_) => tags::MACRO,
NameDefinition::StructField(_) => tags::FIELD,
NameDefinition::ModuleDef(hir::ModuleDef::Module(_)) => tags::MODULE,
NameDefinition::ModuleDef(hir::ModuleDef::Function(_)) => tags::FUNCTION,
NameDefinition::ModuleDef(hir::ModuleDef::Adt(_)) => tags::TYPE,
NameDefinition::ModuleDef(hir::ModuleDef::EnumVariant(_)) => tags::CONSTANT,
NameDefinition::ModuleDef(hir::ModuleDef::Const(_)) => tags::CONSTANT,
NameDefinition::ModuleDef(hir::ModuleDef::Static(_)) => tags::CONSTANT,
NameDefinition::ModuleDef(hir::ModuleDef::Trait(_)) => tags::TYPE,
NameDefinition::ModuleDef(hir::ModuleDef::TypeAlias(_)) => tags::TYPE,
NameDefinition::ModuleDef(hir::ModuleDef::BuiltinType(_)) => tags::TYPE_BUILTIN,
NameDefinition::SelfType(_) => tags::TYPE_SELF,
NameDefinition::TypeParam(_) => tags::TYPE_PARAM,
NameDefinition::Local(local) => {
2019-12-20 20:14:30 +00:00
if local.is_mut(db) || local.ty(db).is_mutable_reference() {
tags::VARIABLE_MUT
} else {
tags::VARIABLE
}
}
}
}
2019-05-25 10:42:34 +00:00
//FIXME: like, real html escaping
fn html_escape(text: &str) -> String {
text.replace("<", "&lt;").replace(">", "&gt;")
}
const STYLE: &str = "
<style>
body { margin: 0; }
pre { color: #DCDCCC; background: #3F3F3F; font-size: 22px; padding: 0.4em; }
.comment { color: #7F9F7F; }
.string { color: #CC9393; }
2019-12-20 13:10:31 +00:00
.field { color: #94BFF3; }
.function { color: #93E0E3; }
.parameter { color: #94BFF3; }
.text { color: #DCDCCC; }
2019-12-07 19:05:08 +00:00
.type { color: #7CB8BB; }
2019-12-17 13:43:37 +00:00
.type\\.builtin { color: #8CD0D3; }
2019-12-14 11:29:42 +00:00
.type\\.param { color: #20999D; }
2019-07-18 16:57:13 +00:00
.attribute { color: #94BFF3; }
.literal { color: #BFEBBF; }
2019-12-14 11:29:42 +00:00
.literal\\.numeric { color: #6A8759; }
2019-07-18 16:57:13 +00:00
.macro { color: #94BFF3; }
2020-02-16 16:06:01 +00:00
.module { color: #AFD8AF; }
2019-07-18 16:57:13 +00:00
.variable { color: #DCDCCC; }
.variable\\.mut { color: #DCDCCC; text-decoration: underline; }
.keyword { color: #F0DFAF; }
2019-07-18 16:57:13 +00:00
.keyword\\.unsafe { color: #DFAF8F; }
.keyword\\.control { color: #F0DFAF; font-weight: bold; }
2019-05-25 10:42:34 +00:00
</style>
";
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();
assert_eq!(highlights[0].tag, "field");
}
2019-01-08 19:33:36 +00:00
}