qubit-argument 0.4.0

Structured, ownership-preserving argument validation for Rust applications
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
// =============================================================================
//    Copyright (c) 2025 - 2026 Haixing Hu.
//
//    SPDX-License-Identifier: Apache-2.0
//
//    Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Ownership-preserving validation for string arguments.

use crate::argument::{
    ArgumentError,
    ArgumentErrorKind,
    ArgumentResult,
    LengthConstraint,
    LengthMetric,
    sealed::Sealed,
};

#[cfg(feature = "regex")]
use crate::argument::PatternExpectation;
#[cfg(feature = "regex")]
use regex::Regex;

/// Validates string arguments while preserving ownership or borrowing.
///
/// Byte-length methods count UTF-8 bytes, while character-count methods count
/// Unicode scalar values. Every successful method returns the original value
/// without cloning it. String contents are inspected but never captured in an
/// error. Length failures use [`LengthMetric::Bytes`] for byte methods and
/// [`LengthMetric::UnicodeScalars`] for character-count methods.
///
/// The trait is sealed and implemented only for `String` and `&str`.
pub trait StringArgument: Sealed + Sized {
    /// Requires this string to contain at least one non-whitespace character.
    ///
    /// Success returns the original value without cloning. Empty strings and
    /// strings whose Unicode scalar values are all whitespace return
    /// [`ArgumentErrorKind::Blank`] at `path`.
    fn require_non_blank(self, path: &str) -> ArgumentResult<Self>;

    /// Requires this string to contain exactly `expected` UTF-8 bytes.
    ///
    /// Success returns the original value without cloning. A different byte
    /// length returns [`ArgumentErrorKind::Length`] at `path`.
    fn require_byte_len(
        self,
        path: &str,
        expected: usize,
    ) -> ArgumentResult<Self>;

    /// Requires this string to contain at least `min` UTF-8 bytes.
    ///
    /// Success returns the original value without cloning. A smaller byte
    /// length returns [`ArgumentErrorKind::Length`] at `path`.
    fn require_byte_len_at_least(
        self,
        path: &str,
        min: usize,
    ) -> ArgumentResult<Self>;

    /// Requires this string to contain at most `max` UTF-8 bytes.
    ///
    /// Success returns the original value without cloning. A larger byte
    /// length returns [`ArgumentErrorKind::Length`] at `path`.
    fn require_byte_len_at_most(
        self,
        path: &str,
        max: usize,
    ) -> ArgumentResult<Self>;

    /// Requires this string's UTF-8 byte length to lie in `min..=max`.
    ///
    /// The range is validated before the string length. If `min > max`, this
    /// returns [`ArgumentErrorKind::InvalidLengthConstraint`] at `path`;
    /// otherwise, an out-of-range length returns
    /// [`ArgumentErrorKind::Length`]. Success returns the original value
    /// without cloning.
    fn require_byte_len_in(
        self,
        path: &str,
        min: usize,
        max: usize,
    ) -> ArgumentResult<Self>;

    /// Requires this string to contain exactly `expected` Unicode scalar
    /// values.
    ///
    /// Success returns the original value without cloning. A different scalar
    /// count returns [`ArgumentErrorKind::Length`] at `path`.
    fn require_char_count(
        self,
        path: &str,
        expected: usize,
    ) -> ArgumentResult<Self>;

    /// Requires this string to contain at least `min` Unicode scalar values.
    ///
    /// Success returns the original value without cloning. A smaller scalar
    /// count returns [`ArgumentErrorKind::Length`] at `path`.
    fn require_char_count_at_least(
        self,
        path: &str,
        min: usize,
    ) -> ArgumentResult<Self>;

    /// Requires this string to contain at most `max` Unicode scalar values.
    ///
    /// Success returns the original value without cloning. A larger scalar
    /// count returns [`ArgumentErrorKind::Length`] at `path`.
    fn require_char_count_at_most(
        self,
        path: &str,
        max: usize,
    ) -> ArgumentResult<Self>;

    /// Requires this string's Unicode scalar count to lie in `min..=max`.
    ///
    /// The range is validated before the character count. If `min > max`, this
    /// returns [`ArgumentErrorKind::InvalidLengthConstraint`] at `path`;
    /// otherwise, an out-of-range count returns [`ArgumentErrorKind::Length`].
    /// Success returns the original value without cloning.
    fn require_char_count_in(
        self,
        path: &str,
        min: usize,
        max: usize,
    ) -> ArgumentResult<Self>;

