mirror of
https://github.com/denoland/deno.git
synced 2025-02-15 10:06:23 -05:00
137 lines
3.4 KiB
Rust
137 lines
3.4 KiB
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use deno_ast::MediaType;
|
|
use deno_ast::ModuleSpecifier;
|
|
use deno_ast::SourceRange;
|
|
use deno_ast::SourceTextInfo;
|
|
use deno_ast::SourceTextProvider;
|
|
use deno_core::error::generic_error;
|
|
use deno_core::error::AnyError;
|
|
use deno_core::op2;
|
|
use deno_core::OpState;
|
|
use deno_lint::diagnostic::LintDiagnostic;
|
|
use deno_lint::diagnostic::LintDiagnosticDetails;
|
|
use deno_lint::diagnostic::LintDiagnosticRange;
|
|
|
|
use crate::tools::lint;
|
|
use crate::tools::lint::PluginLogger;
|
|
|
|
deno_core::extension!(
|
|
deno_lint_ext,
|
|
ops = [
|
|
op_lint_create_serialized_ast,
|
|
op_lint_report,
|
|
op_lint_get_source
|
|
],
|
|
options = {
|
|
logger: PluginLogger,
|
|
},
|
|
middleware = |op| match op.name {
|
|
"op_print" => op_print(),
|
|
_ => op,
|
|
},
|
|
state = |state, options| {
|
|
state.put(options.logger);
|
|
state.put(LintPluginContainer::default());
|
|
},
|
|
);
|
|
|
|
#[derive(Default)]
|
|
pub struct LintPluginContainer {
|
|
pub diagnostics: Vec<LintDiagnostic>,
|
|
pub source_text_info: Option<SourceTextInfo>,
|
|
}
|
|
|
|
impl LintPluginContainer {
|
|
fn report(
|
|
&mut self,
|
|
id: String,
|
|
specifier: String,
|
|
message: String,
|
|
start: usize,
|
|
end: usize,
|
|
) {
|
|
let source_text_info = self.source_text_info.as_ref().unwrap();
|
|
let start_pos = source_text_info.start_pos();
|
|
let source_range = SourceRange::new(start_pos + start, start_pos + end);
|
|
let range = LintDiagnosticRange {
|
|
range: source_range,
|
|
description: None,
|
|
text_info: source_text_info.clone(),
|
|
};
|
|
let lint_diagnostic = LintDiagnostic {
|
|
// TODO: fix
|
|
specifier: ModuleSpecifier::parse(&format!("file:///{}", specifier))
|
|
.unwrap(),
|
|
range: Some(range),
|
|
details: LintDiagnosticDetails {
|
|
message,
|
|
code: id,
|
|
hint: None,
|
|
fixes: vec![],
|
|
custom_docs_url: None,
|
|
info: vec![],
|
|
},
|
|
};
|
|
self.diagnostics.push(lint_diagnostic);
|
|
}
|
|
}
|
|
|
|
#[op2(fast)]
|
|
pub fn op_print(state: &mut OpState, #[string] msg: &str, is_err: bool) {
|
|
let logger = state.borrow::<PluginLogger>();
|
|
|
|
if is_err {
|
|
logger.error(msg);
|
|
} else {
|
|
logger.log(msg);
|
|
}
|
|
}
|
|
|
|
#[op2]
|
|
#[buffer]
|
|
fn op_lint_create_serialized_ast(
|
|
#[string] file_name: &str,
|
|
#[string] source: String,
|
|
) -> Result<Vec<u8>, AnyError> {
|
|
let file_text = deno_ast::strip_bom(source);
|
|
let path = std::env::current_dir()?.join(file_name);
|
|
let specifier = ModuleSpecifier::from_file_path(&path).map_err(|_| {
|
|
generic_error(format!("Failed to parse path as URL: {}", path.display()))
|
|
})?;
|
|
let media_type = MediaType::from_specifier(&specifier);
|
|
let parsed_source = deno_ast::parse_program(deno_ast::ParseParams {
|
|
specifier,
|
|
text: file_text.into(),
|
|
media_type,
|
|
capture_tokens: false,
|
|
scope_analysis: false,
|
|
maybe_syntax: None,
|
|
})?;
|
|
Ok(lint::serialize_ast_to_buffer(&parsed_source))
|
|
}
|
|
|
|
#[op2(fast)]
|
|
fn op_lint_report(
|
|
state: &mut OpState,
|
|
#[string] id: String,
|
|
#[string] specifier: String,
|
|
#[string] message: String,
|
|
#[smi] start: usize,
|
|
#[smi] end: usize,
|
|
) {
|
|
let container = state.borrow_mut::<LintPluginContainer>();
|
|
container.report(id, specifier, message, start, end);
|
|
}
|
|
|
|
#[op2]
|
|
#[string]
|
|
fn op_lint_get_source(state: &mut OpState) -> String {
|
|
let container = state.borrow_mut::<LintPluginContainer>();
|
|
container
|
|
.source_text_info
|
|
.as_ref()
|
|
.unwrap()
|
|
.text_str()
|
|
.to_string()
|
|
}
|