use super::data_information::{self};
use super::data_record::DataRecord;
use super::DataRecords;
#[derive(Debug, PartialEq)]
pub enum DataRecordError {
DataInformationError(data_information::DataInformationError),
InsufficientData,
}
#[derive(Debug, PartialEq)]
pub enum VariableUserDataError {
DataInformationError(DataRecordError),
}
impl From<DataRecordError> for VariableUserDataError {
fn from(error: DataRecordError) -> Self {
VariableUserDataError::DataInformationError(error)
}
}
impl TryFrom<&[u8]> for DataRecords {
type Error = VariableUserDataError;
fn try_from(data: &[u8]) -> Result<DataRecords, VariableUserDataError> {
let mut records = DataRecords::new();
let mut offset = 0;
let mut _more_records_follow = false;
while offset < data.len() {
match data[offset] {
0x0F => {
offset = data.len();
}
0x1F => {
_more_records_follow = true;
offset = data.len();
}
0x2F => {
offset += 1;
}
_ => {
let record = DataRecord::try_from(&data[offset..])?;
offset += record.get_size();
let _res = records.add_record(record);
}
}
}
Ok(records)
}
}
mod tests {
#[test]
fn test_parse_variable_data() {
use crate::user_data::DataRecords;
let data = &[0x03, 0x13, 0x15, 0x31, 0x00];
let _result = DataRecords::try_from(data.as_slice());
}
#[test]
fn test_parse_variable_data2() {
let _data = &[0x01, 0xFD, 0x1B, 0x00];
}
#[cfg(feature = "plaintext-before-extension")]
#[test]
fn test_parse_variable_data3() {
use crate::user_data::DataRecords;
let data = &[0x02, 0xFC, 0x03, 0x48, 0x52, 0x25, 0x74, 0x44, 0x0D];
let _data = DataRecords::try_from(data.as_slice());
}
#[cfg(not(feature = "plaintext-before-extension"))]
#[test]
fn test_parse_variable_data3() {
use crate::user_data::DataRecords;
let data = &[0x02, 0xFC, 0x74, 0x03, 0x48, 0x52, 0x25, 0x44, 0x0D];
let _data = DataRecords::try_from(data.as_slice());
}
fn _test_parse_variable_data2() {
let _data = &[0xDA, 0x02, 0x3B, 0x13, 0x01];
}
fn _test_parse_variable_data3() {
let _data = &[0x8B, 0x60, 0x04, 0x37, 0x18, 0x02];
}
}