p2panda-rs 0.9.0

All the things a panda needs
Documentation
// SPDX-License-Identifier: AGPL-3.0-or-later

use once_cell::sync::Lazy;

use crate::schema::error::SchemaIdError;
use crate::schema::{FieldType, Schema, SchemaDescription, SchemaFields, SchemaId};

const DESCRIPTION: &str = "Definition of a blob file.";

pub static BLOB_V1: Lazy<Schema> = Lazy::new(|| {
    let fields = SchemaFields::new(&[
        ("length", FieldType::Integer),
        ("mime_type", FieldType::String),
        (
            "pieces",
            FieldType::PinnedRelationList(SchemaId::BlobPiece(1)),
        ),
    ])
    // Unwrap as we know the fields are valid.
    .unwrap();

    // We can unwrap here as we know the schema definition is valid.
    let description = SchemaDescription::new(DESCRIPTION).unwrap();

    Schema {
        id: SchemaId::Blob(1),
        description,
        fields,
    }
});

/// Returns the `blob` system schema with a given version.
pub fn get_blob(version: u8) -> Result<&'static Schema, SchemaIdError> {
    match version {
        1 => Ok(&BLOB_V1),
        _ => Err(SchemaIdError::UnknownSystemSchema(
            SchemaId::Blob(version).to_string(),
        )),
    }
}