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::*;
#[derive(Clone, Debug, Eq, PartialEq)]
pub(super) enum Content<'a> {
Atoms(Vec<Atom<'a>>),
AtomDataRef(&'a [AtomData]),
RawData(Data),
TypedData(Data),
Mp4Audio(Mp4aInfo),
MovieHeader(MvhdInfo),
Empty,
}
impl Default for Content<'_> {
fn default() -> Self {
Self::Empty
}
}
impl<'a> Content<'a> {
pub fn atom(atom: Atom<'a>) -> Self {
Self::Atoms(vec![atom])
}
pub fn data_atom_with(data: Data) -> Self {
Self::atom(Atom::data_atom_with(data))
}
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,
}
}
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(),
}
}
pub fn child(&self, ident: Fourcc) -> Option<&Atom<'a>> {
self.atoms().find(|a| a.ident == ident)
}
pub fn take_child(self, ident: Fourcc) -> Option<Atom<'a>> {
self.into_atoms().find(|a| a.ident == ident)
}
pub fn data(&self) -> Option<&Data> {
match self {
Self::TypedData(d) => Some(d),
Self::RawData(d) => Some(d),
_ => None,
}
}
pub fn take_data(self) -> Option<Data> {
match self {
Self::TypedData(d) => Some(d),
Self::RawData(d) => Some(d),
_ => None,
}
}
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(())
}
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub(super) enum ContentT {
Atoms(Vec<AtomT>),
RawData(u32),
TypedData,
Mp4Audio,
MovieHeader,
Ignore,
Empty,
}
impl Default for ContentT {
fn default() -> Self {
Self::Empty
}
}
impl ContentT {
pub const fn atoms_t() -> Self {
Self::Atoms(Vec::new())
}
pub fn atom_t(atom: AtomT) -> Self {
Self::Atoms(vec![atom])
}
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(),
));
}
};
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
}
})
}
}