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
414
use crate::error::{ErrorKind, LoftyError, Result};
use crate::ogg::write::OGGFormat;
use crate::probe::Probe;
use crate::tag_traits::{Accessor, TagExt};
use crate::types::file::FileType;
use crate::types::item::{ItemKey, ItemValue, TagItem};
use crate::types::picture::{Picture, PictureInformation, PictureType};
use crate::types::tag::{Tag, TagType};
use std::fs::{File, OpenOptions};
use std::io::{Cursor, Write};
use std::path::Path;
macro_rules! impl_accessor {
($($name:ident, $key:literal;)+) => {
paste::paste! {
impl Accessor for VorbisComments {
$(
fn $name(&self) -> Option<&str> {
self.get_item($key)
}
fn [<set_ $name>](&mut self, value: String) {
self.insert_item(String::from($key), value, true)
}
fn [<remove_ $name>](&mut self) {
self.remove_key($key)
}
)+
}
}
}
}
#[derive(Default, PartialEq, Debug, Clone)]
pub struct VorbisComments {
pub(crate) vendor: String,
pub(crate) items: Vec<(String, String)>,
pub(crate) pictures: Vec<(Picture, PictureInformation)>,
}
impl_accessor!(
artist, "ARTIST";
title, "TITLE";
album, "ALBUM";
genre, "GENRE";
);
impl VorbisComments {
pub fn vendor(&self) -> &str {
&self.vendor
}
pub fn set_vendor(&mut self, vendor: String) {
self.vendor = vendor
}
pub fn items(&self) -> &[(String, String)] {
&self.items
}
pub fn get_item(&self, key: &str) -> Option<&str> {
self.items
.iter()
.find(|(k, _)| k == key)
.map(|(_, v)| v.as_str())
}
pub fn insert_item(&mut self, key: String, value: String, replace_all: bool) {
if replace_all {
self.items
.iter()
.position(|(k, _)| k == &key)
.map(|p| self.items.remove(p));
}
self.items.push((key, value))
}
pub fn remove_key(&mut self, key: &str) {
self.items.retain(|(k, _)| k != key);
}
pub fn insert_picture(
&mut self,
picture: Picture,
) -> Result<Option<(Picture, PictureInformation)>> {
let ret = if picture.pic_type == PictureType::Icon
|| picture.pic_type == PictureType::OtherIcon
{
self.pictures
.iter()
.position(|(p, _)| p.pic_type == picture.pic_type)
.map(|pos| self.pictures.remove(pos))
} else {
None
};
let info = PictureInformation::from_picture(&picture)?;
self.pictures.push((picture, info));
Ok(ret)
}
pub fn remove_picture_type(&mut self, picture_type: PictureType) {
self.pictures.retain(|(p, _)| p.pic_type != picture_type)
}
}
impl TagExt for VorbisComments {
type Err = LoftyError;
fn is_empty(&self) -> bool {
self.items.is_empty() && self.pictures.is_empty()
}
fn save_to_path<P: AsRef<Path>>(&self, path: P) -> std::result::Result<(), Self::Err> {
self.save_to(&mut OpenOptions::new().read(true).write(true).open(path)?)
}
fn save_to(&self, file: &mut File) -> std::result::Result<(), Self::Err> {
VorbisCommentsRef {
vendor: self.vendor.as_str(),
items: self.items.iter().map(|(k, v)| (k.as_str(), v.as_str())),
pictures: self.pictures.iter().map(|(p, i)| (p, *i)),
}
.write_to(file)
}
fn dump_to<W: Write>(&self, writer: &mut W) -> std::result::Result<(), Self::Err> {
VorbisCommentsRef {
vendor: self.vendor.as_str(),
items: self.items.iter().map(|(k, v)| (k.as_str(), v.as_str())),
pictures: self.pictures.iter().map(|(p, i)| (p, *i)),
}
.dump_to(writer)
}
fn remove_from_path<P: AsRef<Path>>(&self, path: P) -> std::result::Result<(), Self::Err> {
TagType::VorbisComments.remove_from_path(path)
}
fn remove_from(&self, file: &mut File) -> std::result::Result<(), Self::Err> {
TagType::VorbisComments.remove_from(file)
}
}
impl From<VorbisComments> for Tag {
fn from(input: VorbisComments) -> Self {
let mut tag = Tag::new(TagType::VorbisComments);
for (k, v) in input.items {
tag.items.push(TagItem::new(
ItemKey::from_key(TagType::VorbisComments, &k),
ItemValue::Text(v),
));
}
if !tag
.items
.iter()
.any(|i| i.key() == &ItemKey::EncoderSoftware)
{
tag.items.push(TagItem::new(
ItemKey::EncoderSoftware,
ItemValue::Text(input.vendor),
));
}
for (pic, _info) in input.pictures {
tag.push_picture(pic)
}
tag
}
}
impl From<Tag> for VorbisComments {
fn from(mut input: Tag) -> Self {
let mut vorbis_comments = Self::default();
if let Some(TagItem {
item_value: ItemValue::Text(val),
..
}) = input.take(&ItemKey::EncoderSoftware).next()
{
vorbis_comments.vendor = val;
}
for item in input.items {
let val = match item.value() {
ItemValue::Text(text) | ItemValue::Locator(text) => text,
_ => continue,
};
let key = match item.key().map_key(TagType::VorbisComments, true) {
None => continue,
Some(k) => k,
};
vorbis_comments
.items
.push((key.to_string(), val.to_string()));
}
for picture in input.pictures {
if let Ok(information) = PictureInformation::from_picture(&picture) {
vorbis_comments.pictures.push((picture, information))
}
}
vorbis_comments
}
}
pub(crate) struct VorbisCommentsRef<'a, II, IP>
where
II: Iterator<Item = (&'a str, &'a str)>,
IP: Iterator<Item = (&'a Picture, PictureInformation)>,
{
pub vendor: &'a str,
pub items: II,
pub pictures: IP,
}
impl<'a, II, IP> VorbisCommentsRef<'a, II, IP>
where
II: Iterator<Item = (&'a str, &'a str)>,
IP: Iterator<Item = (&'a Picture, PictureInformation)>,
{
#[allow(clippy::shadow_unrelated)]
fn write_to(&mut self, file: &mut File) -> Result<()> {
let probe = Probe::new(file).guess_file_type()?;
let f_ty = probe.file_type();
let file = probe.into_inner();
match f_ty {
Some(FileType::FLAC) => super::flac::write::write_to(file, self),
Some(FileType::Opus) => super::write::write(file, self, OGGFormat::Opus),
Some(FileType::Vorbis) => super::write::write(file, self, OGGFormat::Vorbis),
Some(FileType::Speex) => super::write::write(file, self, OGGFormat::Speex),
_ => Err(LoftyError::new(ErrorKind::UnsupportedTag)),
}
}
pub(crate) fn dump_to<W: Write>(&mut self, writer: &mut W) -> Result<()> {
let mut temp = Cursor::new(Vec::new());
super::write::create_pages(self, &mut temp, 0, false)?;
writer.write_all(temp.get_ref())?;
Ok(())
}
}
pub(crate) fn create_vorbis_comments_ref(
tag: &Tag,
) -> (
&str,
impl Iterator<Item = (&str, &str)>,
impl Iterator<Item = (&Picture, PictureInformation)>,
) {
let vendor = tag.get_string(&ItemKey::EncoderSoftware).unwrap_or("");
let items = tag.items.iter().filter_map(|i| match i.value() {
ItemValue::Text(val) | ItemValue::Locator(val) => i
.key()
.map_key(TagType::VorbisComments, true)
.map(|key| (key, val.as_str())),
_ => None,
});
let pictures = tag
.pictures
.iter()
.map(|p| (p, PictureInformation::default()));
(vendor, items, pictures)
}
#[cfg(test)]
mod tests {
use crate::ogg::VorbisComments;
use crate::{Tag, TagExt, TagType};
use std::io::Read;
fn read_tag(tag: &[u8]) -> VorbisComments {
let mut reader = std::io::Cursor::new(tag);
let mut parsed_tag = VorbisComments::default();
crate::ogg::read::read_comments(&mut reader, &mut parsed_tag).unwrap();
parsed_tag
}
#[test]
fn parse_vorbis_comments() {
let mut expected_tag = VorbisComments::default();
expected_tag.set_vendor(String::from("Lavf58.76.100"));
expected_tag.insert_item(String::from("ALBUM"), String::from("Baz album"), false);
expected_tag.insert_item(String::from("ARTIST"), String::from("Bar artist"), false);
expected_tag.insert_item(String::from("COMMENT"), String::from("Qux comment"), false);
expected_tag.insert_item(String::from("DATE"), String::from("1984"), false);
expected_tag.insert_item(String::from("GENRE"), String::from("Classical"), false);
expected_tag.insert_item(String::from("TITLE"), String::from("Foo title"), false);
expected_tag.insert_item(String::from("TRACKNUMBER"), String::from("1"), false);
let file_cont = crate::tag_utils::test_utils::read_path("tests/tags/assets/test.vorbis");
let parsed_tag = read_tag(&*file_cont);
assert_eq!(expected_tag, parsed_tag);
}
#[test]
fn vorbis_comments_re_read() {
let file_cont = crate::tag_utils::test_utils::read_path("tests/tags/assets/test.vorbis");
let mut parsed_tag = read_tag(&*file_cont);
parsed_tag.vendor = String::new();
let mut writer = vec![0, 0, 0, 0];
parsed_tag.dump_to(&mut writer).unwrap();
let temp_parsed_tag = read_tag(&*writer);
assert_eq!(parsed_tag, temp_parsed_tag);
}
#[test]
fn vorbis_comments_to_tag() {
let mut tag_bytes = Vec::new();
std::fs::File::open("tests/tags/assets/test.vorbis")
.unwrap()
.read_to_end(&mut tag_bytes)
.unwrap();
let mut reader = std::io::Cursor::new(&tag_bytes[..]);
let mut vorbis_comments = VorbisComments::default();
crate::ogg::read::read_comments(&mut reader, &mut vorbis_comments).unwrap();
let tag: Tag = vorbis_comments.into();
crate::tag_utils::test_utils::verify_tag(&tag, true, true);
}
#[test]
fn tag_to_vorbis_comments() {
let tag = crate::tag_utils::test_utils::create_tag(TagType::VorbisComments);
let vorbis_comments: VorbisComments = tag.into();
assert_eq!(vorbis_comments.get_item("TITLE"), Some("Foo title"));
assert_eq!(vorbis_comments.get_item("ARTIST"), Some("Bar artist"));
assert_eq!(vorbis_comments.get_item("ALBUM"), Some("Baz album"));
assert_eq!(vorbis_comments.get_item("COMMENT"), Some("Qux comment"));
assert_eq!(vorbis_comments.get_item("TRACKNUMBER"), Some("1"));
assert_eq!(vorbis_comments.get_item("GENRE"), Some("Classical"));
}
}