    /// Requires this string to match `pattern`.
    ///
    /// Matching uses [`Regex::is_match`] without implicit anchoring. Success
    /// returns the original value without cloning; failure returns
    /// [`ArgumentErrorKind::Pattern`] at `path` without capturing the input.
    #[cfg(feature = "regex")]
    fn require_match(self, path: &str, pattern: &Regex)
    -> ArgumentResult<Self>;

    /// Requires this string not to match `pattern`.
    ///
    /// Matching uses [`Regex::is_match`] without implicit anchoring. Success
    /// returns the original value without cloning; failure returns
    /// [`ArgumentErrorKind::Pattern`] at `path` without capturing the input.
    #[cfg(feature = "regex")]
    fn require_not_match(
        self,
        path: &str,
        pattern: &Regex,
    ) -> ArgumentResult<Self>;
}

impl StringArgument for &str {
    /// Validates Unicode blankness and returns the original borrow.
    ///
    /// `path` identifies a [`ArgumentErrorKind::Blank`] failure.
    #[inline]
    fn require_non_blank(self, path: &str) -> ArgumentResult<Self> {
        validate_non_blank(self, path)?;
        Ok(self)
    }

    /// Validates the exact UTF-8 byte length and returns the original borrow.
    ///
    /// A mismatch returns [`ArgumentErrorKind::Length`] at `path`.
    #[inline]
    fn require_byte_len(
        self,
        path: &str,
        expected: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.len(),
            LengthConstraint::Exact(expected),
            LengthMetric::Bytes,
        )?;
        Ok(self)
    }

    /// Validates the minimum UTF-8 byte length and returns the original borrow.
    ///
    /// A value below `min` returns [`ArgumentErrorKind::Length`] at `path`.
    #[inline]
    fn require_byte_len_at_least(
        self,
        path: &str,
        min: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.len(),
            LengthConstraint::AtLeast(min),
            LengthMetric::Bytes,
        )?;
        Ok(self)
    }

    /// Validates the maximum UTF-8 byte length and returns the original borrow.
    ///
    /// A value above `max` returns [`ArgumentErrorKind::Length`] at `path`.
    #[inline]
    fn require_byte_len_at_most(
        self,
        path: &str,
        max: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.len(),
            LengthConstraint::AtMost(max),
            LengthMetric::Bytes,
        )?;
        Ok(self)
    }

    /// Validates an inclusive UTF-8 byte-length range and returns the borrow.
    ///
    /// `min > max` returns [`ArgumentErrorKind::InvalidLengthConstraint`] at
    /// `path`; an out-of-range value returns [`ArgumentErrorKind::Length`].
    #[inline]
    fn require_byte_len_in(
        self,
        path: &str,
        min: usize,
        max: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.len(),
            LengthConstraint::InRange { min, max },
            LengthMetric::Bytes,
        )?;
        Ok(self)
    }

    /// Validates the exact Unicode scalar count and returns the original
    /// borrow.
    ///
    /// A mismatch returns [`ArgumentErrorKind::Length`] at `path`.
    #[inline]
    fn require_char_count(
        self,
        path: &str,
        expected: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.chars().count(),
            LengthConstraint::Exact(expected),
            LengthMetric::UnicodeScalars,
        )?;
        Ok(self)
    }

    /// Validates the minimum Unicode scalar count and returns the original
    /// borrow.
    ///
    /// A count below `min` returns [`ArgumentErrorKind::Length`] at `path`.
    #[inline]
    fn require_char_count_at_least(
        self,
        path: &str,
        min: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.chars().count(),
            LengthConstraint::AtLeast(min),
            LengthMetric::UnicodeScalars,
        )?;
        Ok(self)
    }

    /// Validates the maximum Unicode scalar count and returns the original
    /// borrow.
    ///
    /// A count above `max` returns [`ArgumentErrorKind::Length`] at `path`.
    #[inline]
    fn require_char_count_at_most(
        self,
        path: &str,
        max: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.chars().count(),
            LengthConstraint::AtMost(max),
            LengthMetric::UnicodeScalars,
        )?;
        Ok(self)
    }

    /// Validates an inclusive Unicode scalar-count range and returns the
    /// borrow.
    ///
    /// `min > max` returns [`ArgumentErrorKind::InvalidLengthConstraint`] at
    /// `path`; an out-of-range count returns [`ArgumentErrorKind::Length`].
    #[inline]
    fn require_char_count_in(
        self,
        path: &str,
        min: usize,
        max: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.chars().count(),
            LengthConstraint::InRange { min, max },
            LengthMetric::UnicodeScalars,
        )?;
        Ok(self)
    }

    /// Validates a required regex match and returns the original borrow.
    ///
    /// A non-match returns [`ArgumentErrorKind::Pattern`] at `path` without
    /// capturing the input string.
    #[cfg(feature = "regex")]
    #[inline]
    fn require_match(
        self,
        path: &str,
        pattern: &Regex,
    ) -> ArgumentResult<Self> {
        validate_pattern(self, path, pattern, PatternExpectation::Match)?;
        Ok(self)
    }

    /// Validates a required regex non-match and returns the original borrow.
    ///
    /// A match returns [`ArgumentErrorKind::Pattern`] at `path` without
    /// capturing the input string.
    #[cfg(feature = "regex")]
    #[inline]
    fn require_not_match(
        self,
        path: &str,
        pattern: &Regex,
    ) -> ArgumentResult<Self> {
        validate_pattern(self, path, pattern, PatternExpectation::NoMatch)?;
        Ok(self)
    }
}

