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

OnceCell/Lock::try_insert() #276

Closed
daxpedda opened this issue Oct 8, 2023 · 1 comment
Closed

OnceCell/Lock::try_insert() #276

daxpedda opened this issue Oct 8, 2023 · 1 comment
Labels
ACP-accepted API Change Proposal is accepted (seconded with no objections) api-change-proposal A proposal to add or alter unstable APIs in the standard libraries T-libs-api

Comments

@daxpedda
Copy link

daxpedda commented Oct 8, 2023

Proposal

Problem statement

I would like to insert a value into a OnceCell/Lock and get back a reference to it while also checking if the value was already set or not.

Motivating examples or use cases

This can be useful in racy conditions, where different threads or Futures are trying to assign to the same OnceCell/Lock. The "loser" should be able to get the old and new value and determine if there is any difference or what that difference is.

static VALUE: OnceLock<Vec<u8>> = OnceLock::new();

if let Some(value) = VALUE.get() {
    println!("report value: {value:?}");
} else {
    match VALUE.try_insert(calculate_value()) {
        Ok(value) => println!("report value: {value:?}");
        // Some other thread has won the race to determine this value first.
        Err(old_value, new_value) => assert_eq!(old_value, new_value, "somehow calculated values differed"),
    }
}

Solution sketch

impl<T> OnceCell/Lock<T> {
    pub fn try_insert(&self, value: T) -> Result<&T, (&T, T)>;
}

Alternatives

This proposal offers an optimization, but it's perfectly possible to do this with the existing methods:

if let Some(value) = VALUE.get() {
    println!("report value: {value:?}");
} else {
    match VALUE.set(calculate_value()) {
        Ok(value) => println!("report value: {value:?}");
        // Some other thread has won the race to determine this value first.
        Err(new_value) => assert_eq!(value.get().unwrap(), new_value, "somehow calculated values differed"),
    }
}

try_insert() would offer an optimized path that doesn't require an additional unwrap().

This method is currently available in once_cell, which as far as I'm aware was the original inspiration for std::cell::OnceCell and std::sync::OnceLock.

Links and related work

@daxpedda daxpedda added api-change-proposal A proposal to add or alter unstable APIs in the standard libraries T-libs-api labels Oct 8, 2023
@BurntSushi BurntSushi added the ACP-accepted API Change Proposal is accepted (seconded with no objections) label Oct 8, 2023
@BurntSushi
Copy link
Member

Seconded. (I will say though that I am somewhat skeptical of this routine and it isn't clear that it pulls its weight. On the path to stabilization, I'd be interested in both how much this optimization buys us and how often it would be used.)

GuillaumeGomez added a commit to GuillaumeGomez/rust that referenced this issue Oct 14, 2023
…, r=Mark-Simulacrum

Implement `OnceCell/Lock::try_insert()`

I took inspiration from [`once_cell`](https://crates.io/crates/once_cell):
- [`once_cell::unsync::OnceCell::try_insert()`](https://github.com/matklad/once_cell/blob/874f9373abd7feaf923a3b3c34bfb3383529c671/src/lib.rs#L551-L563)
- [`once_cell::sync::OnceCell::try_insert()`](https://github.com/matklad/once_cell/blob/874f9373abd7feaf923a3b3c34bfb3383529c671/src/lib.rs#L1080-L1087)

I tried to change as little code as possible in the first commit and applied some obvious optimizations in the second one.

ACP: rust-lang/libs-team#276
Tracking issue: rust-lang#116693
rust-timer added a commit to rust-lang-ci/rust that referenced this issue Oct 15, 2023
Rollup merge of rust-lang#116540 - daxpedda:once-cell-lock-try-insert, r=Mark-Simulacrum

Implement `OnceCell/Lock::try_insert()`

I took inspiration from [`once_cell`](https://crates.io/crates/once_cell):
- [`once_cell::unsync::OnceCell::try_insert()`](https://github.com/matklad/once_cell/blob/874f9373abd7feaf923a3b3c34bfb3383529c671/src/lib.rs#L551-L563)
- [`once_cell::sync::OnceCell::try_insert()`](https://github.com/matklad/once_cell/blob/874f9373abd7feaf923a3b3c34bfb3383529c671/src/lib.rs#L1080-L1087)

I tried to change as little code as possible in the first commit and applied some obvious optimizations in the second one.

ACP: rust-lang/libs-team#276
Tracking issue: rust-lang#116693
github-actions bot pushed a commit to rust-lang/miri that referenced this issue Oct 17, 2023
…Simulacrum

Implement `OnceCell/Lock::try_insert()`

I took inspiration from [`once_cell`](https://crates.io/crates/once_cell):
- [`once_cell::unsync::OnceCell::try_insert()`](https://github.com/matklad/once_cell/blob/874f9373abd7feaf923a3b3c34bfb3383529c671/src/lib.rs#L551-L563)
- [`once_cell::sync::OnceCell::try_insert()`](https://github.com/matklad/once_cell/blob/874f9373abd7feaf923a3b3c34bfb3383529c671/src/lib.rs#L1080-L1087)

I tried to change as little code as possible in the first commit and applied some obvious optimizations in the second one.

ACP: rust-lang/libs-team#276
Tracking issue: #116693
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ACP-accepted API Change Proposal is accepted (seconded with no objections) api-change-proposal A proposal to add or alter unstable APIs in the standard libraries T-libs-api
Projects
None yet
Development

No branches or pull requests

2 participants