forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#126473 - matthiaskrgr:rollup-8w2xm09, r=matth…
…iaskrgr Rollup of 7 pull requests Successful merges: - rust-lang#123769 (Improve escaping of byte, byte str, and c str proc-macro literals) - rust-lang#126054 (`E0229`: Suggest Moving Type Constraints to Type Parameter Declaration) - rust-lang#126135 (add HermitOS support for vectored read/write operations) - rust-lang#126266 (Unify guarantees about the default allocator) - rust-lang#126285 (`UniqueRc`: support allocators and `T: ?Sized`.) - rust-lang#126399 (extend the check for LLVM build) - rust-lang#126426 (const validation: fix ICE on dangling ZST reference) r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
16 changed files
with
369 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#[derive(Copy, Clone)] | ||
pub(crate) struct EscapeOptions { | ||
/// Produce \'. | ||
pub escape_single_quote: bool, | ||
/// Produce \". | ||
pub escape_double_quote: bool, | ||
/// Produce \x escapes for non-ASCII, and use \x rather than \u for ASCII | ||
/// control characters. | ||
pub escape_nonascii: bool, | ||
} | ||
|
||
pub(crate) fn escape_bytes(bytes: &[u8], opt: EscapeOptions) -> String { | ||
let mut repr = String::new(); | ||
|
||
if opt.escape_nonascii { | ||
for &byte in bytes { | ||
escape_single_byte(byte, opt, &mut repr); | ||
} | ||
} else { | ||
let mut chunks = bytes.utf8_chunks(); | ||
while let Some(chunk) = chunks.next() { | ||
for ch in chunk.valid().chars() { | ||
escape_single_char(ch, opt, &mut repr); | ||
} | ||
for &byte in chunk.invalid() { | ||
escape_single_byte(byte, opt, &mut repr); | ||
} | ||
} | ||
} | ||
|
||
repr | ||
} | ||
|
||
fn escape_single_byte(byte: u8, opt: EscapeOptions, repr: &mut String) { | ||
if byte == b'\0' { | ||
repr.push_str("\\0"); | ||
} else if (byte == b'\'' && !opt.escape_single_quote) | ||
|| (byte == b'"' && !opt.escape_double_quote) | ||
{ | ||
repr.push(byte as char); | ||
} else { | ||
// Escapes \t, \r, \n, \\, \', \", and uses \x## for non-ASCII and | ||
// for ASCII control characters. | ||
repr.extend(byte.escape_ascii().map(char::from)); | ||
} | ||
} | ||
|
||
fn escape_single_char(ch: char, opt: EscapeOptions, repr: &mut String) { | ||
if (ch == '\'' && !opt.escape_single_quote) || (ch == '"' && !opt.escape_double_quote) { | ||
repr.push(ch); | ||
} else { | ||
// Escapes \0, \t, \r, \n, \\, \', \", and uses \u{...} for | ||
// non-printable characters and for Grapheme_Extend characters, which | ||
// includes things like U+0300 "Combining Grave Accent". | ||
repr.extend(ch.escape_debug()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.