keket 0.20.3

Database-like Asset management on top of ECS storage
Documentation
use crate::{database::handle::AssetHandle, protocol::AssetProtocol};
use anput::world::World;
use std::error::Error;

/// Protocol implementation for handling generic byte-based assets.
///
/// This struct defines how raw bytes representing assets are stored
/// directly without additional processing or transformation.
pub struct BytesAssetProtocol;

impl AssetProtocol for BytesAssetProtocol {
    fn name(&self) -> &str {
        "bytes"
    }

    fn process_bytes(
        &mut self,
        handle: AssetHandle,
        storage: &mut World,
        bytes: Vec<u8>,
    ) -> Result<(), Box<dyn Error>> {
        storage.insert(handle.entity(), (bytes,))?;
        Ok(())
    }

    fn produce_bytes(
        &mut self,
        handle: AssetHandle,
        storage: &mut World,
    ) -> Result<Vec<u8>, Box<dyn Error>> {
        let result = storage
            .component::<true, Vec<u8>>(handle.entity())
            .map(|bytes| bytes.as_slice().to_owned())?;
        Ok(result)
    }
}