strtools 0.3.1

A library containing various string utilities
Documentation
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
use crate::{
    parse::{FromStrBack, FromStrFront},
    util,
};
use std::fmt::Debug;

/// An [`Error`][0] for [`FromStrFront`]/[`FromStrBack`] implementations of integers.
///
/// [0]: std::error::Error
#[derive(thiserror::Error, Debug, PartialEq, Eq)]
pub enum ParseIntPartialError {
    /// The parsed integer value did not fit into the integer type.
    #[error("the given integer representation would cause overflow")]
    Overflow,

    /// The parsed integer value did not fit into the integer type. Never occurs for unsigned types.
    #[error("the given integer representation would cause underflow")]
    Underflow,

    /// The input contained invalid tokens.
    #[error(
        "invalid input, expected: `['+' | '-']? ['0' - '9']+` for signed or `['0' - '9']+` for unsigned"
    )]
    Invalid,

    /// The input was empty.
    #[error(
        "empty input, expected: `['+' | '-']? ['0' - '9']+` for signed or `['0' - '9']+` for unsigned"
    )]
    Empty,
}

/// An extension for all integers that adds `from_str_radix` equivalents of the [`FromStrFront`] &
/// [`FromStrBack`] functions, see it's documentation for more info.
pub trait FromStrPartialRadixExt: util::sealed::Sealed + FromStrFront + FromStrBack {
    /// Behaves like [`FromStrFront::from_str_front`] for the given radix.
    #[allow(clippy::missing_errors_doc)]
    fn from_str_radix_front(
        input: &str,
        radix: u32,
    ) -> Result<(Self, &str), <Self as FromStrFront>::Error>;

    /// Behaves like [`FromStrBack::from_str_back`] for the given radix.
    #[allow(clippy::missing_errors_doc)]
    fn from_str_radix_back(
        input: &str,
        radix: u32,
    ) -> Result<(Self, &str), <Self as FromStrBack>::Error>;
}

// Most of the implementations details match those form `std::str::FromStr` for integers with the
// difference that invalid chars don't cause an error on parsing but a yield what was parsed until
// then.

trait FromStrRadixHelper: Copy {
    const IS_SIGNED: bool;
    const ZERO: Self;

    fn checked_neg(self) -> Option<Self>;
    fn checked_mul(self, other: u32) -> Option<Self>;
    fn checked_sub(self, other: u32) -> Option<Self>;
    fn checked_add(self, other: u32) -> Option<Self>;
}

fn from_str_radix_front<T: FromStrRadixHelper>(
    input: &str,
    radix: u32,
) -> Result<(T, &str), ParseIntPartialError> {
    assert!(
        matches!(radix, 2..=36),
        "radix must be in `[2, 36]` - found {}",
        radix
    );

    let (is_neg, rest) = match input.as_bytes() {
        [b'-', ..] => {
            if T::IS_SIGNED {
                (true, &input[1..])
            } else {
                return Err(ParseIntPartialError::Invalid);
            }
        }
        [b'+', ..] => (false, &input[1..]),
        _ => (false, input),
    };

    if rest.is_empty() {
        return Err(ParseIntPartialError::Empty);
    }

    let iter = rest
        .as_bytes()
        .iter()
        .enumerate()
        .map(|(idx, &byte)| (idx, (byte as char).to_digit(radix)));

    let mut num = false;
    let mut buf = T::ZERO;
    let mut rest_start = 0;
    if is_neg {
        for (idx, maybe_digit) in iter {
            let sub = match maybe_digit {
                Some(val) => {
                    rest_start = idx + 1;
                    val
                }
                None => {
                    rest_start = idx;
                    break;
                }
            };

            num = true;
            buf = buf
                .checked_mul(radix)
                .ok_or(ParseIntPartialError::Underflow)?;
            buf = buf
                .checked_sub(sub)
                .ok_or(ParseIntPartialError::Underflow)?;
        }
    } else {
        for (idx, maybe_digit) in iter {
            let add = match maybe_digit {
                Some(val) => {
                    rest_start = idx + 1;
                    val
                }
                None => {
                    rest_start = idx;
                    break;
                }
            };

            num = true;
            buf = buf
                .checked_mul(radix)
                .ok_or(ParseIntPartialError::Overflow)?;
            buf = buf.checked_add(add).ok_or(ParseIntPartialError::Overflow)?;
        }
    }

    if num {
        Ok((buf, &rest[rest_start..]))
    } else {
        Err(ParseIntPartialError::Invalid)
    }
}

