rstring 0.1.0

A comprehensive set of string manipulation utilities inspired by Apache Commons Lang3 StringUtils
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
//! Prefix and suffix manipulation utilities.
//!
//! This module provides functions for working with string prefixes and suffixes,
//! such as conditional appending/prepending.
//!
//! # Usage
//!
//! Import the [`StringAffixes`] trait to use methods directly on strings:
//!
//! ```
//! use rstring::StringAffixes;
//!
//! assert_eq!("abc".append_if_missing("xyz"), "abcxyz");
//! assert_eq!("abcxyz".append_if_missing("xyz"), "abcxyz");
//! ```

use std::borrow::Cow;

use crate::shared::{
    ends_with_ignore_ascii_case, ends_with_ignore_case, starts_with_ignore_ascii_case,
    starts_with_ignore_case,
};

/// Extension trait for prefix and suffix manipulation methods.
///
/// This trait is implemented for `str`, allowing you to call affix
/// methods directly on `&str`, `String`, and other string types.
///
/// # Examples
///
/// ```
/// use rstring::StringAffixes;
///
/// // Conditional appending
/// assert_eq!("file".append_if_missing(".txt"), "file.txt");
/// assert_eq!("file.txt".append_if_missing(".txt"), "file.txt");
///
/// // Conditional prepending
/// assert_eq!("domain.com".prepend_if_missing("www."), "www.domain.com");
/// assert_eq!("www.domain.com".prepend_if_missing("www."), "www.domain.com");
/// ```
pub trait StringAffixes {
    /// Appends the suffix to the end of the string if the string does not
    /// already end with the suffix.
    ///
    /// Returns `Cow::Borrowed` if the string already ends with the suffix,
    /// `Cow::Owned` otherwise.
    ///
    /// # Examples
    ///
    /// ```
    /// use rstring::StringAffixes;
    ///
    /// assert_eq!("".append_if_missing("xyz"), "xyz");
    /// assert_eq!("abc".append_if_missing("xyz"), "abcxyz");
    /// assert_eq!("abcxyz".append_if_missing("xyz"), "abcxyz");
    /// assert_eq!("aXYZ".append_if_missing("xyz"), "aXYZxyz");
    /// ```
    #[must_use]
    fn append_if_missing(&self, suffix: &str) -> Cow<'_, str>;

    /// Appends the suffix to the end of the string if the string does not
    /// already end with the suffix (ASCII case-insensitive comparison).
    ///
    /// Only handles A-Z/a-z case folding. For full Unicode support, use
    /// [`append_if_missing_ignore_case`](StringAffixes::append_if_missing_ignore_case).
    ///
    /// Returns `Cow::Borrowed` if the string already ends with the suffix,
    /// `Cow::Owned` otherwise.
    ///
    /// # Examples
    ///
    /// ```
    /// use rstring::StringAffixes;
    ///
    /// assert_eq!("".append_if_missing_ignore_ascii_case("xyz"), "xyz");
    /// assert_eq!("abc".append_if_missing_ignore_ascii_case("xyz"), "abcxyz");
    /// assert_eq!("abcxyz".append_if_missing_ignore_ascii_case("xyz"), "abcxyz");
    /// assert_eq!("abcXYZ".append_if_missing_ignore_ascii_case("xyz"), "abcXYZ");
    /// ```
    #[must_use]
    fn append_if_missing_ignore_ascii_case(&self, suffix: &str) -> Cow<'_, str>;

    /// Appends the suffix to the end of the string if the string does not
    /// already end with the suffix (Unicode case-insensitive comparison).
    ///
    /// Handles full Unicode case folding (e.g., é/É, ñ/Ñ) but requires allocation.
    /// For ASCII-only strings, prefer [`append_if_missing_ignore_ascii_case`](StringAffixes::append_if_missing_ignore_ascii_case).
    ///
    /// Returns `Cow::Borrowed` if the string already ends with the suffix,
    /// `Cow::Owned` otherwise.
    ///
    /// # Examples
    ///
    /// ```
    /// use rstring::StringAffixes;
    ///
    /// assert_eq!("".append_if_missing_ignore_case("xyz"), "xyz");
    /// assert_eq!("abc".append_if_missing_ignore_case("xyz"), "abcxyz");
    /// assert_eq!("abcxyz".append_if_missing_ignore_case("xyz"), "abcxyz");
    /// assert_eq!("abcXYZ".append_if_missing_ignore_case("xyz"), "abcXYZ");
    /// assert_eq!("café".append_if_missing_ignore_case("É"), "café");
    /// ```
    #[must_use]
    fn append_if_missing_ignore_case(&self, suffix: &str) -> Cow<'_, str>;

