/* * Copyright 2008 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // package com::google::zxing::datamatrix::decoder; /** *

Encapsulates a block of data within a Data Matrix Code. Data Matrix Codes may split their data into * multiple blocks, each of which is a unit of data and error-correction codewords. Each * is represented by an instance of this class.

* * @author bbrown@google.com (Brian Brown) */ struct DataBlock { let num_data_codewords: i32; let mut codewords: Vec; } impl DataBlock { fn new( num_data_codewords: i32, codewords: &Vec) -> DataBlock { let .numDataCodewords = num_data_codewords; let .codewords = codewords; } /** *

When Data Matrix Codes use multiple data blocks, they actually interleave the bytes of each of them. * That is, the first byte of data block 1 to n is written, then the second bytes, and so on. This * method will separate the data into original blocks.

* * @param rawCodewords bytes as read directly from the Data Matrix Code * @param version version of the Data Matrix Code * @return DataBlocks containing original bytes, "de-interleaved" from representation in the * Data Matrix Code */ fn get_data_blocks( raw_codewords: &Vec, version: &Version) -> Vec { // Figure out the number and size of data blocks used by this version let ec_blocks: Version.ECBlocks = version.get_e_c_blocks(); // First count the total number of data blocks let total_blocks: i32 = 0; let ec_block_array: Vec = ec_blocks.get_e_c_blocks(); for let ec_block: Version.ECB in ec_block_array { total_blocks += ec_block.get_count(); } // Now establish DataBlocks of the appropriate size and number of data codewords let mut result: [Option; total_blocks] = [None; total_blocks]; let num_result_blocks: i32 = 0; for let ec_block: Version.ECB in ec_block_array { { let mut i: i32 = 0; while i < ec_block.get_count() { { let num_data_codewords: i32 = ec_block.get_data_codewords(); let num_block_codewords: i32 = ec_blocks.get_e_c_codewords() + num_data_codewords; result[num_result_blocks += 1 !!!check!!! post increment] = DataBlock::new(num_data_codewords, : [i8; num_block_codewords] = [0; num_block_codewords]); } i += 1; } } } // All blocks have the same amount of data, except that the last n // (where n may be 0) have 1 less byte. Figure out where these start. // TODO(bbrown): There is only one case where there is a difference for Data Matrix for size 144 let longer_blocks_total_codewords: i32 = result[0].codewords.len(); //int shorterBlocksTotalCodewords = longerBlocksTotalCodewords - 1; let longer_blocks_num_data_codewords: i32 = longer_blocks_total_codewords - ec_blocks.get_e_c_codewords(); let shorter_blocks_num_data_codewords: i32 = longer_blocks_num_data_codewords - 1; // The last elements of result may be 1 element shorter for 144 matrix // first fill out as many elements as all of them have minus 1 let raw_codewords_offset: i32 = 0; { let mut i: i32 = 0; while i < shorter_blocks_num_data_codewords { { { let mut j: i32 = 0; while j < num_result_blocks { { result[j].codewords[i] = raw_codewords[raw_codewords_offset += 1 !!!check!!! post increment]; } j += 1; } } } i += 1; } } // Fill out the last data block in the longer ones let special_version: bool = version.get_version_number() == 24; let num_longer_blocks: i32 = if special_version { 8 } else { num_result_blocks }; { let mut j: i32 = 0; while j < num_longer_blocks { { result[j].codewords[longer_blocks_num_data_codewords - 1] = raw_codewords[raw_codewords_offset += 1 !!!check!!! post increment]; } j += 1; } } // Now add in error correction blocks let max: i32 = result[0].codewords.len(); { let mut i: i32 = longer_blocks_num_data_codewords; while i < max { { { let mut j: i32 = 0; while j < num_result_blocks { { let j_offset: i32 = if special_version { (j + 8) % num_result_blocks } else { j }; let i_offset: i32 = if special_version && j_offset > 7 { i - 1 } else { i }; result[j_offset].codewords[i_offset] = raw_codewords[raw_codewords_offset += 1 !!!check!!! post increment]; } j += 1; } } } i += 1; } } if raw_codewords_offset != raw_codewords.len() { throw IllegalArgumentException::new(); } return result; } fn get_num_data_codewords(&self) -> i32 { return self.num_data_codewords; } fn get_codewords(&self) -> Vec { return self.codewords; } }