1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
pub(crate) mod packer;
pub(crate) mod tree;
use derive_more::Constructor;
use enum_map::{Enum, EnumMap};
use serde::{Deserialize, Serialize};
use crate::id::Id;
/// All [`BlobType`]s which are supported by the repository
pub const ALL_BLOB_TYPES: [BlobType; 2] = [BlobType::Tree, BlobType::Data];
#[derive(
Serialize, Deserialize, Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Enum,
)]
/// The type a `blob` or a `packfile` can have
pub enum BlobType {
#[serde(rename = "tree")]
/// This is a tree blob
Tree,
#[serde(rename = "data")]
/// This is a data blob
Data,
}
impl BlobType {
/// Defines the cacheability of a [`BlobType`]
///
/// # Returns
///
/// `true` if the [`BlobType`] is cacheable, `false` otherwise
#[must_use]
pub(crate) const fn is_cacheable(self) -> bool {
match self {
Self::Tree => true,
Self::Data => false,
}
}
}
pub type BlobTypeMap<T> = EnumMap<BlobType, T>;
/// Initialize is a new trait to define the method init() for a [`BlobTypeMap`]
pub trait Initialize<T: Default + Sized> {
/// Initialize a [`BlobTypeMap`] by processing a given function for each [`BlobType`]
fn init<F: FnMut(BlobType) -> T>(init: F) -> BlobTypeMap<T>;
}
impl<T: Default> Initialize<T> for BlobTypeMap<T> {
/// Initialize a [`BlobTypeMap`] by processing a given function for each [`BlobType`]
///
/// # Arguments
///
/// * `init` - The function to process for each [`BlobType`]
///
/// # Returns
///
/// A [`BlobTypeMap`] with the result of the function for each [`BlobType`]
fn init<F: FnMut(BlobType) -> T>(mut init: F) -> Self {
let mut btm = Self::default();
for i in 0..BlobType::LENGTH {
let bt = BlobType::from_usize(i);
btm[bt] = init(bt);
}
btm
}
}
/// A `Blob` is a file that is stored in the backend.
///
/// It can be a `tree` or a `data` blob.
///
/// A `tree` blob is a file that contains a list of other blobs.
/// A `data` blob is a file that contains the actual data.
#[derive(Debug, PartialEq, Eq, Clone, Constructor)]
pub(crate) struct Blob {
/// The type of the blob
tpe: BlobType,
/// The id of the blob
id: Id,
}