summaryrefslogtreecommitdiffstats
path: root/lib/core/libimagstore/src/file_abstraction/inmemory.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/core/libimagstore/src/file_abstraction/inmemory.rs')
-rw-r--r--lib/core/libimagstore/src/file_abstraction/inmemory.rs177
1 files changed, 177 insertions, 0 deletions
diff --git a/lib/core/libimagstore/src/file_abstraction/inmemory.rs b/lib/core/libimagstore/src/file_abstraction/inmemory.rs
new file mode 100644
index 00000000..57ca2411
--- /dev/null
+++ b/lib/core/libimagstore/src/file_abstraction/inmemory.rs
@@ -0,0 +1,177 @@
+//
+// imag - the personal information management suite for the commandline
+// Copyright (C) 2015, 2016 Matthias Beyer <mail@beyermatthias.de> and contributors
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; version
+// 2.1 of the License.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+//
+
+use error::StoreError as SE;
+use error::StoreErrorKind as SEK;
+use std::path::PathBuf;
+use std::collections::HashMap;
+use std::sync::Mutex;
+use std::cell::RefCell;
+use std::sync::Arc;
+use std::ops::Deref;
+
+use libimagerror::into::IntoError;
+
+use super::FileAbstraction;
+use super::FileAbstractionInstance;
+use super::Drain;
+use store::Entry;
+use storeid::StoreId;
+
+type Backend = Arc<Mutex<RefCell<HashMap<PathBuf, Entry>>>>;
+
+/// `FileAbstraction` type, this is the Test version!
+///
+/// A lazy file is either absent, but a path to it is available, or it is present.
+#[derive(Debug)]
+pub struct InMemoryFileAbstractionInstance {
+ fs_abstraction: Backend,
+ absent_path: PathBuf,
+}
+
+impl InMemoryFileAbstractionInstance {
+
+ pub fn new(fs: Backend, pb: PathBuf) -> InMemoryFileAbstractionInstance {
+ InMemoryFileAbstractionInstance {
+ fs_abstraction: fs,
+ absent_path: pb
+ }
+ }
+
+}
+
+impl FileAbstractionInstance for InMemoryFileAbstractionInstance {
+
+ /**
+ * Get the mutable file behind a InMemoryFileAbstraction object
+ */
+ fn get_file_content(&mut self, _: StoreId) -> Result<Entry, SE> {
+ debug!("Getting lazy file: {:?}", self);
+
+ match self.fs_abstraction.lock() {
+ Ok(mut mtx) => {
+ mtx.get_mut()
+ .get(&self.absent_path)
+ .cloned()
+ .ok_or(SEK::FileNotFound.into_error())
+ }
+
+ Err(_) => Err(SEK::LockError.into_error())
+ }
+ }
+
+ fn write_file_content(&mut self, buf: &Entry) -> Result<(), SE> {
+ match *self {
+ InMemoryFileAbstractionInstance { ref absent_path, .. } => {
+ let mut mtx = self.fs_abstraction.lock().expect("Locking Mutex failed");
+ let mut backend = mtx.get_mut();
+ let _ = backend.insert(absent_path.clone(), buf.clone());
+ return Ok(());
+ },
+ };
+ }
+}
+
+#[derive(Debug)]
+pub struct InMemoryFileAbstraction {
+ virtual_filesystem: Backend,
+}
+
+impl InMemoryFileAbstraction {
+
+ pub fn new() -> InMemoryFileAbstraction {
+ InMemoryFileAbstraction {
+ virtual_filesystem: Arc::new(Mutex::new(RefCell::new(HashMap::new()))),
+ }
+ }
+
+ pub fn backend(&self) -> &Backend {
+ &self.virtual_filesystem
+ }
+
+ fn backend_cloned<'a>(&'a self) -> Result<HashMap<PathBuf, Entry>, SE> {
+ self.virtual_filesystem
+ .lock()
+ .map_err(|_| SEK::LockError.into_error())
+ .map(|mtx| mtx.deref().borrow().clone())
+ }
+
+}
+
+impl FileAbstraction for InMemoryFileAbstraction {
+
+ fn remove_file(&self, path: &PathBuf) -> Result<(), SE> {
+ debug!("Removing: {:?}", path);
+ self.backend()
+ .lock()
+ .expect("Locking Mutex failed")
+ .get_mut()
+ .remove(path)
+ .map(|_| ())
+ .ok_or(SEK::FileNotFound.into_error())
+ }
+
+ fn copy(&self, from: &PathBuf, to: &PathBuf) -> Result<(), SE> {
+ debug!("Copying : {:?} -> {:?}", from, to);
+ let mut mtx = self.backend().lock().expect("Locking Mutex failed");
+ let mut backend = mtx.get_mut();
+
+ let a = try!(backend.get(from).cloned().ok_or(SEK::FileNotFound.into_error()));
+ backend.insert(to.clone(), a);
+ debug!("Copying: {:?} -> {:?} worked", from, to);
+ Ok(())
+ }
+
+ fn rename(&self, from: &PathBuf, to: &PathBuf) -> Result<(), SE> {
+ debug!("Renaming: {:?} -> {:?}", from, to);
+ let mut mtx = self.backend().lock().expect("Locking Mutex failed");
+ let mut backend = mtx.get_mut();
+
+ let a = try!(backend.get(from).cloned().ok_or(SEK::FileNotFound.into_error()));
+ backend.insert(to.clone(), a);
+ debug!("Renaming: {:?} -> {:?} worked", from, to);
+ Ok(())
+ }
+
+ fn create_dir_all(&self, _: &PathBuf) -> Result<(), SE> {
+ Ok(())
+ }
+
+ fn new_instance(&self, p: PathBuf) -> Box<FileAbstractionInstance> {
+ Box::new(InMemoryFileAbstractionInstance::new(self.backend().clone(), p))
+ }
+
+ fn drain(&self) -> Result<Drain, SE> {
+ self.backend_cloned().map(Drain::new)
+ }
+
+ fn fill<'a>(&'a mut self, mut d: Drain) -> Result<(), SE> {
+ debug!("Draining into : {:?}", self);
+ let mut mtx = try!(self.backend().lock().map_err(|_| SEK::LockError.into_error()));
+ let mut backend = mtx.get_mut();
+
+ for (path, element) in d.iter() {
+ debug!("Drain into {:?}: {:?}", self, path);
+ backend.insert(path, element);
+ }
+
+ Ok(())
+ }
+}
+