use crate::common::{BitArray, Result};
use super::{AI01decoder, AI01weightDecoder, AbstractExpandedDecoder, GeneralAppIdDecoder};
pub struct AI013x0xDecoder<'a> {
information: &'a BitArray,
decoder: GeneralAppIdDecoder<'a>,
addWeightCodeFunction: fn(&mut String, u32),
checkWeightFunction: fn(u32) -> u32,
}
impl AI01weightDecoder for AI013x0xDecoder<'_> {
fn addWeightCode(&self, buf: &mut String, weight: u32) {
(self.addWeightCodeFunction)(buf, weight)
}
fn checkWeight(&self, weight: u32) -> u32 {
(self.checkWeightFunction)(weight)
}
}
impl AbstractExpandedDecoder for AI013x0xDecoder<'_> {
fn parseInformation(&mut self) -> Result<String> {
if self.information.get_size()
!= Self::HEADER_SIZE + Self::GTIN_SIZE as usize + Self::WEIGHT_SIZE
{
return Err(crate::Exceptions::NOT_FOUND);
}
let mut buf = String::new();
self.encodeCompressedGtin(&mut buf, Self::HEADER_SIZE);
self.encodeCompressedWeight(
&mut buf,
Self::HEADER_SIZE + Self::GTIN_SIZE as usize,
Self::WEIGHT_SIZE as u32,
);
Ok(buf)
}
fn getGeneralDecoder(&self) -> &GeneralAppIdDecoder {
&self.decoder
}
}
impl AI01decoder for AI013x0xDecoder<'_> {}
impl<'a> AI013x0xDecoder<'_> {
const HEADER_SIZE: usize = 4 + 1;
const WEIGHT_SIZE: usize = 15;
pub fn new(
information: &'a BitArray,
addWeightCodeFunction: fn(&mut String, u32),
checkWeightFunction: fn(u32) -> u32,
) -> AI013x0xDecoder<'a> {
AI013x0xDecoder {
information,
decoder: GeneralAppIdDecoder::new(information),
addWeightCodeFunction,
checkWeightFunction,
}
}
}