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
use derive_more::From;
use pipe_trait::Pipe;
use std::{io, path::PathBuf};
use thiserror::Error;
#[derive(Debug, From, Error)]
#[error("{0}")]
pub enum Error {
TagReadFailure(TagReadFailure),
TagWriteFailure(TagWriteFailure),
CommentNotFound(CommentNotFound),
AmbiguousCommentChoices(AmbiguousCommentChoices),
PictureTypeNotFound(PictureTypeNotFound),
PictureNotFound(PictureNotFound),
AmbiguousPictureChoices(AmbiguousPictureChoices),
DeserializationFailure(DeserializationFailure),
PictureFileWriteFailure(PictureFileWriteFailure),
OutputDirCreationFailure(OutputDirCreationFailure),
InvalidFilePath(InvalidFilePath),
FileReadFailure(FileReadFailure),
DirCreationFailure(DirCreationFailure),
BackupFailure(BackupFailure),
}
#[derive(Debug, From, Error)]
#[error("Failed to read tag: {error}")]
pub struct TagReadFailure {
#[source]
pub error: id3::Error,
}
#[derive(Debug, From, Error)]
#[error("Failed to write tag: {error}")]
pub struct TagWriteFailure {
#[source]
pub error: id3::Error,
}
#[derive(Debug, Error)]
#[error("Comment not found")]
pub struct CommentNotFound;
#[derive(Debug, Error)]
#[error("Too many comments to choose from")]
pub struct AmbiguousCommentChoices;
#[derive(Debug, Error)]
#[error("Specified picture type not found")]
pub struct PictureTypeNotFound;
#[derive(Debug, Error)]
#[error("Picture not found")]
pub struct PictureNotFound;
#[derive(Debug, Error)]
#[error("Too many pictures to choose from")]
pub struct AmbiguousPictureChoices;
#[derive(Debug, From, Error)]
#[error("Failed to deserialize: {0}")]
pub enum DeserializationFailure {
Json(serde_json::Error),
Yaml(serde_yaml::Error),
}
#[derive(Debug, From, Error)]
#[error("Failed to write picture to file: {error}")]
pub struct PictureFileWriteFailure {
#[source]
pub error: io::Error,
}
#[derive(Debug, From, Error)]
#[error("Failed to create output directory: {error}")]
pub struct OutputDirCreationFailure {
#[source]
pub error: io::Error,
}
#[derive(Debug, From, Error)]
#[error("Provided path is not a file")]
pub struct InvalidFilePath;
#[derive(Debug, Error)]
#[error("Failed to read {file:?}: {error}")]
pub struct FileReadFailure {
pub file: PathBuf,
#[source]
pub error: io::Error,
}
#[derive(Debug, Error)]
#[error("Failed to create a directory at {dir:?}: {error}")]
pub struct DirCreationFailure {
pub dir: PathBuf,
#[source]
pub error: io::Error,
}
#[derive(Debug, Error)]
#[error("Failed to create a backup of {src:?} at {dest:?}: {error}")]
pub struct BackupFailure {
pub src: PathBuf,
pub dest: PathBuf,
#[source]
pub error: io::Error,
}
macro_rules! indirect_convert {
($source:ty, $intermediate:ident) => {
impl From<$source> for Error {
fn from(source: $source) -> Self {
source.pipe($intermediate::from).into()
}
}
};
}
indirect_convert!(serde_json::Error, DeserializationFailure);
indirect_convert!(serde_yaml::Error, DeserializationFailure);