1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
use std::io;
use std::fs::{self, File};

use crate::{RollbackableOperation};

/// Creates a new file

pub struct CreateFile {
	path: String,
}

impl CreateFile {
	/// Constructs a new CreateFile operation

	pub fn new<S: Into<String>>(path: S) -> Self {
		Self {
			path: path.into()
		}
	}
}

impl RollbackableOperation for CreateFile {
	fn execute(&mut self) -> io::Result<()> {
		match File::create(&self.path) {
			Ok(_f) => Ok(()),
			Err(e) => Err(e),
		}
	}

	fn rollback(&self) -> io::Result<()> {
		fs::remove_file(&self.path)
	}
}

/// Creates a new directory

pub struct CreateDirectory {
	path: String,
}

impl CreateDirectory {
	/// Constructs a new CreateDirectory operation

	pub fn new<S: Into<String>>(path: S) -> Self {
		Self {
			path: path.into()
		}
	}
}

impl RollbackableOperation for CreateDirectory {
	fn execute(&mut self) -> io::Result<()> {
		fs::create_dir_all(&self.path)
	}

	fn rollback(&self) -> io::Result<()> {
		// TODO: So bad

		fs::remove_dir_all(&self.path.strip_prefix("./").expect("Could not strip prefix").split("/").collect::<Vec<&str>>()[0])
	}
}

#[cfg(test)]
mod tests {
	use std::path::Path;
	use super::*;

	const FILE_SOURCE: &str = "./create_file_source.txt";

	#[test]
	fn create_file_works() {
		let mut op = CreateFile::new(FILE_SOURCE);

		assert_eq!(false, Path::new(FILE_SOURCE).exists());
		assert_eq!((), op.execute().unwrap());
		assert_eq!(true, Path::new(FILE_SOURCE).exists());
		assert_eq!((), op.rollback().unwrap());
		assert_eq!(false, Path::new(FILE_SOURCE).exists());
	}

	const DIR_SOURCE: &str = "./create_dir";

	#[test]
	fn create_dir_works() {
		let mut op = CreateDirectory::new(DIR_SOURCE);

		assert_eq!(false, Path::new(DIR_SOURCE).exists());
		assert_eq!((), op.execute().unwrap());
		assert_eq!(true, Path::new(DIR_SOURCE).exists());
		assert_eq!((), op.rollback().unwrap());
		assert_eq!(false, Path::new(DIR_SOURCE).exists());
	}
}