oximedia-container 0.1.1

Container demuxer/muxer for OxiMedia
Documentation
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
//! High-level metadata editing API.
//!
//! Provides a convenient interface for reading and modifying metadata
//! in media files.

use oximedia_core::OxiResult;
use oximedia_io::FileSource;
use std::path::{Path, PathBuf};

use super::reader::{detect_format, FlacMetadataReader, MatroskaMetadataReader, MetadataReader};
use super::tags::{StandardTag, TagMap, TagValue};
use super::util::MediaSourceExt;
use super::writer::{
    FlacMetadataWriter, MatroskaMetadataWriter, MetadataWriter, OggMetadataWriter,
};
use crate::demux::Demuxer;
use crate::demux::MatroskaDemuxer;
use crate::ContainerFormat;

/// Metadata format detection result.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum MetadataFormat {
    /// FLAC uses Vorbis comments.
    Flac,
    /// Ogg (Vorbis, Opus) uses Vorbis comments.
    Ogg,
    /// Matroska/WebM uses native tags.
    Matroska,
    /// `WebM` (subset of Matroska).
    WebM,
}

impl From<ContainerFormat> for MetadataFormat {
    fn from(format: ContainerFormat) -> Self {
        match format {
            ContainerFormat::Flac => Self::Flac,
            ContainerFormat::Ogg => Self::Ogg,
            ContainerFormat::WebM => Self::WebM,
            _ => Self::Matroska, // Default fallback (includes Matroska)
        }
    }
}

/// A metadata editor for media files.
///
/// Provides high-level operations for reading and writing metadata tags.
///
/// # Example
///
/// ```ignore
/// use oximedia_container::metadata::MetadataEditor;
///
/// let mut editor = MetadataEditor::open("audio.flac").await?;
///
/// // Read existing tags
/// if let Some(title) = editor.get_text("TITLE") {
///     println!("Current title: {}", title);
/// }
///
/// // Modify tags
/// editor.set("TITLE", "New Title");
/// editor.set("ARTIST", "New Artist");
/// editor.remove("COMMENT");
///
/// // Save changes
/// editor.save().await?;
/// ```
pub struct MetadataEditor {
    /// Path to the media file.
    path: PathBuf,
    /// Detected metadata format.
    format: MetadataFormat,
    /// Current tag map.
    tags: TagMap,
    /// Whether tags have been modified.
    modified: bool,
}

impl MetadataEditor {
    /// Opens a media file for metadata editing.
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - The file cannot be opened
    /// - The format is not supported
    /// - Reading metadata fails
    pub async fn open(path: impl AsRef<Path>) -> OxiResult<Self> {
        let path = path.as_ref().to_path_buf();

        // Detect format
        let mut magic = [0u8; 8];
        let mut source_clone = FileSource::open(&path).await?;
        source_clone.read_exact(&mut magic).await?;

        let container_format = detect_format(&magic)?;
        let format = MetadataFormat::from(container_format);

        // Read metadata based on format
        let tags = match format {
            MetadataFormat::Flac => {
                let source = FileSource::open(&path).await?;
                FlacMetadataReader::read(source).await?
            }
            MetadataFormat::Ogg => {
                // For Ogg, we would need to use OggDemuxer
                // This is a simplified placeholder
                TagMap::new()
            }
            MetadataFormat::Matroska | MetadataFormat::WebM => {
                let source = FileSource::open(&path).await?;
                let mut demuxer = MatroskaDemuxer::new(source);
                demuxer.probe().await?;

                let tags = demuxer.tags();
                MatroskaMetadataReader::convert_tags(tags)
            }
        };

        Ok(Self {
            path,
            format,
            tags,
            modified: false,
        })
    }

    /// Returns the metadata format of the file.
    #[must_use]
    pub const fn format(&self) -> MetadataFormat {
        self.format
    }

    /// Returns true if tags have been modified.
    #[must_use]
    pub const fn is_modified(&self) -> bool {
        self.modified
    }

    /// Gets a tag value by key.
    #[must_use]
    pub fn get(&self, key: &str) -> Option<&TagValue> {
        self.tags.get(key)
    }

