-
-
Notifications
You must be signed in to change notification settings - Fork 475
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(grit): parse Grit literal snippets #3051
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,69 @@ | ||||||||||||||||||||||||||||||||||||||||||||||
use biome_diagnostics::{Diagnostic, PrintDescription, Severity}; | ||||||||||||||||||||||||||||||||||||||||||||||
use grit_util::{AnalysisLog, Position, Range}; | ||||||||||||||||||||||||||||||||||||||||||||||
use std::path::{Path, PathBuf}; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
pub trait GritAnalysisExt { | ||||||||||||||||||||||||||||||||||||||||||||||
fn to_log(&self, path: Option<&Path>) -> AnalysisLog; | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
impl<T> GritAnalysisExt for T | ||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||
T: Diagnostic, | ||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||
fn to_log(&self, path: Option<&Path>) -> AnalysisLog { | ||||||||||||||||||||||||||||||||||||||||||||||
let location = self.location(); | ||||||||||||||||||||||||||||||||||||||||||||||
let source = location.source_code; | ||||||||||||||||||||||||||||||||||||||||||||||
let range = | ||||||||||||||||||||||||||||||||||||||||||||||
match (location.span, source) { | ||||||||||||||||||||||||||||||||||||||||||||||
(Some(range), Some(source)) => source.text[..range.start().into()] | ||||||||||||||||||||||||||||||||||||||||||||||
.lines() | ||||||||||||||||||||||||||||||||||||||||||||||
.enumerate() | ||||||||||||||||||||||||||||||||||||||||||||||
.last() | ||||||||||||||||||||||||||||||||||||||||||||||
.map(|(i, line)| { | ||||||||||||||||||||||||||||||||||||||||||||||
let start = Position { | ||||||||||||||||||||||||||||||||||||||||||||||
line: (i + 1) as u32, | ||||||||||||||||||||||||||||||||||||||||||||||
column: line.len() as u32, | ||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||
let end = source.text[range].lines().enumerate().last().map_or( | ||||||||||||||||||||||||||||||||||||||||||||||
start, | ||||||||||||||||||||||||||||||||||||||||||||||
|(j, line)| Position { | ||||||||||||||||||||||||||||||||||||||||||||||
line: start.line + j as u32, | ||||||||||||||||||||||||||||||||||||||||||||||
column: if j == 0 { | ||||||||||||||||||||||||||||||||||||||||||||||
start.column + line.len() as u32 | ||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||
line.len() as u32 | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||
Range { | ||||||||||||||||||||||||||||||||||||||||||||||
start, | ||||||||||||||||||||||||||||||||||||||||||||||
end, | ||||||||||||||||||||||||||||||||||||||||||||||
start_byte: range.start().into(), | ||||||||||||||||||||||||||||||||||||||||||||||
end_byte: range.end().into(), | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
}), | ||||||||||||||||||||||||||||||||||||||||||||||
_ => None, | ||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
AnalysisLog { | ||||||||||||||||||||||||||||||||||||||||||||||
engine_id: Some("biome".to_owned()), | ||||||||||||||||||||||||||||||||||||||||||||||
file: path.map(Path::to_path_buf).or_else(|| { | ||||||||||||||||||||||||||||||||||||||||||||||
location | ||||||||||||||||||||||||||||||||||||||||||||||
.resource | ||||||||||||||||||||||||||||||||||||||||||||||
.and_then(|r| r.as_file().map(PathBuf::from)) | ||||||||||||||||||||||||||||||||||||||||||||||
}), | ||||||||||||||||||||||||||||||||||||||||||||||
level: Some(match self.severity() { | ||||||||||||||||||||||||||||||||||||||||||||||
Severity::Hint => 1, | ||||||||||||||||||||||||||||||||||||||||||||||
Severity::Information => 2, | ||||||||||||||||||||||||||||||||||||||||||||||
Severity::Warning => 3, | ||||||||||||||||||||||||||||||||||||||||||||||
Severity::Error => 4, | ||||||||||||||||||||||||||||||||||||||||||||||
Severity::Fatal => 5, | ||||||||||||||||||||||||||||||||||||||||||||||
}), | ||||||||||||||||||||||||||||||||||||||||||||||
message: PrintDescription(self).to_string(), | ||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have an utility called biome/crates/biome_json_analyze/src/lib.rs Lines 152 to 154 in cd6e830
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unfortunately that one is only available in the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's not exactly that one, but we have it biome/crates/biome_diagnostics/src/lib.rs Lines 74 to 92 in 105f628
|
||||||||||||||||||||||||||||||||||||||||||||||
position: range.as_ref().map(|r| r.start), | ||||||||||||||||||||||||||||||||||||||||||||||
range, | ||||||||||||||||||||||||||||||||||||||||||||||
syntax_tree: None, | ||||||||||||||||||||||||||||||||||||||||||||||
source: source.map(|s| s.text.to_owned()), | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
use crate::{grit_analysis_ext::GritAnalysisExt, grit_tree::GritTree}; | ||
use biome_js_parser::{parse, JsParserOptions}; | ||
use biome_js_syntax::JsFileSource; | ||
use grit_util::{AnalysisLogs, FileOrigin, Parser, SnippetTree}; | ||
use std::path::Path; | ||
|
||
pub struct GritJsParser; | ||
|
||
impl Parser for GritJsParser { | ||
type Tree = GritTree; | ||
|
||
fn parse_file( | ||
&mut self, | ||
body: &str, | ||
path: Option<&Path>, | ||
logs: &mut AnalysisLogs, | ||
_old_tree: FileOrigin<'_, GritTree>, | ||
) -> Option<GritTree> { | ||
let parse_result = parse(body, JsFileSource::tsx(), JsParserOptions::default()); | ||
|
||
for diagnostic in parse_result.diagnostics() { | ||
logs.push(diagnostic.to_log(path)); | ||
} | ||
|
||
Some(GritTree::new(parse_result.syntax().into())) | ||
} | ||
|
||
fn parse_snippet( | ||
&mut self, | ||
prefix: &'static str, | ||
source: &str, | ||
postfix: &'static str, | ||
) -> SnippetTree<GritTree> { | ||
let context = format!("{prefix}{source}{postfix}"); | ||
|
||
let len = if cfg!(target_arch = "wasm32") { | ||
|src: &str| src.chars().count() as u32 | ||
} else { | ||
|src: &str| src.len() as u32 | ||
}; | ||
|
||
let parse_result = parse(&context, JsFileSource::tsx(), JsParserOptions::default()); | ||
|
||
SnippetTree { | ||
tree: GritTree::new(parse_result.syntax().into()), | ||
source: source.to_owned(), | ||
prefix, | ||
postfix, | ||
snippet_start: (len(prefix) + len(source) - len(source.trim_start())), | ||
snippet_end: (len(prefix) + len(source.trim_end())), | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure about the intention of this code, but we have a utility to extract columns and rows from the source code, I suggest to look here and see how we use it:
biome/crates/biome_diagnostics/src/display_github.rs
Lines 30 to 32 in cd6e830