Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reserve before write_fmt for owned buffers #137762

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions library/alloc/src/fmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -645,8 +645,7 @@ pub fn format(args: Arguments<'_>) -> string::String {
fn format_inner(args: Arguments<'_>) -> string::String {
let capacity = args.estimated_capacity();
let mut output = string::String::with_capacity(capacity);
output
.write_fmt(args)
core::fmt::write(&mut output, args)
.expect("a formatting trait implementation returned an error when the underlying stream did not");
output
}
Expand Down
9 changes: 9 additions & 0 deletions library/alloc/src/string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3172,6 +3172,15 @@ impl fmt::Write for String {
self.push(c);
Ok(())
}

fn write_fmt(&mut self, args: fmt::Arguments<'_>) -> fmt::Result {
if let Some(s) = args.as_statically_known_str() {
self.write_str(s)
} else {
self.reserve(args.estimated_capacity());
fmt::write(self, args)
}
}
}

/// An iterator over the [`char`]s of a string.
Expand Down
10 changes: 10 additions & 0 deletions library/std/src/ffi/os_str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -799,10 +799,20 @@ impl Hash for OsString {

#[stable(feature = "os_string_fmt_write", since = "1.64.0")]
impl fmt::Write for OsString {
#[inline]
fn write_str(&mut self, s: &str) -> fmt::Result {
self.push(s);
Ok(())
}

fn write_fmt(&mut self, args: fmt::Arguments<'_>) -> fmt::Result {
if let Some(s) = args.as_statically_known_str() {
self.write_str(s)
} else {
self.reserve(args.estimated_capacity());
fmt::write(self, args)
}
}
}

impl OsStr {
Expand Down
20 changes: 19 additions & 1 deletion library/std/src/io/cursor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
mod tests;

use crate::alloc::Allocator;
use crate::cmp;
use crate::io::prelude::*;
use crate::io::{self, BorrowedCursor, ErrorKind, IoSlice, IoSliceMut, SeekFrom};
use crate::{cmp, fmt};

/// A `Cursor` wraps an in-memory buffer and provides it with a
/// [`Seek`] implementation.
Expand Down Expand Up @@ -647,6 +647,15 @@ where
Ok(())
}

fn write_fmt(&mut self, args: fmt::Arguments<'_>) -> io::Result<()> {
if let Some(s) = args.as_statically_known_str() {
self.write_all(s.as_bytes())
} else {
self.inner.reserve(args.estimated_capacity());
io::default_write_fmt(self, args)
}
}

#[inline]
fn flush(&mut self) -> io::Result<()> {
Ok(())
Expand Down Expand Up @@ -681,6 +690,15 @@ where
Ok(())
}

fn write_fmt(&mut self, args: fmt::Arguments<'_>) -> io::Result<()> {
if let Some(s) = args.as_statically_known_str() {
self.write_all(s.as_bytes())
} else {
self.inner.reserve(args.estimated_capacity());
io::default_write_fmt(self, args)
}
}

#[inline]
fn flush(&mut self) -> io::Result<()> {
Ok(())
Expand Down
18 changes: 18 additions & 0 deletions library/std/src/io/impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,15 @@ impl<A: Allocator> Write for Vec<u8, A> {
Ok(())
}

fn write_fmt(&mut self, args: fmt::Arguments<'_>) -> io::Result<()> {
if let Some(s) = args.as_statically_known_str() {
self.write_all(s.as_bytes())
} else {
self.reserve(args.estimated_capacity());
io::default_write_fmt(self, args)
}
}

#[inline]
fn flush(&mut self) -> io::Result<()> {
Ok(())
Expand Down Expand Up @@ -662,6 +671,15 @@ impl<A: Allocator> Write for VecDeque<u8, A> {
Ok(())
}

fn write_fmt(&mut self, args: fmt::Arguments<'_>) -> io::Result<()> {
if let Some(s) = args.as_statically_known_str() {
self.write_all(s.as_bytes())
} else {
self.reserve(args.estimated_capacity());
io::default_write_fmt(self, args)
}
}

#[inline]
fn flush(&mut self) -> io::Result<()> {
Ok(())
Expand Down
Loading