whatwg_infra/
strings.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
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
extern crate alloc;
use alloc::{borrow::ToOwned, string::String};

/// Methods from the WHATWG Infra Standard for strings
pub trait InfraStr {
	/// See the documentation for [`normalize_newlines()`]
	fn normalize_newlines(&self) -> String;
	/// See the documentation for [`strip_newlines()`]
	fn strip_newlines(&self) -> String;
	/// See the documentation for [`trim_ascii_whitespace()`]
	fn trim_ascii_whitespace(&self) -> &str;
	/// See the documentation for [`trim_collapse_ascii_whitespace()`]
	fn trim_collapse_ascii_whitespace(&self) -> String;
	/// See the documentation for [`collect_codepoints()`]
	fn collect_codepoints<P>(&self, position: &mut usize, predicate: P) -> String
	where
		P: Fn(char) -> bool;
	/// See the documentation for [`skip_codepoints()`]
	fn skip_codepoints<P>(&self, position: &mut usize, predicate: P)
	where
		P: Fn(char) -> bool;
	fn skip_ascii_whitespace(&self, position: &mut usize);
}

impl InfraStr for str {
	fn normalize_newlines(&self) -> String {
		normalize_newlines(self)
	}

	fn strip_newlines(&self) -> String {
		strip_newlines(self)
	}

	fn trim_ascii_whitespace(&self) -> &str {
		trim_ascii_whitespace(self)
	}

	fn trim_collapse_ascii_whitespace(&self) -> String {
		trim_collapse_ascii_whitespace(self)
	}

	fn collect_codepoints<P>(&self, position: &mut usize, predicate: P) -> String
	where
		P: Fn(char) -> bool,
	{
		collect_codepoints(self, position, predicate)
	}

	fn skip_codepoints<P>(&self, position: &mut usize, predicate: P)
	where
		P: Fn(char) -> bool,
	{
		skip_codepoints(self, position, predicate)
	}

	fn skip_ascii_whitespace(&self, position: &mut usize) {
		skip_ascii_whitespace(self, position)
	}
}

impl InfraStr for String {
	fn normalize_newlines(&self) -> String {
		normalize_newlines(self.as_str())
	}

	fn strip_newlines(&self) -> String {
		strip_newlines(self.as_str())
	}

	fn trim_ascii_whitespace(&self) -> &str {
		trim_ascii_whitespace(self.as_str())
	}

	fn trim_collapse_ascii_whitespace(&self) -> String {
		trim_collapse_ascii_whitespace(self.as_str())
	}

	fn collect_codepoints<P>(&self, position: &mut usize, predicate: P) -> String
	where
		P: Fn(char) -> bool,
	{
		collect_codepoints(self.as_str(), position, predicate)
	}

	fn skip_codepoints<P>(&self, position: &mut usize, predicate: P)
	where
		P: Fn(char) -> bool,
	{
		skip_codepoints(self.as_str(), position, predicate)
	}

	fn skip_ascii_whitespace(&self, position: &mut usize) {
		skip_ascii_whitespace(self.as_str(), position)
	}
}

/// Replaces every U+000D U+000A pair of codepoints with a single U+000A
/// codepoint, and any remaining U+000D codepoint with a U+000A codepoint.
///
/// See also: [WHATWG Infra Standard definition][whatwg-infra-dfn]
///
/// [whatwg-infra-dfn]: https://infra.spec.whatwg.org/#normalize-newlines
///
/// # Examples
/// ```
/// use whatwg_infra::normalize_newlines;
///
/// let s = "\ralice\r\n\r\nbob\r";
/// assert_eq!(normalize_newlines(s), String::from("\nalice\n\nbob\n"));
/// ```
#[must_use]
#[inline]
pub fn normalize_newlines(s: &str) -> String {
	s.replace("\u{000D}\u{000A}", "\u{000A}")
		.as_str()
		.replace('\u{000D}', "\u{000A}")
}

/// A string without any U+000A LINE FEED (LF) or U+000D CARIAGE RETURN (CR)
/// codepoints.
///
/// See also: [WHATWG Infra Standard definition][whatwg-infra-dfn]
///
/// [whatwg-infra-dfn]: https://infra.spec.whatwg.org/#strip-newlines
///
/// # Examples
/// ```
/// use whatwg_infra::strip_newlines;
///
/// let s = "Alice\n\rBob";
/// assert_eq!(strip_newlines(s), String::from("AliceBob"));
///
/// let empty = "\r\r\n\n\r\n";
/// assert_eq!(strip_newlines(empty), String::from(""));
/// ```
#[must_use]
#[inline]
pub fn strip_newlines(s: &str) -> String {
	let mut result = String::with_capacity(s.len());
	let mut stripped_codepoints = 0usize;

	for c in s.chars() {
		if c != '\u{000A}' && c != '\u{000D}' {
			result.push(c);
			stripped_codepoints += 1usize;
		}
	}

	if result.len() != s.len() {
		result.shrink_to(s.len() - stripped_codepoints);
	}

	result
}

