Struct kernel::fs::fat::FatFilesystem

source ·
pub struct FatFilesystem {
    start_lba: u32,
    size_in_sectors: u32,
    boot_sector: Box<FatBootSector>,
    fat: Fat,
    device: NoDebug<Arc<IdeDevice>>,
    cluster_cache: ClusterCache,
}

Fields§

§start_lba: u32§size_in_sectors: u32§boot_sector: Box<FatBootSector>§fat: Fat§device: NoDebug<Arc<IdeDevice>>§cluster_cache: ClusterCache

Implementations§

source§

impl FatFilesystem

source

fn new( start_lba: u32, size_in_sectors: u32, boot_sector: FatBootSector, device: Arc<IdeDevice> ) -> Result<Self, FileSystemError>

source

pub fn volume_label(&self) -> String

source

pub fn fat_type(&self) -> FatType

source

fn first_sector_of_cluster(&self, cluster: u32) -> u32

source

fn read_sectors_no_cache( &self, start_sector: u32, count: u32 ) -> Result<Vec<u8>, FileSystemError>

source

fn write_sectors( &self, start_sector: u32, data: &[u8] ) -> Result<(), FileSystemError>

source

fn get_cluster(&mut self, cluster: u32) -> Option<&mut ClusterCacheEntry>

source

fn lock_cluster( &mut self, cluster: u32 ) -> Result<&mut ClusterCacheEntry, FileSystemError>

source

fn flush_cluster_dirty_range_file( &mut self, inode: &FileNode, cluster_data: &[u8], cluster_num: u32, dirty_range: Range<usize> ) -> Result<(), FileSystemError>

Helper method to write the dirty parts of a cluster into disk

source

fn flush_cluster_dirty_range( &mut self, cluster_data: &[u8], cluster_num: u32, dirty_range: Range<usize> ) -> Result<(), FileSystemError>

source

fn release_cluster( &mut self, inode: &FileNode, cluster: u32 ) -> Result<(), FileSystemError>

source

fn flush_cluster( &mut self, inode: &FileNode, cluster: u32 ) -> Result<(), FileSystemError>

Same as release_cluster, but doesn’t release it, i.e. the cluster will still be used, but the dirty flag is removed

source

fn flush_fat(&mut self) -> Result<(), FileSystemError>

source

fn open_root_dir(&self) -> Result<Directory, FileSystemError>

source

fn open_root_dir_inode(&self) -> Result<DirectoryNode, FileSystemError>

source

pub fn open_dir_inode( &self, inode: &DirectoryNode ) -> Result<DirectoryIterator<'_>, FileSystemError>

source

fn read_write_file( &mut self, inode: &FileNode, position: u32, buf: FileAccessBuffer<'_>, access_helper: &mut AccessHelper ) -> Result<u64, FileSystemError>

source

fn update_directory_entry( &mut self, inode: &BaseNode, update: impl FnMut(&mut DirectoryEntryNormal) ) -> Result<(), FileSystemError>

source

fn add_directory_entry( &mut self, parent_inode: &DirectoryNode, name: &str, attributes: FileAttributes ) -> Result<Node, FileSystemError>

source

fn set_file_size( &mut self, inode: &mut FileNode, size: u64 ) -> Result<(), FileSystemError>

Trait Implementations§

source§

impl Debug for FatFilesystem

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. 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> Az for T

source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
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<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

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

§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

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.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.