fast-assets

Easy to use assets manager for Rust

⚠️ Warning ⚠️

This library is still under development, shared to get feedbacks. If you found a missing feature open an issue on github. All unchecked features are planned.

Features

Compression Support

Load pre-defined index

Used to load files compressed

Example

rust let mut index = fast_assets::index::Index::new("./", "\\w+\\.rs"); index.add_from_file("index/index.csv");

csv folder;subfolder;file.txt archives;archive.zip;file.txt

Getting Started

Initialization

```rust // Search all un-compressed files and archives, // using extern index allow to add files compressed, // the manager will automatically manage the decompression let mut index = fastassets::index::Index::new("./", "\w+\.rs"); index.search(); index.addfrom_file("index/index.csv");

// The decompression cache is what will manage your compressed files and their caches. let dc = fastassets::decompressioncache::DecompressionCache::default();

let mut manager = fast_assets::manager::AssetsManager::new(index, dc); ```

Loading/Unloading a file in memory

rust // Load a compressed file manager.load("index.json").unwrap(); // Load a not compressed file manager.load("text.csv").unwrap();

```rust // AssetsManager::unload() need two parameters: // decompression_cache: bool => If the file was compressed and if true it will put the file in the cache. // filename: &str => The file that will be unloaded

// UnLoad and put in cache a compressed file manager.unload("index.json", true); // UnLoad a not compressed file manager.unload("text.csv", false);

// Tips: if you want always keep in cache, set always at true, // it will have no impact on the unloading of a uncompressed file ```

Accessing Data

You must know that two thing can failed: 1 - File not indexed 2 - File not exists

So you need to passthrough them to access the data:

rust manager.get("text.csv").unwrap().unwrap(); manager.get_mut("text.csv").unwrap().unwrap();

If the file was put in cache it will automatically reload it.

Saving Data

⚠️ This features encounters io authorizations issues ⚠️

Only saves data of file that are not from compressed files. Return a simple std::io::Result<()> as result. If the file does not exist anymore it will create a new file.

rust manager.save("text.csv").unwrap();

Remove a file reference

In the manager and DecompressionCache each file loaded will have his reference, but them use memory, so to do a complete unload you need to remove them. For the cached files, they will have their cache file removed (based on the trait Drop).

```rust manager.remove("text.csv").unwrap().unwrap();

// Tips: You don't need to unload before excepted if you need to put in cache ```