/// Removes ASCII whitespace from before and after a string.
///
/// See also: [WHATWG Infra Standard definition][whatwg-infra-dfn]
///
/// [whatwg-infra-dfn]: https://infra.spec.whatwg.org/#strip-leading-and-trailing-ascii-whitespace
///
/// # Examples
/// ```
/// use whatwg_infra::trim_ascii_whitespace;
///
/// let s1 = "     ";
/// assert_eq!(trim_ascii_whitespace(s1), String::from(""));
///
/// let s2 = "  cats and dogs  ";
/// assert_eq!(trim_ascii_whitespace(s2), String::from("cats and dogs"));
/// ```
#[must_use]
pub fn trim_ascii_whitespace(s: &str) -> &str {
	s.trim_matches(|c: char| c.is_ascii_whitespace())
}

/// Removes ASCII whitespace from before and after a string, and collapses
/// runs of ASCII whitespaces by replacing them with a single U+0020 SPACE codepoint.
///
/// See also: [WHATWG Infra Standard definition][whatwg-infra-dfn]
///
/// [whatwg-infra-dfn]: https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
///
/// # Examples
/// ```
/// use whatwg_infra::trim_collapse_ascii_whitespace;
///
/// let s = "\r  \n  cat dog  hamster";
/// assert_eq!(trim_collapse_ascii_whitespace(s), String::from("cat dog hamster"));
/// ```
#[must_use]
pub fn trim_collapse_ascii_whitespace(s: &str) -> String {
	let mut result = String::with_capacity(s.len());
	let mut last_seen_whitespace = false;

	for c in s.chars() {
		if c.is_ascii_whitespace() {
			if !last_seen_whitespace {
				last_seen_whitespace = true;
				result.push('\u{0020}');
				continue;
			}
		} else {
			last_seen_whitespace = false;
			result.push(c);
		}
	}

	trim_ascii_whitespace(result.as_str()).to_owned()
}

/// Collects a sequence of Unicode codepoints given a predicate function
/// and position to move forward.
///
/// See also: [WHATWG Infra Standard definition][whatwg-infra-dfn]
///
/// [whatwg-infra-dfn]: https://infra.spec.whatwg.org/#collect-a-sequence-of-code-points
///
/// # Examples
/// ```
/// use whatwg_infra::collect_codepoints;
///
/// let value = "test1";
/// let mut position = 0usize;
/// let collected = collect_codepoints(value, &mut position, |c| c.is_ascii_alphabetic());
///
/// assert_eq!(collected, String::from("test"));
/// assert_eq!(position, 4);
/// ```
pub fn collect_codepoints<P>(s: &str, position: &mut usize, predicate: P) -> String
where
	P: Fn(char) -> bool,
{
	if s.is_empty() || position >= &mut s.len() {
		return String::new();
	}

	let mut result = String::with_capacity(s.len() - *position);
	let starting_position = *position;

	skip_codepoints(s, position, predicate);

	result.push_str(&s[starting_position..*position]);
	if result.len() < s.len() - *position {
		result.shrink_to_fit();
	}

	result
}

/// A non-allocating version of [`collect_codepoints()`] for skipping/ignoring
/// a series of codepoints that match a certain predicate.
///
/// # Examples
/// ```
/// use whatwg_infra::skip_codepoints;
///
/// let s = "alice_bob";
/// let mut position = 0usize;
///
/// skip_codepoints(s, &mut position, |c| c.is_ascii_alphabetic());
///
/// assert_eq!(position, 5);
/// assert_eq!(&s[position..], "_bob");
/// ```
pub fn skip_codepoints<P>(s: &str, position: &mut usize, predicate: P)
where
	P: Fn(char) -> bool,
{
	if s.is_empty() || position >= &mut s.len() {
		return;
	}

	let rest = s.chars().skip(*position);
	for c in rest {
		if position < &mut s.len() && predicate(c) {
			*position += 1;
		} else {
			break;
		}
	}
}

