imag/libimagstore/src/lazyfile.rs

156 lines
4.9 KiB
Rust
Raw Normal View History

2016-07-21 14:00:59 +00:00
pub use self::fs::LazyFile;
2016-07-21 14:00:59 +00:00
#[cfg(test)]
mod fs {
use error::StoreError as SE;
use std::io::Cursor;
use std::path::PathBuf;
2016-07-22 11:39:29 +00:00
use std::collections::HashMap;
use std::sync::Mutex;
lazy_static! {
static ref MAP: Mutex<HashMap<PathBuf, Cursor<Vec<u8>>>> = {
Mutex::new(HashMap::new())
};
}
/// `LazyFile` type, this is the Test version!
2016-07-21 14:00:59 +00:00
///
/// A lazy file is either absent, but a path to it is available, or it is present.
#[derive(Debug)]
pub enum LazyFile {
Absent(PathBuf),
}
impl LazyFile {
/**
* Get the mutable file behind a LazyFile object
*/
2016-07-22 11:39:29 +00:00
pub fn get_file_content(&mut self) -> Result<Cursor<Vec<u8>>, SE> {
2016-07-21 14:00:59 +00:00
debug!("Getting lazy file: {:?}", self);
2016-07-22 11:39:29 +00:00
match *self {
LazyFile::Absent(ref f) => {
let map = MAP.lock().unwrap();
return Ok(map.get(f).unwrap().clone());
2016-07-21 14:00:59 +00:00
},
};
}
2016-07-22 11:39:29 +00:00
pub fn write_file_content(&mut self, buf: &[u8]) -> Result<(), SE> {
match *self {
LazyFile::Absent(ref f) => {
let mut map = MAP.lock().unwrap();
if let Some(ref mut cur) = map.get_mut(f) {
let mut vec = cur.get_mut();
vec.clear();
vec.extend_from_slice(buf);
return Ok(());
}
let vec = Vec::from(buf);
map.insert(f.clone(), Cursor::new(vec));
return Ok(());
},
2016-07-21 14:00:59 +00:00
};
}
}
}
2016-07-21 14:00:59 +00:00
#[cfg(not(test))]
mod fs {
use error::{MapErrInto, StoreError as SE, StoreErrorKind as SEK};
2016-07-22 11:39:29 +00:00
use std::io::{Seek, SeekFrom, Read};
2016-07-21 14:00:59 +00:00
use std::path::{Path, PathBuf};
use std::fs::{File, OpenOptions, create_dir_all};
2016-01-21 20:30:41 +00:00
2016-07-21 14:00:59 +00:00
/// `LazyFile` type
///
/// A lazy file is either absent, but a path to it is available, or it is present.
#[derive(Debug)]
pub enum LazyFile {
Absent(PathBuf),
File(File)
}
fn open_file<A: AsRef<Path>>(p: A) -> ::std::io::Result<File> {
OpenOptions::new().write(true).read(true).open(p)
}
fn create_file<A: AsRef<Path>>(p: A) -> ::std::io::Result<File> {
if let Some(parent) = p.as_ref().parent() {
debug!("Implicitely creating directory: {:?}", parent);
if let Err(e) = create_dir_all(parent) {
return Err(e);
}
}
2016-07-21 14:00:59 +00:00
OpenOptions::new().write(true).read(true).create(true).open(p)
}
2016-07-21 14:00:59 +00:00
impl LazyFile {
/**
2016-07-22 11:39:29 +00:00
* Get the content behind this file
2016-07-21 14:00:59 +00:00
*/
2016-07-22 11:39:29 +00:00
pub fn get_file_content(&mut self) -> Result<&mut Read, SE> {
2016-07-21 14:00:59 +00:00
debug!("Getting lazy file: {:?}", self);
let file = match *self {
LazyFile::File(ref mut f) => return {
// We seek to the beginning of the file since we expect each
// access to the file to be in a different context
2016-07-22 11:39:29 +00:00
try!(f.seek(SeekFrom::Start(0))
.map_err_into(SEK::FileNotSeeked));
Ok(f)
2016-07-21 14:00:59 +00:00
},
LazyFile::Absent(ref p) => try!(open_file(p).map_err_into(SEK::FileNotFound)),
};
*self = LazyFile::File(file);
if let LazyFile::File(ref mut f) = *self {
return Ok(f);
}
unreachable!()
}
/**
2016-07-22 11:39:29 +00:00
* Write the content of this file
2016-07-21 14:00:59 +00:00
*/
2016-07-22 11:39:29 +00:00
pub fn write_file_content(&mut self, buf: &[u8]) -> Result<(), SE> {
use std::io::Write;
2016-07-21 14:00:59 +00:00
let file = match *self {
2016-07-22 11:39:29 +00:00
LazyFile::File(ref mut f) => return {
// We seek to the beginning of the file since we expect each
// access to the file to be in a different context
try!(f.seek(SeekFrom::Start(0))
.map_err_into(SEK::FileNotCreated));
f.write_all(buf).map_err_into(SEK::FileNotWritten)
2016-07-21 14:00:59 +00:00
},
2016-07-22 11:39:29 +00:00
LazyFile::Absent(ref p) => try!(create_file(p).map_err_into(SEK::FileNotCreated)),
2016-07-21 14:00:59 +00:00
};
*self = LazyFile::File(file);
if let LazyFile::File(ref mut f) = *self {
2016-07-22 11:39:29 +00:00
return f.write_all(buf).map_err_into(SEK::FileNotWritten);
2016-07-21 14:00:59 +00:00
}
2016-07-22 11:39:29 +00:00
unreachable!();
}
}
}
#[cfg(test)]
mod test {
2016-07-22 11:54:13 +00:00
use super::LazyFile;
use std::io::Read;
use std::path::PathBuf;
#[test]
fn lazy_file() {
let mut path = PathBuf::from("/tests");
path.set_file_name("test1");
let mut lf = LazyFile::Absent(path);
lf.write_file_content(b"Hello World").unwrap();
let mut bah = Vec::new();
lf.get_file_content().unwrap().read_to_end(&mut bah).unwrap();
assert_eq!(bah, b"Hello World");
}
}