2016-03-24 10:50:37 +00:00
|
|
|
use std::ops::DerefMut;
|
|
|
|
|
|
|
|
use runtime::Runtime;
|
|
|
|
use error::RuntimeError;
|
|
|
|
use error::RuntimeErrorKind;
|
|
|
|
|
|
|
|
use libimagstore::store::FileLockEntry;
|
|
|
|
use libimagstore::store::Entry;
|
|
|
|
|
|
|
|
pub type EditResult<T> = Result<T, RuntimeError>;
|
|
|
|
|
|
|
|
pub trait Edit {
|
|
|
|
fn edit_content(&mut self, rt: &Runtime) -> EditResult<()>;
|
|
|
|
}
|
|
|
|
|
2016-04-06 12:40:36 +00:00
|
|
|
impl Edit for String {
|
|
|
|
|
|
|
|
fn edit_content(&mut self, rt: &Runtime) -> EditResult<()> {
|
|
|
|
edit_in_tmpfile(rt, self).map(|_| ())
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-03-24 10:50:37 +00:00
|
|
|
impl Edit for Entry {
|
|
|
|
|
|
|
|
fn edit_content(&mut self, rt: &Runtime) -> EditResult<()> {
|
|
|
|
edit_in_tmpfile(rt, self.get_content_mut())
|
|
|
|
.map(|_| ())
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Edit for FileLockEntry<'a> {
|
|
|
|
|
|
|
|
fn edit_content(&mut self, rt: &Runtime) -> EditResult<()> {
|
|
|
|
self.deref_mut().edit_content(rt)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn edit_in_tmpfile(rt: &Runtime, s: &mut String) -> EditResult<()> {
|
|
|
|
use tempfile::NamedTempFile;
|
|
|
|
use std::io::Seek;
|
|
|
|
use std::io::Read;
|
|
|
|
use std::io::SeekFrom;
|
|
|
|
use std::io::Write;
|
|
|
|
|
2016-03-24 11:29:55 +00:00
|
|
|
let file = try!(NamedTempFile::new());
|
2016-03-24 10:50:37 +00:00
|
|
|
let file_path = file.path();
|
2016-03-24 11:29:55 +00:00
|
|
|
let mut file = try!(file.reopen());
|
2016-03-24 10:50:37 +00:00
|
|
|
|
2016-03-25 15:19:21 +00:00
|
|
|
try!(file.write_all(&s.clone().into_bytes()[..]));
|
2016-03-24 11:29:55 +00:00
|
|
|
try!(file.sync_data());
|
2016-03-24 10:50:37 +00:00
|
|
|
|
|
|
|
if let Some(mut editor) = rt.editor() {
|
|
|
|
let exit_status = editor.arg(file_path).status();
|
|
|
|
|
|
|
|
match exit_status.map(|s| s.success()) {
|
2016-03-24 11:30:31 +00:00
|
|
|
Ok(true) => {
|
2016-03-24 10:50:37 +00:00
|
|
|
file.sync_data()
|
|
|
|
.and_then(|_| file.seek(SeekFrom::Start(0)))
|
|
|
|
.and_then(|_| file.read_to_string(s))
|
|
|
|
.map(|_| ())
|
|
|
|
.map_err(|e| RuntimeError::new(RuntimeErrorKind::IOError, Some(Box::new(e))))
|
|
|
|
},
|
2016-03-24 11:30:31 +00:00
|
|
|
Ok(false) => Err(RuntimeError::new(RuntimeErrorKind::ProcessExitFailure, None)),
|
|
|
|
Err(e) => Err(RuntimeError::new(RuntimeErrorKind::IOError, Some(Box::new(e)))),
|
2016-03-24 10:50:37 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Err(RuntimeError::new(RuntimeErrorKind::Instantiate, None))
|
|
|
|
}
|
|
|
|
}
|