cow-replace 0.1.1

String replace with Cow
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
use std::borrow::Cow;

use ascii::AsciiChar;

// Helper functions for common operations
fn remove_ascii_from_str(s: &str, ch: AsciiChar) -> Option<String> {
    let target_byte = ch.as_byte();
    let bytes = s.as_bytes();

    // Check if the character exists first
    if !bytes.contains(&target_byte) {
        return None;
    }

    // Create new string without the target character
    let mut result = String::with_capacity(s.len());
    for &byte in bytes {
        if byte != target_byte {
            result.push(byte as char);
        }
    }

    Some(result)
}

fn replace_str_if_contains(s: &str, from: &str, to: &str) -> Option<String> {
    if from.is_empty() || !s.contains(from) {
        return None;
    }

    Some(s.replace(from, to))
}

/// Trait for string replacement operations that return a `Cow<str>`.
///
/// This trait provides methods for string manipulations that avoid unnecessary
/// allocations when no changes are needed, returning `Cow::Borrowed` for
/// unchanged strings and `Cow::Owned` for modified strings.
pub trait ReplaceString {
    /// Removes all occurrences of the specified ASCII character from the
    /// string.
    ///
    /// # Arguments
    ///
    /// * `ch` - The ASCII character to remove from the string
    ///
    /// # Returns
    ///
    /// * `Cow::Borrowed` - If the character is not found in the string (no
    ///   allocation needed)
    /// * `Cow::Owned` - If the character is found and removed (new string
    ///   allocated)
    ///
    /// # Examples
    ///
    /// ```
    /// use cow_replace::ReplaceString;
    /// use ascii::AsciiChar;
    /// use std::borrow::Cow;
    ///
    /// let text = "hello world";
    /// let result = text.remove_all_ascii(AsciiChar::l);
    /// assert_eq!(result, "heo word");
    ///
    /// // No allocation when character not found
    /// let result = text.remove_all_ascii(AsciiChar::z);
    /// match result {
    ///     Cow::Borrowed(_) => println!("No allocation needed!"),
    ///     Cow::Owned(_) => unreachable!(),
    /// }
    /// ```
    fn remove_all_ascii(&self, ch: AsciiChar) -> Cow<'_, str>;

    /// Replaces all occurrences of a substring with another substring.
    ///
    /// # Arguments
    ///
    /// * `from` - The substring to search for and replace
    /// * `to` - The replacement substring
    ///
    /// # Returns
    ///
    /// * `Cow::Borrowed` - If `from` is not found in the string (no allocation
    ///   needed)
    /// * `Cow::Owned` - If replacements were made (new string allocated)
    ///
    /// # Examples
    ///
    /// ```
    /// use cow_replace::ReplaceString;
    /// use std::borrow::Cow;
    ///
    /// let text = "hello world hello";
    /// let result = text.replace_all_str("hello", "hi");
    /// assert_eq!(result, "hi world hi");
    ///
    /// // No allocation when substring not found
    /// let result = text.replace_all_str("xyz", "abc");
    /// match result {
    ///     Cow::Borrowed(_) => println!("No allocation needed!"),
    ///     Cow::Owned(_) => unreachable!(),
    /// }
    /// ```
    fn replace_all_str(&self, from: &str, to: &str) -> Cow<'_, str>;
}

/// Trait for in-place string replacement operations.
///
/// This trait provides methods that modify the string directly without creating
/// new allocations when possible. These operations are more memory-efficient
/// but modify the original string.
pub trait ReplaceStringInPlace {
    /// Removes all occurrences of the specified ASCII character from the string
    /// in-place.
    ///
    /// This method modifies the string directly, potentially reducing its
    /// length. For `Cow<str>`, this may convert a borrowed string to an
    /// owned string if modifications are needed.
    ///
    /// # Arguments
    ///
    /// * `ch` - The ASCII character to remove from the string
    ///
    /// # Examples
    ///
    /// ```
    /// use cow_replace::ReplaceStringInPlace;
    /// use ascii::AsciiChar;
    ///
    /// let mut text = "hello world".to_string();
    /// text.remove_all_ascii_in_place(AsciiChar::l);
    /// assert_eq!(text, "heo word");
    ///
    /// // Works with empty results too
    /// let mut text = "lllll".to_string();
    /// text.remove_all_ascii_in_place(AsciiChar::l);
    /// assert_eq!(text, "");
    /// ```
    fn remove_all_ascii_in_place(&mut self, ch: AsciiChar);

