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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
use std::collections::HashMap;
use serde::{Deserialize, Serialize};
use crate::key::KeyDescription;
use crate::schema::view::ViewUpdatePolicy;
use crate::schema::{CollectionName, SchemaName, Schematic, ViewName};
/// A summary of a [`Schema`](crate::schema::Schema)/[`Schematic`].
///
/// This type is a serializable summary of a [`Schematic`] and is the result of
/// [`StorageConnection::list_available_schemas`](crate::connection::StorageConnection::list_available_schemas)/[`AsyncStorageConnection::list_available_schemas`](crate::connection::AsyncStorageConnection::list_available_schemas).
/// It can be used to query information stored in BonsaiDb without needing
/// access to the Rust types.
#[derive(Debug, Eq, PartialEq, Serialize, Deserialize, Clone)]
pub struct SchemaSummary {
/// The name of the [`Schema`](crate::schema::Schema) this summary is of.
pub name: SchemaName,
collections: HashMap<CollectionName, CollectionSummary>,
}
impl SchemaSummary {
/// Returns the summary of named collection, if the schema contains it.
#[must_use]
pub fn collection(&self, name: &CollectionName) -> Option<&CollectionSummary> {
self.collections.get(name)
}
/// Returns an iterator over all collections contained in this schema.
pub fn collections(&self) -> impl Iterator<Item = &CollectionSummary> {
self.collections.values()
}
}
impl<'a> From<&'a Schematic> for SchemaSummary {
fn from(schematic: &'a Schematic) -> Self {
let mut summary = Self {
name: schematic.name.clone(),
collections: HashMap::new(),
};
for collection_name in schematic.collections() {
let collection = summary
.collections
.entry(collection_name.clone())
.or_insert_with(|| CollectionSummary {
name: collection_name.clone(),
primary_key: schematic
.collection_primary_key_description(collection_name)
.expect("invalid schematic")
.clone(),
views: HashMap::new(),
});
for view in schematic.views_in_collection(collection_name) {
let name = view.view_name();
collection.views.insert(
name.clone(),
ViewSummary {
name,
key: view.key_description(),
policy: view.update_policy(),
version: view.version(),
},
);
}
}
summary
}
}
/// A summary of a [`Collection`](crate::schema::Collection).
#[derive(Debug, Eq, PartialEq, Serialize, Deserialize, Clone)]
pub struct CollectionSummary {
/// The name of the [`Collection`](crate::schema::Collection) this is a summary of.
pub name: CollectionName,
/// The description of [`Collection::PrimaryKey`](crate::schema::Collection::PrimaryKey).
pub primary_key: KeyDescription,
views: HashMap<ViewName, ViewSummary>,
}
impl CollectionSummary {
/// Returns the summary of the named view, if it is contained in this collection.
#[must_use]
pub fn view(&self, name: &ViewName) -> Option<&ViewSummary> {
self.views.get(name)
}
/// Returns an iterator over all summaries of views in this collection.
pub fn views(&self) -> impl Iterator<Item = &ViewSummary> {
self.views.values()
}
}
/// A summary of a [`ViewSchema`](crate::schema::ViewSchema).
#[derive(Debug, Eq, PartialEq, Serialize, Deserialize, Clone)]
pub struct ViewSummary {
/// The name of the [`ViewSchema`](crate::schema::ViewSchema) this is a
/// summary of.
pub name: ViewName,
/// The description of [`View::Key`](crate::schema::View::Key).
pub key: KeyDescription,
/// The result of
/// [`ViewSchema::update_policy()`](crate::schema::ViewSchema::update_policy)
/// for this view.
pub policy: ViewUpdatePolicy,
/// The result of
/// [`ViewSchema::version()`](crate::schema::ViewSchema::version) for this
/// view.
pub version: u64,
}