fn from_str_radix_back<T: FromStrRadixHelper>(
    input: &str,
    radix: u32,
) -> Result<(T, &str), ParseIntPartialError> {
    assert!(
        matches!(radix, 2..=36),
        "radix must be in `[2, 36]` - found {}",
        radix
    );

    if input.is_empty() {
        return Err(ParseIntPartialError::Empty);
    }

    let mut num = false;
    let mut buf = T::ZERO;
    let mut len = 0;
    let mut factor = Some(1);
    let iter = input.as_bytes().iter().rev();

    if T::IS_SIGNED {
        let mut is_neg = false;
        for &byte in iter {
            let sub = match (byte as char).to_digit(radix) {
                Some(val) => val,
                None => {
                    match byte {
                        b'-' => {
                            len += 1;
                            is_neg = true;
                        }
                        b'+' => len += 1,
                        _ => {}
                    }

                    break;
                }
            };

            len += 1;
            num = true;

            let fac = factor.ok_or(ParseIntPartialError::Underflow)?;
            buf = fac
                .checked_mul(sub)
                .and_then(|s| buf.checked_sub(s))
                .ok_or(ParseIntPartialError::Underflow)?;
            factor = fac.checked_mul(radix);
        }

        // we're using a neg buffer to fit the lower most value if it occurs, then if it's not neg
        // we invert it returning none if it's too large to fit the positive equivalent
        // allows parsing `-128..127` for u8
        if !is_neg {
            buf = buf.checked_neg().ok_or(ParseIntPartialError::Overflow)?;
        }
    } else {
        for &byte in iter {
            let add = match (byte as char).to_digit(radix) {
                Some(val) => val,
                None => {
                    if byte == b'+' {
                        len += 1;
                    }

                    break;
                }
            };

            len += 1;
            num = true;

            let fac = factor.ok_or(ParseIntPartialError::Overflow)?;
            buf = fac
                .checked_mul(add)
                .and_then(|a| buf.checked_add(a))
                .ok_or(ParseIntPartialError::Overflow)?;

            // return error next time
            factor = fac.checked_mul(radix);
        }
    }

    if num {
        Ok((buf, &input[..input.len() - len]))
    } else {
        Err(ParseIntPartialError::Invalid)
    }
}

// currently we wouldn't be able to parse `-2^size` because it would overflow before being flipped
// parse as negative and then flip checking for overflow?
macro_rules! int_impl {
    (int $int:ty) => {
        impl FromStrRadixHelper for $int {
            const IS_SIGNED: bool = true;
            const ZERO: Self = 0;

            #[inline]
            fn checked_neg(self) -> Option<Self> {
                self.checked_neg()
            }

            #[inline]
            fn checked_mul(self, other: u32) -> Option<Self> {
                Self::checked_mul(self, other as Self)
            }

            #[inline]
            fn checked_sub(self, other: u32) -> Option<Self> {
                Self::checked_sub(self, other as Self)
            }

            #[inline]
            fn checked_add(self, other: u32) -> Option<Self> {
                Self::checked_add(self, other as Self)
            }
        }

        int_impl!($int);
    };
    (uint $int:ty) => {
        impl FromStrRadixHelper for $int {
            const IS_SIGNED: bool = false;
            const ZERO: Self = 0;

            #[inline]
            fn checked_neg(self) -> Option<Self> {
                Some(self)
            }

            #[inline]
            fn checked_mul(self, other: u32) -> Option<Self> {
                Self::checked_mul(self, other as Self)
            }

            #[inline]
            fn checked_sub(self, other: u32) -> Option<Self> {
                Self::checked_sub(self, other as Self)
            }

            #[inline]
            fn checked_add(self, other: u32) -> Option<Self> {
                Self::checked_add(self, other as Self)
            }
        }

        int_impl!($int);
    };
    ($int:ty) => {
        impl FromStrFront for $int {
            type Error = ParseIntPartialError;

            fn from_str_front(input: &str) -> Result<(Self, &str), Self::Error> {
                Self::from_str_radix_front(input, 10)
            }
        }

        impl FromStrBack for $int {
            type Error = ParseIntPartialError;

            fn from_str_back(input: &str) -> Result<(Self, &str), Self::Error> {
                Self::from_str_radix_back(input, 10)
            }
        }

        impl FromStrPartialRadixExt for $int {
            fn from_str_radix_front(
                input: &str,
                radix: u32,
            ) -> Result<(Self, &str), <Self as FromStrFront>::Error> {
                from_str_radix_front(input, radix)
            }

            fn from_str_radix_back(
                input: &str,
                radix: u32,
            ) -> Result<(Self, &str), <Self as FromStrBack>::Error> {
                from_str_radix_back(input, radix)
            }
        }
    };
}

