Skip to content

Commit c965858

Browse files
committed
Rollup merge of rust-lang#58539 - aaronstillwell:master, r=Mark-Simulacrum
Add alias methods to PathBuf for underlying OsString (rust-lang#58234) Implemented the following methods on PathBuf which forward to the underlying OsString. - capacity - with_capacity - clear - reserve - reserve_exact - shrink_to_fit - shrink_to These methods have been documented with reference to the original docs for `OsString`. @Mark-Simulacrum please let me know if you feel this does not suffice. Further, I've not yet included tests for these definitions - please advise on how comprehensive tests need to be for methods such as these that simply alias other (already tested) methods. (This PR addresses issue rust-lang#58234)
2 parents a68a1c7 + c9fbcc1 commit c965858

File tree

1 file changed

+81
-0
lines changed

1 file changed

+81
-0
lines changed

src/libstd/path.rs

+81
Original file line numberDiff line numberDiff line change
@@ -1145,6 +1145,33 @@ impl PathBuf {
11451145
PathBuf { inner: OsString::new() }
11461146
}
11471147

1148+
/// Creates a new `PathBuf` with a given capacity used to create the
1149+
/// internal [`OsString`]. See [`with_capacity`] defined on [`OsString`].
1150+
///
1151+
/// # Examples
1152+
///
1153+
/// ```
1154+
/// #![feature(path_buf_capacity)]
1155+
/// use std::path::PathBuf;
1156+
///
1157+
/// let mut path = PathBuf::with_capacity(10);
1158+
/// let capacity = path.capacity();
1159+
///
1160+
/// // This push is done without reallocating
1161+
/// path.push(r"C:\");
1162+
///
1163+
/// assert_eq!(capacity, path.capacity());
1164+
/// ```
1165+
///
1166+
/// [`with_capacity`]: ../ffi/struct.OsString.html#method.with_capacity
1167+
/// [`OsString`]: ../ffi/struct.OsString.html
1168+
#[unstable(feature = "path_buf_capacity", issue = "58234")]
1169+
pub fn with_capacity(capacity: usize) -> PathBuf {
1170+
PathBuf {
1171+
inner: OsString::with_capacity(capacity)
1172+
}
1173+
}
1174+
11481175
/// Coerces to a [`Path`] slice.
11491176
///
11501177
/// [`Path`]: struct.Path.html
@@ -1373,6 +1400,60 @@ impl PathBuf {
13731400
let rw = Box::into_raw(self.inner.into_boxed_os_str()) as *mut Path;
13741401
unsafe { Box::from_raw(rw) }
13751402
}
1403+
1404+
/// Invokes [`capacity`] on the underlying instance of [`OsString`].
1405+
///
1406+
/// [`capacity`]: ../ffi/struct.OsString.html#method.capacity
1407+
/// [`OsString`]: ../ffi/struct.OsString.html
1408+
#[unstable(feature = "path_buf_capacity", issue = "58234")]
1409+
pub fn capacity(&self) -> usize {
1410+
self.inner.capacity()
1411+
}
1412+
1413+
/// Invokes [`clear`] on the underlying instance of [`OsString`].
1414+
///
1415+
/// [`clear`]: ../ffi/struct.OsString.html#method.clear
1416+
/// [`OsString`]: ../ffi/struct.OsString.html
1417+
#[unstable(feature = "path_buf_capacity", issue = "58234")]
1418+
pub fn clear(&mut self) {
1419+
self.inner.clear()
1420+
}
1421+
1422+
/// Invokes [`reserve`] on the underlying instance of [`OsString`].
1423+
///
1424+
/// [`reserve`]: ../ffi/struct.OsString.html#method.reserve
1425+
/// [`OsString`]: ../ffi/struct.OsString.html
1426+
#[unstable(feature = "path_buf_capacity", issue = "58234")]
1427+
pub fn reserve(&mut self, additional: usize) {
1428+
self.inner.reserve(additional)
1429+
}
1430+
1431+
/// Invokes [`reserve_exact`] on the underlying instance of [`OsString`].
1432+
///
1433+
/// [`reserve_exact`]: ../ffi/struct.OsString.html#method.reserve_exact
1434+
/// [`OsString`]: ../ffi/struct.OsString.html
1435+
#[unstable(feature = "path_buf_capacity", issue = "58234")]
1436+
pub fn reserve_exact(&mut self, additional: usize) {
1437+
self.inner.reserve_exact(additional)
1438+
}
1439+
1440+
/// Invokes [`shrink_to_fit`] on the underlying instance of [`OsString`].
1441+
///
1442+
/// [`shrink_to_fit`]: ../ffi/struct.OsString.html#method.shrink_to_fit
1443+
/// [`OsString`]: ../ffi/struct.OsString.html
1444+
#[unstable(feature = "path_buf_capacity", issue = "58234")]
1445+
pub fn shrink_to_fit(&mut self) {
1446+
self.inner.shrink_to_fit()
1447+
}
1448+
1449+
/// Invokes [`shrink_to`] on the underlying instance of [`OsString`].
1450+
///
1451+
/// [`shrink_to`]: ../ffi/struct.OsString.html#method.shrink_to
1452+
/// [`OsString`]: ../ffi/struct.OsString.html
1453+
#[unstable(feature = "path_buf_capacity", issue = "58234")]
1454+
pub fn shrink_to(&mut self, min_capacity: usize) {
1455+
self.inner.shrink_to(min_capacity)
1456+
}
13761457
}
13771458

13781459
#[stable(feature = "box_from_path", since = "1.17.0")]

0 commit comments

Comments
 (0)