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

225 lines
7.7 KiB
Rust
Raw Normal View History

2019-03-23 16:34:49 +00:00
use rustc_hash::FxHashSet;
use ra_syntax::{ast, AstNode, TextRange, Direction, SyntaxKind, SyntaxKind::*, SyntaxElement, T};
2019-01-26 08:20:30 +00:00
use ra_db::SourceDatabase;
2019-05-23 18:18:22 +00:00
use ra_prof::profile;
2019-01-08 19:33:36 +00:00
2019-03-23 16:34:49 +00:00
use crate::{FileId, db::RootDatabase};
#[derive(Debug)]
pub struct HighlightedRange {
pub range: TextRange,
pub tag: &'static str,
}
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,
}
}
2019-01-15 18:17:10 +00:00
pub(crate) fn highlight(db: &RootDatabase, file_id: FileId) -> Vec<HighlightedRange> {
2019-05-23 18:18:22 +00:00
let _p = profile("highlight");
2019-01-26 08:51:36 +00:00
let source_file = db.parse(file_id);
2019-03-23 16:34:49 +00:00
// Visited nodes to handle highlighting priorities
2019-03-30 10:25:53 +00:00
let mut highlighted: FxHashSet<SyntaxElement> = FxHashSet::default();
2019-03-23 16:34:49 +00:00
let mut res = Vec::new();
2019-03-30 10:25:53 +00:00
for node in source_file.syntax().descendants_with_tokens() {
2019-03-23 16:34:49 +00:00
if highlighted.contains(&node) {
continue;
}
let tag = match node.kind() {
COMMENT => "comment",
STRING | RAW_STRING | RAW_BYTE_STRING | BYTE_STRING => "string",
ATTR => "attribute",
2019-05-23 10:26:38 +00:00
NAME_REF => {
if let Some(name_ref) = node.as_node().and_then(|n| ast::NameRef::cast(n)) {
use crate::name_ref_kind::{classify_name_ref, NameRefKind::*};
use hir::{ModuleDef, ImplItem};
// FIXME: try to reuse the SourceAnalyzers
let analyzer = hir::SourceAnalyzer::new(db, file_id, name_ref.syntax(), None);
match classify_name_ref(db, &analyzer, name_ref) {
Some(Method(_)) => "function",
Some(Macro(_)) => "macro",
Some(FieldAccess(_)) => "field",
Some(AssocItem(ImplItem::Method(_))) => "function",
Some(AssocItem(ImplItem::Const(_))) => "constant",
Some(AssocItem(ImplItem::TypeAlias(_))) => "type",
Some(Def(ModuleDef::Module(_))) => "module",
Some(Def(ModuleDef::Function(_))) => "function",
Some(Def(ModuleDef::Struct(_))) => "type",
2019-05-23 17:18:47 +00:00
Some(Def(ModuleDef::Union(_))) => "type",
2019-05-23 10:26:38 +00:00
Some(Def(ModuleDef::Enum(_))) => "type",
Some(Def(ModuleDef::EnumVariant(_))) => "constant",
Some(Def(ModuleDef::Const(_))) => "constant",
Some(Def(ModuleDef::Static(_))) => "constant",
Some(Def(ModuleDef::Trait(_))) => "type",
Some(Def(ModuleDef::TypeAlias(_))) => "type",
Some(SelfType(_)) => "type",
Some(Pat(_)) => "text",
Some(SelfParam(_)) => "type",
Some(GenericParam(_)) => "type",
None => "text",
}
} else {
"text"
}
}
2019-03-23 16:34:49 +00:00
NAME => "function",
2019-05-23 10:26:38 +00:00
TYPE_ALIAS_DEF | TYPE_ARG | TYPE_PARAM => "type",
2019-03-23 16:34:49 +00:00
INT_NUMBER | FLOAT_NUMBER | CHAR | BYTE => "literal",
LIFETIME => "parameter",
2019-05-21 13:28:10 +00:00
T![unsafe] => "keyword.unsafe",
k if is_control_keyword(k) => "keyword.control",
2019-03-23 16:34:49 +00:00
k if k.is_keyword() => "keyword",
_ => {
2019-03-30 10:25:53 +00:00
if let Some(macro_call) = node.as_node().and_then(ast::MacroCall::cast) {
2019-03-23 16:34:49 +00:00
if let Some(path) = macro_call.path() {
if let Some(segment) = path.segment() {
if let Some(name_ref) = segment.name_ref() {
2019-03-30 10:25:53 +00:00
highlighted.insert(name_ref.syntax().into());
2019-03-23 16:34:49 +00:00
let range_start = name_ref.syntax().range().start();
let mut range_end = name_ref.syntax().range().end();
2019-03-30 10:25:53 +00:00
for sibling in path.syntax().siblings_with_tokens(Direction::Next) {
2019-03-23 16:34:49 +00:00
match sibling.kind() {
2019-05-15 12:35:47 +00:00
T![!] | IDENT => range_end = sibling.range().end(),
2019-03-23 16:34:49 +00:00
_ => (),
}
}
res.push(HighlightedRange {
range: TextRange::from_to(range_start, range_end),
tag: "macro",
})
}
}
}
}
continue;
}
};
res.push(HighlightedRange { range: node.range(), tag })
}
res
}
2019-05-25 10:42:34 +00:00
pub(crate) fn highlight_as_html(db: &RootDatabase, file_id: FileId) -> String {
let source_file = db.parse(file_id);
let mut ranges = highlight(db, file_id);
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>");
let tokens = source_file.syntax().descendants_with_tokens().filter_map(|it| it.as_token());
for token in tokens {
could_intersect.retain(|it| token.range().start() <= it.range.end());
while let Some(r) = ranges.get(frontier) {
if r.range.start() <= token.range().end() {
could_intersect.push(r);
frontier += 1;
} else {
break;
}
}
let text = html_escape(&token.text());
let classes = could_intersect
.iter()
.filter(|it| token.range().is_subrange(&it.range))
.map(|it| it.tag)
.collect::<Vec<_>>();
if classes.is_empty() {
buf.push_str(&text);
} else {
let classes = classes.join(" ");
buf.push_str(&format!("<span class=\"{}\">{}</span>", classes, text));
}
}
buf.push_str("</code></pre>");
buf
}
//FIXME: like, real html escaping
fn html_escape(text: &str) -> String {
text.replace("<", "&lt;").replace(">", "&gt;")
}
const STYLE: &str = "
<style>
pre {
color: #DCDCCC;
background-color: #3F3F3F;
font-size: 22px;
}
.comment { color: #7F9F7F; }
.string { color: #CC9393; }
.function { color: #93E0E3; }
.parameter { color: #94BFF3; }
.builtin { color: #DD6718; }
.text { color: #DCDCCC; }
.attribute { color: #BFEBBF; }
.literal { color: #DFAF8F; }
.macro { color: #DFAF8F; }
.keyword { color: #F0DFAF; }
.keyword\\.unsafe { color: #F0DFAF; font-weight: bold; }
.keyword\\.control { color: #DC8CC3; }
</style>
";
2019-03-23 16:34:49 +00:00
#[cfg(test)]
mod tests {
2019-05-25 10:42:34 +00:00
use test_utils::{project_dir, read_text, assert_eq_text};
2019-03-23 16:34:49 +00:00
use crate::mock_analysis::single_file;
#[test]
fn test_highlighting() {
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-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 {
vec.push(Foo { x: 0, y: 1 });
}
2019-05-23 10:26:38 +00:00
unsafe { vec.set_len(0); }
2019-05-25 10:42:34 +00:00
}
2019-03-23 16:34:49 +00:00
"#,
);
2019-05-25 10:42:34 +00:00
let dst_file = project_dir().join("crates/ra_ide_api/src/snapshots/highlighting.html");
let actual_html = &analysis.highlight_as_html(file_id).unwrap();
let expected_html = &read_text(&dst_file);
// std::fs::write(dst_file, &actual_html).unwrap();
assert_eq_text!(expected_html, actual_html);
2019-03-23 16:34:49 +00:00
}
2019-01-08 19:33:36 +00:00
}