2021-01-11 12:13:41 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-09-05 20:34:02 -04:00
|
|
|
|
2020-09-12 05:53:57 -04:00
|
|
|
use crate::diagnostics::Diagnostics;
|
2021-09-18 09:40:04 -04:00
|
|
|
use crate::fmt_errors::format_file_name;
|
2021-09-24 11:10:42 -04:00
|
|
|
use crate::proc_state::ProcState;
|
2019-08-14 11:03:02 -04:00
|
|
|
use crate::source_maps::get_orig_position;
|
|
|
|
use crate::source_maps::CachedMaps;
|
2020-09-14 12:48:57 -04:00
|
|
|
use deno_core::error::AnyError;
|
2020-09-21 12:36:37 -04:00
|
|
|
use deno_core::serde_json;
|
|
|
|
use deno_core::serde_json::json;
|
|
|
|
use deno_core::serde_json::Value;
|
2020-09-10 09:57:45 -04:00
|
|
|
use deno_core::OpState;
|
2020-09-16 12:43:08 -04:00
|
|
|
use serde::Deserialize;
|
2019-08-14 11:03:02 -04:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
pub fn init(rt: &mut deno_core::JsRuntime) {
|
2021-04-12 15:55:05 -04:00
|
|
|
super::reg_sync(rt, "op_apply_source_map", op_apply_source_map);
|
|
|
|
super::reg_sync(rt, "op_format_diagnostic", op_format_diagnostic);
|
2021-09-18 09:40:04 -04:00
|
|
|
super::reg_sync(rt, "op_format_file_name", op_format_file_name);
|
2019-10-11 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
2019-08-26 08:50:21 -04:00
|
|
|
#[derive(Deserialize)]
|
2020-04-13 10:54:16 -04:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2019-08-26 08:50:21 -04:00
|
|
|
struct ApplySourceMap {
|
2020-04-13 10:54:16 -04:00
|
|
|
file_name: String,
|
|
|
|
line_number: i32,
|
|
|
|
column_number: i32,
|
2019-08-14 11:03:02 -04:00
|
|
|
}
|
|
|
|
|
2019-10-11 14:41:54 -04:00
|
|
|
fn op_apply_source_map(
|
2020-09-10 09:57:45 -04:00
|
|
|
state: &mut OpState,
|
2019-08-26 08:50:21 -04:00
|
|
|
args: Value,
|
2021-05-08 08:37:42 -04:00
|
|
|
_: (),
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<Value, AnyError> {
|
2019-08-26 08:50:21 -04:00
|
|
|
let args: ApplySourceMap = serde_json::from_value(args)?;
|
2019-08-14 11:03:02 -04:00
|
|
|
|
|
|
|
let mut mappings_map: CachedMaps = HashMap::new();
|
2021-09-24 11:10:42 -04:00
|
|
|
let ps = state.borrow::<ProcState>().clone();
|
2020-12-11 12:49:26 -05:00
|
|
|
|
2021-01-05 18:10:36 -05:00
|
|
|
let (orig_file_name, orig_line_number, orig_column_number, _) =
|
2020-04-13 10:54:16 -04:00
|
|
|
get_orig_position(
|
|
|
|
args.file_name,
|
|
|
|
args.line_number.into(),
|
|
|
|
args.column_number.into(),
|
|
|
|
&mut mappings_map,
|
2021-09-24 11:10:42 -04:00
|
|
|
ps,
|
2020-04-13 10:54:16 -04:00
|
|
|
);
|
2019-08-14 11:03:02 -04:00
|
|
|
|
2020-08-28 11:08:24 -04:00
|
|
|
Ok(json!({
|
2020-04-13 10:54:16 -04:00
|
|
|
"fileName": orig_file_name,
|
|
|
|
"lineNumber": orig_line_number as u32,
|
|
|
|
"columnNumber": orig_column_number as u32,
|
2020-08-28 11:08:24 -04:00
|
|
|
}))
|
2019-08-14 11:03:02 -04:00
|
|
|
}
|
2020-02-24 14:48:14 -05:00
|
|
|
|
|
|
|
fn op_format_diagnostic(
|
2020-09-10 09:57:45 -04:00
|
|
|
_state: &mut OpState,
|
2020-02-24 14:48:14 -05:00
|
|
|
args: Value,
|
2021-05-08 08:37:42 -04:00
|
|
|
_: (),
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<Value, AnyError> {
|
2020-09-12 05:53:57 -04:00
|
|
|
let diagnostic: Diagnostics = serde_json::from_value(args)?;
|
2020-08-28 11:08:24 -04:00
|
|
|
Ok(json!(diagnostic.to_string()))
|
2020-02-24 14:48:14 -05:00
|
|
|
}
|
2021-09-18 09:40:04 -04:00
|
|
|
|
|
|
|
fn op_format_file_name(
|
|
|
|
_state: &mut OpState,
|
|
|
|
file_name: String,
|
|
|
|
_: (),
|
|
|
|
) -> Result<String, AnyError> {
|
|
|
|
Ok(format_file_name(&file_name))
|
|
|
|
}
|