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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
use std::error::Error;
use std::fmt;
use std::io;
use std::env;
use std::process;
use ::git2;
use super::library::LibraryError;
pub type Result<T> = ::std::result::Result<T, CompositerError>;
#[derive(Debug)]
pub enum CompositerError {
MvFail(io::Error),
RmFile(io::Error),
RmDir(io::Error),
MkDirGit(io::Error),
MkDirLib(io::Error),
ReadDirGit(io::Error),
ReadDirLib(io::Error),
OpenDirLib(io::Error),
BuildCommand(io::Error),
ReadManifest(io::Error),
InstallClone(git2::Error),
UpdateRepOpen(git2::Error),
UpdateRepOrigin(git2::Error),
UpdateRepFetch(git2::Error),
UpdateRepBranch(git2::Error),
UpdateRepObject(git2::Error),
UpdateRepReset(git2::Error),
Mount(LibraryError),
BuildExit(process::ExitStatus),
UpdateRepBranchId,
NekoPath,
UnmountPosition,
UnmountRemove,
ParseManifest,
ParseInteger,
InstallFormat,
InstallExists,
Io(io::Error),
}
impl fmt::Display for CompositerError {
fn fmt(&self, _: &mut fmt::Formatter) -> fmt::Result {
Ok(())
}
}
impl Error for CompositerError {
fn description(&self) -> &str {
match *self {
CompositerError::MvFail(_) => "The directory can't be moved.",
CompositerError::RmFile(_) => "Can't remove the file.",
CompositerError::RmDir(_) => "Can't remove the directory.",
CompositerError::MkDirGit(_) => "Can't create the `git` sub-directory.",
CompositerError::MkDirLib(_) => "Can't create the `Lib` sub-directory.",
CompositerError::ReadDirGit(_) => "Can't read the `git` sub-directory.",
CompositerError::ReadDirLib(_) => "Can't read the `Lib` sub-directory.",
CompositerError::OpenDirLib(_) => "Can't open the `lib` sub-directory.",
CompositerError::ReadManifest(_) => {
"Can't read the `manifest` Neko.toml\
file."
}
CompositerError::Mount(_) => "Can't mount the dynamic library.",
CompositerError::InstallClone(_) => "Can't clone the repository",
CompositerError::UpdateRepOpen(_) => "Can't update the repository.",
CompositerError::UpdateRepOrigin(_) => {
"Can't found the origin from\
repository."
}
CompositerError::UpdateRepFetch(_) => "Can't fetch them repository.",
CompositerError::UpdateRepBranch(_) => {
"Can't found the branch from\
repository."
}
CompositerError::UpdateRepBranchId => {
"Can't get the target\
identifiant from branch."
}
CompositerError::UpdateRepObject(_) => {
"Can't found the object from\
target identifiant."
}
CompositerError::UpdateRepReset(_) => "Can't reset the repository.",
CompositerError::BuildCommand(_) => "Can't run the command.",
CompositerError::BuildExit(_) => "The build haven't exited with success.",
CompositerError::NekoPath => "Can't found the $NEKO_PATH environement variable.",
CompositerError::ParseManifest => {
"Can't parse the `manifest` Neko.toml\
file."
}
CompositerError::ParseInteger => "Can't parse a integer from the table.",
CompositerError::UnmountPosition => "Can't found the position.",
CompositerError::UnmountRemove => "Can't remove the index.",
CompositerError::InstallFormat => "The git link haven't a valid format",
CompositerError::InstallExists => {
"The dynamic library as already a\
repository."
},
CompositerError::Io(ref why) => why.description(),
}
}
fn cause(&self) -> Option<&Error> {
match *self {
CompositerError::MvFail(ref why) |
CompositerError::RmFile(ref why) |
CompositerError::RmDir(ref why) |
CompositerError::MkDirGit(ref why) |
CompositerError::MkDirLib(ref why) |
CompositerError::ReadDirGit(ref why) |
CompositerError::ReadDirLib(ref why) |
CompositerError::OpenDirLib(ref why) |
CompositerError::BuildCommand(ref why) |
CompositerError::ReadManifest(ref why) => Some(why),
CompositerError::InstallClone(ref why) |
CompositerError::UpdateRepOpen(ref why) |
CompositerError::UpdateRepOrigin(ref why) |
CompositerError::UpdateRepFetch(ref why) |
CompositerError::UpdateRepBranch(ref why) |
CompositerError::UpdateRepObject(ref why) |
CompositerError::UpdateRepReset(ref why) => Some(why),
CompositerError::Io(ref why) => Some(why),
CompositerError::Mount(ref why) => Some(why),
_ => None,
}
}
}
impl From<env::VarError> for CompositerError {
fn from(_: env::VarError) -> CompositerError {
CompositerError::NekoPath
}
}
impl From<io::Error> for CompositerError {
fn from(_: io::Error) -> CompositerError {
CompositerError::NekoPath
}
}
impl PartialEq for CompositerError {
fn eq(&self, other: &CompositerError) -> bool {
match (self, other) {
(&CompositerError::MvFail(_), &CompositerError::MvFail(_)) => true,
(&CompositerError::RmFile(_), &CompositerError::RmFile(_)) => true,
(&CompositerError::RmDir(_), &CompositerError::RmDir(_)) => true,
(&CompositerError::MkDirGit(_), &CompositerError::MkDirGit(_)) => true,
(&CompositerError::MkDirLib(_), &CompositerError::MkDirLib(_)) => true,
(&CompositerError::ReadDirGit(_), &CompositerError::ReadDirGit(_)) => true,
(&CompositerError::ReadDirLib(_), &CompositerError::ReadDirLib(_)) => true,
(&CompositerError::OpenDirLib(_), &CompositerError::OpenDirLib(_)) => true,
(&CompositerError::BuildCommand(_), &CompositerError::BuildCommand(_)) => true,
(&CompositerError::ReadManifest(_), &CompositerError::ReadManifest(_)) => true,
(&CompositerError::InstallClone(_), &CompositerError::InstallClone(_)) => true,
(&CompositerError::UpdateRepOpen(_), &CompositerError::UpdateRepOpen(_)) => true,
(&CompositerError::UpdateRepOrigin(_), &CompositerError::UpdateRepOrigin(_)) => true,
(&CompositerError::UpdateRepFetch(_), &CompositerError::UpdateRepFetch(_)) => true,
(&CompositerError::UpdateRepBranch(_), &CompositerError::UpdateRepBranch(_)) => true,
(&CompositerError::UpdateRepObject(_), &CompositerError::UpdateRepObject(_)) => true,
(&CompositerError::UpdateRepReset(_), &CompositerError::UpdateRepReset(_)) => true,
(&CompositerError::Mount(_), &CompositerError::Mount(_)) => true,
(&CompositerError::BuildExit(_), &CompositerError::BuildExit(_)) => true,
(&CompositerError::UpdateRepBranchId, &CompositerError::UpdateRepBranchId) => true,
(&CompositerError::NekoPath, &CompositerError::NekoPath) => true,
(&CompositerError::UnmountPosition, &CompositerError::UnmountPosition) => true,
(&CompositerError::UnmountRemove, &CompositerError::UnmountRemove) => true,
(&CompositerError::ParseManifest, &CompositerError::ParseManifest) => true,
(&CompositerError::ParseInteger, &CompositerError::ParseInteger) => true,
(&CompositerError::InstallFormat, &CompositerError::InstallFormat) => true,
(&CompositerError::InstallExists, &CompositerError::InstallExists) => true,
_ => false,
}
}
}