fd_lock/sys/unix/
read_guard.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use rustix::fd::AsFd;
use rustix::fs::FlockOperation;
use std::ops;

use super::{compatible_unix_lock, RwLock};

#[derive(Debug)]
pub struct RwLockReadGuard<'lock, T: AsFd> {
    lock: &'lock RwLock<T>,
}

impl<'lock, T: AsFd> RwLockReadGuard<'lock, T> {
    pub(crate) fn new(lock: &'lock RwLock<T>) -> Self {
        Self { lock }
    }
}

impl<T: AsFd> ops::Deref for RwLockReadGuard<'_, T> {
    type Target = T;

    #[inline]
    fn deref(&self) -> &Self::Target {
        &self.lock.inner
    }
}

impl<T: AsFd> Drop for RwLockReadGuard<'_, T> {
    #[inline]
    fn drop(&mut self) {
        let _ = compatible_unix_lock(self.lock.inner.as_fd(), FlockOperation::Unlock).ok();
    }
}