-
-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy patherrors.rs
More file actions
413 lines (376 loc) · 13.4 KB
/
Copy patherrors.rs
File metadata and controls
413 lines (376 loc) · 13.4 KB
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
use color_eyre::owo_colors::OwoColorize;
use std::fmt;
use std::path::PathBuf;
use thiserror::Error;
#[derive(Debug, Clone)]
pub enum CliErrorSeverity {
Error,
Warning,
Info,
}
impl CliErrorSeverity {
pub fn label(&self) -> &'static str {
match self {
CliErrorSeverity::Error => "error",
CliErrorSeverity::Warning => "warning",
CliErrorSeverity::Info => "info",
}
}
pub fn color_code<T: AsRef<str>>(&self, text: T) -> String {
match self {
CliErrorSeverity::Error => text.as_ref().red().bold().to_string(),
CliErrorSeverity::Warning => text.as_ref().yellow().bold().to_string(),
CliErrorSeverity::Info => text.as_ref().blue().bold().to_string(),
}
}
}
#[derive(Debug, Clone)]
pub struct CliError {
pub severity: CliErrorSeverity,
pub message: String,
pub context: Option<String>,
pub hint: Option<String>,
pub file_path: Option<String>,
pub caused_by: Option<String>,
}
impl CliError {
pub fn new<S: Into<String>>(message: S) -> Self {
Self {
severity: CliErrorSeverity::Error,
message: message.into(),
context: None,
hint: None,
file_path: None,
caused_by: None,
}
}
pub fn warning<S: Into<String>>(message: S) -> Self {
Self {
severity: CliErrorSeverity::Warning,
message: message.into(),
context: None,
hint: None,
file_path: None,
caused_by: None,
}
}
#[allow(unused)]
pub fn info<S: Into<String>>(message: S) -> Self {
Self {
severity: CliErrorSeverity::Info,
message: message.into(),
context: None,
hint: None,
file_path: None,
caused_by: None,
}
}
pub fn with_context<S: Into<String>>(mut self, context: S) -> Self {
self.context = Some(context.into());
self
}
pub fn with_hint<S: Into<String>>(mut self, hint: S) -> Self {
self.hint = Some(hint.into());
self
}
#[allow(unused)]
pub fn with_file_path<S: Into<String>>(mut self, file_path: S) -> Self {
self.file_path = Some(file_path.into());
self
}
pub fn with_caused_by<S: Into<String>>(mut self, caused_by: S) -> Self {
self.caused_by = Some(caused_by.into());
self
}
pub fn render(&self) -> String {
let mut output = String::new();
// Error header: "error[C001]: message" or "error: message"
let header = format!("{}: {}", self.severity.label(), self.message);
output.push_str(&self.severity.color_code(header));
output.push('\n');
// File path if available
if let Some(file_path) = &self.file_path {
output.push_str(&format!(" {} {}\n", "-->".blue().bold(), file_path.bold()));
}
// Context if available
if let Some(context) = &self.context {
output.push('\n');
// Add indented context with box drawing
for line in context.lines() {
output.push_str(&format!(" {} {}\n", "│".blue().bold(), line));
}
}
// Caused by if available
if let Some(caused_by) = &self.caused_by {
output.push('\n');
output.push_str(&format!(
" {} {}: {}\n",
"│".blue().bold(),
"caused by".bold(),
caused_by
));
}
// Hint if available
if let Some(hint) = &self.hint {
output.push('\n');
output.push_str(&format!(
" {} {}: {}\n",
"=".blue().bold(),
"help".bold(),
hint
));
}
output
}
}
impl fmt::Display for CliError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.render())
}
}
impl std::error::Error for CliError {}
#[derive(Debug, Error)]
pub enum ConfigError {
#[error("cannot find home directory")]
HomeDirNotFound,
#[error("failed to create config directory at {path}: {source}")]
CreateWorkspaceDir {
path: PathBuf,
#[source]
source: std::io::Error,
},
#[error("failed to read workspace config at {path}: {source}")]
ReadWorkspaceConfig {
path: PathBuf,
#[source]
source: std::io::Error,
},
#[error("failed to parse workspace config at {path}: {source}")]
ParseWorkspaceConfig {
path: PathBuf,
#[source]
source: toml::de::Error,
},
#[error("failed to serialize workspace config: {source}")]
SerializeWorkspaceConfig {
#[source]
source: toml::ser::Error,
},
#[error("failed to write workspace config at {path}: {source}")]
WriteWorkspaceConfig {
path: PathBuf,
#[source]
source: std::io::Error,
},
#[error("failed to read helix.toml at {path}: {source}")]
ReadHelixConfig {
path: PathBuf,
#[source]
source: std::io::Error,
},
#[error("failed to parse helix.toml at {path}: {source}")]
ParseHelixConfig {
path: PathBuf,
#[source]
source: toml::de::Error,
},
#[error("failed to serialize helix.toml: {source}")]
SerializeHelixConfig {
#[source]
source: toml::ser::Error,
},
#[error("failed to write helix.toml at {path}: {source}")]
WriteHelixConfig {
path: PathBuf,
#[source]
source: std::io::Error,
},
#[error("project name cannot be empty in {path}")]
EmptyProjectName { path: PathBuf },
#[error("at least one instance must be defined in {path}")]
MissingInstances { path: PathBuf },
#[error("instance name cannot be empty in {path}")]
EmptyInstanceName { path: PathBuf },
#[error("Enterprise instance '{name}' must have a non-empty cluster_id in {path}")]
MissingClusterId { name: String, path: PathBuf },
#[error("instance '{name}' not found in helix.toml")]
InstanceNotFound { name: String },
}
#[derive(Debug, Error)]
pub enum ProjectError {
#[error("failed to determine current directory: {source}")]
CurrentDir {
#[source]
source: std::io::Error,
},
#[error("project configuration not found (searched from {start} up to filesystem root)")]
ConfigNotFound { start: PathBuf },
#[error("failed to create directory at {path}: {source}")]
CreateDir {
path: PathBuf,
#[source]
source: std::io::Error,
},
#[error(transparent)]
Config(Box<ConfigError>),
}
impl From<ConfigError> for ProjectError {
fn from(e: ConfigError) -> Self {
ProjectError::Config(Box::new(e))
}
}
#[derive(Debug, Error)]
pub enum PortError {
#[error("could not find available port in range {start}-{end}")]
NoAvailablePort { start: u16, end: u16 },
}
impl ConfigError {
pub fn to_cli_error(&self) -> CliError {
match self {
ConfigError::HomeDirNotFound => CliError::new("cannot find home directory"),
ConfigError::CreateWorkspaceDir { path, source } => CliError::new(format!(
"failed to create config directory at {}",
path.display()
))
.with_caused_by(source.to_string()),
ConfigError::ReadWorkspaceConfig { path, source } => CliError::new(format!(
"failed to read workspace config at {}",
path.display()
))
.with_caused_by(source.to_string()),
ConfigError::ParseWorkspaceConfig { path, source } => CliError::new(format!(
"failed to parse workspace config at {}",
path.display()
))
.with_caused_by(source.to_string()),
ConfigError::SerializeWorkspaceConfig { source } => {
CliError::new("failed to serialize workspace config")
.with_caused_by(source.to_string())
}
ConfigError::WriteWorkspaceConfig { path, source } => CliError::new(format!(
"failed to write workspace config at {}",
path.display()
))
.with_caused_by(source.to_string()),
ConfigError::ReadHelixConfig { path, source } => {
CliError::new(format!("failed to read helix.toml at {}", path.display()))
.with_caused_by(source.to_string())
}
ConfigError::ParseHelixConfig { path, source } => {
CliError::new(format!("failed to parse helix.toml at {}", path.display()))
.with_caused_by(source.to_string())
}
ConfigError::SerializeHelixConfig { source } => {
CliError::new("failed to serialize helix.toml").with_caused_by(source.to_string())
}
ConfigError::WriteHelixConfig { path, source } => {
CliError::new(format!("failed to write helix.toml at {}", path.display()))
.with_caused_by(source.to_string())
}
ConfigError::EmptyProjectName { path } => CliError::new(format!(
"project name cannot be empty in {}",
path.display()
)),
ConfigError::MissingInstances { path } => CliError::new(format!(
"at least one instance must be defined in {}",
path.display()
))
.with_hint("add one with `helix add local --name dev` (or `helix add enterprise`)"),
ConfigError::EmptyInstanceName { path } => CliError::new(format!(
"instance name cannot be empty in {}",
path.display()
)),
ConfigError::MissingClusterId { name, path } => CliError::new(format!(
"Enterprise instance '{}' must have a non-empty cluster_id in {}",
name,
path.display()
)),
ConfigError::InstanceNotFound { name } => {
CliError::new(format!("instance '{}' not found in helix.toml", name))
}
}
}
}
impl ProjectError {
pub fn to_cli_error(&self) -> CliError {
match self {
ProjectError::CurrentDir { source } => {
CliError::new("failed to determine current directory")
.with_caused_by(source.to_string())
}
ProjectError::ConfigNotFound { start } => {
config_error("project configuration not found")
.with_file_path(start.display().to_string())
.with_context(format!(
"searched from {} up to filesystem root",
start.display()
))
}
ProjectError::CreateDir { path, source } => {
CliError::new(format!("failed to create directory at {}", path.display()))
.with_caused_by(source.to_string())
}
ProjectError::Config(config_error) => config_error.to_cli_error(),
}
}
}
impl PortError {
pub fn to_cli_error(&self) -> CliError {
CliError::new(self.to_string())
}
}
impl From<std::io::Error> for CliError {
fn from(err: std::io::Error) -> Self {
match err.kind() {
std::io::ErrorKind::NotFound => {
CliError::new("file or directory not found").with_caused_by(err.to_string())
}
std::io::ErrorKind::PermissionDenied => CliError::new("permission denied")
.with_caused_by(err.to_string())
.with_hint("check file permissions and try again"),
std::io::ErrorKind::InvalidInput => {
CliError::new("invalid input").with_caused_by(err.to_string())
}
_ => CliError::new("I/O operation failed").with_caused_by(err.to_string()),
}
}
}
impl From<toml::de::Error> for CliError {
fn from(err: toml::de::Error) -> Self {
CliError::new("failed to parse TOML configuration")
.with_caused_by(err.to_string())
.with_hint("check the helix.toml file for syntax errors")
}
}
impl From<serde_json::Error> for CliError {
fn from(err: serde_json::Error) -> Self {
CliError::new("failed to parse JSON").with_caused_by(err.to_string())
}
}
#[allow(unused)]
pub type CliResult<T> = Result<T, CliError>;
// Convenience functions for common error patterns with error codes
#[allow(unused)]
pub fn config_error<S: Into<String>>(message: S) -> CliError {
CliError::new(message).with_hint("run `helix init` if you need to create a new project")
}
#[allow(unused)]
pub fn file_error<S: Into<String>>(message: S, file_path: S) -> CliError {
CliError::new(message).with_file_path(file_path)
}
#[allow(unused)]
pub fn docker_error<S: Into<String>>(message: S) -> CliError {
CliError::new(message).with_hint("ensure Docker is running and accessible")
}
#[allow(unused)]
pub fn network_error<S: Into<String>>(message: S) -> CliError {
CliError::new(message).with_hint("check your internet connection and try again")
}
#[allow(unused)]
pub fn project_error<S: Into<String>>(message: S) -> CliError {
CliError::new(message).with_hint("ensure you're in a valid helix project directory")
}
#[allow(unused)]
pub fn cloud_error<S: Into<String>>(message: S) -> CliError {
CliError::new(message).with_hint("run `helix auth login` to authenticate with Helix Cloud")
}