Compare commits

...

2 commits

Author SHA1 Message Date
73d291a477 fix: split-numbers test solutions were wrong #76
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m54s
2024-05-12 17:20:57 +02:00
9da3c584cd refactor: add doc comment for split numbers and change order to msb first #76 2024-05-12 17:20:54 +02:00
2 changed files with 42 additions and 6 deletions

View file

@ -3,9 +3,24 @@
//! Sometimes, you need a large integer in the form of many bytes, so split into [u8]. //! Sometimes, you need a large integer in the form of many bytes, so split into [u8].
//! Rust provides //! Rust provides
/// split an integer into it's bytes, ignoring those bytes that would be all zero.
/// Split unsigned integers into a [Vec] of [u8]s
/// ///
/// If the integer is zero, the Vec contains a single null byte. /// Say you have the [u32] 1717 (binary: `00000000 00000000 00000110 10110101 `). This number would
/// be splitted to `vec![0b00000110, 0b10110101]`.
///
/// The 0 bytes of the numbers will be discarded (unless the number is 0, then the Vec contains a
/// single Null byte.) and the remaining parts of the numbers are inserted into a Vec as [u8].
///
/// # Examples
///
/// ```
/// # use libpt_bintols::split_numbers::*;
///
/// let x: u32 = 1717;
///
/// assert_eq!(unsigned_to_vec(x), vec![0b00000110, 0b10110101]);
/// ```
pub fn unsigned_to_vec<T>(num: T) -> Vec<u8> pub fn unsigned_to_vec<T>(num: T) -> Vec<u8>
where where
u128: std::convert::From<T> u128: std::convert::From<T>
@ -19,5 +34,6 @@ where
buf.push(num as u8); buf.push(num as u8);
num >>= 8; num >>= 8;
} }
buf.reverse();
buf buf
} }

View file

@ -2,16 +2,25 @@ use libpt_bintols::split_numbers::*;
#[test] #[test]
fn split_u128() { fn split_u128() {
let source = [16, 255, 256, 0, u128::MAX, u64::MAX as u128]; let source = [
16,
255,
256,
0,
u128::MAX,
u64::MAX as u128,
u64::MAX as u128 + 1,
];
let correct = [ let correct = [
vec![16], vec![16],
vec![255], vec![255],
vec![255, 1], vec![1, 0],
vec![0], vec![0],
vec![ vec![
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
], ],
vec![255, 255, 255, 255, 255, 255, 255, 255], vec![255, 255, 255, 255, 255, 255, 255, 255],
vec![1, 0, 0, 0, 0, 0, 0, 0, 0],
]; ];
for (i, n) in source.iter().enumerate() { for (i, n) in source.iter().enumerate() {
assert_eq!(unsigned_to_vec(*n), correct[i]); assert_eq!(unsigned_to_vec(*n), correct[i]);
@ -20,14 +29,25 @@ fn split_u128() {
#[test] #[test]
fn split_u64() { fn split_u64() {
let source = [16, 255, 256, 0, u64::MAX, u32::MAX as u64]; let source = [
16,
255,
256,
0,
u64::MAX,
u32::MAX as u64,
0b1_00000001,
0b10011011_10110101_11110000_00110011,
];
let correct = [ let correct = [
vec![16], vec![16],
vec![255], vec![255],
vec![255, 1], vec![1, 0],
vec![0], vec![0],
vec![255, 255, 255, 255, 255, 255, 255, 255], vec![255, 255, 255, 255, 255, 255, 255, 255],
vec![255, 255, 255, 255], vec![255, 255, 255, 255],
vec![1, 1],
vec![0b10011011, 0b10110101, 0b11110000, 0b00110011],
]; ];
for (i, n) in source.iter().enumerate() { for (i, n) in source.iter().enumerate() {
assert_eq!(unsigned_to_vec(*n), correct[i]); assert_eq!(unsigned_to_vec(*n), correct[i]);