    /// Gets a text tag value by key.
    #[must_use]
    pub fn get_text(&self, key: &str) -> Option<&str> {
        self.tags.get_text(key)
    }

    /// Gets all values for a tag key.
    #[must_use]
    pub fn get_all(&self, key: &str) -> &[TagValue] {
        self.tags.get_all(key)
    }

    /// Gets a standard tag value.
    #[must_use]
    pub fn get_standard(&self, tag: StandardTag) -> Option<&TagValue> {
        self.tags.get_standard(tag)
    }

    /// Sets a tag value, replacing any existing values.
    pub fn set(&mut self, key: impl AsRef<str>, value: impl Into<TagValue>) {
        self.tags.set(key, value);
        self.modified = true;
    }

    /// Adds a tag value without removing existing values.
    pub fn add(&mut self, key: impl AsRef<str>, value: impl Into<TagValue>) {
        self.tags.add(key, value);
        self.modified = true;
    }

    /// Sets a standard tag value.
    pub fn set_standard(&mut self, tag: StandardTag, value: impl Into<TagValue>) {
        self.tags.set_standard(tag, value);
        self.modified = true;
    }

    /// Removes a tag and all its values.
    ///
    /// Returns true if the tag existed.
    pub fn remove(&mut self, key: &str) -> bool {
        let removed = self.tags.remove(key);
        if removed {
            self.modified = true;
        }
        removed
    }

    /// Clears all tags.
    pub fn clear(&mut self) {
        if !self.tags.is_empty() {
            self.tags.clear();
            self.modified = true;
        }
    }

    /// Returns an iterator over all tag keys.
    pub fn keys(&self) -> impl Iterator<Item = &str> {
        self.tags.keys()
    }

    /// Returns an iterator over all tag entries.
    pub fn iter(&self) -> impl Iterator<Item = (&str, &TagValue)> {
        self.tags.iter()
    }

    /// Returns a reference to the tag map.
    #[must_use]
    pub const fn tags(&self) -> &TagMap {
        &self.tags
    }

    /// Returns a mutable reference to the tag map.
    pub fn tags_mut(&mut self) -> &mut TagMap {
        self.modified = true;
        &mut self.tags
    }

    /// Saves metadata changes to the file.
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - The file cannot be opened for writing
    /// - Writing fails
    /// - The format doesn't support metadata writing
    pub async fn save(&mut self) -> OxiResult<()> {
        if !self.modified {
            return Ok(());
        }

        let mut source = FileSource::open(&self.path).await?;

        match self.format {
            MetadataFormat::Flac => {
                FlacMetadataWriter::write(&mut source, &self.tags).await?;
            }
            MetadataFormat::Ogg => {
                OggMetadataWriter::write(&mut source, &self.tags).await?;
            }
            MetadataFormat::Matroska | MetadataFormat::WebM => {
                MatroskaMetadataWriter::write(&mut source, &self.tags).await?;
            }
        }

        self.modified = false;
        Ok(())
    }

    /// Discards any unsaved changes and reloads metadata from the file.
    ///
    /// # Errors
    ///
    /// Returns an error if reading fails.
    pub async fn reload(&mut self) -> OxiResult<()> {
        let new_editor = Self::open(&self.path).await?;
        self.tags = new_editor.tags;
        self.modified = false;
        Ok(())
    }
}

/// Reads metadata from a file without creating an editor.
///
/// This is a convenience function for read-only metadata access.
///
/// # Errors
///
/// Returns an error if reading or parsing fails.
pub async fn read_metadata(path: impl AsRef<Path>) -> OxiResult<TagMap> {
    let editor = MetadataEditor::open(path).await?;
    Ok(editor.tags)
}

