imag/libimagstore/src/store.rs

190 lines
3.8 KiB
Rust
Raw Normal View History

2016-01-13 20:47:23 +00:00
use std::collections::HashMap;
use std::fs::File;
2016-01-13 20:51:40 +00:00
use std::ops::Drop;
2016-01-12 17:52:03 +00:00
use std::path::PathBuf;
use std::result::Result as RResult;
use std::sync::Arc;
2016-01-16 18:32:12 +00:00
use std::sync::{RwLock, Mutex};
use fs2::FileExt;
2016-01-12 17:52:03 +00:00
2016-01-16 19:22:18 +00:00
use entry::Entry;
use error::StoreError;
2016-01-12 17:52:03 +00:00
pub type Result<T> = RResult<T, StoreError>;
2016-01-16 18:52:06 +00:00
pub type StoreId = PathBuf;
trait IntoStoreId {
fn into_storeid(self) -> StoreId;
}
impl<'a> IntoStoreId for &'a str {
fn into_storeid(self) -> StoreId {
PathBuf::from(self)
}
}
impl<'a> IntoStoreId for &'a String{
fn into_storeid(self) -> StoreId {
PathBuf::from(self)
}
}
impl IntoStoreId for String{
fn into_storeid(self) -> StoreId {
PathBuf::from(self)
}
}
impl IntoStoreId for PathBuf {
fn into_storeid(self) -> StoreId {
self
}
}
impl<'a> IntoStoreId for &'a PathBuf {
fn into_storeid(self) -> StoreId {
self.clone()
}
}
impl<ISI: IntoStoreId> IntoStoreId for (ISI, ISI) {
fn into_storeid(self) -> StoreId {
let (first, second) = self;
let mut res : StoreId = first.into_storeid();
res.push(second.into_storeid());
res
}
}
2016-01-16 19:30:16 +00:00
struct StoreEntry {
file: File,
entry: Option<Entry>,
}
impl StoreEntry {
fn is_borrowed(&self) -> bool {
self.entry.is_none()
}
fn set_entry(&mut self, entry: Entry) -> Result<()> {
self.entry = Some(entry);
unimplemented!()
}
fn get_entry(&mut self) -> Result<Entry> {
unimplemented!()
}
}
2016-01-16 18:52:06 +00:00
pub struct Store {
location: PathBuf,
2016-01-13 20:47:23 +00:00
/**
* Internal Path->File cache map
*
* Caches the files, so they remain flock()ed
*
* Could be optimized for a threadsafe HashMap
*/
2016-01-16 19:30:16 +00:00
entries: Arc<RwLock<HashMap<StoreId, StoreEntry>>>,
}
impl Store {
pub fn create(&self, entry: Entry) -> Result<()> {
unimplemented!();
}
2016-01-16 19:18:43 +00:00
pub fn retrieve<'a>(&'a self, id: StoreId) -> Result<FileLockEntry<'a>> {
unimplemented!();
}
2016-01-16 19:18:43 +00:00
pub fn update<'a>(&'a self, entry: FileLockEntry<'a>) -> Result<()> {
unimplemented!();
}
2016-01-16 19:18:43 +00:00
pub fn retrieve_copy(&self, id: StoreId) -> Result<Entry> {
unimplemented!();
}
2016-01-16 19:18:43 +00:00
pub fn delete(&self, id: StoreId) -> Result<()> {
unimplemented!();
}
}
impl Drop for Store {
/**
* Unlock all files on drop
*
* TODO: Error message when file cannot be unlocked?
*/
fn drop(&mut self) {
2016-01-16 18:32:12 +00:00
self.entries.write().unwrap()
2016-01-16 19:30:16 +00:00
.iter().map(|f| f.1.file.unlock());
}
2016-01-13 20:51:40 +00:00
}
pub struct FileLockEntry<'a> {
store: &'a Store,
2016-01-16 18:32:12 +00:00
entry: Entry,
2016-01-16 18:52:06 +00:00
key: StoreId,
2016-01-16 17:25:48 +00:00
}
impl<'a> FileLockEntry<'a, > {
2016-01-16 18:52:06 +00:00
fn new(store: &'a Store, entry: Entry, key: StoreId) -> FileLockEntry<'a> {
2016-01-16 17:25:48 +00:00
FileLockEntry {
store: store,
entry: entry,
2016-01-16 18:32:12 +00:00
key: key,
2016-01-16 17:25:48 +00:00
}
}
}
impl<'a> ::std::ops::Deref for FileLockEntry<'a> {
2016-01-16 17:25:48 +00:00
type Target = Entry;
fn deref(&self) -> &Self::Target {
&self.entry
}
}
impl<'a> ::std::ops::DerefMut for FileLockEntry<'a> {
2016-01-16 17:25:48 +00:00
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.entry
}
}
2016-01-16 18:32:12 +00:00
impl<'a> Drop for FileLockEntry<'a> {
fn drop(&mut self) {
let mut map = self.store.entries.write().unwrap();
2016-01-16 19:30:16 +00:00
map.get_mut(&self.key).unwrap().set_entry(self.entry.clone());
2016-01-16 18:32:12 +00:00
}
}
2016-01-16 18:52:06 +00:00
#[cfg(test)]
mod test {
use std::path::PathBuf;
use store::{StoreId, IntoStoreId};
#[test]
fn into_storeid_trait() {
let buf = PathBuf::from("abc/def");
let test = ("abc", "def");
assert_eq!(buf, test.into_storeid());
let test = "abc/def";
assert_eq!(buf, test.into_storeid());
let test = String::from("abc/def");
assert_eq!(buf, test.into_storeid());
let test = PathBuf::from("abc/def");
assert_eq!(buf, test.into_storeid());
}
}