7 releases

0.0.6 Aug 29, 2024
0.0.5 Aug 19, 2024
0.0.3 Jul 29, 2024
0.0.0 Jun 21, 2024

#423 in Filesystem

Download history 108/week @ 2024-06-17 14/week @ 2024-06-24 247/week @ 2024-07-01 27/week @ 2024-07-08 146/week @ 2024-07-29 131/week @ 2024-08-12 130/week @ 2024-08-19 133/week @ 2024-08-26

396 downloads per month
Used in ofs

Apache-2.0

3MB
61K SLoC

Apache OpenDAL™ fuse3 integration

Build Status Latest Version Crate Downloads chat

fuse3_opendal is an fuse3 implementation using opendal.

This crate can help you to access ANY storage services by mounting locally by FUSE.

Examples

use fuse3::path::Session;
use fuse3::MountOptions;
use fuse3::Result;
use fuse3_opendal::Filesystem;
use opendal::services::Memory;
use opendal::Operator;

#[tokio::test]
async fn test() -> Result<()> {
    // Build opendal Operator.
    let op = Operator::new(Memory::default())?.finish();

    // Build fuse3 file system.
    let fs = Filesystem::new(op, 1000, 1000);

    // Configure mount options.
    let mount_options = MountOptions::default();

    // Start a fuse3 session and mount it.
    let mut mount_handle = Session::new(mount_options)
        .mount_with_unprivileged(fs, "/tmp/mount_test")
        .await?;
    let handle = &mut mount_handle;

    tokio::select! {
        res = handle => res?,
        _ = tokio::signal::ctrl_c() => {
            mount_handle.unmount().await?
        }
    }

    Ok(())
}

Branding

The first and most prominent mentions must use the full form: Apache OpenDAL™ of the name for any individual usage (webpage, handout, slides, etc.) Depending on the context and writing style, you should use the full form of the name sufficiently often to ensure that readers clearly understand the association of both the OpenDAL project and the OpenDAL software product to the ASF as the parent organization.

For more details, see the Apache Product Name Usage Guide.

License and Trademarks

Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0

Apache OpenDAL, OpenDAL, and Apache are either registered trademarks or trademarks of the Apache Software Foundation.

Dependencies

~14–28MB
~453K SLoC