    /// Replaces all occurrences of one ASCII character with another in-place.
    ///
    /// This method modifies the string directly by replacing bytes. Since both
    /// characters are ASCII, the string length remains the same.
    ///
    /// # Arguments
    ///
    /// * `from` - The ASCII character to search for and replace
    /// * `to` - The ASCII character to replace with
    ///
    /// # Examples
    ///
    /// ```
    /// use cow_replace::ReplaceStringInPlace;
    /// use ascii::AsciiChar;
    ///
    /// let mut text = "hello world".to_string();
    /// text.replace_all_ascii_in_place(AsciiChar::l, AsciiChar::x);
    /// assert_eq!(text, "hexxo worxd");
    ///
    /// // No change if character not found
    /// let mut text = "hello world".to_string();
    /// text.replace_all_ascii_in_place(AsciiChar::z, AsciiChar::x);
    /// assert_eq!(text, "hello world");
    /// ```
    fn replace_all_ascii_in_place(&mut self, from: AsciiChar, to: AsciiChar);
}

impl<T: AsRef<str>> ReplaceString for T {
    fn remove_all_ascii(&self, ch: AsciiChar) -> Cow<'_, str> {
        match remove_ascii_from_str(self.as_ref(), ch) {
            Some(result) => Cow::Owned(result),
            None => Cow::Borrowed(self.as_ref()),
        }
    }

    fn replace_all_str(&self, from: &str, to: &str) -> Cow<'_, str> {
        match replace_str_if_contains(self.as_ref(), from, to) {
            Some(result) => Cow::Owned(result),
            None => Cow::Borrowed(self.as_ref()),
        }
    }
}
impl ReplaceStringInPlace for String {
    fn remove_all_ascii_in_place(&mut self, ch: AsciiChar) {
        let target_byte = ch.as_byte();
        let bytes = unsafe { self.as_bytes_mut() };

        let mut write_pos = 0;
        let mut read_pos = 0;

        while read_pos < bytes.len() {
            if bytes[read_pos] != target_byte {
                bytes[write_pos] = bytes[read_pos];
                write_pos += 1;
            }
            read_pos += 1;
        }

        // Truncate to the new length
        self.truncate(write_pos);
    }

    fn replace_all_ascii_in_place(&mut self, from: AsciiChar, to: AsciiChar) {
        let from_byte = from.as_byte();
        let to_byte = to.as_byte();
        let bytes = unsafe { self.as_bytes_mut() };

        for byte in bytes {
            if *byte == from_byte {
                *byte = to_byte;
            }
        }
    }
}

impl ReplaceStringInPlace for Cow<'_, str> {
    fn remove_all_ascii_in_place(&mut self, ch: AsciiChar) {
        match self {
            Cow::Borrowed(s) => {
                if let Some(result) = remove_ascii_from_str(s, ch) {
                    *self = Cow::Owned(result);
                }
            }
            Cow::Owned(s) => {
                s.remove_all_ascii_in_place(ch);
            }
        }
    }

    fn replace_all_ascii_in_place(&mut self, from: AsciiChar, to: AsciiChar) {
        match self {
            Cow::Borrowed(s) => {
                let from_byte = from.as_byte();
                let bytes = s.as_bytes();

                if !bytes.contains(&from_byte) {
                    return; // No changes needed
                }

                // Convert to owned and replace
                let mut owned = s.to_string();
                owned.replace_all_ascii_in_place(from, to);
                *self = Cow::Owned(owned);
            }
            Cow::Owned(s) => {
                s.replace_all_ascii_in_place(from, to);
            }
        }
    }
}

#[cfg(test)]
mod tests {
    use std::borrow::Cow;

    use super::*;

    #[test]
    fn test_str_remove_all_ascii() {
        let s = "hello world";
        let result = s.remove_all_ascii(AsciiChar::l);
        assert_eq!(result, "heo word");

        // Test with no occurrences
        let s = "hello world";
        let result = s.remove_all_ascii(AsciiChar::z);
        assert_eq!(result, "hello world");
        match result {
            Cow::Borrowed(_) => {}
            Cow::Owned(_) => panic!("Should return borrowed when no changes"),
        }
    }

    #[test]
    fn test_str_replace_all_str() {
        let s = "hello world hello";
        let result = s.replace_all_str("hello", "hi");
        assert_eq!(result, "hi world hi");

        // Test with no occurrences
        let s = "hello world";
        let result = s.replace_all_str("xyz", "abc");
        match result {
            Cow::Borrowed(_) => {}
            Cow::Owned(_) => panic!("Should return borrowed when no changes"),
        }
        assert_eq!(result, "hello world");
    }

    #[test]
    fn test_string_remove_all_ascii() {
        let s = "hello world".to_string();
        let result = s.remove_all_ascii(AsciiChar::l);
        assert_eq!(result, "heo word");

        // Test with no occurrences
        let s = "hello world".to_string();
        let result = s.remove_all_ascii(AsciiChar::z);
        assert_eq!(result, "hello world");
        match result {
            Cow::Borrowed(_) => {}
            Cow::Owned(_) => panic!("Should return borrowed when no changes"),
        }
    }

