2023-01-02 16:00:42 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2021-02-17 23:37:05 -05:00
|
|
|
|
|
|
|
use crate::file_fetcher::map_content_type;
|
|
|
|
|
2021-04-23 14:43:13 -04:00
|
|
|
use data_url::DataUrl;
|
2021-09-07 10:39:32 -04:00
|
|
|
use deno_ast::MediaType;
|
2021-04-23 14:43:13 -04:00
|
|
|
use deno_core::error::uri_error;
|
2021-02-17 23:37:05 -05:00
|
|
|
use deno_core::error::AnyError;
|
2022-01-19 11:38:40 -05:00
|
|
|
use deno_core::parking_lot::Mutex;
|
2021-04-06 07:45:53 -04:00
|
|
|
use deno_core::url::Position;
|
2021-02-17 23:37:05 -05:00
|
|
|
use deno_core::url::Url;
|
|
|
|
use deno_core::ModuleSpecifier;
|
2021-12-18 16:14:42 -05:00
|
|
|
use once_cell::sync::Lazy;
|
2021-02-17 23:37:05 -05:00
|
|
|
use std::collections::HashMap;
|
2022-01-19 11:38:40 -05:00
|
|
|
use std::sync::Arc;
|
2021-02-17 23:37:05 -05:00
|
|
|
|
2021-12-18 16:14:42 -05:00
|
|
|
/// Used in situations where a default URL needs to be used where otherwise a
|
|
|
|
/// panic is undesired.
|
2022-03-23 09:54:22 -04:00
|
|
|
pub static INVALID_SPECIFIER: Lazy<ModuleSpecifier> =
|
2023-02-06 16:49:49 -05:00
|
|
|
Lazy::new(|| ModuleSpecifier::parse("deno://invalid").unwrap());
|
2021-07-25 01:33:42 -04:00
|
|
|
|
2021-04-06 07:45:53 -04:00
|
|
|
/// Matches the `encodeURIComponent()` encoding from JavaScript, which matches
|
|
|
|
/// the component percent encoding set.
|
|
|
|
///
|
2021-09-05 10:22:45 -04:00
|
|
|
/// See: <https://url.spec.whatwg.org/#component-percent-encode-set>
|
2021-04-06 07:45:53 -04:00
|
|
|
///
|
|
|
|
// TODO(@kitsonk) - refactor when #9934 is landed.
|
|
|
|
const COMPONENT: &percent_encoding::AsciiSet = &percent_encoding::CONTROLS
|
|
|
|
.add(b' ')
|
|
|
|
.add(b'"')
|
|
|
|
.add(b'#')
|
|
|
|
.add(b'<')
|
|
|
|
.add(b'>')
|
|
|
|
.add(b'?')
|
|
|
|
.add(b'`')
|
|
|
|
.add(b'{')
|
|
|
|
.add(b'}')
|
|
|
|
.add(b'/')
|
2021-02-17 23:37:05 -05:00
|
|
|
.add(b':')
|
|
|
|
.add(b';')
|
|
|
|
.add(b'=')
|
|
|
|
.add(b'@')
|
|
|
|
.add(b'[')
|
|
|
|
.add(b'\\')
|
|
|
|
.add(b']')
|
|
|
|
.add(b'^')
|
2021-04-06 07:45:53 -04:00
|
|
|
.add(b'|')
|
|
|
|
.add(b'$')
|
|
|
|
.add(b'&')
|
|
|
|
.add(b'+')
|
|
|
|
.add(b',');
|
2021-02-17 23:37:05 -05:00
|
|
|
|
|
|
|
fn hash_data_specifier(specifier: &ModuleSpecifier) -> String {
|
|
|
|
let mut file_name_str = specifier.path().to_string();
|
|
|
|
if let Some(query) = specifier.query() {
|
|
|
|
file_name_str.push('?');
|
|
|
|
file_name_str.push_str(query);
|
|
|
|
}
|
2022-11-28 17:28:54 -05:00
|
|
|
crate::util::checksum::gen(&[file_name_str.as_bytes()])
|
2021-02-17 23:37:05 -05:00
|
|
|
}
|
|
|
|
|
2022-01-19 11:38:40 -05:00
|
|
|
#[derive(Debug, Default)]
|
|
|
|
struct LspUrlMapInner {
|
2021-02-17 23:37:05 -05:00
|
|
|
specifier_to_url: HashMap<ModuleSpecifier, Url>,
|
|
|
|
url_to_specifier: HashMap<Url, ModuleSpecifier>,
|
|
|
|
}
|
|
|
|
|
2022-01-19 11:38:40 -05:00
|
|
|
impl LspUrlMapInner {
|
2021-02-17 23:37:05 -05:00
|
|
|
fn put(&mut self, specifier: ModuleSpecifier, url: Url) {
|
|
|
|
self.specifier_to_url.insert(specifier.clone(), url.clone());
|
|
|
|
self.url_to_specifier.insert(url, specifier);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_url(&self, specifier: &ModuleSpecifier) -> Option<&Url> {
|
|
|
|
self.specifier_to_url.get(specifier)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_specifier(&self, url: &Url) -> Option<&ModuleSpecifier> {
|
|
|
|
self.url_to_specifier.get(url)
|
|
|
|
}
|
2022-01-19 11:38:40 -05:00
|
|
|
}
|
2021-02-17 23:37:05 -05:00
|
|
|
|
2023-03-15 10:34:23 -04:00
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
|
|
pub enum LspUrlKind {
|
|
|
|
File,
|
|
|
|
Folder,
|
|
|
|
}
|
|
|
|
|
2022-01-19 11:38:40 -05:00
|
|
|
/// A bi-directional map of URLs sent to the LSP client and internal module
|
2023-03-15 10:34:23 -04:00
|
|
|
/// specifiers. We need to map internal specifiers into `deno:` schema URLs
|
2022-01-19 11:38:40 -05:00
|
|
|
/// to allow the Deno language server to manage these as virtual documents.
|
|
|
|
#[derive(Debug, Default, Clone)]
|
|
|
|
pub struct LspUrlMap(Arc<Mutex<LspUrlMapInner>>);
|
|
|
|
|
|
|
|
impl LspUrlMap {
|
2021-02-17 23:37:05 -05:00
|
|
|
/// Normalize a specifier that is used internally within Deno (or tsc) to a
|
|
|
|
/// URL that can be handled as a "virtual" document by an LSP client.
|
|
|
|
pub fn normalize_specifier(
|
2022-01-19 11:38:40 -05:00
|
|
|
&self,
|
2021-02-17 23:37:05 -05:00
|
|
|
specifier: &ModuleSpecifier,
|
|
|
|
) -> Result<Url, AnyError> {
|
2022-01-19 11:38:40 -05:00
|
|
|
let mut inner = self.0.lock();
|
|
|
|
if let Some(url) = inner.get_url(specifier).cloned() {
|
|
|
|
Ok(url)
|
2021-02-17 23:37:05 -05:00
|
|
|
} else {
|
|
|
|
let url = if specifier.scheme() == "file" {
|
|
|
|
specifier.clone()
|
|
|
|
} else {
|
2021-10-28 19:56:01 -04:00
|
|
|
let specifier_str = if specifier.scheme() == "asset" {
|
2023-02-06 16:49:49 -05:00
|
|
|
format!("deno:/asset{}", specifier.path())
|
2021-10-28 19:56:01 -04:00
|
|
|
} else if specifier.scheme() == "data" {
|
2021-04-23 14:43:13 -04:00
|
|
|
let data_url = DataUrl::process(specifier.as_str())
|
2023-01-27 10:43:16 -05:00
|
|
|
.map_err(|e| uri_error(format!("{e:?}")))?;
|
2021-04-23 14:43:13 -04:00
|
|
|
let mime = data_url.mime_type();
|
|
|
|
let (media_type, _) =
|
2023-01-27 10:43:16 -05:00
|
|
|
map_content_type(specifier, Some(&format!("{mime}")));
|
2021-02-17 23:37:05 -05:00
|
|
|
let extension = if media_type == MediaType::Unknown {
|
|
|
|
""
|
|
|
|
} else {
|
|
|
|
media_type.as_ts_extension()
|
|
|
|
};
|
|
|
|
format!(
|
2023-02-06 16:49:49 -05:00
|
|
|
"deno:/{}/data_url{}",
|
2021-02-17 23:37:05 -05:00
|
|
|
hash_data_specifier(specifier),
|
|
|
|
extension
|
|
|
|
)
|
|
|
|
} else {
|
2021-04-06 07:45:53 -04:00
|
|
|
let mut path =
|
|
|
|
specifier[..Position::BeforePath].replacen("://", "/", 1);
|
|
|
|
let parts: Vec<String> = specifier[Position::BeforePath..]
|
|
|
|
.split('/')
|
|
|
|
.map(|p| {
|
|
|
|
percent_encoding::utf8_percent_encode(p, COMPONENT).to_string()
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
path.push_str(&parts.join("/"));
|
2023-02-06 16:49:49 -05:00
|
|
|
format!("deno:/{path}")
|
2021-02-17 23:37:05 -05:00
|
|
|
};
|
|
|
|
let url = Url::parse(&specifier_str)?;
|
2022-01-19 11:38:40 -05:00
|
|
|
inner.put(specifier.clone(), url.clone());
|
2021-02-17 23:37:05 -05:00
|
|
|
url
|
|
|
|
};
|
|
|
|
Ok(url)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-06 16:49:49 -05:00
|
|
|
/// Normalize URLs from the client, where "virtual" `deno:///` URLs are
|
2021-04-08 19:36:32 -04:00
|
|
|
/// converted into proper module specifiers, as well as handle situations
|
|
|
|
/// where the client encodes a file URL differently than Rust does by default
|
|
|
|
/// causing issues with string matching of URLs.
|
2023-03-15 10:34:23 -04:00
|
|
|
///
|
|
|
|
/// Note: Sometimes the url provided by the client may not have a trailing slash,
|
|
|
|
/// so we need to force it to in the mapping and nee to explicitly state whether
|
|
|
|
/// this is a file or directory url.
|
|
|
|
pub fn normalize_url(&self, url: &Url, kind: LspUrlKind) -> ModuleSpecifier {
|
|
|
|
let mut inner = self.0.lock();
|
|
|
|
if let Some(specifier) = inner.get_specifier(url).cloned() {
|
|
|
|
specifier
|
|
|
|
} else {
|
|
|
|
let specifier = if let Ok(path) = url.to_file_path() {
|
|
|
|
match kind {
|
|
|
|
LspUrlKind::Folder => Url::from_directory_path(path).unwrap(),
|
|
|
|
LspUrlKind::File => Url::from_file_path(path).unwrap(),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
url.clone()
|
|
|
|
};
|
|
|
|
inner.put(specifier.clone(), url.clone());
|
|
|
|
specifier
|
2021-02-17 23:37:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
use deno_core::resolve_url;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_hash_data_specifier() {
|
|
|
|
let fixture = resolve_url("data:application/typescript;base64,ZXhwb3J0IGNvbnN0IGEgPSAiYSI7CgpleHBvcnQgZW51bSBBIHsKICBBLAogIEIsCiAgQywKfQo=").unwrap();
|
|
|
|
let actual = hash_data_specifier(&fixture);
|
|
|
|
assert_eq!(
|
|
|
|
actual,
|
|
|
|
"c21c7fc382b2b0553dc0864aa81a3acacfb7b3d1285ab5ae76da6abec213fb37"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_lsp_url_map() {
|
2022-01-19 11:38:40 -05:00
|
|
|
let map = LspUrlMap::default();
|
2021-02-17 23:37:05 -05:00
|
|
|
let fixture = resolve_url("https://deno.land/x/pkg@1.0.0/mod.ts").unwrap();
|
|
|
|
let actual_url = map
|
|
|
|
.normalize_specifier(&fixture)
|
|
|
|
.expect("could not handle specifier");
|
|
|
|
let expected_url =
|
2023-02-06 16:49:49 -05:00
|
|
|
Url::parse("deno:/https/deno.land/x/pkg%401.0.0/mod.ts").unwrap();
|
2021-02-17 23:37:05 -05:00
|
|
|
assert_eq!(actual_url, expected_url);
|
|
|
|
|
2023-03-15 10:34:23 -04:00
|
|
|
let actual_specifier = map.normalize_url(&actual_url, LspUrlKind::File);
|
2021-02-17 23:37:05 -05:00
|
|
|
assert_eq!(actual_specifier, fixture);
|
|
|
|
}
|
|
|
|
|
2021-04-06 07:45:53 -04:00
|
|
|
#[test]
|
|
|
|
fn test_lsp_url_map_complex_encoding() {
|
|
|
|
// Test fix for #9741 - not properly encoding certain URLs
|
2022-01-19 11:38:40 -05:00
|
|
|
let map = LspUrlMap::default();
|
2021-04-06 07:45:53 -04:00
|
|
|
let fixture = resolve_url("https://cdn.skypack.dev/-/postcss@v8.2.9-E4SktPp9c0AtxrJHp8iV/dist=es2020,mode=types/lib/postcss.d.ts").unwrap();
|
|
|
|
let actual_url = map
|
|
|
|
.normalize_specifier(&fixture)
|
|
|
|
.expect("could not handle specifier");
|
2023-02-06 16:49:49 -05:00
|
|
|
let expected_url = Url::parse("deno:/https/cdn.skypack.dev/-/postcss%40v8.2.9-E4SktPp9c0AtxrJHp8iV/dist%3Des2020%2Cmode%3Dtypes/lib/postcss.d.ts").unwrap();
|
2021-04-06 07:45:53 -04:00
|
|
|
assert_eq!(actual_url, expected_url);
|
|
|
|
|
2023-03-15 10:34:23 -04:00
|
|
|
let actual_specifier = map.normalize_url(&actual_url, LspUrlKind::File);
|
2021-04-06 07:45:53 -04:00
|
|
|
assert_eq!(actual_specifier, fixture);
|
|
|
|
}
|
|
|
|
|
2021-02-17 23:37:05 -05:00
|
|
|
#[test]
|
|
|
|
fn test_lsp_url_map_data() {
|
2022-01-19 11:38:40 -05:00
|
|
|
let map = LspUrlMap::default();
|
2021-02-17 23:37:05 -05:00
|
|
|
let fixture = resolve_url("data:application/typescript;base64,ZXhwb3J0IGNvbnN0IGEgPSAiYSI7CgpleHBvcnQgZW51bSBBIHsKICBBLAogIEIsCiAgQywKfQo=").unwrap();
|
|
|
|
let actual_url = map
|
|
|
|
.normalize_specifier(&fixture)
|
|
|
|
.expect("could not handle specifier");
|
2023-02-06 16:49:49 -05:00
|
|
|
let expected_url = Url::parse("deno:/c21c7fc382b2b0553dc0864aa81a3acacfb7b3d1285ab5ae76da6abec213fb37/data_url.ts").unwrap();
|
2021-02-17 23:37:05 -05:00
|
|
|
assert_eq!(actual_url, expected_url);
|
|
|
|
|
2023-03-15 10:34:23 -04:00
|
|
|
let actual_specifier = map.normalize_url(&actual_url, LspUrlKind::File);
|
2021-02-17 23:37:05 -05:00
|
|
|
assert_eq!(actual_specifier, fixture);
|
|
|
|
}
|
2021-04-08 19:36:32 -04:00
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
#[test]
|
|
|
|
fn test_normalize_windows_path() {
|
|
|
|
let map = LspUrlMap::default();
|
|
|
|
let fixture = resolve_url(
|
|
|
|
"file:///c%3A/Users/deno/Desktop/file%20with%20spaces%20in%20name.txt",
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-03-15 10:34:23 -04:00
|
|
|
let actual = map.normalize_url(&fixture, LspUrlKind::File);
|
2021-04-08 19:36:32 -04:00
|
|
|
let expected =
|
|
|
|
Url::parse("file:///C:/Users/deno/Desktop/file with spaces in name.txt")
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(actual, expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
#[test]
|
|
|
|
fn test_normalize_percent_encoded_path() {
|
|
|
|
let map = LspUrlMap::default();
|
|
|
|
let fixture = resolve_url(
|
|
|
|
"file:///Users/deno/Desktop/file%20with%20spaces%20in%20name.txt",
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-03-15 10:34:23 -04:00
|
|
|
let actual = map.normalize_url(&fixture, LspUrlKind::File);
|
2021-04-08 19:36:32 -04:00
|
|
|
let expected =
|
|
|
|
Url::parse("file:///Users/deno/Desktop/file with spaces in name.txt")
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(actual, expected);
|
|
|
|
}
|
2021-02-17 23:37:05 -05:00
|
|
|
}
|