-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
std: remove an allocation in Path::with_extension
#113106
Merged
bors
merged 2 commits into
rust-lang:master
from
marcospb19:improve-path-with-extension-function
Jul 21, 2023
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1183,7 +1183,7 @@ pub fn test_prefix_ext() { | |
#[test] | ||
pub fn test_push() { | ||
macro_rules! tp ( | ||
($path:expr, $push:expr, $expected:expr) => ( { | ||
($path:expr, $push:expr, $expected:expr) => ({ | ||
let mut actual = PathBuf::from($path); | ||
actual.push($push); | ||
assert!(actual.to_str() == Some($expected), | ||
|
@@ -1281,7 +1281,7 @@ pub fn test_push() { | |
#[test] | ||
pub fn test_pop() { | ||
macro_rules! tp ( | ||
($path:expr, $expected:expr, $output:expr) => ( { | ||
($path:expr, $expected:expr, $output:expr) => ({ | ||
let mut actual = PathBuf::from($path); | ||
let output = actual.pop(); | ||
assert!(actual.to_str() == Some($expected) && output == $output, | ||
|
@@ -1335,7 +1335,7 @@ pub fn test_pop() { | |
#[test] | ||
pub fn test_set_file_name() { | ||
macro_rules! tfn ( | ||
($path:expr, $file:expr, $expected:expr) => ( { | ||
($path:expr, $file:expr, $expected:expr) => ({ | ||
let mut p = PathBuf::from($path); | ||
p.set_file_name($file); | ||
assert!(p.to_str() == Some($expected), | ||
|
@@ -1369,7 +1369,7 @@ pub fn test_set_file_name() { | |
#[test] | ||
pub fn test_set_extension() { | ||
macro_rules! tfe ( | ||
($path:expr, $ext:expr, $expected:expr, $output:expr) => ( { | ||
($path:expr, $ext:expr, $expected:expr, $output:expr) => ({ | ||
let mut p = PathBuf::from($path); | ||
let output = p.set_extension($ext); | ||
assert!(p.to_str() == Some($expected) && output == $output, | ||
|
@@ -1394,6 +1394,46 @@ pub fn test_set_extension() { | |
tfe!("/", "foo", "/", false); | ||
} | ||
|
||
#[test] | ||
pub fn test_with_extension() { | ||
macro_rules! twe ( | ||
($input:expr, $extension:expr, $expected:expr) => ({ | ||
let input = Path::new($input); | ||
let output = input.with_extension($extension); | ||
|
||
assert!( | ||
output.to_str() == Some($expected), | ||
"calling Path::new({:?}).with_extension({:?}): Expected {:?}, got {:?}", | ||
$input, $extension, $expected, output, | ||
); | ||
}); | ||
); | ||
|
||
twe!("foo", "txt", "foo.txt"); | ||
twe!("foo.bar", "txt", "foo.txt"); | ||
twe!("foo.bar.baz", "txt", "foo.bar.txt"); | ||
twe!(".test", "txt", ".test.txt"); | ||
twe!("foo.txt", "", "foo"); | ||
twe!("foo", "", "foo"); | ||
twe!("", "foo", ""); | ||
twe!(".", "foo", "."); | ||
twe!("foo/", "bar", "foo.bar"); | ||
twe!("foo/.", "bar", "foo.bar"); | ||
twe!("..", "foo", ".."); | ||
twe!("foo/..", "bar", "foo/.."); | ||
twe!("/", "foo", "/"); | ||
|
||
// New extension is smaller than file name | ||
twe!("aaa_aaa_aaa", "bbb_bbb", "aaa_aaa_aaa.bbb_bbb"); | ||
// New extension is greater than file name | ||
twe!("bbb_bbb", "aaa_aaa_aaa", "bbb_bbb.aaa_aaa_aaa"); | ||
|
||
// New extension is smaller than previous extension | ||
twe!("ccc.aaa_aaa_aaa", "bbb_bbb", "ccc.bbb_bbb"); | ||
// New extension is greater than previous extension | ||
twe!("ccc.bbb_bbb", "aaa_aaa_aaa", "ccc.aaa_aaa_aaa"); | ||
Comment on lines
+1426
to
+1434
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are necessary to get the bug you spotted. The other tests do not, because they all use |
||
} | ||
|
||
#[test] | ||
fn test_eq_receivers() { | ||
use crate::borrow::Cow; | ||
|
@@ -1669,7 +1709,7 @@ fn into_rc() { | |
#[test] | ||
fn test_ord() { | ||
macro_rules! ord( | ||
($ord:ident, $left:expr, $right:expr) => ( { | ||
($ord:ident, $left:expr, $right:expr) => ({ | ||
use core::cmp::Ordering; | ||
|
||
let left = Path::new($left); | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After inspecting these, I realized that my implementation over-allocates in some of the corner cases.
For this one specifically, it does an extra (potentially) unused allocation, because it's an empty path:
EDIT: I believe they're mostly OK, because I assume that 99% of calls fit in the first 4 scenarios (or are only over-allocating 1 byte), but please let me know what you think.