int_impl!(int i8);
int_impl!(int i16);
int_impl!(int i32);
int_impl!(int i64);
int_impl!(int i128);
int_impl!(int isize);

int_impl!(uint u8);
int_impl!(uint u16);
int_impl!(uint u32);
int_impl!(uint u64);
int_impl!(uint u128);
int_impl!(uint usize);

#[cfg(test)]
mod tests {
    use super::*;

    mod front {
        use super::*;

        #[test]
        fn invalid_prefix() {
            assert_eq!(
                u8::from_str_radix_front("!!!", 10),
                Err(ParseIntPartialError::Invalid)
            );
            assert_eq!(
                i8::from_str_radix_front("-!!!", 10),
                Err(ParseIntPartialError::Invalid)
            );
        }

        #[test]
        fn valid() {
            assert_eq!(u8::from_str_radix_front("255", 10), Ok((255, "")));
            assert_eq!(u8::from_str_radix_front("255!!!", 10), Ok((255, "!!!")));
            assert_eq!(i8::from_str_radix_front("-128", 10), Ok((-128, "")));
            assert_eq!(i8::from_str_radix_front("127!!!", 10), Ok((127, "!!!")));
        }

        #[test]
        fn over_under_flow() {
            assert_eq!(
                u8::from_str_radix_front("2550", 10),
                Err(ParseIntPartialError::Overflow)
            );
            assert_eq!(
                u8::from_str_radix_front("256", 10),
                Err(ParseIntPartialError::Overflow)
            );
            assert_eq!(
                i8::from_str_radix_front("-129", 10),
                Err(ParseIntPartialError::Underflow)
            );
            assert_eq!(
                i8::from_str_radix_front("128", 10),
                Err(ParseIntPartialError::Overflow)
            );
        }
    }

    mod back {
        use super::*;

        #[test]
        fn invalid_suffix() {
            assert_eq!(
                u8::from_str_radix_back("!!!", 10),
                Err(ParseIntPartialError::Invalid)
            );
            assert_eq!(
                i8::from_str_radix_back("!!!-", 10),
                Err(ParseIntPartialError::Invalid)
            );
        }

        #[test]
        fn valid() {
            assert_eq!(u8::from_str_radix_back("255", 10), Ok((255, "")));
            assert_eq!(u8::from_str_radix_back("!!!255", 10), Ok((255, "!!!")));
            assert_eq!(i8::from_str_radix_back("-128", 10), Ok((-128, "")));
            assert_eq!(i8::from_str_radix_back("!!!127", 10), Ok((127, "!!!")));
        }

        #[test]
        fn over_under_flow() {
            assert_eq!(
                u8::from_str_radix_back("2550", 10),
                Err(ParseIntPartialError::Overflow)
            );
            assert_eq!(
                u8::from_str_radix_back("256", 10),
                Err(ParseIntPartialError::Overflow)
            );
            assert_eq!(
                i8::from_str_radix_back("-129", 10),
                Err(ParseIntPartialError::Underflow)
            );
            assert_eq!(
                i8::from_str_radix_back("128", 10),
                Err(ParseIntPartialError::Overflow)
            );
        }
    }
}