2 unstable releases

0.2.0 Feb 15, 2024
0.1.1 Dec 6, 2023

#604 in Filesystem

Download history 85/week @ 2024-02-09 114/week @ 2024-02-16 49/week @ 2024-02-23 76/week @ 2024-03-01 62/week @ 2024-03-08 93/week @ 2024-03-15 61/week @ 2024-03-22 54/week @ 2024-03-29 9/week @ 2024-04-05

226 downloads per month
Used in 6 crates (4 directly)

Apache-2.0

180KB
4K SLoC

WNFS Logo

wnfs-unixfs-file

Docs Code Coverage Build Status License Docs Discord

⚠️ Work in progress ⚠️

This Rust crate provides an implementation of UnixFs files. WNFS uses the UnixFs file encoding purely to chunk big byte arrays into multiple blocks and produce a single CID for them to link to from WNFS structures.

This crate is a fork from beetle (previously "iroh")'s iroh-unixfs crate.

Major changes relative to that implementation include:

  • Removed prost code generation, instead it's some hard-coded structs with prost annotations
  • Removed support for any UnixFs structures other than files (no directories, directory shards or symlinks)
  • Removed parallelization for hashing to make the crate async runtime-independent (so it can be used in wasm with wasm-bindgen-futures!)
  • Doesn't hard-code use of SHA-256 anymore
  • Integrated with the wnfs-common BlockStore trait

Usage

use wnfs_unixfs_file::builder::FileBuilder;
use wnfs_common::MemoryBlockStore;
use tokio::io::AsyncReadExt;

// Where data is stored
let store = &MemoryBlockStore::new();

// Encoding byte arrays, getting a CID
let data = vec![1u8; 1_000_000]; // 1MiB of ones
let root_cid = FileBuilder::new()
    .content_bytes(data)
    .build()?
    .store(store)
    .await?;

// Taking a CID, reading back a byte array:
let file = UnixFsFile::load(&root_cid, store).await?;
println!("filesize: {}", file.filesize());
let mut buffer = Vec::new();
let mut reader = file.into_content_reader(store, None)?;
reader.read_to_end(&mut buffer).await?;
// buffer now has 1 million ones

// You can also seek
use tokio::io::AsyncSeekExt;
use std::io::SeekFrom;
let mut reader = file.into_content_reader(store, None)?;
reader.seek(SeekFrom::Start(10_000)).await?;
let mut slice = [0u8; 10_000];
reader.read_exact(&mut slice).await?;
// slice now has 10_000 ones

Dependencies

~7–17MB
~182K SLoC