Skip to main content

AsyncFileSystem

Struct AsyncFileSystem 

Source
pub struct AsyncFileSystem { /* private fields */ }
Expand description

Application-facing asynchronous filesystem facade.

It validates provider boundaries, exposes asynchronous operations, and owns the cancellation-safe copy operation entry point.

§Examples

The example runs against an isolated in-memory fixture. Applications obtain their configured facade from a provider or registry integration.

use qubit_fs::Path;
use qubit_fs::read::ReadOptions;

let bytes = filesystem.read_prefix(&Path::parse("/report")?, ReadOptions::default(), 3).await?;
assert_eq!(b"byt", bytes.bytes());

Implementations§

Source§

impl AsyncFileSystem

Source

pub fn from_spi<S>(spi: S) -> FsResult<Self>
where S: AsyncFileSystemSpi + 'static,

Constructs a facade and caches one validated provider snapshot.

Source

pub fn from_shared_spi(spi: Arc<dyn AsyncFileSystemSpi>) -> FsResult<Self>

Constructs a facade from a shared provider implementation.

Source

pub fn properties(&self) -> &FileSystemProperties

Returns the immutable property snapshot without provider I/O.

Source

pub fn validate_write( &self, path: &Path, options: &WriteOptions, ) -> FsResult<()>

Validates a write request without opening a provider session.

Source

pub fn assess_copy( &self, source: &Path, target: &Path, options: &CopyOptions, ) -> FsResult<CopyAssessment>

Assesses copy routes without performing provider I/O.

§Errors

Returns an invalid-options or requirement error when no provider or stream execution route can satisfy the request.

Source

pub async fn stat(&self, path: &Path) -> FsResult<FileMetadata>

Asynchronously reads metadata after local validation completes.

Local validation happens before this future reaches the provider. A provider response is checked again after awaiting to bind the returned metadata to the requested logical path.

§Errors

Returns a validation, provider, or provider-contract error when the path cannot be read or the response identifies another path.

Source

pub async fn exists(&self, path: &Path) -> FsResult<bool>

Asynchronously reports whether the path exists.

§Errors

Returns the original filesystem error for failures other than an explicit NotFound response.

Source

pub async fn list( &self, scope: &ListScope, options: ListOptions, ) -> FsResult<AsyncDirectoryStream>

Asynchronously opens a validated directory stream.

§Errors

Returns an invalid-options, missing-capability, or provider error when the scope or options cannot be served.

Source

pub async fn open_reader( &self, path: &Path, options: ReadOptions, ) -> FsResult<AsyncFileReader>

Asynchronously opens a validated reader and verifies its identity.

§Errors

Returns a validation, capability, provider, or provider-contract error when the reader cannot be opened safely.

Source

pub async fn read_all( &self, path: &Path, options: ReadOptions, max_bytes: usize, ) -> FsResult<Vec<u8>>

Asynchronously reads an entire file while enforcing a strict byte cap.

The cap applies to bytes actually read, even when opened metadata overestimates the resource length.

§Errors

Returns the reader or read error when validation, opening, or bounded reading fails.

Source

pub async fn read_prefix( &self, path: &Path, options: ReadOptions, max_bytes: usize, ) -> FsResult<PrefixReadOutcome>

Asynchronously reads at most max_bytes from a file.

§Errors

Returns the reader or read error when validation, opening, or bounded reading fails.

Source

pub async fn open_writer( &self, path: &Path, options: WriteOptions, ) -> Result<AsyncFileWriter, OpenFailure<RejectedAsyncWriter>>

Asynchronously opens a validated writer and verifies its identity.

Source

pub fn begin_write_all( &self, path: Path, bytes: Vec<u8>, options: WriteOptions, ) -> Result<AsyncWriteAllOperation, AsyncWriteAllOperationFailure>

Begins an owning asynchronous whole-file write operation.

Moves path, bytes, and options into the request and retains a clone of this filesystem. Construction performs no provider I/O. Keep the operation outside the cancellation scope and cancel only its execute future so publication facts and recovery responsibility remain available.

§Returns

A ready operation that no longer borrows the caller’s filesystem or payload. The payload is released after execution ends or is cancelled.

§Errors

Returns a NotPublished failure with zero confirmed bytes if the path, capabilities, options, or payload size fail local validation. Rejected construction consumes and releases the payload.

Source

pub async fn create_directory( &self, path: &Path, options: CreateDirectoryOptions, ) -> FsResult<CreateDirectoryOutcome>

Asynchronously creates a directory after local validation.

§Errors

Returns a validation, capability, provider, or provider-contract error when the directory cannot be created as requested.

Source

pub async fn delete_file( &self, path: &Path, options: DeleteOptions, ) -> FsResult<DeleteOutcome>

Asynchronously deletes a file after local validation.

§Errors

Returns a validation, capability, provider, or provider-contract error when deletion cannot be confirmed.

Source

pub async fn delete_directory( &self, path: &Path, options: DeleteOptions, ) -> FsResult<DeleteOutcome>

Asynchronously deletes a directory after local validation.

§Errors

Returns a validation, capability, provider, or provider-contract error when deletion cannot be confirmed.

Source

pub async fn rename( &self, source: &Path, target: &Path, options: RenameOptions, ) -> Result<RenameOutcome, RenameFailure>

Renames one resource through the single asynchronous provider primitive.

§Errors

Returns RenameFailure with the confirmed transition state when validation, provider execution, or outcome validation fails.

Source

pub async fn create_temp_file( &self, options: TempOptions, ) -> Result<AsyncTempFile, OpenFailure<RejectedAsyncTempResource>>

Asynchronously creates a temporary file and validates its provider identity.

§Errors

Returns OpenFailure when preflight, provider creation, or temporary identity validation fails.

Source

pub async fn create_temp_directory( &self, options: TempOptions, ) -> Result<AsyncTempDirectory, OpenFailure<RejectedAsyncTempResource>>

Asynchronously creates a temporary directory and validates its identity.

§Errors

Returns OpenFailure when preflight, provider creation, or temporary identity validation fails.

Source

pub fn begin_copy( &self, source: Path, target: Path, options: CopyOptions, ) -> Result<AsyncCopyOperation, AsyncCopyFailure>

Begins a copy after synchronous path, option, and capability preflight.

This method performs no provider I/O. Provider work begins only when AsyncCopyOperation::execute is polled.

§Errors

Returns AsyncCopyFailure when local preflight rejects the request.

Trait Implementations§

Source§

impl Clone for AsyncFileSystem

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.