impl StringArgument for String {
    /// Validates Unicode blankness and returns the original owned string.
    ///
    /// `path` identifies a [`ArgumentErrorKind::Blank`] failure.
    #[inline]
    fn require_non_blank(self, path: &str) -> ArgumentResult<Self> {
        validate_non_blank(self.as_str(), path)?;
        Ok(self)
    }

    /// Validates the exact UTF-8 byte length and returns the owned string.
    ///
    /// A mismatch returns [`ArgumentErrorKind::Length`] at `path`.
    #[inline]
    fn require_byte_len(
        self,
        path: &str,
        expected: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.len(),
            LengthConstraint::Exact(expected),
            LengthMetric::Bytes,
        )?;
        Ok(self)
    }

    /// Validates the minimum UTF-8 byte length and returns the owned string.
    ///
    /// A value below `min` returns [`ArgumentErrorKind::Length`] at `path`.
    #[inline]
    fn require_byte_len_at_least(
        self,
        path: &str,
        min: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.len(),
            LengthConstraint::AtLeast(min),
            LengthMetric::Bytes,
        )?;
        Ok(self)
    }

    /// Validates the maximum UTF-8 byte length and returns the owned string.
    ///
    /// A value above `max` returns [`ArgumentErrorKind::Length`] at `path`.
    #[inline]
    fn require_byte_len_at_most(
        self,
        path: &str,
        max: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.len(),
            LengthConstraint::AtMost(max),
            LengthMetric::Bytes,
        )?;
        Ok(self)
    }

    /// Validates an inclusive UTF-8 byte-length range and returns the string.
    ///
    /// `min > max` returns [`ArgumentErrorKind::InvalidLengthConstraint`] at
    /// `path`; an out-of-range value returns [`ArgumentErrorKind::Length`].
    #[inline]
    fn require_byte_len_in(
        self,
        path: &str,
        min: usize,
        max: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.len(),
            LengthConstraint::InRange { min, max },
            LengthMetric::Bytes,
        )?;
        Ok(self)
    }

    /// Validates the exact Unicode scalar count and returns the owned string.
    ///
    /// A mismatch returns [`ArgumentErrorKind::Length`] at `path`.
    #[inline]
    fn require_char_count(
        self,
        path: &str,
        expected: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.chars().count(),
            LengthConstraint::Exact(expected),
            LengthMetric::UnicodeScalars,
        )?;
        Ok(self)
    }

    /// Validates the minimum Unicode scalar count and returns the owned string.
    ///
    /// A count below `min` returns [`ArgumentErrorKind::Length`] at `path`.
    #[inline]
    fn require_char_count_at_least(
        self,
        path: &str,
        min: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.chars().count(),
            LengthConstraint::AtLeast(min),
            LengthMetric::UnicodeScalars,
        )?;
        Ok(self)
    }

    /// Validates the maximum Unicode scalar count and returns the owned string.
    ///
    /// A count above `max` returns [`ArgumentErrorKind::Length`] at `path`.
    #[inline]
    fn require_char_count_at_most(
        self,
        path: &str,
        max: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.chars().count(),
            LengthConstraint::AtMost(max),
            LengthMetric::UnicodeScalars,
        )?;
        Ok(self)
    }

    /// Validates an inclusive Unicode scalar-count range and returns the
    /// string.
    ///
    /// `min > max` returns [`ArgumentErrorKind::InvalidLengthConstraint`] at
    /// `path`; an out-of-range count returns [`ArgumentErrorKind::Length`].
    #[inline]
    fn require_char_count_in(
        self,
        path: &str,
        min: usize,
        max: usize,
    ) -> ArgumentResult<Self> {
        validate_length(
            path,
            self.chars().count(),
            LengthConstraint::InRange { min, max },
            LengthMetric::UnicodeScalars,
        )?;
        Ok(self)
    }

    /// Validates a required regex match and returns the owned string.
    ///
    /// A non-match returns [`ArgumentErrorKind::Pattern`] at `path` without
    /// capturing the input string.
    #[cfg(feature = "regex")]
    #[inline]
    fn require_match(
        self,
        path: &str,
        pattern: &Regex,
    ) -> ArgumentResult<Self> {
        validate_pattern(
            self.as_str(),
            path,
            pattern,
            PatternExpectation::Match,
        )?;
        Ok(self)
    }

    /// Validates a required regex non-match and returns the owned string.
    ///
    /// A match returns [`ArgumentErrorKind::Pattern`] at `path` without
    /// capturing the input string.
    #[cfg(feature = "regex")]
    #[inline]
    fn require_not_match(
        self,
        path: &str,
        pattern: &Regex,
    ) -> ArgumentResult<Self> {
        validate_pattern(
            self.as_str(),
            path,
            pattern,
            PatternExpectation::NoMatch,
        )?;
        Ok(self)
    }
}

