perf: use or_else variants for expensive errors

This commit changes the error construction in
multiple places from the `*_or` to the `*_or_else`
variants. This is done to avoid the heap
allocation (for example, `to_string`) when there
is no need to.
This commit is contained in:
daimond113 2025-02-14 23:42:33 +01:00
parent 5ea86e632e
commit d6e2f611d8
No known key found for this signature in database
GPG key ID: 640DC95EC1190354
8 changed files with 20 additions and 21 deletions

View file

@ -176,7 +176,10 @@ pub async fn publish_package(
})?; })?;
set.insert(DocEntry { set.insert(DocEntry {
label: info.label.or(h1).unwrap_or(file_name.to_case(Case::Title)), label: info
.label
.or(h1)
.unwrap_or_else(|| file_name.to_case(Case::Title)),
position: info.sidebar_position, position: info.sidebar_position,
kind: DocEntryKind::Page { kind: DocEntryKind::Page {
name: entry name: entry

View file

@ -63,7 +63,7 @@ macro_rules! benv {
std::env::var($name) std::env::var($name)
}; };
($name:expr => $default:expr) => { ($name:expr => $default:expr) => {
benv!($name).unwrap_or($default.to_string()) benv!($name).unwrap_or_else(|_| $default.to_string())
}; };
(required $name:expr) => { (required $name:expr) => {
benv!($name).expect(concat!("Environment variable `", $name, "` must be set")) benv!($name).expect(concat!("Environment variable `", $name, "` must be set"))

View file

@ -187,7 +187,7 @@ impl AddCommand {
.split('/') .split('/')
.next_back() .next_back()
.map(|s| s.to_string()) .map(|s| s.to_string())
.unwrap_or(url.path.to_string()), .unwrap_or_else(|| url.path.to_string()),
AnyPackageIdentifier::Workspace(versioned) => versioned.0.name().to_string(), AnyPackageIdentifier::Workspace(versioned) => versioned.0.name().to_string(),
AnyPackageIdentifier::Path(path) => path AnyPackageIdentifier::Path(path) => path
.file_name() .file_name()

View file

@ -543,7 +543,7 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p
manifest manifest
.target .target
.lib_path() .lib_path()
.map_or("(none)".to_string(), |p| p.to_string()) .map_or_else(|| "(none)".to_string(), |p| p.to_string())
); );
if roblox_target { if roblox_target {
@ -554,7 +554,7 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p
manifest manifest
.target .target
.bin_path() .bin_path()
.map_or("(none)".to_string(), |p| p.to_string()) .map_or_else(|| "(none)".to_string(), |p| p.to_string())
); );
println!( println!(
"\tscripts: {}", "\tscripts: {}",
@ -562,9 +562,10 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p
.target .target
.scripts() .scripts()
.filter(|s| !s.is_empty()) .filter(|s| !s.is_empty())
.map_or("(none)".to_string(), |s| { .map_or_else(
s.keys().cloned().collect::<Vec<_>>().join(", ") || "(none)".to_string(),
}) |s| { s.keys().cloned().collect::<Vec<_>>().join(", ") }
)
); );
} }

View file

@ -232,7 +232,7 @@ async fn run() -> anyhow::Result<()> {
project_root_dir.display(), project_root_dir.display(),
project_workspace_dir project_workspace_dir
.as_ref() .as_ref()
.map_or("none".to_string(), |p| p.display().to_string()) .map_or_else(|| "none".to_string(), |p| p.display().to_string())
); );
let home_dir = home_dir()?; let home_dir = home_dir()?;

View file

@ -31,7 +31,7 @@ impl FromStr for PackageName {
fn from_str(s: &str) -> Result<Self, Self::Err> { fn from_str(s: &str) -> Result<Self, Self::Err> {
let (scope, name) = s let (scope, name) = s
.split_once('/') .split_once('/')
.ok_or(Self::Err::InvalidFormat(s.to_string()))?; .ok_or_else(|| Self::Err::InvalidFormat(s.to_string()))?;
for (reason, part) in [(ErrorReason::Scope, scope), (ErrorReason::Name, name)] { for (reason, part) in [(ErrorReason::Scope, scope), (ErrorReason::Name, name)] {
let min_len = match reason { let min_len = match reason {
@ -218,7 +218,7 @@ pub mod wally {
.strip_prefix("wally#") .strip_prefix("wally#")
.unwrap_or(s) .unwrap_or(s)
.split_once('/') .split_once('/')
.ok_or(Self::Err::InvalidFormat(s.to_string()))?; .ok_or_else(|| Self::Err::InvalidFormat(s.to_string()))?;
for (reason, part) in [(ErrorReason::Scope, scope), (ErrorReason::Name, name)] { for (reason, part) in [(ErrorReason::Scope, scope), (ErrorReason::Name, name)] {
if part.is_empty() || part.len() > 64 { if part.is_empty() || part.len() > 64 {

View file

@ -182,7 +182,7 @@ impl Project {
manifest manifest
.indices .indices
.get(&specifier.index) .get(&specifier.index)
.ok_or(errors::DependencyGraphError::IndexNotFound( .ok_or_else(|| errors::DependencyGraphError::IndexNotFound(
specifier.index.to_string(), specifier.index.to_string(),
))? ))?
.clone() .clone()
@ -202,7 +202,7 @@ impl Project {
manifest manifest
.wally_indices .wally_indices
.get(&specifier.index) .get(&specifier.index)
.ok_or(errors::DependencyGraphError::WallyIndexNotFound( .ok_or_else(|| errors::DependencyGraphError::WallyIndexNotFound(
specifier.index.to_string(), specifier.index.to_string(),
))? ))?
.clone() .clone()

View file

@ -178,14 +178,9 @@ async fn package_fs_copy(
let path = entry.path(); let path = entry.path();
let relative_path = path.strip_prefix(src).unwrap(); let relative_path = path.strip_prefix(src).unwrap();
let dest_path = destination.join(relative_path); let dest_path = destination.join(relative_path);
let file_name = relative_path let file_name = relative_path.file_name().unwrap().to_str().ok_or_else(|| {
.file_name() std::io::Error::new(std::io::ErrorKind::InvalidData, "invalid file name")
.unwrap() })?;
.to_str()
.ok_or(std::io::Error::new(
std::io::ErrorKind::InvalidData,
"invalid file name",
))?;
if entry.file_type().await?.is_dir() { if entry.file_type().await?.is_dir() {
if IGNORED_DIRS.contains(&file_name) { if IGNORED_DIRS.contains(&file_name) {