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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
use std::convert::AsRef;
use std::io;
use std::path::Path;
use super::PathAbs;
use file::PathFile;
use dir::PathDir;
#[cfg_attr(feature = "serialize", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serialize", serde(tag = "type", content = "path", rename_all = "lowercase"))]
#[derive(Debug, Clone, Eq, Hash, PartialEq, PartialOrd, Ord)]
pub enum PathType {
File(PathFile),
Dir(PathDir),
}
impl PathType {
pub fn new<P: AsRef<Path>>(path: P) -> io::Result<PathType> {
let abs = PathAbs::new(path)?;
let ty = abs.metadata()?.file_type();
if ty.is_file() {
Ok(PathType::File(PathFile(abs)))
} else if ty.is_dir() {
Ok(PathType::Dir(PathDir(abs)))
} else {
Err(io::Error::new(
io::ErrorKind::InvalidInput,
"path is not a dir or a file",
))
}
}
pub fn unwrap_file(self) -> PathFile {
if let PathType::File(f) = self {
f
} else {
panic!("unwrap_file called on path that is not a file");
}
}
pub fn unwrap_dir(self) -> PathDir {
if let PathType::Dir(d) = self {
d
} else {
panic!("unwrap_dir called on path that is not a dir");
}
}
pub fn is_dir(&self) -> bool {
if let PathType::Dir(_) = *self {
true
} else {
false
}
}
pub fn is_file(&self) -> bool {
if let PathType::File(_) = *self {
true
} else {
false
}
}
pub fn mock_file<P: AsRef<Path>>(path: P) -> PathType {
PathType::File(PathFile::mock(path))
}
pub fn mock_dir<P: AsRef<Path>>(path: P) -> PathType {
PathType::Dir(PathDir::mock(path))
}
}