    #[test]
    fn test_string_remove_all_ascii_in_place() {
        let mut s = "hello world".to_string();
        s.remove_all_ascii_in_place(AsciiChar::l);
        assert_eq!(s, "heo word");

        let mut s = "aaaaaa".to_string();
        s.remove_all_ascii_in_place(AsciiChar::a);
        assert_eq!(s, "");
    }

    #[test]
    fn test_string_replace_all_ascii_in_place() {
        let mut s = "hello world".to_string();
        s.replace_all_ascii_in_place(AsciiChar::l, AsciiChar::x);
        assert_eq!(s, "hexxo worxd");

        let mut s = "hello world".to_string();
        s.replace_all_ascii_in_place(AsciiChar::z, AsciiChar::x);
        assert_eq!(s, "hello world");
    }

    #[test]
    fn test_string_replace_all_str() {
        let s = "hello world hello".to_string();
        let result = s.replace_all_str("hello", "hi");
        assert_eq!(result, "hi world hi");
        assert_eq!(s, "hello world hello"); // Original string should remain unchanged

        // Test with no occurrences
        let s = "hello world".to_string();
        let result = s.replace_all_str("xyz", "abc");
        match result {
            Cow::Borrowed(_) => {}
            Cow::Owned(_) => panic!("Should return borrowed when no changes"),
        }
        assert_eq!(result, "hello world");
        assert_eq!(s, "hello world");
    }

    #[test]
    fn test_cow_remove_all_ascii() {
        let s: Cow<'_, str> = Cow::Borrowed("hello world");
        let result = s.remove_all_ascii(AsciiChar::l);
        assert_eq!(result, "heo word");

        let s: Cow<'_, str> = Cow::Owned("hello world".to_string());
        let result = s.remove_all_ascii(AsciiChar::l);
        assert_eq!(result, "heo word");
    }

    #[test]
    fn test_cow_remove_all_ascii_in_place() {
        let mut s: Cow<'_, str> = Cow::Borrowed("hello world");
        s.remove_all_ascii_in_place(AsciiChar::l);
        assert_eq!(s, "heo word");
        match s {
            Cow::Owned(_) => {}
            Cow::Borrowed(_) => panic!("Should be owned after modification"),
        }

        let mut s: Cow<'_, str> = Cow::Owned("hello world".to_string());
        s.remove_all_ascii_in_place(AsciiChar::l);
        assert_eq!(s, "heo word");
    }

    #[test]
    fn test_cow_replace_all_ascii_in_place() {
        let mut s: Cow<'_, str> = Cow::Borrowed("hello world");
        s.replace_all_ascii_in_place(AsciiChar::l, AsciiChar::x);
        assert_eq!(s, "hexxo worxd");
        match s {
            Cow::Owned(_) => {}
            Cow::Borrowed(_) => panic!("Should be owned after modification"),
        }
    }

    #[test]
    fn test_cow_replace_all_str() {
        let s: Cow<'_, str> = Cow::Borrowed("hello world hello");
        let result = s.replace_all_str("hello", "hi");
        assert_eq!(result, "hi world hi");
        assert_eq!(s, "hello world hello"); // Original string should remain unchanged

        let s: Cow<'_, str> = Cow::Borrowed("hello world");
        let result = s.replace_all_str("xyz", "abc");
        match result {
            Cow::Borrowed(_) => {}
            Cow::Owned(_) => panic!("Should return borrowed when no changes"),
        }
        assert_eq!(result, "hello world");
        assert_eq!(s, "hello world");
    }

    #[test]
    fn test_trait_separation() {
        // Test that we can use both traits separately
        fn use_replace_string<T: ReplaceString>(s: &T) -> Cow<'_, str> {
            s.remove_all_ascii(AsciiChar::l)
        }

        fn use_replace_string_in_place<T: ReplaceStringInPlace>(s: &mut T) {
            s.remove_all_ascii_in_place(AsciiChar::l);
        }

        let s1 = "hello world";
        let result = use_replace_string(&s1);
        assert_eq!(result, "heo word");

        let s2 = "hello world".to_string();
        let result = use_replace_string(&s2);
        assert_eq!(result, "heo word");

        let mut s3 = "hello world".to_string();
        use_replace_string_in_place(&mut s3);
        assert_eq!(s3, "heo word");

        let mut s4: Cow<'_, str> = Cow::Borrowed("hello world");
        use_replace_string_in_place(&mut s4);
        assert_eq!(s4, "heo word");
    }
}