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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
use std::mem;
use std::io::prelude::*;
use std::fs;
use std::fs::{OpenOptions, create_dir, remove_dir_all};
use byteorder::{WriteBytesExt, ReadBytesExt, BigEndian};
use bincode::SizeLimit;
use bincode::rustc_serialize::{encode_into, decode_from};
use super::SqlType;
use super::Engine;
use super::Error;
use super::engine::FlatFile;
use super::types::Column;
use super::EngineID;
const MAGIC_NUMBER: u64 = 0x49616D4372616E43;
const VERSION_NO: u8 = 1;
#[repr(u8)]
#[derive(Clone, Copy, Debug, RustcDecodable, RustcEncodable)]
pub enum DataType { Integer = 1, Float = 2, }
impl DataType {
pub fn _value(&self) -> u8 {
*self as u8
}
}
#[derive(Debug)]
pub struct Database {
pub name: String,
}
impl Database {
pub fn create(name: &str) -> Result<Database, Error> {
let d = Database{ name: name.to_string() };
try!(d.save());
info!("created new database {:?}", d);
Ok(d)
}
pub fn load(name: &str) -> Result<Database, Error> {
if try!(fs::metadata(name)).is_dir() {
info!("loaded Database {:?}", name.to_string());
Ok(Database{ name: name.to_string() })
} else {
warn!("could not load database {:?}", name.to_string());
return Err(Error::LoadDataBase)
}
}
fn save(&self) -> Result<(), Error> {
info!("trying to create dir!");
try!(create_dir(&self.name));
info!("created dir");
Ok(())
}
pub fn delete(&self) -> Result<(), Error> {
info!("deleting Database and all its tables");
try!(remove_dir_all(&self.name));
Ok(())
}
pub fn create_table(&self, name: &str, columns: Vec<Column>, engine_id: EngineID)
-> Result<Table, Error>
{
let t = Table::new(&self, name, columns, engine_id);
try!(t.save());
info!("created new table {:?}", t);
Ok(t)
}
pub fn load_table(&self, name: &str) -> Result<Table, Error> {
Table::load(&self, name)
}
}
#[derive(Debug, RustcDecodable, RustcEncodable)]
pub struct TableMetaData {
version_nmbr: u8,
engine_id: EngineID,
pub columns: Vec<Column>,
}
#[derive(Debug)]
pub struct Table<'a> {
database: &'a Database,
pub name: String,
pub meta_data: TableMetaData,
}
impl<'a> Table<'a> {
pub fn new<'b>(database: &'b Database, name: &str,
columns: Vec<Column>, engine_id: EngineID)
-> Table<'b>
{
let meta_data = TableMetaData {
version_nmbr: VERSION_NO,
engine_id: engine_id,
columns: columns,
};
info!("created meta data: {:?}", meta_data);
Table {
name: name.to_string(),
database: database,
meta_data: meta_data,
}
}
fn load<'b>(database: &'b Database, name: &str)
-> Result<Table<'b>, Error>
{
let path_to_table = Table::get_path(&database.name, name, "tbl");
info!("getting path and opening file: {:?}", path_to_table);
let mut file = try!(OpenOptions::new()
.read(true)
.open(path_to_table));
info!("reading file: {:?}", file);
let ma_nmbr = try!(file.read_uint::<BigEndian>(mem::size_of_val(&MAGIC_NUMBER)));
info!("checking magic number: {:?}", ma_nmbr);
if ma_nmbr != MAGIC_NUMBER {
info!("Magic Number not correct");
return Err(Error::WrongMagicNmbr)
}
let meta_data: TableMetaData = try!(decode_from(&mut file, SizeLimit::Infinite));
info!("getting meta data{:?}", meta_data);
let table = Table::new(database, name, meta_data.columns, meta_data.engine_id);
info!("returning table: {:?}", table);
Ok(table)
}
pub fn save(&self) -> Result<(), Error> {
info!("opening file to write");
let mut file = try!(OpenOptions::new()
.write(true)
.create(true)
.open(self.get_table_metadata_path()));
info!("writing magic number in file: {:?}", file);
try!(file.write_u64::<BigEndian>(MAGIC_NUMBER));
info!("writing meta data in file: {:?}", file);
try!(encode_into(&self.meta_data, &mut file, SizeLimit::Infinite));
info!("I Wrote my File");
Ok(())
}
pub fn delete(&self) -> Result<(), Error> {
info!("remove meta file: {:?}", self.get_table_metadata_path());
try!(fs::remove_file(self.get_table_metadata_path()));
info!("remove data file: {:?}", self.get_table_data_path());
try!(fs::remove_file(self.get_table_data_path()));
Ok(())
}
pub fn columns(&self) -> &[Column] {
&self.meta_data.columns
}
pub fn add_column(
&mut self,
name: &str,
sql_type: SqlType,
allow_null: bool,
description: &str,
is_primary_key: bool
) -> Result<(), Error> {
match self.meta_data.columns.iter().find(|x| x.name == name) {
Some(_) => {
warn!("Column {:?} already exists", name);
return Err(Error::AddColumn)
},
None => {
info!("Column {:?} was added", name);
},
}
self.meta_data.columns.push(Column::new(
name,
sql_type,
allow_null,
description,
is_primary_key)
);
Ok(())
}
pub fn remove_column(&mut self, name: &str) -> Result<(), Error> {
let index = match self.meta_data.columns.iter().position(|x| x.name == name) {
Some(x) => {
info!("Column {:?} was removed", self.name);
x
},
None => {
warn!("Column {:?} could not be found", self.name);
return Err(Error::RemoveColumn)
},
};
self.meta_data.columns.swap_remove(index);
Ok(())
}
pub fn create_engine(self) -> Box<Engine + 'a> {
match self.meta_data.engine_id {
EngineID::FlatFile => {
Box::new(FlatFile::new(self))
},
EngineID::InvertedIndex => {
Box::new(FlatFile::new(self))
},
EngineID::BStar => {
Box::new(FlatFile::new(self))
},
}
}
fn get_table_metadata_path(&self) -> String {
Self::get_path(&self.database.name, &self.name, "tbl")
}
pub fn get_table_data_path(&self) -> String {
Self::get_path(&self.database.name, &self.name, "dat")
}
fn get_path(database: &str, name: &str, ext: &str) -> String {
format!("{}/{}.{}", database, name, ext)
}
}