use crate::prelude::*;
use crate::{BinaryReader, Result, Subsection, Subsections, SymbolFlags};
use core::ops::Range;
pub type Dylink0SectionReader<'a> = Subsections<'a, Dylink0Subsection<'a>>;
const WASM_DYLINK_MEM_INFO: u8 = 1;
const WASM_DYLINK_NEEDED: u8 = 2;
const WASM_DYLINK_EXPORT_INFO: u8 = 3;
const WASM_DYLINK_IMPORT_INFO: u8 = 4;
#[derive(Debug, Copy, Clone)]
pub struct MemInfo {
pub memory_size: u32,
pub memory_alignment: u32,
pub table_size: u32,
pub table_alignment: u32,
}
#[allow(missing_docs)]
#[derive(Debug)]
pub struct ExportInfo<'a> {
pub name: &'a str,
pub flags: SymbolFlags,
}
#[allow(missing_docs)]
#[derive(Debug)]
pub struct ImportInfo<'a> {
pub module: &'a str,
pub field: &'a str,
pub flags: SymbolFlags,
}
#[derive(Debug)]
#[allow(missing_docs)]
pub enum Dylink0Subsection<'a> {
MemInfo(MemInfo),
Needed(Vec<&'a str>),
ExportInfo(Vec<ExportInfo<'a>>),
ImportInfo(Vec<ImportInfo<'a>>),
Unknown {
ty: u8,
data: &'a [u8],
range: Range<usize>,
},
}
impl<'a> Subsection<'a> for Dylink0Subsection<'a> {
fn from_reader(id: u8, mut reader: BinaryReader<'a>) -> Result<Self> {
let data = reader.remaining_buffer();
let offset = reader.original_position();
Ok(match id {
WASM_DYLINK_MEM_INFO => Self::MemInfo(MemInfo {
memory_size: reader.read_var_u32()?,
memory_alignment: reader.read_var_u32()?,
table_size: reader.read_var_u32()?,
table_alignment: reader.read_var_u32()?,
}),
WASM_DYLINK_NEEDED => Self::Needed(
(0..reader.read_var_u32()?)
.map(|_| reader.read_string())
.collect::<Result<_, _>>()?,
),
WASM_DYLINK_EXPORT_INFO => Self::ExportInfo(
(0..reader.read_var_u32()?)
.map(|_| {
Ok(ExportInfo {
name: reader.read_string()?,
flags: reader.read()?,
})
})
.collect::<Result<_, _>>()?,
),
WASM_DYLINK_IMPORT_INFO => Self::ImportInfo(
(0..reader.read_var_u32()?)
.map(|_| {
Ok(ImportInfo {
module: reader.read_string()?,
field: reader.read_string()?,
flags: reader.read()?,
})
})
.collect::<Result<_, _>>()?,
),
ty => Self::Unknown {
ty,
data,
range: offset..offset + data.len(),
},
})
}
}