Skip to content

Commit d694f47

Browse files
authoredMar 22, 2023
Rollup merge of #100311 - xfix:lines-fix-handling-of-bare-cr, r=ChrisDenton
Fix handling of trailing bare CR in str::lines Continuing from #91191. Fixes #94435.
2 parents 439292b + cef81dc commit d694f47

File tree

3 files changed

+26
-14
lines changed

3 files changed

+26
-14
lines changed
 

‎library/alloc/tests/str.rs

+19-7
Original file line numberDiff line numberDiff line change
@@ -1499,13 +1499,25 @@ fn test_split_whitespace() {
14991499

15001500
#[test]
15011501
fn test_lines() {
1502-
let data = "\nMäry häd ä little lämb\n\r\nLittle lämb\n";
1503-
let lines: Vec<&str> = data.lines().collect();
1504-
assert_eq!(lines, ["", "Märy häd ä little lämb", "", "Little lämb"]);
1505-
1506-
let data = "\r\nMäry häd ä little lämb\n\nLittle lämb"; // no trailing \n
1507-
let lines: Vec<&str> = data.lines().collect();
1508-
assert_eq!(lines, ["", "Märy häd ä little lämb", "", "Little lämb"]);
1502+
fn t(data: &str, expected: &[&str]) {
1503+
let lines: Vec<&str> = data.lines().collect();
1504+
assert_eq!(lines, expected);
1505+
}
1506+
t("", &[]);
1507+
t("\n", &[""]);
1508+
t("\n2nd", &["", "2nd"]);
1509+
t("\r\n", &[""]);
1510+
t("bare\r", &["bare\r"]);
1511+
t("bare\rcr", &["bare\rcr"]);
1512+
t("Text\n\r", &["Text", "\r"]);
1513+
t(
1514+
"\nMäry häd ä little lämb\n\r\nLittle lämb\n",
1515+
&["", "Märy häd ä little lämb", "", "Little lämb"],
1516+
);
1517+
t(
1518+
"\r\nMäry häd ä little lämb\n\nLittle lämb",
1519+
&["", "Märy häd ä little lämb", "", "Little lämb"],
1520+
);
15091521
}
15101522

15111523
#[test]

‎library/core/src/str/iter.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use super::from_utf8_unchecked;
1313
use super::pattern::Pattern;
1414
use super::pattern::{DoubleEndedSearcher, ReverseSearcher, Searcher};
1515
use super::validations::{next_code_point, next_code_point_reverse};
16-
use super::LinesAnyMap;
16+
use super::LinesMap;
1717
use super::{BytesIsNotEmpty, UnsafeBytesToStr};
1818
use super::{CharEscapeDebugContinue, CharEscapeDefault, CharEscapeUnicode};
1919
use super::{IsAsciiWhitespace, IsNotEmpty, IsWhitespace};
@@ -1104,7 +1104,7 @@ generate_pattern_iterators! {
11041104
#[stable(feature = "rust1", since = "1.0.0")]
11051105
#[must_use = "iterators are lazy and do nothing unless consumed"]
11061106
#[derive(Clone, Debug)]
1107-
pub struct Lines<'a>(pub(super) Map<SplitTerminator<'a, char>, LinesAnyMap>);
1107+
pub struct Lines<'a>(pub(super) Map<SplitInclusive<'a, char>, LinesMap>);
11081108

11091109
#[stable(feature = "rust1", since = "1.0.0")]
11101110
impl<'a> Iterator for Lines<'a> {

‎library/core/src/str/mod.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1011,7 +1011,7 @@ impl str {
10111011
#[stable(feature = "rust1", since = "1.0.0")]
10121012
#[inline]
10131013
pub fn lines(&self) -> Lines<'_> {
1014-
Lines(self.split_terminator('\n').map(LinesAnyMap))
1014+
Lines(self.split_inclusive('\n').map(LinesMap))
10151015
}
10161016

10171017
/// An iterator over the lines of a string.
@@ -2604,10 +2604,10 @@ impl Default for &mut str {
26042604
impl_fn_for_zst! {
26052605
/// A nameable, cloneable fn type
26062606
#[derive(Clone)]
2607-
struct LinesAnyMap impl<'a> Fn = |line: &'a str| -> &'a str {
2608-
let l = line.len();
2609-
if l > 0 && line.as_bytes()[l - 1] == b'\r' { &line[0 .. l - 1] }
2610-
else { line }
2607+
struct LinesMap impl<'a> Fn = |line: &'a str| -> &'a str {
2608+
let Some(line) = line.strip_suffix('\n') else { return line };
2609+
let Some(line) = line.strip_suffix('\r') else { return line };
2610+
line
26112611
};
26122612

26132613
#[derive(Clone)]

0 commit comments

Comments
 (0)
Please sign in to comment.