mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
91 lines
2.5 KiB
Rust
91 lines
2.5 KiB
Rust
use crate::package_json::PackageJson;
|
|
use std::{
|
|
fmt,
|
|
path::{Path, PathBuf},
|
|
sync::Arc,
|
|
};
|
|
|
|
/// The final path resolution with optional `?query` and `#fragment`.
|
|
#[derive(Clone)]
|
|
pub struct Resolution {
|
|
pub(crate) path: PathBuf,
|
|
|
|
/// path query `?query`, contains `?`.
|
|
pub(crate) query: Option<String>,
|
|
|
|
/// path fragment `#query`, contains `#`.
|
|
pub(crate) fragment: Option<String>,
|
|
|
|
pub(crate) package_json: Option<Arc<PackageJson>>,
|
|
}
|
|
|
|
impl fmt::Debug for Resolution {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
f.debug_struct("Resolution")
|
|
.field("path", &self.path)
|
|
.field("query", &self.query)
|
|
.field("fragment", &self.fragment)
|
|
.field("package_json", &self.package_json.as_ref().map(|p| &p.path))
|
|
.finish()
|
|
}
|
|
}
|
|
|
|
impl PartialEq for Resolution {
|
|
fn eq(&self, other: &Self) -> bool {
|
|
self.path == other.path && self.query == other.query && self.fragment == other.fragment
|
|
}
|
|
}
|
|
impl Eq for Resolution {}
|
|
|
|
impl Resolution {
|
|
/// Returns the path without query and fragment
|
|
pub fn path(&self) -> &Path {
|
|
&self.path
|
|
}
|
|
|
|
/// Returns the path without query and fragment
|
|
pub fn into_path_buf(self) -> PathBuf {
|
|
self.path
|
|
}
|
|
|
|
/// Returns the path query `?query`, contains the leading `?`
|
|
pub fn query(&self) -> Option<&str> {
|
|
self.query.as_deref()
|
|
}
|
|
|
|
/// Returns the path fragment `#fragment`, contains the leading `#`
|
|
pub fn fragment(&self) -> Option<&str> {
|
|
self.fragment.as_deref()
|
|
}
|
|
|
|
pub fn package_json(&self) -> Option<&Arc<PackageJson>> {
|
|
self.package_json.as_ref()
|
|
}
|
|
|
|
/// Returns the full path with query and fragment
|
|
pub fn full_path(&self) -> PathBuf {
|
|
let mut path = self.path.clone().into_os_string();
|
|
if let Some(query) = &self.query {
|
|
path.push(query);
|
|
}
|
|
if let Some(fragment) = &self.fragment {
|
|
path.push(fragment);
|
|
}
|
|
PathBuf::from(path)
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test() {
|
|
let resolution = Resolution {
|
|
path: PathBuf::from("foo"),
|
|
query: Some("?query".to_string()),
|
|
fragment: Some("#fragment".to_string()),
|
|
package_json: None,
|
|
};
|
|
assert_eq!(resolution.path(), Path::new("foo"));
|
|
assert_eq!(resolution.query(), Some("?query"));
|
|
assert_eq!(resolution.fragment(), Some("#fragment"));
|
|
assert_eq!(resolution.full_path(), PathBuf::from("foo?query#fragment"));
|
|
assert_eq!(resolution.into_path_buf(), PathBuf::from("foo"));
|
|
}
|