TFIO - Transactional File I/O

tfio

TFIO is a library that provides a Transaction-like interface that are traditionally used in databases on FileIO operations. It gives the flexibility to execute and rollback singlular operations as well as transactions on the fly. The library also provides a builder-pattern interface to chain operations and execute them in one go.

Features

1) 100% safe code (thanks to Rust) 2) 10 rollback-able File/Directory operations 3) Only 1 Third-party dependency 4) All Errors exposed for handling 5) 100% Tests passing

Usage

Add the following to your Cargo.toml: toml tfio = "0.1.0"

Import the library in your Rust project: rust use tfio::*;

Create a transaction and execute it. If any Error is encountered, rollback the entire transaction: Note: The paths should only use forward slashes (/) and can either begin with disks or relative to the present working directory ie. begin with ./ ```rust use std::io; use tfio::*;

fn main() -> io::Result<()> { let tempdir = "./PATHTOTEMPDIR"; let mut tr = Transaction::new() .createfile("./foo.txt") .createdir("./bar") .writefile("./foo.txt", tempdir, b"Hello World".tovec()) .movefile("./foo.txt", "./bar/foo.txt") .appendfile("./bar/foo.txt", tempdir, b"dlroW olleH".to_vec());

// Execute the transaction
if let Err(e) = tr.execute() {
    eprintln!("Error during execution: {}", e);

    // All operations can be reverted in reverse-order if `Error` is encountered
    if let Err(ee) = tr.rollback() {
        panic!("Error during transaction rollback: {}", ee);
    }
}
Ok(())

} ```

You can also import single operations to use: ```rust use std::io; use tfio::{CopyFile, RollbackableOperation};

fn main() -> io::Result<()> { let mut copy_operation = CopyFile::new("./foo.txt", "./bar/baz/foo.txt");

// Execute the operation
if let Err(e) = copy_operation.execute() {
    eprintln!("Error during execution: {}", e);

    // Rollback the operation
    if let Err(ee) = copy_operation.rollback() {
        panic!("Error during rollback: {}", ee);
    }
}
Ok(())

} ```

To run tests: shell $ git clone https://github.com/GandalfTheGrayOfHell/tfio $ cd tfio $ cargo test

Note: Some TFIO operations create temporary files and directories in the TEMP_PATH provided. If an operation requires a path to temp dir then it will also require either the SingleFileOperation trait or the DirectoryOperation trait. Hence import them as per need.

Roadmap

It is unlikely that this project receives any updates. It is supposed to be a building block for a future project and works just enough to get things done. There are a couple of places where this library could use help: 1) Handling of Write buffers 2) Path normalization

PRs are always appreciated :)