|
|
use anyhow::{Result, bail}; |
|
|
use turbo_rcstr::RcStr; |
|
|
use turbo_tasks::{ResolvedVc, ValueToString, Vc}; |
|
|
|
|
|
use crate::{FileContent, FileMeta, FileSystem, FileSystemPath, LinkContent, RawDirectoryContent}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[turbo_tasks::value] |
|
|
pub struct AttachedFileSystem { |
|
|
root_fs: ResolvedVc<Box<dyn FileSystem>>, |
|
|
|
|
|
|
|
|
child_path: RcStr, |
|
|
child_fs: ResolvedVc<Box<dyn FileSystem>>, |
|
|
} |
|
|
|
|
|
#[turbo_tasks::value_impl] |
|
|
impl AttachedFileSystem { |
|
|
|
|
|
|
|
|
#[turbo_tasks::function] |
|
|
pub async fn new( |
|
|
child_path: FileSystemPath, |
|
|
child_fs: ResolvedVc<Box<dyn FileSystem>>, |
|
|
) -> Result<Vc<Self>> { |
|
|
Ok(AttachedFileSystem { |
|
|
root_fs: child_path.fs, |
|
|
child_path: child_path.path.clone(), |
|
|
child_fs, |
|
|
} |
|
|
.cell()) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[turbo_tasks::function] |
|
|
pub async fn convert_path( |
|
|
self: ResolvedVc<Self>, |
|
|
contained_path: FileSystemPath, |
|
|
) -> Result<Vc<FileSystemPath>> { |
|
|
let self_fs: ResolvedVc<Box<dyn FileSystem>> = ResolvedVc::upcast(self); |
|
|
let this = self.await?; |
|
|
|
|
|
match contained_path.fs { |
|
|
|
|
|
fs if fs == self_fs => Ok(contained_path.cell()), |
|
|
|
|
|
fs if fs == this.root_fs => Ok(self.root().await?.join(&contained_path.path)?.cell()), |
|
|
|
|
|
fs if fs == this.child_fs => { |
|
|
Ok(self.child_path().await?.join(&contained_path.path)?.cell()) |
|
|
} |
|
|
_ => bail!( |
|
|
"path {} not part of self, the root fs or the child fs", |
|
|
contained_path.value_to_string().await? |
|
|
), |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[turbo_tasks::function] |
|
|
async fn child_path(self: Vc<Self>) -> Result<Vc<FileSystemPath>> { |
|
|
Ok(self.root().await?.join(&self.await?.child_path)?.cell()) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[turbo_tasks::function] |
|
|
pub async fn get_inner_fs_path( |
|
|
self: ResolvedVc<Self>, |
|
|
path: FileSystemPath, |
|
|
) -> Result<Vc<FileSystemPath>> { |
|
|
let this = self.await?; |
|
|
let self_fs: ResolvedVc<Box<dyn FileSystem>> = ResolvedVc::upcast(self); |
|
|
|
|
|
if path.fs != self_fs { |
|
|
let self_fs_str = self_fs.to_string().await?; |
|
|
let path_fs_str = path.fs.to_string().await?; |
|
|
bail!( |
|
|
"path fs does not match (expected {}, got {})", |
|
|
self_fs_str, |
|
|
path_fs_str |
|
|
) |
|
|
} |
|
|
|
|
|
let child_path = self.child_path().await?; |
|
|
Ok(if let Some(inner_path) = child_path.get_path_to(&path) { |
|
|
this.child_fs.root().await?.join(inner_path)?.cell() |
|
|
} else { |
|
|
this.root_fs.root().await?.join(&path.path)?.cell() |
|
|
}) |
|
|
} |
|
|
} |
|
|
|
|
|
#[turbo_tasks::value_impl] |
|
|
impl FileSystem for AttachedFileSystem { |
|
|
#[turbo_tasks::function(fs)] |
|
|
async fn read(self: Vc<Self>, path: FileSystemPath) -> Result<Vc<FileContent>> { |
|
|
Ok(self.get_inner_fs_path(path).await?.read()) |
|
|
} |
|
|
|
|
|
#[turbo_tasks::function(fs)] |
|
|
async fn read_link(self: Vc<Self>, path: FileSystemPath) -> Result<Vc<LinkContent>> { |
|
|
Ok(self.get_inner_fs_path(path).await?.read_link()) |
|
|
} |
|
|
|
|
|
#[turbo_tasks::function(fs)] |
|
|
async fn raw_read_dir(self: Vc<Self>, path: FileSystemPath) -> Result<Vc<RawDirectoryContent>> { |
|
|
Ok(self.get_inner_fs_path(path).await?.raw_read_dir()) |
|
|
} |
|
|
|
|
|
#[turbo_tasks::function(fs)] |
|
|
async fn write( |
|
|
self: Vc<Self>, |
|
|
path: FileSystemPath, |
|
|
content: Vc<FileContent>, |
|
|
) -> Result<Vc<()>> { |
|
|
Ok(self.get_inner_fs_path(path).await?.write(content)) |
|
|
} |
|
|
|
|
|
#[turbo_tasks::function(fs)] |
|
|
async fn write_link( |
|
|
self: Vc<Self>, |
|
|
path: FileSystemPath, |
|
|
target: Vc<LinkContent>, |
|
|
) -> Result<Vc<()>> { |
|
|
Ok(self.get_inner_fs_path(path).await?.write_link(target)) |
|
|
} |
|
|
|
|
|
#[turbo_tasks::function] |
|
|
async fn metadata(self: Vc<Self>, path: FileSystemPath) -> Result<Vc<FileMeta>> { |
|
|
Ok(self.get_inner_fs_path(path).await?.metadata()) |
|
|
} |
|
|
} |
|
|
|
|
|
#[turbo_tasks::value_impl] |
|
|
impl ValueToString for AttachedFileSystem { |
|
|
#[turbo_tasks::function] |
|
|
async fn to_string(&self) -> Result<Vc<RcStr>> { |
|
|
let root_fs_str = self.root_fs.to_string().await?; |
|
|
let child_fs_str = self.child_fs.to_string().await?; |
|
|
Ok(Vc::cell( |
|
|
format!("{root_fs_str}-with-{child_fs_str}").into(), |
|
|
)) |
|
|
} |
|
|
} |
|
|
|