parity-wasm/src/elements/section.rs

159 lines
4.3 KiB
Rust
Raw Normal View History

2017-03-29 18:16:58 +03:00
use std::io;
2017-03-30 20:55:25 +03:00
use super::{Deserialize, Unparsed, Error, VarUint7, VarUint32, CountedList, ImportEntry};
2017-03-29 23:13:54 +03:00
use super::types::Type;
2017-03-29 18:16:58 +03:00
2017-03-29 23:13:54 +03:00
pub enum Section {
Unparsed {
id: u8,
payload: Vec<u8>,
},
Custom(Vec<u8>),
Type(TypeSection),
2017-03-30 20:55:25 +03:00
Import(ImportSection),
2017-03-30 23:23:54 +03:00
Function(FunctionsSection),
2017-03-29 18:16:58 +03:00
}
impl Deserialize for Section {
type Error = Error;
fn deserialize<R: io::Read>(reader: &mut R) -> Result<Self, Self::Error> {
2017-03-29 19:40:51 +03:00
let id = match VarUint7::deserialize(reader) {
// todo: be more selective detecting no more section
Err(_) => { return Err(Error::UnexpectedEof); },
Ok(id) => id,
};
2017-03-29 23:13:54 +03:00
Ok(
match id.into() {
0 => {
Section::Custom(Unparsed::deserialize(reader)?.into())
},
1 => {
Section::Type(TypeSection::deserialize(reader)?)
},
2017-03-30 20:55:25 +03:00
2 => {
Section::Import(ImportSection::deserialize(reader)?)
},
2017-03-30 23:23:54 +03:00
3 => {
Section::Function(FunctionsSection::deserialize(reader)?)
},
2017-03-29 23:13:54 +03:00
_ => {
Section::Unparsed { id: id.into(), payload: Unparsed::deserialize(reader)?.into() }
}
}
)
2017-03-29 18:16:58 +03:00
}
2017-03-29 23:13:54 +03:00
}
2017-03-30 20:55:25 +03:00
pub struct TypeSection(Vec<Type>);
2017-03-29 23:13:54 +03:00
impl TypeSection {
2017-03-30 20:55:25 +03:00
pub fn types(&self) -> &[Type] {
&self.0
2017-03-29 23:13:54 +03:00
}
}
impl Deserialize for TypeSection {
2017-03-30 20:55:25 +03:00
type Error = Error;
2017-03-29 23:13:54 +03:00
fn deserialize<R: io::Read>(reader: &mut R) -> Result<Self, Self::Error> {
// todo: maybe use reader.take(section_length)
let _section_length = VarUint32::deserialize(reader)?;
let types: Vec<Type> = CountedList::deserialize(reader)?.into_inner();
2017-03-30 20:55:25 +03:00
Ok(TypeSection(types))
}
}
pub struct ImportSection(Vec<ImportEntry>);
impl ImportSection {
pub fn entries(&self) -> &[ImportEntry] {
&self.0
}
}
impl Deserialize for ImportSection {
type Error = Error;
fn deserialize<R: io::Read>(reader: &mut R) -> Result<Self, Self::Error> {
// todo: maybe use reader.take(section_length)
let _section_length = VarUint32::deserialize(reader)?;
let entries: Vec<ImportEntry> = CountedList::deserialize(reader)?.into_inner();
Ok(ImportSection(entries))
2017-03-29 23:13:54 +03:00
}
}
2017-03-30 23:23:54 +03:00
/// Function signature (type reference)
pub struct Function(pub u32);
pub struct FunctionsSection(Vec<Function>);
impl FunctionsSection {
pub fn entries(&self) -> &[Function] {
&self.0
}
}
impl Deserialize for FunctionsSection {
type Error = Error;
fn deserialize<R: io::Read>(reader: &mut R) -> Result<Self, Self::Error> {
// todo: maybe use reader.take(section_length)
let _section_length = VarUint32::deserialize(reader)?;
let funcs: Vec<Function> = CountedList::<VarUint32>::deserialize(reader)?
.into_inner()
.into_iter()
.map(|f| Function(f.into()))
.collect();
Ok(FunctionsSection(funcs))
}
}
2017-03-29 23:13:54 +03:00
#[cfg(test)]
mod tests {
2017-03-30 20:55:25 +03:00
use super::super::{deserialize_buffer, deserialize_file};
use super::{Section, TypeSection, Type};
#[test]
fn import_section() {
let module = deserialize_file("./res/cases/v1/test5.wasm").expect("Should be deserialized");
let mut found = false;
for section in module.sections() {
match section {
&Section::Import(ref import_section) => {
assert_eq!(25, import_section.entries().len());
found = true
},
_ => { }
}
}
assert!(found, "There should be import section in test5.wasm");
}
2017-03-29 23:13:54 +03:00
#[test]
fn type_section() {
let payload = vec![
129u8, 0x80, 0x80, 0x80, 0x0,
// func 1
// form=1
0x01,
// param_count=1
129u8, 0x80, 0x80, 0x80, 0x0,
// first param
0x7e, // i64
// no return params
0u8
];
let type_section: TypeSection =
deserialize_buffer(payload).expect("type_section be deserialized");
assert_eq!(type_section.types().len(), 1);
match type_section.types()[0] {
2017-03-30 23:23:54 +03:00
Type::Function(_) => {}
2017-03-29 23:13:54 +03:00
}
}
2017-03-29 18:16:58 +03:00
}