#![no_std]
use core::mem::size_of;
use core::str;
pub trait NumToA<T> {
fn numtoa(self, base: T, string: &mut [u8]) -> &[u8];
fn numtoa_str(self, base: T, buf: &mut [u8]) -> &str;
}
const LOOKUP: &[u8] = b"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
const DEC_LOOKUP: &[u8; 200] = b"0001020304050607080910111213141516171819\
2021222324252627282930313233343536373839\
4041424344454647484950515253545556575859\
6061626364656667686970717273747576777879\
8081828384858687888990919293949596979899";
macro_rules! base_10 {
($number:ident, $index:ident, $string:ident) => {
while $number > 9999 {
let rem = ($number % 10000) as u16;
let (frst, scnd) = ((rem / 100) * 2, (rem % 100) * 2);
$string[$index-3..$index-1].copy_from_slice(&DEC_LOOKUP[frst as usize..frst as usize+2]);
$string[$index-1..$index+1].copy_from_slice(&DEC_LOOKUP[scnd as usize..scnd as usize+2]);
$index = $index.wrapping_sub(4);
$number /= 10000;
}
if $number > 999 {
let (frst, scnd) = (($number / 100) * 2, ($number % 100) * 2);
$string[$index-3..$index-1].copy_from_slice(&DEC_LOOKUP[frst as usize..frst as usize+2]);
$string[$index-1..$index+1].copy_from_slice(&DEC_LOOKUP[scnd as usize..scnd as usize+2]);
$index = $index.wrapping_sub(4);
} else if $number > 99 {
let section = ($number as u16 / 10) * 2;
$string[$index-2..$index].copy_from_slice(&DEC_LOOKUP[section as usize..section as usize+2]);
$string[$index] = LOOKUP[($number % 10) as usize];
$index = $index.wrapping_sub(3);
} else if $number > 9 {
$number *= 2;
$string[$index-1..$index+1].copy_from_slice(&DEC_LOOKUP[$number as usize..$number as usize+2]);
$index = $index.wrapping_sub(2);
} else {
$string[$index] = LOOKUP[$number as usize];
$index = $index.wrapping_sub(1);
}
}
}
macro_rules! impl_unsized_numtoa_for {
($t:ty) => {
impl NumToA<$t> for $t {
fn numtoa(mut self, base: $t, string: &mut [u8]) -> &[u8] {
if cfg!(debug_assertions) {
if base == 10 {
match size_of::<$t>() {
2 => debug_assert!(string.len() >= 5, "u16 base 10 conversions require at least 5 bytes"),
4 => debug_assert!(string.len() >= 10, "u32 base 10 conversions require at least 10 bytes"),
8 => debug_assert!(string.len() >= 20, "u64 base 10 conversions require at least 20 bytes"),
16 => debug_assert!(string.len() >= 39, "u128 base 10 conversions require at least 39 bytes"),
_ => unreachable!()
}
}
}
let mut index = string.len() - 1;
if self == 0 {
string[index] = b'0';
return &string[index..];
}
if base == 10 {
base_10!(self, index, string);
} else {
while self != 0 {
let rem = self % base;
string[index] = LOOKUP[rem as usize];
index = index.wrapping_sub(1);
self /= base;
}
}
&string[index.wrapping_add(1)..]
}
fn numtoa_str(self, base: $t, buf: &mut [u8]) -> &str {
unsafe { str::from_utf8_unchecked(self.numtoa(base, buf)) }
}
}
}
}
macro_rules! impl_sized_numtoa_for {
($t:ty) => {
impl NumToA<$t> for $t {
fn numtoa(mut self, base: $t, string: &mut [u8]) -> &[u8] {
if cfg!(debug_assertions) {
if base == 10 {
match size_of::<$t>() {
2 => debug_assert!(string.len() >= 6, "i16 base 10 conversions require at least 6 bytes"),
4 => debug_assert!(string.len() >= 11, "i32 base 10 conversions require at least 11 bytes"),
8 => debug_assert!(string.len() >= 19, "i64 base 10 conversions require at least 19 bytes"),
16 => debug_assert!(string.len() >= 39, "i128 base 10 conversions require at least 39 bytes"),
_ => unreachable!()
}
}
}
let mut index = string.len() - 1;
let mut is_negative = false;
if self < 0 {
is_negative = true;
self = match self.checked_abs() {
Some(value) => value,
None => {
let value = <$t>::max_value();
string[index] = LOOKUP[((value % base + 1) % base) as usize];
index -= 1;
value / base + ((value % base == base - 1) as $t)
}
};
} else if self == 0 {
string[index] = b'0';
return &string[index..];
}
if base == 10 {
base_10!(self, index, string);
} else {
while self != 0 {
let rem = self % base;
string[index] = LOOKUP[rem as usize];
index = index.wrapping_sub(1);
self /= base;
}
}
if is_negative {
string[index] = b'-';
index = index.wrapping_sub(1);
}
&string[index.wrapping_add(1)..]
}
fn numtoa_str(self, base: $t, buf: &mut [u8]) -> &str {
unsafe { str::from_utf8_unchecked(self.numtoa(base, buf)) }
}
}
}
}
impl_sized_numtoa_for!(i16);
impl_sized_numtoa_for!(i32);
impl_sized_numtoa_for!(i64);
impl_sized_numtoa_for!(i128);
impl_sized_numtoa_for!(isize);
impl_unsized_numtoa_for!(u16);
impl_unsized_numtoa_for!(u32);
impl_unsized_numtoa_for!(u64);
impl_unsized_numtoa_for!(u128);
impl_unsized_numtoa_for!(usize);
impl NumToA<i8> for i8 {
fn numtoa(mut self, base: i8, string: &mut [u8]) -> &[u8] {
if cfg!(debug_assertions) {
if base == 10 {
debug_assert!(string.len() >= 4, "i8 conversions need at least 4 bytes");
}
}
let mut index = string.len() - 1;
let mut is_negative = false;
if self < 0 {
is_negative = true;
self = match self.checked_abs() {
Some(value) => value,
None => {
let value = <i8>::max_value();
string[index] = LOOKUP[((value % base + 1) % base) as usize];
index -= 1;
value / base + ((value % base == base - 1) as i8)
}
};
} else if self == 0 {
string[index] = b'0';
return &string[index..];
}
if base == 10 {
if self > 99 {
let section = (self / 10) * 2;
string[index-2..index].copy_from_slice(&DEC_LOOKUP[section as usize..section as usize+2]);
string[index] = LOOKUP[(self % 10) as usize];
index = index.wrapping_sub(3);
} else if self > 9 {
let idx = self as usize * 2;
string[index-1..index+1].copy_from_slice(&DEC_LOOKUP[idx..idx+2]);
index = index.wrapping_sub(2);
} else {
string[index] = LOOKUP[self as usize];
index = index.wrapping_sub(1);
}
} else {
while self != 0 {
let rem = self % base;
string[index] = LOOKUP[rem as usize];
index = index.wrapping_sub(1);
self /= base;
}
}
if is_negative {
string[index] = b'-';
index = index.wrapping_sub(1);
}
&string[index.wrapping_add(1)..]
}
fn numtoa_str(self, base: Self, buf: &mut [u8]) -> &str {
unsafe { str::from_utf8_unchecked(self.numtoa(base, buf)) }
}
}
impl NumToA<u8> for u8 {
fn numtoa(mut self, base: u8, string: &mut [u8]) -> &[u8] {
if cfg!(debug_assertions) {
if base == 10 {
debug_assert!(string.len() >= 3, "u8 conversions need at least 3 bytes");
}
}
let mut index = string.len() - 1;
if self == 0 {
string[index] = b'0';
return &string[index..];
}
if base == 10 {
if self > 99 {
let section = (self / 10) * 2;
string[index-2..index].copy_from_slice(&DEC_LOOKUP[section as usize..section as usize+2]);
string[index] = LOOKUP[(self % 10) as usize];
index = index.wrapping_sub(3);
} else if self > 9 {
self *= 2;
string[index-1..index+1].copy_from_slice(&DEC_LOOKUP[self as usize..self as usize+2]);
index = index.wrapping_sub(2);
} else {
string[index] = LOOKUP[self as usize];
index = index.wrapping_sub(1);
}
} else {
while self != 0 {
let rem = self % base;
string[index] = LOOKUP[rem as usize];
index = index.wrapping_sub(1);
self /= base;
}
}
&string[index.wrapping_add(1)..]
}
fn numtoa_str(self, base: Self, buf: &mut [u8]) -> &str {
unsafe { str::from_utf8_unchecked(self.numtoa(base, buf)) }
}
}
#[test]
fn str_convenience() {
let mut buffer = [0u8; 20];
assert_eq!("256123", 256123.numtoa_str(10, &mut buffer));
}
#[test]
#[should_panic]
fn base10_u8_array_too_small() {
let mut buffer = [0u8; 2];
let _ = 0u8.numtoa(10, &mut buffer);
}
#[test]
fn base10_u8_array_just_right() {
let mut buffer = [0u8; 3];
let _ = 0u8.numtoa(10, &mut buffer);
}
#[test]
#[should_panic]
fn base10_i8_array_too_small() {
let mut buffer = [0u8; 3];
let _ = 0i8.numtoa(10, &mut buffer);
}
#[test]
fn base10_i8_array_just_right() {
let mut buffer = [0u8; 4];
assert_eq!((-127i8).numtoa(10, &mut buffer), b"-127");
}
#[test]
#[should_panic]
fn base10_i16_array_too_small() {
let mut buffer = [0u8; 5];
let _ = 0i16.numtoa(10, &mut buffer);
}
#[test]
fn base10_i16_array_just_right() {
let mut buffer = [0u8; 6];
assert_eq!((-12768i16).numtoa(10, &mut buffer), b"-12768");
}
#[test]
#[should_panic]
fn base10_u16_array_too_small() {
let mut buffer = [0u8; 4];
let _ = 0u16.numtoa(10, &mut buffer);
}
#[test]
fn base10_u16_array_just_right() {
let mut buffer = [0u8; 5];
let _ = 0u16.numtoa(10, &mut buffer);
}
#[test]
#[should_panic]
fn base10_i32_array_too_small() {
let mut buffer = [0u8; 10];
let _ = 0i32.numtoa(10, &mut buffer);
}
#[test]
fn base10_i32_array_just_right() {
let mut buffer = [0u8; 11];
let _ = 0i32.numtoa(10, &mut buffer);
}
#[test]
#[should_panic]
fn base10_u32_array_too_small() {
let mut buffer = [0u8; 9];
let _ = 0u32.numtoa(10, &mut buffer);
}
#[test]
fn base10_u32_array_just_right() {
let mut buffer = [0u8; 10];
let _ = 0u32.numtoa(10, &mut buffer);
}
#[test]
#[should_panic]
fn base10_i64_array_too_small() {
let mut buffer = [0u8; 18];
let _ = 0i64.numtoa(10, &mut buffer);
}
#[test]
fn base10_i64_array_just_right() {
let mut buffer = [0u8; 19];
let _ = 0i64.numtoa(10, &mut buffer);
}
#[test]
#[should_panic]
fn base10_u64_array_too_small() {
let mut buffer = [0u8; 19];
let _ = 0u64.numtoa(10, &mut buffer);
}
#[test]
fn base10_u64_array_just_right() {
let mut buffer = [0u8; 20];
let _ = 0u64.numtoa(10, &mut buffer);
}
#[test]
fn base10_i8_all() {
let mut buffer = [0u8; 4];
for i in i8::MIN..i8::MAX {
let _ = i.numtoa(10, &mut buffer);
}
}
#[test]
fn base10_u8_all() {
let mut buffer = [0u8; 3];
for i in u8::MIN..u8::MAX {
let _ = i.numtoa(10, &mut buffer);
}
}
#[test]
#[should_panic]
fn base10_i128_array_too_small() {
let mut buffer = [0u8; 38];
let _ = 0i128.numtoa(10, &mut buffer);
}
#[test]
fn base10_i128_array_just_right() {
let mut buffer = [0u8; 39];
let _ = 0i128.numtoa(10, &mut buffer);
}
#[test]
#[should_panic]
fn base10_u128_array_too_small() {
let mut buffer = [0u8; 38];
let _ = 0u128.numtoa(10, &mut buffer);
}
#[test]
fn base10_u128_array_just_right() {
let mut buffer = [0u8; 39];
let _ = 0u128.numtoa(10, &mut buffer);
}
#[test]
fn base8_min_signed_number() {
let mut buffer = [0u8; 50];
assert_eq!((-128i8).numtoa(8, &mut buffer), b"-200");
assert_eq!((-32768i16).numtoa(8, &mut buffer), b"-100000");
assert_eq!((-2147483648i32).numtoa(8, &mut buffer), b"-20000000000");
assert_eq!((-9223372036854775808i64).numtoa(8, &mut buffer), b"-1000000000000000000000");
assert_eq!((i128::MIN).numtoa(8, &mut buffer), b"-2000000000000000000000000000000000000000000");
}
#[test]
fn base16_min_signed_number() {
let mut buffer = [0u8; 40];
assert_eq!((-128i8).numtoa(16, &mut buffer), b"-80");
assert_eq!((-32768i16).numtoa(16, &mut buffer), b"-8000");
assert_eq!((-2147483648i32).numtoa(16, &mut buffer), b"-80000000");
assert_eq!((-9223372036854775808i64).numtoa(16, &mut buffer), b"-8000000000000000");
assert_eq!((i128::MIN).numtoa(16, &mut buffer), b"-80000000000000000000000000000000");
}