/// Validates that `value` contains a non-whitespace Unicode scalar value.
///
/// `value` is inspected without allocation. The function returns `Ok(())`
/// when at least one scalar value is not whitespace; otherwise, it returns
/// [`ArgumentErrorKind::Blank`] at `path` without storing `value`.
fn validate_non_blank(value: &str, path: &str) -> ArgumentResult<()> {
    if value.chars().all(char::is_whitespace) {
        Err(ArgumentError::new(path, ArgumentErrorKind::Blank))
    } else {
        Ok(())
    }
}

/// Validates an observed length against a structured length constraint.
///
/// `actual` is compared with `constraint`, `metric` records how it was
/// measured, and `path` identifies any failure. A reversed inclusive range
/// returns
/// [`ArgumentErrorKind::InvalidLengthConstraint`] before `actual` is checked.
/// Any other unsatisfied constraint returns [`ArgumentErrorKind::Length`]; a
/// satisfied constraint returns `Ok(())`.
fn validate_length(
    path: &str,
    actual: usize,
    constraint: LengthConstraint,
    metric: LengthMetric,
) -> ArgumentResult<()> {
    if let LengthConstraint::InRange { min, max } = &constraint
        && min > max
    {
        return Err(ArgumentError::new(
            path,
            ArgumentErrorKind::InvalidLengthConstraint { constraint, metric },
        ));
    }

    let is_valid = match &constraint {
        LengthConstraint::Exact(expected) => actual == *expected,
        LengthConstraint::AtLeast(min) => actual >= *min,
        LengthConstraint::AtMost(max) => actual <= *max,
        LengthConstraint::InRange { min, max } => {
            actual >= *min && actual <= *max
        }
    };
    if is_valid {
        Ok(())
    } else {
        Err(ArgumentError::new(
            path,
            ArgumentErrorKind::Length {
                actual,
                constraint,
                metric,
            },
        ))
    }
}

/// Validates one regex expectation without retaining the inspected string.
///
/// `value` is tested with `pattern` according to `expectation`, and `path`
/// identifies any failure. Success returns `Ok(())`; failure returns
/// [`ArgumentErrorKind::Pattern`] containing only the pattern text and
/// expectation, never `value`.
#[cfg(feature = "regex")]
fn validate_pattern(
    value: &str,
    path: &str,
    pattern: &Regex,
    expectation: PatternExpectation,
) -> ArgumentResult<()> {
    let matches = pattern.is_match(value);
    let is_valid = match expectation {
        PatternExpectation::Match => matches,
        PatternExpectation::NoMatch => !matches,
    };
    if is_valid {
        Ok(())
    } else {
        Err(ArgumentError::new(
            path,
            ArgumentErrorKind::Pattern {
                pattern: String::from(pattern.as_str()),
                expectation,
            },
        ))
    }
}