1
mod collection;
2
mod names;
3
mod schematic;
4
/// Types for defining map/reduce-powered `View`s.
5
pub mod view;
6
use std::fmt::Debug;
7

            
8
pub use self::{
9
    collection::{
10
        Collection, DefaultSerialization, Entry, InsertError, List, NamedCollection,
11
        NamedReference, SerializedCollection,
12
    },
13
    names::{Authority, CollectionName, InvalidNameError, Name, SchemaName, ViewName},
14
    schematic::Schematic,
15
    view::{
16
        map::{Map, MappedValue, ViewMappedValue},
17
        CollectionViewSchema, DefaultViewSerialization, Key, ReduceResult, SerializedView, View,
18
        ViewMapResult, ViewSchema,
19
    },
20
};
21
use crate::Error;
22

            
23
/// Defines a group of collections that are stored into a single database.
24
pub trait Schema: Send + Sync + Debug + 'static {
25
    /// Returns the unique [`SchemaName`] for this schema.
26
    fn schema_name() -> SchemaName;
27

            
28
    /// Defines the `Collection`s into `schema`.
29
    fn define_collections(schema: &mut Schematic) -> Result<(), Error>;
30

            
31
    /// Retrieves the [`Schematic`] for this schema.
32
86086
    fn schematic() -> Result<Schematic, Error> {
33
86086
        Schematic::from_schema::<Self>()
34
86086
    }
35
}
36

            
37
/// This implementation is for accessing databases when interacting with
38
/// collections isn't required. For example, accessing only the key-value store
39
/// or pubsub.
40
impl Schema for () {
41
3312
    fn schema_name() -> SchemaName {
42
3312
        SchemaName::new("", "")
43
3312
    }
44

            
45
1909
    fn define_collections(_schema: &mut Schematic) -> Result<(), Error> {
46
1909
        Ok(())
47
1909
    }
48
}
49

            
50
impl<T> Schema for T
51
where
52
    T: Collection + 'static,
53
{
54
239
    fn schema_name() -> SchemaName {
55
239
        let CollectionName { authority, name } = Self::collection_name();
56
239
        SchemaName { authority, name }
57
239
    }
58

            
59
165
    fn define_collections(schema: &mut Schematic) -> Result<(), Error> {
60
165
        schema.define_collection::<Self>()
61
165
    }
62
}