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
use std::io::{Read, Seek, SeekFrom, Write};

use super::*;

/// An enum representing the different types of content an atom might have.
#[derive(Clone, Debug, Eq, PartialEq)]
pub(super) enum Content<'a> {
    /// A value containing a list of children atoms.
    Atoms(Vec<Atom<'a>>),
    /// A value containing a list of children atoms.
    AtomDataRef(&'a [AtomData]),
    /// A value containing raw data.
    RawData(Data),
    /// A value containing data defined by a
    /// [Table 3-5 Well-known data types](https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/Metadata/Metadata.html#//apple_ref/doc/uid/TP40000939-CH1-SW34)
    /// code.
    TypedData(Data),
    /// A value containing mp4 audio information.
    Mp4Audio(Mp4aInfo),
    /// A value containing mp4 audio information.
    MovieHeader(MvhdInfo),
    /// Empty content.
    Empty,
}

impl Default for Content<'_> {
    fn default() -> Self {
        Self::Empty
    }
}

impl<'a> Content<'a> {
    /// Creates new content of type [`Self::Atoms`] containing the atom.
    pub fn atom(atom: Atom<'a>) -> Self {
        Self::Atoms(vec![atom])
    }

    /// Creates new content of type [`Self::Atoms`] containing a data [`Atom`] with the data.
    pub fn data_atom_with(data: Data) -> Self {
        Self::atom(Atom::data_atom_with(data))
    }

    /// Returns the length in bytes.
    pub fn len(&self) -> u64 {
        match self {
            Self::Atoms(v) => v.iter().map(|a| a.len()).sum(),
            Self::AtomDataRef(v) => v.iter().map(|a| a.len()).sum(),
            Self::RawData(d) => d.len(),
            Self::TypedData(d) => 8 + d.len(),
            Self::Mp4Audio(_) => 0,
            Self::MovieHeader(_) => 0,
            Self::Empty => 0,
        }
    }

    /// Returns an iterator over the children atoms.
    pub fn atoms(&self) -> impl Iterator<Item = &Atom<'a>> {
        match self {
            Self::Atoms(v) => v.iter(),
            _ => [].iter(),
        }
    }

    pub fn into_atoms(self) -> impl Iterator<Item = Atom<'a>> {
        match self {
            Self::Atoms(v) => v.into_iter(),
            _ => Vec::new().into_iter(),
        }
    }

    /// Returns a reference to the first children atom matching the identifier, if present.
    pub fn child(&self, ident: Fourcc) -> Option<&Atom<'a>> {
        self.atoms().find(|a| a.ident == ident)
    }

    /// Consumes self and returns the first children atom matching the identifier, if present.
    pub fn take_child(self, ident: Fourcc) -> Option<Atom<'a>> {
        self.into_atoms().find(|a| a.ident == ident)
    }

    /// Return a data reference if `self` is of type [`Self::RawData`] or [`Self::TypedData`].
    pub fn data(&self) -> Option<&Data> {
        match self {
            Self::TypedData(d) => Some(d),
            Self::RawData(d) => Some(d),
            _ => None,
        }
    }

    /// Consumes self and returns data if `self` is of type [`Self::RawData`] or [`Self::TypedData`].
    pub fn take_data(self) -> Option<Data> {
        match self {
            Self::TypedData(d) => Some(d),
            Self::RawData(d) => Some(d),
            _ => None,
        }
    }

    /// Attempts to write the content to the writer.
    pub fn write_to(&self, writer: &mut impl Write) -> crate::Result<()> {
        match self {
            Self::Atoms(v) => {
                for a in v {
                    a.write_to(writer)?;
                }
            }
            Self::AtomDataRef(v) => {
                for a in *v {
                    a.write_to(writer)?;
                }
            }
            Self::RawData(d) => d.write_raw(writer)?,
            Self::TypedData(d) => d.write_typed(writer)?,
            Self::Mp4Audio(_) => {
                return Err(crate::Error::new(
                    crate::ErrorKind::UnwritableData,
                    "Mp4 audio information cannot be written".to_owned(),
                ))
            }
            Self::MovieHeader(_) => {
                return Err(crate::Error::new(
                    crate::ErrorKind::UnwritableData,
                    "Movie header information cannot be written".to_owned(),
                ))
            }
            Self::Empty => (),
        }

        Ok(())
    }
}

/// A template representing the different types of content an atom template might have.
#[derive(Clone, Debug, Eq, PartialEq)]
pub(super) enum ContentT {
    /// A value containing a list of children atom templates.
    Atoms(Vec<AtomT>),
    /// A template for raw data containing a datatype definded by
    /// [Table 3-5 Well-known data types](https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/Metadata/Metadata.html#//apple_ref/doc/uid/TP40000939-CH1-SW34)
    RawData(u32),
    /// A template representing typed data that is defined by a
    /// [Table 3-5 Well-known data types](https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/Metadata/Metadata.html#//apple_ref/doc/uid/TP40000939-CH1-SW34)
    /// code prior to the data parsed.
    TypedData,
    /// A template representing mp4 audio information.
    Mp4Audio,
    /// A template representing movie header information.
    MovieHeader,
    /// A template for ignoring all data inside.
    Ignore,
    /// Empty content.
    Empty,
}

impl Default for ContentT {
    fn default() -> Self {
        Self::Empty
    }
}

impl ContentT {
    /// Creates a new empty content template of type [`Self::Atoms`].
    pub const fn atoms_t() -> Self {
        Self::Atoms(Vec::new())
    }

    /// Creates a new content template of type [`Self::Atoms`] containing the atom template.
    pub fn atom_t(atom: AtomT) -> Self {
        Self::Atoms(vec![atom])
    }

    /// Attempts to parse corresponding content from the reader.
    pub fn parse<'a>(
        &self,
        reader: &mut (impl Read + Seek),
        len: u64,
    ) -> crate::Result<Content<'a>> {
        Ok(match self {
            Self::Atoms(v) => Content::Atoms(parse_atoms(reader, v, len)?),
            Self::RawData(d) => Content::RawData(data::parse_data(reader, *d, len)?),
            Self::TypedData => {
                if len >= 8 {
                    let datatype = match data::read_u32(reader) {
                        Ok(d) => d,
                        Err(e) => {
                            return Err(crate::Error::new(
                                e.kind,
                                "Error reading typed data head".to_owned(),
                            ));
                        }
                    };

                    // Skipping 4 byte locale indicator
                    reader.seek(SeekFrom::Current(4))?;

                    Content::TypedData(data::parse_data(reader, datatype, len - 8)?)
                } else {
                    return Err(crate::Error::new(
                        ErrorKind::Parsing,
                        "Typed data head to short".to_owned(),
                    ));
                }
            }
            Self::Mp4Audio => Content::Mp4Audio(Mp4aInfo::parse(reader, len)?),
            Self::MovieHeader => Content::MovieHeader(MvhdInfo::parse(reader, len)?),
            Self::Ignore => {
                reader.seek(SeekFrom::Current(len as i64))?;
                Content::Empty
            }
            Self::Empty => {
                if len != 0 {
                    return Err(crate::Error::new(
                        crate::ErrorKind::Parsing,
                        format!("Expected empty content found content of length: {}", len),
                    ));
                }
                Content::Empty
            }
        })
    }
}