    /// Prepends the prefix to the start of the string if the string does not
    /// already start with the prefix.
    ///
    /// Returns `Cow::Borrowed` if the string already starts with the prefix,
    /// `Cow::Owned` otherwise.
    ///
    /// # Examples
    ///
    /// ```
    /// use rstring::StringAffixes;
    ///
    /// assert_eq!("".prepend_if_missing("xyz"), "xyz");
    /// assert_eq!("abc".prepend_if_missing("xyz"), "xyzabc");
    /// assert_eq!("xyzabc".prepend_if_missing("xyz"), "xyzabc");
    /// assert_eq!("XYZabc".prepend_if_missing("xyz"), "xyzXYZabc");
    /// ```
    #[must_use]
    fn prepend_if_missing(&self, prefix: &str) -> Cow<'_, str>;

    /// Prepends the prefix to the start of the string if the string does not
    /// already start with the prefix (ASCII case-insensitive comparison).
    ///
    /// Only handles A-Z/a-z case folding. For full Unicode support, use
    /// [`prepend_if_missing_ignore_case`](StringAffixes::prepend_if_missing_ignore_case).
    ///
    /// Returns `Cow::Borrowed` if the string already starts with the prefix,
    /// `Cow::Owned` otherwise.
    ///
    /// # Examples
    ///
    /// ```
    /// use rstring::StringAffixes;
    ///
    /// assert_eq!("".prepend_if_missing_ignore_ascii_case("xyz"), "xyz");
    /// assert_eq!("abc".prepend_if_missing_ignore_ascii_case("xyz"), "xyzabc");
    /// assert_eq!("xyzabc".prepend_if_missing_ignore_ascii_case("xyz"), "xyzabc");
    /// assert_eq!("XYZabc".prepend_if_missing_ignore_ascii_case("xyz"), "XYZabc");
    /// ```
    #[must_use]
    fn prepend_if_missing_ignore_ascii_case(&self, prefix: &str) -> Cow<'_, str>;

    /// Prepends the prefix to the start of the string if the string does not
    /// already start with the prefix (Unicode case-insensitive comparison).
    ///
    /// Handles full Unicode case folding (e.g., é/É, ñ/Ñ) but requires allocation.
    /// For ASCII-only strings, prefer [`prepend_if_missing_ignore_ascii_case`](StringAffixes::prepend_if_missing_ignore_ascii_case).
    ///
    /// Returns `Cow::Borrowed` if the string already starts with the prefix,
    /// `Cow::Owned` otherwise.
    ///
    /// # Examples
    ///
    /// ```
    /// use rstring::StringAffixes;
    ///
    /// assert_eq!("".prepend_if_missing_ignore_case("xyz"), "xyz");
    /// assert_eq!("abc".prepend_if_missing_ignore_case("xyz"), "xyzabc");
    /// assert_eq!("xyzabc".prepend_if_missing_ignore_case("xyz"), "xyzabc");
    /// assert_eq!("XYZabc".prepend_if_missing_ignore_case("xyz"), "XYZabc");
    /// assert_eq!("Éclair".prepend_if_missing_ignore_case("é"), "Éclair");
    /// ```
    #[must_use]
    fn prepend_if_missing_ignore_case(&self, prefix: &str) -> Cow<'_, str>;
}

macro_rules! impl_append_if_missing {
    ($fn_name:ident, $ends_with_check:expr) => {
        fn $fn_name(&self, suffix: &str) -> Cow<'_, str> {
            if suffix.is_empty() || $ends_with_check(self, suffix) {
                Cow::Borrowed(self)
            } else {
                let mut result = String::with_capacity(self.len() + suffix.len());
                result.push_str(self);
                result.push_str(suffix);
                Cow::Owned(result)
            }
        }
    };
}

macro_rules! impl_prepend_if_missing {
    ($fn_name:ident, $starts_with_check:expr) => {
        fn $fn_name(&self, prefix: &str) -> Cow<'_, str> {
            if prefix.is_empty() || $starts_with_check(self, prefix) {
                Cow::Borrowed(self)
            } else {
                let mut result = String::with_capacity(self.len() + prefix.len());
                result.push_str(prefix);
                result.push_str(self);
                Cow::Owned(result)
            }
        }
    };
}

impl StringAffixes for str {
    impl_append_if_missing!(append_if_missing, |s: &str, suf| s.ends_with(suf));
    impl_append_if_missing!(
        append_if_missing_ignore_ascii_case,
        ends_with_ignore_ascii_case
    );
    impl_append_if_missing!(append_if_missing_ignore_case, ends_with_ignore_case);

