2015-10-30 15:48:48 +00:00
|
|
|
use std::error::Error;
|
|
|
|
use std::fmt::{Debug, Display, Formatter};
|
|
|
|
use std::fmt;
|
|
|
|
|
2015-12-05 00:14:13 +00:00
|
|
|
use regex::Regex;
|
|
|
|
|
2015-12-06 12:02:21 +00:00
|
|
|
pub mod id;
|
2015-12-06 12:09:51 +00:00
|
|
|
pub mod header;
|
2015-12-06 12:02:21 +00:00
|
|
|
|
2015-12-02 10:33:58 +00:00
|
|
|
use module::Module;
|
2015-12-06 12:02:21 +00:00
|
|
|
use storage::file::id::*;
|
2015-12-05 00:14:13 +00:00
|
|
|
use super::parser::{FileHeaderParser, Parser, ParserError};
|
2015-12-02 10:30:50 +00:00
|
|
|
|
2015-12-06 12:09:51 +00:00
|
|
|
use self::header::spec::*;
|
|
|
|
use self::header::data::*;
|
2015-10-30 15:50:43 +00:00
|
|
|
|
2015-11-23 18:25:27 +00:00
|
|
|
/*
|
|
|
|
* Internal abstract view on a file. Does not exist on the FS and is just kept
|
|
|
|
* internally until it is written to disk.
|
|
|
|
*/
|
2015-12-02 10:33:58 +00:00
|
|
|
pub struct File<'a> {
|
|
|
|
owning_module : &'a Module,
|
|
|
|
header : FileHeaderData,
|
|
|
|
data : String,
|
|
|
|
id : FileID,
|
2015-10-31 19:20:04 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 10:33:58 +00:00
|
|
|
impl<'a> File<'a> {
|
2015-11-23 18:16:11 +00:00
|
|
|
|
2015-12-02 10:33:58 +00:00
|
|
|
pub fn new(module: &'a Module) -> File<'a> {
|
2015-11-27 18:37:20 +00:00
|
|
|
let f = File {
|
2015-12-02 10:33:58 +00:00
|
|
|
owning_module: module,
|
2015-11-23 18:16:11 +00:00
|
|
|
header: FileHeaderData::Null,
|
2015-11-23 18:25:27 +00:00
|
|
|
data: String::from(""),
|
|
|
|
id: File::get_new_file_id(),
|
2015-11-27 18:37:20 +00:00
|
|
|
};
|
|
|
|
debug!("Create new File object: {:?}", f);
|
|
|
|
f
|
2015-11-23 18:16:11 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 10:33:58 +00:00
|
|
|
pub fn from_parser_result(module: &Module, id: FileID, header: FileHeaderData, data: String) -> File {
|
2015-11-27 18:37:20 +00:00
|
|
|
let f = File {
|
2015-12-02 10:33:58 +00:00
|
|
|
owning_module: module,
|
2015-11-24 15:34:03 +00:00
|
|
|
header: header,
|
|
|
|
data: data,
|
|
|
|
id: id,
|
2015-11-27 18:37:20 +00:00
|
|
|
};
|
|
|
|
debug!("Create new File object from parser result: {:?}", f);
|
|
|
|
f
|
2015-11-24 09:58:54 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 10:33:58 +00:00
|
|
|
pub fn new_with_header(module: &Module, h: FileHeaderData) -> File {
|
2015-11-27 18:37:20 +00:00
|
|
|
let f = File {
|
2015-12-02 10:33:58 +00:00
|
|
|
owning_module: module,
|
2015-11-23 18:27:54 +00:00
|
|
|
header: h,
|
|
|
|
data: String::from(""),
|
|
|
|
id: File::get_new_file_id(),
|
2015-11-27 18:37:20 +00:00
|
|
|
};
|
|
|
|
debug!("Create new File object with header: {:?}", f);
|
|
|
|
f
|
2015-11-23 18:27:54 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 10:33:58 +00:00
|
|
|
pub fn new_with_data(module: &Module, d: String) -> File {
|
2015-11-27 18:37:20 +00:00
|
|
|
let f = File {
|
2015-12-02 10:33:58 +00:00
|
|
|
owning_module: module,
|
2015-11-23 18:27:54 +00:00
|
|
|
header: FileHeaderData::Null,
|
|
|
|
data: d,
|
|
|
|
id: File::get_new_file_id(),
|
2015-11-27 18:37:20 +00:00
|
|
|
};
|
|
|
|
debug!("Create new File object with data: {:?}", f);
|
|
|
|
f
|
2015-11-23 18:27:54 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 10:33:58 +00:00
|
|
|
pub fn new_with_content(module: &Module, h: FileHeaderData, d: String) -> File {
|
2015-11-27 18:37:20 +00:00
|
|
|
let f = File {
|
2015-12-02 10:33:58 +00:00
|
|
|
owning_module: module,
|
2015-11-23 18:27:54 +00:00
|
|
|
header: h,
|
|
|
|
data: d,
|
|
|
|
id: File::get_new_file_id(),
|
2015-11-27 18:37:20 +00:00
|
|
|
};
|
|
|
|
debug!("Create new File object with content: {:?}", f);
|
|
|
|
f
|
2015-11-23 18:27:54 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 10:32:59 +00:00
|
|
|
pub fn header(&self) -> FileHeaderData {
|
|
|
|
self.header.clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn data(&self) -> String {
|
|
|
|
self.data.clone()
|
|
|
|
}
|
|
|
|
|
2015-11-24 09:27:20 +00:00
|
|
|
pub fn contents(&self) -> (FileHeaderData, String) {
|
2015-12-02 10:34:23 +00:00
|
|
|
(self.header(), self.data())
|
2015-11-24 09:27:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn id(&self) -> FileID {
|
2015-11-24 18:28:26 +00:00
|
|
|
self.id.clone()
|
2015-11-24 09:27:20 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 10:33:58 +00:00
|
|
|
pub fn owner(&self) -> &Module {
|
|
|
|
self.owning_module
|
|
|
|
}
|
|
|
|
|
2015-11-30 18:50:24 +00:00
|
|
|
pub fn matches_with(&self, r: &Regex) -> bool {
|
|
|
|
r.is_match(&self.data[..]) || self.header.matches_with(r)
|
|
|
|
}
|
|
|
|
|
2015-11-23 18:25:27 +00:00
|
|
|
fn get_new_file_id() -> FileID {
|
|
|
|
use uuid::Uuid;
|
2015-12-02 12:42:42 +00:00
|
|
|
FileID::new(FileIDType::UUID, Uuid::new_v4().to_hyphenated_string())
|
2015-10-31 19:20:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-02 10:35:01 +00:00
|
|
|
impl<'a> Display for File<'a> {
|
2015-11-27 18:37:08 +00:00
|
|
|
|
2015-12-02 10:35:01 +00:00
|
|
|
fn fmt(&self, fmt: &mut Formatter) -> fmt::Result {
|
|
|
|
write!(fmt,
|
|
|
|
"[File] Owner : '{:?}'
|
|
|
|
FileID: '{:?}'
|
|
|
|
Header: '{:?}'
|
|
|
|
Data : '{:?}'",
|
|
|
|
self.owning_module,
|
|
|
|
self.header,
|
|
|
|
self.data,
|
|
|
|
self.id);
|
|
|
|
Ok(())
|
2015-11-27 18:37:08 +00:00
|
|
|
}
|
2015-12-02 10:35:01 +00:00
|
|
|
|
2015-11-27 18:37:08 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 10:35:01 +00:00
|
|
|
impl<'a> Debug for File<'a> {
|
2015-12-02 10:34:51 +00:00
|
|
|
|
|
|
|
fn fmt(&self, fmt: &mut Formatter) -> fmt::Result {
|
|
|
|
write!(fmt,
|
|
|
|
"[File] Owner : '{:?}'
|
|
|
|
FileID: '{:?}'
|
|
|
|
Header: '{:?}'
|
|
|
|
Data : '{:?}'",
|
|
|
|
self.owning_module,
|
|
|
|
self.header,
|
|
|
|
self.data,
|
|
|
|
self.id);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2015-12-03 11:19:08 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
// we use the JSON parser here, so we can generate FileHeaderData
|
|
|
|
use storage::json::parser::JsonHeaderParser;
|
|
|
|
use super::match_header_spec;
|
|
|
|
use storage::parser::{FileHeaderParser, ParserError};
|
|
|
|
use storage::file::FileHeaderData as FHD;
|
|
|
|
use storage::file::FileHeaderSpec as FHS;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_spec_matching() {
|
|
|
|
let text = String::from("{\"a\": 1, \"b\": -2}");
|
|
|
|
let spec = FHS::Map {
|
|
|
|
keys: vec![
|
|
|
|
FHS::Key {
|
|
|
|
name: String::from("a"),
|
|
|
|
value_type: Box::new(FHS::UInteger)
|
|
|
|
},
|
|
|
|
FHS::Key {
|
|
|
|
name: String::from("b"),
|
|
|
|
value_type: Box::new(FHS::Integer)
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
let parser = JsonHeaderParser::new(Some(spec.clone()));
|
|
|
|
let datares = parser.read(Some(text.clone()));
|
|
|
|
assert!(datares.is_ok(), "Text could not be parsed: '{}'", text);
|
|
|
|
let data = datares.unwrap();
|
|
|
|
|
|
|
|
let matchres = match_header_spec(&spec, &data);
|
|
|
|
assert!(matchres.is_none(), "Matching returns error: {:?}", matchres);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|