DedupeReverseFS

Struct DedupeReverseFS 

Source
pub struct DedupeReverseFS { /* private fields */ }

Implementations§

Source§

impl DedupeReverseFS

Source

pub fn new( source: impl AsRef<Path>, caches: Vec<impl AsRef<Path>>, declutter_level: usize, ) -> DedupeReverseFS

Trait Implementations§

Source§

impl Drop for DedupeReverseFS

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl Filesystem for DedupeReverseFS

Source§

fn lookup( &mut self, _req: &Request<'_>, parent: u64, name: &OsStr, reply: ReplyEntry, )

Look up a directory entry by name and get its attributes.
Source§

fn getattr( &mut self, _req: &Request<'_>, ino: u64, _fh: Option<u64>, reply: ReplyAttr, )

Get file attributes.
Source§

fn open(&mut self, _req: &Request<'_>, ino: u64, _flags: i32, reply: ReplyOpen)

Open a file. Open flags (with the exception of O_CREAT, O_EXCL, O_NOCTTY and O_TRUNC) are available in flags. Filesystem may store an arbitrary file handle (pointer, index, etc) in fh, and use this in other all other file operations (read, write, flush, release, fsync). Filesystem may also implement stateless file I/O and not store anything in fh. There are also some flags (direct_io, keep_cache) which the filesystem may set, to change the way the file is opened. See fuse_file_info structure in <fuse_common.h> for more details.
Source§

fn read( &mut self, _req: &Request<'_>, ino: u64, fh: u64, offset: i64, size: u32, _flags: i32, _lock_owner: Option<u64>, reply: ReplyData, )

Read data. Read should send exactly the number of bytes requested except on EOF or error, otherwise the rest of the data will be substituted with zeroes. An exception to this is when the file has been opened in ‘direct_io’ mode, in which case the return value of the read system call will reflect the return value of this operation. fh will contain the value set by the open method, or will be undefined if the open method didn’t set any value. Read more
Source§

fn release( &mut self, _req: &Request<'_>, _ino: u64, fh: u64, _flags: i32, _lock_owner: Option<u64>, _flush: bool, reply: ReplyEmpty, )

Release an open file. Release is called when there are no more references to an open file: all file descriptors are closed and all memory mappings are unmapped. For every open call there will be exactly one release call. The filesystem may reply with an error, but error values are not returned to close() or munmap() which triggered the release. fh will contain the value set by the open method, or will be undefined if the open method didn’t set any value. flags will contain the same flags as for open.
Source§

fn opendir( &mut self, _req: &Request<'_>, ino: u64, _flags: i32, reply: ReplyOpen, )

Open a directory. Filesystem may store an arbitrary file handle (pointer, index, etc) in fh, and use this in other all other directory stream operations (readdir, releasedir, fsyncdir). Filesystem may also implement stateless directory I/O and not store anything in fh, though that makes it impossible to implement standard conforming directory stream operations in case the contents of the directory can change between opendir and releasedir.
Source§

fn readdir( &mut self, _req: &Request<'_>, _ino: u64, fh: u64, offset: i64, reply: ReplyDirectory, )

Read directory. Send a buffer filled using buffer.fill(), with size not exceeding the requested size. Send an empty buffer on end of stream. fh will contain the value set by the opendir method, or will be undefined if the opendir method didn’t set any value.
Source§

fn releasedir( &mut self, _req: &Request<'_>, _ino: u64, fh: u64, _flags: i32, reply: ReplyEmpty, )

Release an open directory. For every opendir call there will be exactly one releasedir call. fh will contain the value set by the opendir method, or will be undefined if the opendir method didn’t set any value.
Source§

fn init( &mut self, _req: &Request<'_>, _config: &mut KernelConfig, ) -> Result<(), i32>

Initialize filesystem. Called before any other filesystem method. The kernel module connection can be configured using the KernelConfig object
Source§

fn destroy(&mut self)

Clean up filesystem. Called on filesystem exit.
Source§

fn forget(&mut self, _req: &Request<'_>, _ino: u64, _nlookup: u64)

Forget about an inode. The nlookup parameter indicates the number of lookups previously performed on this inode. If the filesystem implements inode lifetimes, it is recommended that inodes acquire a single reference on each lookup, and lose nlookup references on each forget. The filesystem may ignore forget calls, if the inodes don’t need to have a limited lifetime. On unmount it is not guaranteed, that all referenced inodes will receive a forget message.
Source§

fn batch_forget(&mut self, req: &Request<'_>, nodes: &[fuse_forget_one])

Like forget, but take multiple forget requests at once for performance. The default implementation will fallback to forget.
Source§

fn setattr( &mut self, _req: &Request<'_>, ino: u64, mode: Option<u32>, uid: Option<u32>, gid: Option<u32>, size: Option<u64>, _atime: Option<TimeOrNow>, _mtime: Option<TimeOrNow>, _ctime: Option<SystemTime>, fh: Option<u64>, _crtime: Option<SystemTime>, _chgtime: Option<SystemTime>, _bkuptime: Option<SystemTime>, flags: Option<u32>, reply: ReplyAttr, )

Set file attributes.
Read symbolic link.
Source§

fn mknod( &mut self, _req: &Request<'_>, parent: u64, name: &OsStr, mode: u32, umask: u32, rdev: u32, reply: ReplyEntry, )

Create file node. Create a regular file, character device, block device, fifo or socket node.
Source§

fn mkdir( &mut self, _req: &Request<'_>, parent: u64, name: &OsStr, mode: u32, umask: u32, reply: ReplyEntry, )

Create a directory.
Remove a file.
Source§

fn rmdir( &mut self, _req: &Request<'_>, parent: u64, name: &OsStr, reply: ReplyEmpty, )

Remove a directory.
Create a symbolic link.
Source§

fn rename( &mut self, _req: &Request<'_>, parent: u64, name: &OsStr, newparent: u64, newname: &OsStr, flags: u32, reply: ReplyEmpty, )

Rename a file.
Create a hard link.
Source§

fn write( &mut self, _req: &Request<'_>, ino: u64, fh: u64, offset: i64, data: &[u8], write_flags: u32, flags: i32, lock_owner: Option<u64>, reply: ReplyWrite, )

Write data. Write should return exactly the number of bytes requested except on error. An exception to this is when the file has been opened in ‘direct_io’ mode, in which case the return value of the write system call will reflect the return value of this operation. fh will contain the value set by the open method, or will be undefined if the open method didn’t set any value. Read more
Source§

fn flush( &mut self, _req: &Request<'_>, ino: u64, fh: u64, lock_owner: u64, reply: ReplyEmpty, )

Flush method. This is called on each close() of the opened file. Since file descriptors can be duplicated (dup, dup2, fork), for one open call there may be many flush calls. Filesystems shouldn’t assume that flush will always be called after some writes, or that if will be called at all. fh will contain the value set by the open method, or will be undefined if the open method didn’t set any value. NOTE: the name of the method is misleading, since (unlike fsync) the filesystem is not forced to flush pending writes. One reason to flush data, is if the filesystem wants to return write errors. If the filesystem supports file locking operations (setlk, getlk) it should remove all locks belonging to ‘lock_owner’.
Source§

fn fsync( &mut self, _req: &Request<'_>, ino: u64, fh: u64, datasync: bool, reply: ReplyEmpty, )

Synchronize file contents. If the datasync parameter is non-zero, then only the user data should be flushed, not the meta data.
Source§

fn readdirplus( &mut self, _req: &Request<'_>, ino: u64, fh: u64, offset: i64, reply: ReplyDirectoryPlus, )

Read directory. Send a buffer filled using buffer.fill(), with size not exceeding the requested size. Send an empty buffer on end of stream. fh will contain the value set by the opendir method, or will be undefined if the opendir method didn’t set any value.
Source§

fn fsyncdir( &mut self, _req: &Request<'_>, ino: u64, fh: u64, datasync: bool, reply: ReplyEmpty, )

Synchronize directory contents. If the datasync parameter is set, then only the directory contents should be flushed, not the meta data. fh will contain the value set by the opendir method, or will be undefined if the opendir method didn’t set any value.
Source§

fn statfs(&mut self, _req: &Request<'_>, _ino: u64, reply: ReplyStatfs)

Get file system statistics.
Source§

fn setxattr( &mut self, _req: &Request<'_>, ino: u64, name: &OsStr, _value: &[u8], flags: i32, position: u32, reply: ReplyEmpty, )

Set an extended attribute.
Source§

fn getxattr( &mut self, _req: &Request<'_>, ino: u64, name: &OsStr, size: u32, reply: ReplyXattr, )

Get an extended attribute. If size is 0, the size of the value should be sent with reply.size(). If size is not 0, and the value fits, send it with reply.data(), or reply.error(ERANGE) if it doesn’t.
Source§

fn listxattr( &mut self, _req: &Request<'_>, ino: u64, size: u32, reply: ReplyXattr, )

List extended attribute names. If size is 0, the size of the value should be sent with reply.size(). If size is not 0, and the value fits, send it with reply.data(), or reply.error(ERANGE) if it doesn’t.
Source§

fn removexattr( &mut self, _req: &Request<'_>, ino: u64, name: &OsStr, reply: ReplyEmpty, )

Remove an extended attribute.
Source§

fn access(&mut self, _req: &Request<'_>, ino: u64, mask: i32, reply: ReplyEmpty)

Check file access permissions. This will be called for the access() system call. If the ‘default_permissions’ mount option is given, this method is not called. This method is not called under Linux kernel versions 2.4.x
Source§

fn create( &mut self, _req: &Request<'_>, parent: u64, name: &OsStr, mode: u32, umask: u32, flags: i32, reply: ReplyCreate, )

Create and open a file. If the file does not exist, first create it with the specified mode, and then open it. You can use any open flags in the flags parameter except O_NOCTTY. The filesystem can store any type of file handle (such as a pointer or index) in fh, which can then be used across all subsequent file operations including read, write, flush, release, and fsync. Additionally, the filesystem may set certain flags like direct_io and keep_cache to change the way the file is opened. See fuse_file_info structure in <fuse_common.h> for more details. If this method is not implemented or under Linux kernel versions earlier than 2.6.15, the mknod() and open() methods will be called instead.
Source§

fn getlk( &mut self, _req: &Request<'_>, ino: u64, fh: u64, lock_owner: u64, start: u64, end: u64, typ: i32, pid: u32, reply: ReplyLock, )

Test for a POSIX file lock.
Source§

fn setlk( &mut self, _req: &Request<'_>, ino: u64, fh: u64, lock_owner: u64, start: u64, end: u64, typ: i32, pid: u32, sleep: bool, reply: ReplyEmpty, )

Acquire, modify or release a POSIX file lock. For POSIX threads (NPTL) there’s a 1-1 relation between pid and owner, but otherwise this is not always the case. For checking lock ownership, ‘fi->owner’ must be used. The l_pid field in ‘struct flock’ should only be used to fill in this field in getlk(). Note: if the locking methods are not implemented, the kernel will still allow file locking to work locally. Hence these are only interesting for network filesystems and similar.
Source§

fn bmap( &mut self, _req: &Request<'_>, ino: u64, blocksize: u32, idx: u64, reply: ReplyBmap, )

Map block index within file to block index within device. Note: This makes sense only for block device backed filesystems mounted with the ‘blkdev’ option
Source§

fn ioctl( &mut self, _req: &Request<'_>, ino: u64, fh: u64, flags: u32, cmd: u32, in_data: &[u8], out_size: u32, reply: ReplyIoctl, )

control device
Source§

fn poll( &mut self, _req: &Request<'_>, ino: u64, fh: u64, ph: PollHandle, events: u32, flags: u32, reply: ReplyPoll, )

Poll for events
Source§

fn fallocate( &mut self, _req: &Request<'_>, ino: u64, fh: u64, offset: i64, length: i64, mode: i32, reply: ReplyEmpty, )

Preallocate or deallocate space to a file
Source§

fn lseek( &mut self, _req: &Request<'_>, ino: u64, fh: u64, offset: i64, whence: i32, reply: ReplyLseek, )

Reposition read/write file offset
Source§

fn copy_file_range( &mut self, _req: &Request<'_>, ino_in: u64, fh_in: u64, offset_in: i64, ino_out: u64, fh_out: u64, offset_out: i64, len: u64, flags: u32, reply: ReplyWrite, )

Copy the specified range from the source inode to the destination inode
Source§

impl Mountable for DedupeReverseFS

Source§

fn get_fsname() -> String

Source§

fn get_quitter_receiver_option_mut(&mut self) -> &mut Option<Receiver<()>>

Source§

fn mount( self, mountpoint: impl AsRef<Path>, ) -> Result<WaitableBackgroundSession, Box<dyn Error>>
where Self: Filesystem + Send + Sized + 'static,

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> 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

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.