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
|
use std::io;
use std::convert::TryFrom;
use std::str::{from_utf8, Utf8Error};
use std::borrow::Borrow;
use crate::seq::{IV, Version, VersionDecodeError, IVMeta, BPMTable};
use quick_xml::events::{Event, BytesStart};
struct State<'s, B: io::BufRead> {
iv: &'s mut IV,
rdr: &'s mut quick_xml::Reader<B>,
}
#[derive(Debug)]
pub enum Error {
QXML(quick_xml::Error),
VersionDecodeError,
UTF8(Utf8Error),
Unexpected { scope: Scope, event: String },
}
#[derive(Debug, Clone, Copy, Hash)]
pub enum Scope {
TopLevel,
}
impl From<quick_xml::Error> for Error {
fn from(t: quick_xml::Error) -> Self {
Error::QXML(t)
}
}
impl From<VersionDecodeError> for Error {
fn from(v: VersionDecodeError) -> Self {
Error::VersionDecodeError
}
}
impl From<Utf8Error> for Error {
fn from(e: Utf8Error) -> Self {
Error::UTF8(e)
}
}
pub fn read<R: io::Read>(source: R) -> Result<IV, Error> {
let mut output: IV = Default::default();
let mut reader = quick_xml::Reader::from_reader(
io::BufReader::new(source)
);
let mut state = State {
iv: &mut output,
rdr: &mut reader,
};
read_toplevel(&mut state)?;
Ok(output)
}
const IV_NAME: &[u8] = b"iv";
const IV_VERSION: &[u8] = b"version";
const IV_SOURCE: &[u8] = b"src";
fn read_toplevel<'s, B: io::BufRead>(state: &mut State<'s, B>) -> Result<(), Error> {
let mut buffer: Vec<u8> = Vec::new();
loop {
match state.rdr.read_event(&mut buffer)? {
Event::Decl(_) => (), // Don't care
Event::Start(bs) => {
match_iv(state, bs, false);
break;
},
Event::Empty(bs) => {
match_iv(state, bs, true);
break;
},
ev => return Err(Error::Unexpected {
scope: Scope::TopLevel,
event: format!("{:?}", ev),
}),
}
}
Ok(())
}
fn match_iv<'s, 'a, B: io::BufRead>(state: &mut State<'s, B>, bs: BytesStart<'a>, empty: bool) -> Result<(), Error> {
if bs.name() != IV_NAME {
return Err(Error::Unexpected {
scope: Scope::TopLevel,
event: format!("start tag: {:?}", bs.name()),
});
}
for attr in bs.attributes() {
let attr = attr?;
match attr.key {
key if key == IV_VERSION => {
let value = attr.unescaped_value()?;
state.iv.version =
Version::try_from(value.borrow())?;
},
key if key == IV_SOURCE => {
state.iv.source =
Some(from_utf8(
attr.unescaped_value()?.borrow()
)?.into());
},
_ => (),
}
}
if !empty { read_iv(state)?; }
Ok(())
}
const META_NAME: &[u8] = b"meta";
const STREAMS_NAME: &[u8] = b"streams";
fn read_iv<'s, B: io::BufRead>(state: &mut State<'s, B>) -> Result<(), Error> {
let mut buffer: Vec<u8> = Vec::new();
loop {
match state.rdr.read_event(&mut buffer)? {
Event::Start(bs) => {
match_in_iv(state, bs, false);
},
Event::Empty(bs) => {
match_in_iv(state, bs, true);
},
Event::End(be) => {
if be.name() == IV_NAME {
break;
}
},
_ => (),
}
}
Ok(())
}
fn read_until<'s, B: io::BufRead>(state: &mut State<'s, B>, name: &[u8]) -> Result<(), Error> {
let mut buffer: Vec<u8> = Vec::new();
loop {
match state.rdr.read_event(&mut buffer)? {
Event::End(be) => {
if be.name() == name {
return Ok(());
}
}
_ => (),
}
}
}
fn match_in_iv<'s, 'a, B: io::BufRead>(state: &mut State<'s, B>, bs: BytesStart<'a>, empty: bool) -> Result<(), Error> {
match bs.name() {
nm if nm == META_NAME => {
if !empty { read_meta(state)?; }
},
nm if nm == STREAMS_NAME => {
if !empty { read_streams(state)?; }
},
nm => {
if !empty { read_until(state, nm.borrow())?; }
}
}
Ok(())
}
fn read_meta<'s, B: io::BufRead>(state: &mut State<'s, B>) -> Result<(), Error> {
todo!()
}
fn read_streams<'s, B: io::BufRead>(state: &mut State<'s, B>) -> Result<(), Error> {
todo!()
}
|