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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
use super::*;
use std::collections::HashMap;
use std::sync::{Arc, Mutex};
#[derive(Clone, Debug)]
pub struct Database {
config: DatabaseConfig,
collections: HashMap<String, Arc<Mutex<Collection>>>
}
impl Database {
pub fn new(config: DatabaseConfig) -> Database {
Database {
config: config,
collections: HashMap::new()
}
}
pub fn connect(&mut self, collection_name: &str) -> Result<Connection, DatabaseError> {
match self.get_collection(collection_name) {
Ok(collection) => Ok(Connection::new(collection)),
Err(err) => Err(err)
}
}
pub fn get_collection(&mut self, collection_name: &str) -> Result<Arc<Mutex<Collection>>, DatabaseError> {
if !self.contains_collection(collection_name) {
self.create_collection(collection_name)
} else {
match self.collections.get(collection_name) {
Some(collection) => Ok(collection.clone()),
None => unreachable!()
}
}
}
pub fn create_collection(&mut self, collection_name: &str) -> Result<Arc<Mutex<Collection>>, DatabaseError> {
let collection_config = self.config.collection_config(collection_name);
Collection::new(collection_name, &collection_config).and_then(|collection| {
let collection = Arc::new(Mutex::new(collection));
self.collections.insert(collection_name.to_owned(), collection.clone());
Ok(collection)
})
}
pub fn drop_collection(&mut self, collection_name: &str) -> Result<(), DatabaseError> {
self.get_collection(collection_name).and_then(|collection| {
(*collection.lock().unwrap()).drop().and_then(|_| {
self.collections.remove(collection_name);
Ok(())
})
})
}
pub fn contains_collection(&self, collection_name: &str) -> bool {
self.collections.contains_key(collection_name)
}
}
#[cfg(test)]
mod tests {
use super::super::*;
use exar_testkit::*;
#[test]
fn test_constructor() {
let db = Database::new(DatabaseConfig::default());
assert_eq!(db.config, DatabaseConfig::default());
assert_eq!(db.collections.len(), 0);
}
#[test]
fn test_connect() {
let mut db = Database::new(DatabaseConfig::default());
let ref collection_name = random_collection_name();
assert!(db.connect(collection_name).is_ok());
assert!(db.contains_collection(collection_name));
assert!(db.drop_collection(collection_name).is_ok());
}
#[test]
fn test_connection_failure() {
let mut db = Database::new(DatabaseConfig::default());
let ref collection_name = invalid_collection_name();
assert!(db.connect(collection_name).is_err());
assert!(!db.contains_collection(collection_name));
assert!(db.drop_collection(collection_name).is_err());
}
#[test]
fn test_collection_management() {
let mut db = Database::new(DatabaseConfig::default());
let ref collection_name = random_collection_name();
assert!(!db.contains_collection(collection_name));
assert!(db.get_collection(collection_name).is_ok());
assert!(db.contains_collection(collection_name));
assert_eq!(db.collections.len(), 1);
assert!(db.get_collection(collection_name).is_ok());
assert!(db.contains_collection(collection_name));
assert_eq!(db.collections.len(), 1);
assert!(db.drop_collection(collection_name).is_ok());
assert!(!db.contains_collection(collection_name));
assert_eq!(db.collections.len(), 0);
}
}