/// Writes metadata to a file.
///
/// This is a convenience function for updating metadata without
/// reading existing tags first.
///
/// # Errors
///
/// Returns an error if writing fails.
pub async fn write_metadata(path: impl AsRef<Path>, tags: &TagMap) -> OxiResult<()> {
    let mut editor = MetadataEditor::open(path).await?;
    editor.tags = tags.clone();
    editor.modified = true;
    editor.save().await
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_metadata_format_from_container_format() {
        assert_eq!(
            MetadataFormat::from(ContainerFormat::Flac),
            MetadataFormat::Flac
        );
        assert_eq!(
            MetadataFormat::from(ContainerFormat::Ogg),
            MetadataFormat::Ogg
        );
        assert_eq!(
            MetadataFormat::from(ContainerFormat::Matroska),
            MetadataFormat::Matroska
        );
        assert_eq!(
            MetadataFormat::from(ContainerFormat::WebM),
            MetadataFormat::WebM
        );
    }

    #[test]
    fn test_metadata_editor_modification_tracking() {
        let editor = MetadataEditor {
            path: PathBuf::from("test.flac"),
            format: MetadataFormat::Flac,
            tags: TagMap::new(),
            modified: false,
        };

        assert!(!editor.is_modified());
    }

    #[test]
    fn test_metadata_editor_set() {
        let mut editor = MetadataEditor {
            path: PathBuf::from("test.flac"),
            format: MetadataFormat::Flac,
            tags: TagMap::new(),
            modified: false,
        };

        editor.set("TITLE", "Test");
        assert!(editor.is_modified());
        assert_eq!(editor.get_text("TITLE"), Some("Test"));
    }

    #[test]
    fn test_metadata_editor_add() {
        let mut editor = MetadataEditor {
            path: PathBuf::from("test.flac"),
            format: MetadataFormat::Flac,
            tags: TagMap::new(),
            modified: false,
        };

        editor.add("ARTIST", "Artist 1");
        editor.add("ARTIST", "Artist 2");

        assert!(editor.is_modified());
        let artists = editor.get_all("ARTIST");
        assert_eq!(artists.len(), 2);
    }

    #[test]
    fn test_metadata_editor_remove() {
        let mut editor = MetadataEditor {
            path: PathBuf::from("test.flac"),
            format: MetadataFormat::Flac,
            tags: TagMap::new(),
            modified: false,
        };

        editor.set("TITLE", "Test");
        editor.modified = false; // Reset flag

        assert!(editor.remove("TITLE"));
        assert!(editor.is_modified());
        assert!(!editor.remove("TITLE"));
    }

    #[test]
    fn test_metadata_editor_clear() {
        let mut editor = MetadataEditor {
            path: PathBuf::from("test.flac"),
            format: MetadataFormat::Flac,
            tags: TagMap::new(),
            modified: false,
        };

        editor.set("TITLE", "Test");
        editor.set("ARTIST", "Test");
        editor.modified = false;

        editor.clear();
        assert!(editor.is_modified());
        assert!(editor.tags.is_empty());
    }

    #[test]
    fn test_metadata_editor_standard_tags() {
        let mut editor = MetadataEditor {
            path: PathBuf::from("test.flac"),
            format: MetadataFormat::Flac,
            tags: TagMap::new(),
            modified: false,
        };

        editor.set_standard(StandardTag::Title, "Test Title");
        assert_eq!(
            editor
                .get_standard(StandardTag::Title)
                .and_then(|v| v.as_text()),
            Some("Test Title")
        );
    }

    #[test]
    fn test_metadata_editor_iter() {
        let mut editor = MetadataEditor {
            path: PathBuf::from("test.flac"),
            format: MetadataFormat::Flac,
            tags: TagMap::new(),
            modified: false,
        };

        editor.set("TITLE", "Title");
        editor.set("ARTIST", "Artist");

        let entries: Vec<_> = editor.iter().collect();
        assert_eq!(entries.len(), 2);
    }

    #[test]
    fn test_metadata_editor_keys() {
        let mut editor = MetadataEditor {
            path: PathBuf::from("test.flac"),
            format: MetadataFormat::Flac,
            tags: TagMap::new(),
            modified: false,
        };

        editor.set("TITLE", "Title");
        editor.set("ARTIST", "Artist");

        let keys: Vec<_> = editor.keys().collect();
        assert_eq!(keys.len(), 2);
        assert!(keys.contains(&"TITLE"));
        assert!(keys.contains(&"ARTIST"));
    }
}