    impl_prepend_if_missing!(prepend_if_missing, |s: &str, pre| s.starts_with(pre));
    impl_prepend_if_missing!(
        prepend_if_missing_ignore_ascii_case,
        starts_with_ignore_ascii_case
    );
    impl_prepend_if_missing!(prepend_if_missing_ignore_case, starts_with_ignore_case);
}

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

    mod append_if_missing {
        use super::*;

        #[test]
        fn empty_string() {
            assert_eq!("".append_if_missing("xyz"), "xyz");
        }

        #[test]
        fn empty_suffix() {
            assert_eq!("abc".append_if_missing(""), "abc");
        }

        #[test]
        fn suffix_not_present() {
            assert_eq!("abc".append_if_missing("xyz"), "abcxyz");
        }

        #[test]
        fn suffix_already_present() {
            assert_eq!("abcxyz".append_if_missing("xyz"), "abcxyz");
        }

        #[test]
        fn suffix_different_case() {
            assert_eq!("aXYZ".append_if_missing("xyz"), "aXYZxyz");
        }

        #[test]
        fn suffix_partial_match() {
            assert_eq!("abcxy".append_if_missing("xyz"), "abcxyxyz");
        }

        #[test]
        fn unicode_suffix_present() {
            assert_eq!("café".append_if_missing("é"), "café");
        }

        #[test]
        fn unicode_suffix_not_present() {
            assert_eq!("café".append_if_missing("e"), "cafée");
        }
    }

    mod append_if_missing_ignore_case {
        use super::*;

        #[test]
        fn empty_string() {
            assert_eq!("".append_if_missing_ignore_case("xyz"), "xyz");
        }

        #[test]
        fn empty_suffix() {
            assert_eq!("abc".append_if_missing_ignore_case(""), "abc");
        }

        #[test]
        fn suffix_not_present() {
            assert_eq!("abc".append_if_missing_ignore_case("xyz"), "abcxyz");
        }

        #[test]
        fn suffix_already_present() {
            assert_eq!("abcxyz".append_if_missing_ignore_case("xyz"), "abcxyz");
        }

        #[test]
        fn suffix_different_case() {
            assert_eq!("abcXYZ".append_if_missing_ignore_case("xyz"), "abcXYZ");
        }

        #[test]
        fn suffix_mixed_case() {
            assert_eq!("abcXyZ".append_if_missing_ignore_case("xyz"), "abcXyZ");
        }

        #[test]
        fn unicode_suffix_same_case() {
            assert_eq!("café".append_if_missing_ignore_case("é"), "café");
        }

        #[test]
        fn unicode_suffix_different_case() {
            assert_eq!("café".append_if_missing_ignore_case("É"), "café");
        }

        #[test]
        fn unicode_suffix_different_case_inv() {
            assert_eq!("cafÉ".append_if_missing_ignore_case("é"), "cafÉ");
        }
    }

    mod prepend_if_missing {
        use super::*;

        #[test]
        fn empty_string() {
            assert_eq!("".prepend_if_missing("xyz"), "xyz");
        }

        #[test]
        fn empty_prefix() {
            assert_eq!("abc".prepend_if_missing(""), "abc");
        }

        #[test]
        fn prefix_not_present() {
            assert_eq!("abc".prepend_if_missing("xyz"), "xyzabc");
        }

        #[test]
        fn prefix_already_present() {
            assert_eq!("xyzabc".prepend_if_missing("xyz"), "xyzabc");
        }

        #[test]
        fn prefix_different_case() {
            assert_eq!("XYZabc".prepend_if_missing("xyz"), "xyzXYZabc");
        }

        #[test]
        fn prefix_partial_match() {
            assert_eq!("yzabc".prepend_if_missing("xyz"), "xyzyzabc");
        }

        #[test]
        fn unicode_prefix_present() {
            assert_eq!("élan".prepend_if_missing("é"), "élan");
        }

        #[test]
        fn unicode_prefix_not_present() {
            assert_eq!("élan".prepend_if_missing("e"), "eélan");
        }
    }

    mod prepend_if_missing_ignore_case {
        use super::*;

        #[test]
        fn empty_string() {
            assert_eq!("".prepend_if_missing_ignore_case("xyz"), "xyz");
        }

        #[test]
        fn empty_prefix() {
            assert_eq!("abc".prepend_if_missing_ignore_case(""), "abc");
        }

        #[test]
        fn prefix_not_present() {
            assert_eq!("abc".prepend_if_missing_ignore_case("xyz"), "xyzabc");
        }

        #[test]
        fn prefix_already_present() {
            assert_eq!("xyzabc".prepend_if_missing_ignore_case("xyz"), "xyzabc");
        }

        #[test]
        fn prefix_different_case() {
            assert_eq!("XYZabc".prepend_if_missing_ignore_case("xyz"), "XYZabc");
        }

        #[test]
        fn prefix_mixed_case() {
            assert_eq!("XyZabc".prepend_if_missing_ignore_case("xyz"), "XyZabc");
        }

        #[test]
        fn unicode_prefix_same_case() {
            assert_eq!("élan".prepend_if_missing_ignore_case("é"), "élan");
        }

        #[test]
        fn unicode_prefix_different_case() {
            assert_eq!("Élan".prepend_if_missing_ignore_case("é"), "Élan");
        }

        #[test]
        fn unicode_prefix_different_case_inv() {
            assert_eq!("élan".prepend_if_missing_ignore_case("É"), "élan");
        }
    }

    mod string_types {
        use super::*;

        #[test]
        fn string_type() {
            assert_eq!(String::from("abc").append_if_missing("xyz"), "abcxyz");
            assert_eq!(String::from("abc").prepend_if_missing("xyz"), "xyzabc");
        }
    }
}