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
use crate::{
app::field::{ArgsTable, Field, Text},
error::{
AmbiguousCommentChoices, AmbiguousPictureChoices, CommentNotFound, Error,
OutputDirCreationFailure, PictureFileWriteFailure, PictureNotFound, PictureTypeNotFound,
},
run::Run,
text_data::{
comment::Comment,
picture::Picture,
picture_type::{PictureType, PictureTypeExtra},
},
text_format::TextFormat,
utils::{get_image_extension, read_tag_from_path},
};
use clap::{Args, Subcommand};
use id3::{Tag, TagLike};
use mediatype::MediaType;
use pipe_trait::Pipe;
use std::{borrow::Cow, fs, path::PathBuf};
pub type Get = Field<GetArgsTable>;
impl Run for Text<GetArgsTable> {
fn run(self) -> Result<(), Error> {
macro_rules! get_text {
($args:expr, $get:expr) => {{
let GetText {
format,
input_audio,
} = $args;
let tag = read_tag_from_path(input_audio)?;
let value = $get(&tag);
match (format, value) {
(Some(format), value) => println!("{}", format.serialize(&value)?),
(None, Some(value)) => println!("{value}"),
(None, None) => {}
}
Ok(())
}};
}
match self {
Text::Title(args) => get_text!(args, Tag::title),
Text::Artist(args) => get_text!(args, Tag::artist),
Text::Album(args) => get_text!(args, Tag::album),
Text::AlbumArtist(args) => get_text!(args, Tag::album_artist),
Text::Genre(GetGenre::Name(args)) => get_text!(args, Tag::genre_parsed),
Text::Genre(GetGenre::Code(args)) => get_text!(args, Tag::genre),
}
}
}
#[derive(Debug)]
pub struct GetArgsTable;
impl ArgsTable for GetArgsTable {
type Text = GetText;
type Genre = GetGenre;
type Comment = GetComment;
type Picture = GetPicture;
}
#[derive(Debug, Args)]
#[clap(about = "")]
pub struct GetText {
#[clap(long, value_enum)]
pub format: Option<TextFormat>,
pub input_audio: PathBuf,
}
#[derive(Debug, Subcommand)]
pub enum GetGenre {
#[clap(name = "genre-name")]
Name(GetText),
#[clap(name = "genre-code")]
Code(GetText),
}
#[derive(Debug, Args)]
#[clap(about = "")]
pub struct GetComment {
#[clap(long)]
pub language: Option<String>,
#[clap(long)]
pub description: Option<String>,
#[clap(long, value_enum)]
pub format: Option<TextFormat>,
pub input_audio: PathBuf,
}
impl Run for GetComment {
fn run(self) -> Result<(), Error> {
let GetComment {
language,
description,
format,
input_audio,
} = self;
let tag = read_tag_from_path(input_audio)?;
let comments = tag
.comments()
.filter(|comment| {
language
.as_ref()
.map_or(true, |language| &comment.lang == language)
})
.filter(|comment| {
description
.as_ref()
.map_or(true, |description| &comment.description == description)
});
let output_text: Cow<str> = if let Some(format) = format {
let comments: Vec<_> = comments.map(Comment::from).collect();
format.serialize(&comments)?.pipe(Cow::Owned)
} else {
let mut iter = comments;
let comment = iter.next().ok_or(CommentNotFound)?;
if iter.next().is_some() {
return AmbiguousCommentChoices.pipe(Error::from).pipe(Err);
}
Cow::Borrowed(&comment.text)
};
println!("{output_text}");
Ok(())
}
}
#[derive(Debug, Args)]
#[clap(about = "")]
pub struct GetPicture {
#[clap(subcommand)]
pub command: GetPictureCmd,
}
impl Run for GetPicture {
fn run(self) -> Result<(), Error> {
self.command.run()
}
}
#[derive(Debug, Subcommand)]
#[clap(about = "")]
pub enum GetPictureCmd {
List(GetPictureList),
File(GetPictureFile),
Dir(GetPictureDir),
}
impl Run for GetPictureCmd {
fn run(self) -> Result<(), Error> {
match self {
GetPictureCmd::List(proc) => proc.run(),
GetPictureCmd::File(proc) => proc.run(),
GetPictureCmd::Dir(proc) => proc.run(),
}
}
}
#[derive(Debug, Args)]
pub struct GetPictureList {
#[clap(long, value_enum)]
pub format: TextFormat,
pub input_audio: PathBuf,
}
impl Run for GetPictureList {
fn run(self) -> Result<(), Error> {
let GetPictureList {
format,
input_audio,
} = self;
let tag = read_tag_from_path(input_audio)?;
let pictures: Vec<_> = tag.pictures().map(Picture::from_id3_ref).collect();
let serialized = format.serialize(&pictures)?;
println!("{serialized}");
Ok(())
}
}
#[derive(Debug, Args)]
pub struct GetPictureFile {
pub input_audio: PathBuf,
pub output_picture: PathBuf,
#[clap(value_enum)]
pub picture_type: Option<PictureType>,
}
impl Run for GetPictureFile {
fn run(self) -> Result<(), Error> {
let GetPictureFile {
input_audio,
output_picture,
picture_type,
} = self;
let tag = read_tag_from_path(input_audio)?;
let data = if let Some(target_picture_type) = picture_type {
&tag.pictures()
.find(|picture| picture.picture_type.try_into() == Ok(target_picture_type))
.ok_or(PictureTypeNotFound)?
.data
} else {
let mut iter = tag.pictures().map(|picture| &picture.data);
let data = iter.next().ok_or(PictureNotFound)?;
if iter.next().is_some() {
return AmbiguousPictureChoices.pipe(Error::from).pipe(Err);
}
data
};
fs::write(output_picture, data)
.map_err(PictureFileWriteFailure::from)
.map_err(Error::from)
}
}
#[derive(Debug, Args)]
pub struct GetPictureDir {
pub input_audio: PathBuf,
pub output_directory: PathBuf,
}
impl Run for GetPictureDir {
fn run(self) -> Result<(), Error> {
let GetPictureDir {
input_audio,
output_directory,
} = self;
let tag = read_tag_from_path(input_audio)?;
let pictures = tag.pictures().zip(0..);
for (picture, index) in pictures {
let id3::frame::Picture {
picture_type,
mime_type,
description,
data,
} = picture;
let picture_type: PictureTypeExtra = (*picture_type).into();
fs::create_dir_all(&output_directory).map_err(OutputDirCreationFailure::from)?;
eprintln!("{index}: {picture_type} {mime_type} {description}");
let ext = MediaType::parse(mime_type)
.ok()
.and_then(get_image_extension);
let output_file_name = match ext {
Some(ext) => format!("{index}-{picture_type}.{ext}"),
None => format!("{index}-{picture_type}"),
};
let output_file_path = output_directory.join(output_file_name);
fs::write(output_file_path, data).map_err(PictureFileWriteFailure::from)?;
}
Ok(())
}
}