devela/text/fmt/num_to_str/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
// devela::text::fmt::num_to_str

#[cfg(test)]
mod tests;
#[allow(unused_imports, reason = "±unsafe")]
use crate::_core::str::{from_utf8, from_utf8_unchecked};

/// Converts a number into a string representation, storing it into a byte slice.
///
/// # Features
/// It makes use of the `unsafe_str` feature for faster unchecked conversion of
/// the resulting bytes to a string slice.
pub trait NumToStr<T> {
    /// Given a base for encoding and a mutable byte slice, write the number
    /// into the byte slice and return the indice where the inner string begins.
    /// The inner string can be extracted by slicing the byte slice from
    /// that indice.
    ///
    /// # Panics
    /// If the supplied buffer is smaller than the number of bytes needed to
    /// write the integer, this will panic. On debug builds, this function will
    /// perform a check on base 10 conversions to ensure that the input array
    /// is large enough to hold the largest possible value in digits.
    ///
    /// # Example
    /// ```
    /// use devela::text::NumToStr;
    /// use std::io::{self, Write};
    ///
    /// let stdout = io::stdout();
    /// let stdout = &mut io::stdout();
    ///
    /// // Allocate a buffer that will be reused in each iteration.
    /// let mut buffer = [0u8; 20];
    ///
    /// let number = 15325;
    /// let _ = stdout.write(number.to_bytes_base(10, &mut buffer));
    ///
    /// let number = 1241;
    /// let _ = stdout.write(number.to_bytes_base(10, &mut buffer));
    ///
    /// assert_eq!(12345.to_bytes_base(10, &mut buffer), b"12345");
    /// ```
    fn to_bytes_base(self, base: T, string: &mut [u8]) -> &[u8];

    /// Convenience method for quickly getting a string from the input's array buffer.
    fn to_str_base(self, base: T, buf: &mut [u8]) -> &str;
}

// A lookup table to prevent the need for conditional branching
// The value of the remainder of each step will be used as the index
const LOOKUP: &[u8] = b"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";

// A lookup table optimized for decimal lookups.
// Each two indices represents one possible number.
const DEC_LOOKUP: &[u8; 200] = b"0001020304050607080910111213141516171819\
                                 2021222324252627282930313233343536373839\
                                 4041424344454647484950515253545556575859\
                                 6061626364656667686970717273747576777879\
                                 8081828384858687888990919293949596979899";

macro_rules! base_10 {
    ($number:ident, $index:ident, $string:ident) => {
        // Decode four characters at the same time
        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_primitive {
    ( signed $($t:ty),+ ) => { $( impl_primitive![@signed $t]; )+ };
    ( unsigned $($t:ty),+ ) => { $( impl_primitive![@unsigned $t]; )+ };
    (@signed $t:ty) => {
        impl NumToStr<$t> for $t {
            fn to_bytes_base(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() >= 20,
                                "i64 base 10 conversions require at least 20 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;
                            string[index] = LOOKUP[((value % base + 1) % base) as usize];
                            index -= 1;
                            value / base + <$t>::from(value % base == base -1)
                        }
                    };
                } else if self == 0 {
                    string[index] = b'0';
                    return &string[index..];
                }
                if base == 10 {
                    // Convert using optimized base 10 algorithm
                    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 to_str_base(self, base: $t, buf: &mut [u8]) -> &str {
                #[cfg(any(feature = "safe_text", not(feature = "unsafe_str")))]
                return from_utf8(self.to_bytes_base(base, buf)).unwrap();

                #[cfg(all(not(feature = "safe_text"), feature = "unsafe_str"))]
                // SAFETY: the bytes are valid utf-8
                unsafe { from_utf8_unchecked(self.to_bytes_base(base, buf)) }
            }
        }
    };
    (@unsigned $t:ty) => {
        impl NumToStr<$t> for $t {
            fn to_bytes_base(mut self, base: $t, string: &mut [u8]) -> &[u8] {
                // Check if the buffer is large enough and panic on debug builds if it isn't
                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"],
                            _ => unreachable![],
                        }
                    }
                }
                let mut index = string.len() - 1;
                if self == 0 {
                    string[index] = b'0';
                    return &string[index..];
                }
                if base == 10 {
                    // Convert using optimized base 10 algorithm
                    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 to_str_base(self, base: $t, buf: &mut [u8]) -> &str {
                #[cfg(any(feature = "safe_text", not(feature = "unsafe_str")))]
                return from_utf8(self.to_bytes_base(base, buf)).unwrap();

                #[cfg(all(not(feature = "safe_text"), feature = "unsafe_str"))]
                // SAFETY: the bytes are valid utf-8
                unsafe { from_utf8_unchecked(self.to_bytes_base(base, buf)) }
            }
        }
    };
}
impl_primitive!(signed i16, i32, i64, isize);
impl_primitive!(unsigned u16, u32, u64, usize);

impl NumToStr<i8> for i8 {
    fn to_bytes_base(mut self, base: i8, string: &mut [u8]) -> &[u8] {
        if cfg!(debug_assertions) && 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;
        #[allow(clippy::comparison_chain)]
        if self < 0 {
            is_negative = true;
            self = if let Some(value) = self.checked_abs() {
                value
            } else {
                let value = <i8>::MAX;
                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 {
                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;
            }
        }
        if is_negative {
            string[index] = b'-';
            index = index.wrapping_sub(1);
        }
        &string[index.wrapping_add(1)..]
    }

    fn to_str_base(self, base: Self, buf: &mut [u8]) -> &str {
        #[cfg(any(feature = "safe_text", not(feature = "unsafe_str")))]
        return from_utf8(self.to_bytes_base(base, buf)).unwrap();

        #[cfg(all(not(feature = "safe_text"), feature = "unsafe_str"))]
        // SAFETY: the bytes are valid utf-8
        unsafe {
            from_utf8_unchecked(self.to_bytes_base(base, buf))
        }
    }
}

impl NumToStr<u8> for u8 {
    fn to_bytes_base(mut self, base: u8, string: &mut [u8]) -> &[u8] {
        if cfg!(debug_assertions) && 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 to_str_base(self, base: Self, buf: &mut [u8]) -> &str {
        #[cfg(any(feature = "safe_text", not(feature = "unsafe_str")))]
        return from_utf8(self.to_bytes_base(base, buf)).unwrap();
        #[cfg(all(not(feature = "safe_text"), feature = "unsafe_str"))]
        // SAFETY: the bytes are valid utf-8
        unsafe {
            from_utf8_unchecked(self.to_bytes_base(base, buf))
        }
    }
}