rust/crates/vfs/src/vfs_path.rs

295 lines
9.2 KiB
Rust
Raw Normal View History

2020-06-15 06:29:07 -05:00
//! Abstract-ish representation of paths for VFS.
use std::fmt;
use paths::{AbsPath, AbsPathBuf};
/// Long-term, we want to support files which do not reside in the file-system,
/// so we treat VfsPaths as opaque identifiers.
#[derive(Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
2020-06-15 06:29:07 -05:00
pub struct VfsPath(VfsPathRepr);
impl VfsPath {
2020-06-11 04:04:09 -05:00
/// Creates an "in-memory" path from `/`-separates string.
/// This is most useful for testing, to avoid windows/linux differences
pub fn new_virtual_path(path: String) -> VfsPath {
assert!(path.starts_with('/'));
VfsPath(VfsPathRepr::VirtualPath(VirtualPath(path)))
}
2020-06-15 06:29:07 -05:00
pub fn as_path(&self) -> Option<&AbsPath> {
match &self.0 {
VfsPathRepr::PathBuf(it) => Some(it.as_path()),
2020-06-11 04:04:09 -05:00
VfsPathRepr::VirtualPath(_) => None,
2020-06-15 06:29:07 -05:00
}
}
2020-06-26 09:25:08 -05:00
pub fn join(&self, path: &str) -> Option<VfsPath> {
2020-06-15 06:29:07 -05:00
match &self.0 {
VfsPathRepr::PathBuf(it) => {
let res = it.join(path).normalize();
2020-06-26 09:25:08 -05:00
Some(VfsPath(VfsPathRepr::PathBuf(res)))
2020-06-15 06:29:07 -05:00
}
2020-06-11 04:04:09 -05:00
VfsPathRepr::VirtualPath(it) => {
2020-06-26 09:25:08 -05:00
let res = it.join(path)?;
Some(VfsPath(VfsPathRepr::VirtualPath(res)))
2020-06-11 04:04:09 -05:00
}
2020-06-15 06:29:07 -05:00
}
}
pub fn pop(&mut self) -> bool {
match &mut self.0 {
VfsPathRepr::PathBuf(it) => it.pop(),
2020-06-11 04:04:09 -05:00
VfsPathRepr::VirtualPath(it) => it.pop(),
}
}
pub fn starts_with(&self, other: &VfsPath) -> bool {
match (&self.0, &other.0) {
(VfsPathRepr::PathBuf(lhs), VfsPathRepr::PathBuf(rhs)) => lhs.starts_with(rhs),
(VfsPathRepr::PathBuf(_), _) => false,
(VfsPathRepr::VirtualPath(lhs), VfsPathRepr::VirtualPath(rhs)) => lhs.starts_with(rhs),
(VfsPathRepr::VirtualPath(_), _) => false,
2020-06-15 06:29:07 -05:00
}
}
2020-09-03 18:25:00 -05:00
pub fn parent(&self) -> Option<VfsPath> {
let mut parent = self.clone();
if parent.pop() {
Some(parent)
} else {
None
2020-09-03 17:32:06 -05:00
}
}
2020-07-07 15:53:12 -05:00
2020-09-03 17:32:06 -05:00
pub fn file_name_and_extension(&self) -> Option<(&str, Option<&str>)> {
2020-09-03 15:18:23 -05:00
match &self.0 {
2020-09-03 17:32:06 -05:00
VfsPathRepr::PathBuf(p) => Some((
p.file_stem()?.to_str()?,
p.extension().and_then(|extension| extension.to_str()),
)),
2020-09-03 15:18:23 -05:00
VfsPathRepr::VirtualPath(p) => p.file_name_and_extension(),
}
}
2020-07-07 15:53:12 -05:00
// Don't make this `pub`
pub(crate) fn encode(&self, buf: &mut Vec<u8>) {
let tag = match &self.0 {
VfsPathRepr::PathBuf(_) => 0,
VfsPathRepr::VirtualPath(_) => 1,
};
buf.push(tag);
match &self.0 {
2020-08-13 18:19:46 -05:00
VfsPathRepr::PathBuf(path) => {
2020-07-07 15:53:12 -05:00
#[cfg(windows)]
{
2020-08-13 18:19:46 -05:00
use windows_paths::Encode;
let components = path.components();
let mut add_sep = false;
for component in components {
if add_sep {
windows_paths::SEP.encode(buf);
}
let len_before = buf.len();
match component {
std::path::Component::Prefix(prefix) => {
// kind() returns a normalized and comparable path prefix.
prefix.kind().encode(buf);
}
std::path::Component::RootDir => {
if !add_sep {
component.as_os_str().encode(buf);
}
}
_ => component.as_os_str().encode(buf),
}
// some components may be encoded empty
add_sep = len_before != buf.len();
2020-07-07 15:53:12 -05:00
}
}
#[cfg(unix)]
{
use std::os::unix::ffi::OsStrExt;
2020-08-13 18:19:46 -05:00
buf.extend(path.as_os_str().as_bytes());
2020-07-07 15:53:12 -05:00
}
#[cfg(not(any(windows, unix)))]
{
2020-08-13 18:19:46 -05:00
buf.extend(path.as_os_str().to_string_lossy().as_bytes());
2020-07-07 15:53:12 -05:00
}
}
VfsPathRepr::VirtualPath(VirtualPath(s)) => buf.extend(s.as_bytes()),
}
}
2020-06-15 06:29:07 -05:00
}
2020-08-13 18:19:46 -05:00
#[cfg(windows)]
mod windows_paths {
pub trait Encode {
fn encode(&self, buf: &mut Vec<u8>);
}
impl Encode for std::ffi::OsStr {
fn encode(&self, buf: &mut Vec<u8>) {
use std::os::windows::ffi::OsStrExt;
for wchar in self.encode_wide() {
buf.extend(wchar.to_le_bytes().iter().copied());
}
}
}
impl Encode for u8 {
fn encode(&self, buf: &mut Vec<u8>) {
let wide = *self as u16;
buf.extend(wide.to_le_bytes().iter().copied())
}
}
impl Encode for &str {
fn encode(&self, buf: &mut Vec<u8>) {
debug_assert!(self.is_ascii());
for b in self.as_bytes() {
b.encode(buf)
}
}
}
pub const SEP: &str = "\\";
const VERBATIM: &str = "\\\\?\\";
const UNC: &str = "UNC";
const DEVICE: &str = "\\\\.\\";
const COLON: &str = ":";
impl Encode for std::path::Prefix<'_> {
fn encode(&self, buf: &mut Vec<u8>) {
match self {
std::path::Prefix::Verbatim(c) => {
VERBATIM.encode(buf);
c.encode(buf);
}
std::path::Prefix::VerbatimUNC(server, share) => {
VERBATIM.encode(buf);
UNC.encode(buf);
SEP.encode(buf);
server.encode(buf);
SEP.encode(buf);
share.encode(buf);
}
std::path::Prefix::VerbatimDisk(d) => {
VERBATIM.encode(buf);
d.encode(buf);
COLON.encode(buf);
}
std::path::Prefix::DeviceNS(device) => {
DEVICE.encode(buf);
device.encode(buf);
}
std::path::Prefix::UNC(server, share) => {
SEP.encode(buf);
SEP.encode(buf);
server.encode(buf);
SEP.encode(buf);
share.encode(buf);
}
std::path::Prefix::Disk(d) => {
d.encode(buf);
COLON.encode(buf);
}
}
}
}
#[test]
fn paths_encoding() {
// drive letter casing agnostic
test_eq("C:/x.rs", "c:/x.rs");
// separator agnostic
test_eq("C:/x/y.rs", "C:\\x\\y.rs");
fn test_eq(a: &str, b: &str) {
let mut b1 = Vec::new();
let mut b2 = Vec::new();
vfs(a).encode(&mut b1);
vfs(b).encode(&mut b2);
assert_eq!(b1, b2);
}
}
#[test]
fn test_sep_root_dir_encoding() {
let mut buf = Vec::new();
vfs("C:/x/y").encode(&mut buf);
assert_eq!(&buf, &[0, 67, 0, 58, 0, 92, 0, 120, 0, 92, 0, 121, 0])
}
#[cfg(test)]
fn vfs(str: &str) -> super::VfsPath {
use super::{AbsPathBuf, VfsPath};
use std::convert::TryFrom;
VfsPath::from(AbsPathBuf::try_from(str).unwrap())
}
}
#[derive(Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
2020-06-15 06:29:07 -05:00
enum VfsPathRepr {
PathBuf(AbsPathBuf),
2020-06-11 04:04:09 -05:00
VirtualPath(VirtualPath),
2020-06-15 06:29:07 -05:00
}
impl From<AbsPathBuf> for VfsPath {
fn from(v: AbsPathBuf) -> Self {
2020-06-11 04:04:09 -05:00
VfsPath(VfsPathRepr::PathBuf(v.normalize()))
2020-06-15 06:29:07 -05:00
}
}
impl fmt::Display for VfsPath {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match &self.0 {
VfsPathRepr::PathBuf(it) => fmt::Display::fmt(&it.display(), f),
2020-06-11 04:04:09 -05:00
VfsPathRepr::VirtualPath(VirtualPath(it)) => fmt::Display::fmt(it, f),
}
}
}
impl fmt::Debug for VfsPath {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(&self.0, f)
}
}
impl fmt::Debug for VfsPathRepr {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match &self {
VfsPathRepr::PathBuf(it) => fmt::Debug::fmt(&it.display(), f),
VfsPathRepr::VirtualPath(VirtualPath(it)) => fmt::Debug::fmt(&it, f),
}
}
}
2020-06-11 04:04:09 -05:00
#[derive(Debug, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
struct VirtualPath(String);
impl VirtualPath {
fn starts_with(&self, other: &VirtualPath) -> bool {
self.0.starts_with(&other.0)
}
fn pop(&mut self) -> bool {
let pos = match self.0.rfind('/') {
Some(pos) => pos,
None => return false,
};
self.0 = self.0[..pos].to_string();
true
}
2020-06-26 09:25:08 -05:00
fn join(&self, mut path: &str) -> Option<VirtualPath> {
2020-06-11 04:04:09 -05:00
let mut res = self.clone();
while path.starts_with("../") {
2020-06-26 09:25:08 -05:00
if !res.pop() {
return None;
}
2020-06-11 04:04:09 -05:00
path = &path["../".len()..]
2020-06-15 06:29:07 -05:00
}
2020-06-11 04:04:09 -05:00
res.0 = format!("{}/{}", res.0, path);
2020-06-26 09:25:08 -05:00
Some(res)
2020-06-15 06:29:07 -05:00
}
2020-09-03 15:18:23 -05:00
2020-09-03 17:32:06 -05:00
pub fn file_name_and_extension(&self) -> Option<(&str, Option<&str>)> {
2020-09-03 15:18:23 -05:00
// TODO kb check if is a file
2020-09-03 17:32:06 -05:00
Some(("test_mod_1", Some("rs")))
2020-09-03 15:18:23 -05:00
}
2020-06-15 06:29:07 -05:00
}