1
use serde::{Deserialize, Serialize};
2

            
3
use crate::{
4
    define_basic_unique_mapped_view,
5
    document::CollectionDocument,
6
    schema::{
7
        Collection, CollectionName, DefaultSerialization, NamedCollection, SchemaName, Schematic,
8
    },
9
    Error,
10
};
11

            
12
/// A database stored in `BonsaiDb`.
13
102373
#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)]
14
pub struct Database {
15
    /// The name of the database.
16
    pub name: String,
17
    /// The schema defining the database.
18
    pub schema: SchemaName,
19
}
20

            
21
impl Collection for Database {
22
548274
    fn collection_name() -> CollectionName {
23
548274
        CollectionName::new("bonsaidb", "databases")
24
548274
    }
25

            
26
40503
    fn define_views(schema: &mut Schematic) -> Result<(), Error> {
27
40503
        schema.define_view(ByName)
28
40503
    }
29
}
30

            
31
impl DefaultSerialization for Database {}
32

            
33
define_basic_unique_mapped_view!(
34
    ByName,
35
    Database,
36
    1,
37
    "by-name",
38
    String,
39
    SchemaName,
40
20493
    |document: CollectionDocument<Database>| {
41
20493
        document.header.emit_key_and_value(
42
20493
            document.contents.name.to_ascii_lowercase(),
43
20493
            document.contents.schema,
44
20493
        )
45
20493
    },
46
);
47

            
48
impl NamedCollection for Database {
49
    type ByNameView = ByName;
50
}