mirror of
https://github.com/neondatabase/neon.git
synced 2026-07-08 22:50:37 +00:00
Migrates the remaining crates to edition 2024. We like to stay on the latest edition if possible. There is no functional changes, however some code changes had to be done to accommodate the edition's breaking changes. Like the previous migration PRs, this is comprised of three commits: * the first does the edition update and makes `cargo check`/`cargo clippy` pass. we had to update bindgen to make its output [satisfy the requirements of edition 2024](https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-extern.html) * the second commit does a `cargo fmt` for the new style edition. * the third commit reorders imports as a one-off change. As before, it is entirely optional. Part of #10918
56 lines
1.2 KiB
Rust
56 lines
1.2 KiB
Rust
//! A wrapper around `ArcSwap` that ensures there is only one writer at a time and writes
|
|
//! don't block reads.
|
|
|
|
use std::sync::Arc;
|
|
|
|
use arc_swap::ArcSwap;
|
|
use tokio::sync::TryLockError;
|
|
|
|
pub struct GuardArcSwap<T> {
|
|
inner: ArcSwap<T>,
|
|
guard: tokio::sync::Mutex<()>,
|
|
}
|
|
|
|
pub struct Guard<'a, T> {
|
|
_guard: tokio::sync::MutexGuard<'a, ()>,
|
|
inner: &'a ArcSwap<T>,
|
|
}
|
|
|
|
impl<T> GuardArcSwap<T> {
|
|
pub fn new(inner: T) -> Self {
|
|
Self {
|
|
inner: ArcSwap::new(Arc::new(inner)),
|
|
guard: tokio::sync::Mutex::new(()),
|
|
}
|
|
}
|
|
|
|
pub fn read(&self) -> Arc<T> {
|
|
self.inner.load_full()
|
|
}
|
|
|
|
pub async fn write_guard(&self) -> Guard<'_, T> {
|
|
Guard {
|
|
_guard: self.guard.lock().await,
|
|
inner: &self.inner,
|
|
}
|
|
}
|
|
|
|
pub fn try_write_guard(&self) -> Result<Guard<'_, T>, TryLockError> {
|
|
let guard = self.guard.try_lock()?;
|
|
Ok(Guard {
|
|
_guard: guard,
|
|
inner: &self.inner,
|
|
})
|
|
}
|
|
}
|
|
|
|
impl<T> Guard<'_, T> {
|
|
pub fn read(&self) -> Arc<T> {
|
|
self.inner.load_full()
|
|
}
|
|
|
|
pub fn write(&mut self, value: T) {
|
|
self.inner.store(Arc::new(value));
|
|
}
|
|
}
|