Skip to content

Commit 2bdeb60

Browse files
authored
refactor: clone-on-write when needed for InternedString (#14808)
### What does this PR try to resolve? Use `Cow` instead of duplicating the interning logic. Closes #14674 ### How should we test and review this PR? ### Additional information
2 parents 3f5abe3 + 1328108 commit 2bdeb60

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/cargo/util/interning.rs

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use serde::{Serialize, Serializer};
22
use serde_untagged::UntaggedEnumVisitor;
33
use std::borrow::Borrow;
4+
use std::borrow::Cow;
45
use std::cmp::Ordering;
56
use std::collections::HashSet;
67
use std::ffi::OsStr;
@@ -46,7 +47,7 @@ impl<'a> From<&'a String> for InternedString {
4647

4748
impl From<String> for InternedString {
4849
fn from(item: String) -> Self {
49-
InternedString::new(&item)
50+
InternedString::from_cow(item.into())
5051
}
5152
}
5253

@@ -72,9 +73,13 @@ impl Eq for InternedString {}
7273

7374
impl InternedString {
7475
pub fn new(str: &str) -> InternedString {
76+
InternedString::from_cow(str.into())
77+
}
78+
79+
fn from_cow<'a>(str: Cow<'a, str>) -> InternedString {
7580
let mut cache = interned_storage();
76-
let s = cache.get(str).copied().unwrap_or_else(|| {
77-
let s = str.to_string().leak();
81+
let s = cache.get(str.as_ref()).copied().unwrap_or_else(|| {
82+
let s = str.into_owned().leak();
7883
cache.insert(s);
7984
s
8085
});

0 commit comments

Comments
 (0)