10 releases

0.2.7 Oct 30, 2023
0.2.5 Mar 22, 2023
0.2.4 Feb 16, 2023
0.2.3 Jan 27, 2023
0.1.1 May 18, 2021

#247 in Database interfaces

Download history 19/week @ 2024-01-01 33/week @ 2024-01-08 14/week @ 2024-02-05 24/week @ 2024-02-12 36/week @ 2024-02-19 40/week @ 2024-02-26 45/week @ 2024-03-04 88/week @ 2024-03-11 61/week @ 2024-03-18 63/week @ 2024-03-25 125/week @ 2024-04-01 62/week @ 2024-04-08 9/week @ 2024-04-15

269 downloads per month
Used in 4 crates (3 directly)

MIT license

75KB
1.5K SLoC

MongoDB GridFS Rust Driver

Crates.io docs.rs

This crate provides an implementation of Mongo GridFS on the top of mongodb's crate. This implementation only use the async/await version of mongodb.

From https://github.com/mongodb/specifications/blob/master/source/gridfs/gridfs-spec.rst

GridFS is a convention drivers use to store and retrieve BSON binary data (type “\x05”) that exceeds MongoDB’s BSON-document size limit of 16 MiB. When this data, called a user file, is written to the system, GridFS divides the file into chunks that are stored as distinct documents in a chunks collection. To retrieve a stored file, GridFS locates and returns all of its component chunks. Internally, GridFS creates a files collection document for each stored file. Files collection documents hold information about stored files, and they are stored in a files collection.

Examples

Uploading a document:

use mongodb_gridfs::{options::GridFSBucketOptions, GridFSBucket};
let mut bucket = GridFSBucket::new(db.clone(), Some(GridFSBucketOptions::default()));
let id = bucket
    .upload_from_stream("test.txt", "stream your data here".as_bytes(), None)
    .await?;

Downloading a document:

use futures::stream::StreamExt;
use mongodb_gridfs::{options::GridFSBucketOptions, GridFSBucket, GridFSError};

let bucket = GridFSBucket::new(db.clone(), Some(GridFSBucketOptions::default()));
let mut cursor = bucket.open_download_stream(id).await?;
let buffer = cursor.next().await.unwrap();

Features

The following features are propagated to mongodb:

  • default
  • async-std-runtime
  • tokio-runtime

Code Status

Feature Status Notes
GridFSUploadOptions DONE contentType and aliases are not implemented
GridFSBucketOption DONE concerns not used when ensuring indexes
GridFSFindOptions DONE
GridFSDownloadByNameOptions TODO
GridFSBucket DONE
GridFSBucket . open_upload_stream DONE
GridFSBucket . open_upload_stream_with_id
GridFSBucket . upload_from_stream NO No Implementation planned
GridFSBucket . upload_from_stream_with_id NO No Implementation planned
GridFSBucket . open_download_stream DONE
GridFSBucket . download_to_stream NO No Implementation planned
GridFSBucket . delete DONE
GridFSBucket . find DONE
GridFSBucket . rename DONE
GridFSBucket . drop DONE no DropCollectionOptions used during the drop
GridFSBucket . open_download_stream_by_name
GridFSBucket . download_to_stream_by_name
indexes DONE

Dependencies

~26–41MB
~812K SLoC