/// Moves the index of a string until it passes all ASCII whitespace.
///
/// See also: [WHATWG Infra Standard definition][whatwg-infra-dfn]
///
/// [whatwg-infra-dfn]: https://infra.spec.whatwg.org/#skip-ascii-whitespace
///
/// # Examples
/// ```
/// use whatwg_infra::skip_ascii_whitespace;
///
/// let s = "\n\n\ntest";
/// let mut position = 0usize;
/// skip_ascii_whitespace(s, &mut position);
///
/// assert_eq!(position, 3);
/// assert_eq!(&s[position..], "test");
/// ```
pub fn skip_ascii_whitespace(s: &str, position: &mut usize) {
	skip_codepoints(s, position, |c| c.is_ascii_whitespace())
}

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

	#[test]
	fn test_normalize_newlines() {
		assert_eq!(
			"\ralice\r\n\r\nbob\r".normalize_newlines(),
			String::from("\nalice\n\nbob\n")
		);
	}

	#[test]
	fn test_strip_newlines_empty() {
		assert_eq!("\r\r\n\n\r\n".strip_newlines(), String::from(""));
	}

	#[test]
	fn test_strip_newlines_empty2() {
		assert_eq!("".strip_newlines(), String::new());
	}

	#[test]
	fn test_strip_newlines_strings1() {
		assert_eq!("Alice\n\rBob".strip_newlines(), String::from("AliceBob"));
	}

	#[test]
	fn test_trim_ascii_whitespace_empty() {
		assert_eq!("     ".trim_ascii_whitespace(), String::from(""));
	}

	#[test]
	fn test_trim_ascii_whitespace_strings1() {
		assert_eq!(
			"  cats and dogs  ".trim_ascii_whitespace(),
			String::from("cats and dogs")
		);
	}

	#[test]
	fn test_trim_collapse_ascii_whitespace() {
		assert_eq!(
			"\r  \n  cat dog  hamster".trim_collapse_ascii_whitespace(),
			String::from("cat dog hamster")
		);
	}

	#[test]
	fn test_collect_codepoints_empty() {
		let mut position = 0usize;
		let collected = "".collect_codepoints(&mut position, |c| c.is_ascii_whitespace());

		assert_eq!(collected, String::new());
	}

	#[test]
	fn test_collect_codepoints_high_position() {
		let mut position = 15usize;
		let collected = "alice".collect_codepoints(&mut position, |c| c.is_alphabetic());

		assert_eq!(collected, String::new());
	}

	#[test]
	fn test_collect_codepoints_string2() {
		let test = "test!!!!!";
		let mut position = 0usize;
		let collected = test.collect_codepoints(&mut position, |c| c.is_ascii_alphabetic());
		assert_eq!(collected, String::from("test"));
		assert_eq!(position, 4);
	}

	#[test]
	fn test_collect_codepoints_either() {
		let value = "Apple    Banana    Orange";
		let mut position = 0usize;
		let collected = collect_codepoints(value, &mut position, |c| {
			c.is_alphabetic() || c.is_whitespace()
		});

		assert_eq!(collected, String::from("Apple    Banana    Orange"));
	}

	#[test]
	fn skip_codepoints() {
		let s = "1234test";
		let mut position = 0usize;

		s.skip_codepoints(&mut position, |c| c.is_ascii_digit());

		assert_eq!(position, 4);
		assert_eq!(&s[position..], "test");
	}

	#[test]
	fn skip_codepoints_no_matches_early_exit() {
		let s = "1234test";
		let mut position = 0usize;
		s.skip_codepoints(&mut position, |c| c.is_ascii_alphabetic());

		assert_eq!(position, 0);
		assert_eq!(&s[position..], "1234test");
	}

	#[test]
	fn skip_codepoints_match_until_end() {
		let s = "123456789";
		let mut position = 0usize;

		s.skip_codepoints(&mut position, |c| c.is_ascii_digit());

		assert_eq!(position, 9);
		assert_eq!(&s[position..], "");
	}

	#[test]
	fn skip_codepoints_empty_str() {
		let s = "";
		let mut position = 0usize;

		s.skip_codepoints(&mut position, |c| c.is_ascii_digit());

		assert_eq!(position, 0);
		assert_eq!(&s[position..], "");
	}

	#[test]
	fn skip_ascii_whitespace() {
		let s = "   test";
		let mut position = 0usize;
		s.skip_ascii_whitespace(&mut position);

		assert_eq!(position, 3);
		assert_eq!(&s[position..], "test");
	}

	#[test]
	fn impl_infrastr_for_string() {
		assert_eq!(
			String::from("\ralice\r\n\r\nbob\r").normalize_newlines(),
			String::from("\nalice\n\nbob\n")
		);
		assert_eq!(
			String::from("Alice\n\rBob").strip_newlines(),
			String::from("AliceBob")
		);
		assert_eq!(
			String::from("     ").trim_ascii_whitespace(),
			String::from("")
		);
		assert_eq!(
			String::from("\r  \n  cat dog  hamster").trim_collapse_ascii_whitespace(),
			String::from("cat dog hamster")
		);

		{
			let test = String::from("test!!!!!");
			let mut position = 0usize;
			let collected =
				test.collect_codepoints(&mut position, |c| c.is_ascii_alphabetic());
			assert_eq!(collected, String::from("test"));
			assert_eq!(position, 4);
		}

		{
			let s = String::from("1234test");
			let mut position = 0usize;

			s.skip_codepoints(&mut position, |c| c.is_ascii_digit());

			assert_eq!(position, 4);
			assert_eq!(&s[position..], "test");
		}

		{
			let s = String::from("   test");
			let mut position = 0usize;

			s.skip_ascii_whitespace(&mut position);

			assert_eq!(position, 3);
			assert_eq!(&s[position..], "test");
		}
	}
}