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
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
use crate::mutex::*;
use crate::rw_lock::*;
use alloc::borrow::Cow;
use alloc::boxed::Box;
use alloc::rc::Rc;
use alloc::sync::Arc;
use core::future::Future;
use core::mem::ManuallyDrop;
use core::ops::Deref;
use core::pin::Pin;
use core::time::Duration;
#[cfg(feature = "std")]
use std::panic::AssertUnwindSafe;

// AsyncMutexSized
macro_rules! impl_async_mutex_sized_deref {
    ($impl_type:ty $(, $lifetime:lifetime)*) => {
        impl<'__a, $($lifetime,)* T> AsyncMutexSized<'__a> for $impl_type where T: AsyncMutexSized<'__a>,
        {
            impl_async_mutex_sized_deref!();
        }
    };
    (Clone $impl_type:ty $(, $lifetime:lifetime)*) => {
        impl<'__a, $($lifetime,)* T> AsyncMutexSized<'__a> for $impl_type where T: AsyncMutexSized<'__a> + Clone
        {
            impl_async_mutex_sized_deref!();
        }
    };
    () => {
        fn lock_async_func<F>(
            &'__a self,
            func: impl FnOnce(&mut Self::Item) -> F + '__a,
        ) -> Pin<Box<dyn Future<Output = <F as Future>::Output> + '__a>>
        where
            F: Future,
        {
            self.deref().lock_async_func(func)
        }
    };
}
impl_async_mutex_sized_deref!(&'a T, 'a);
impl_async_mutex_sized_deref!(&'a mut T, 'a);
// impl_async_mutex_sized_deref!(Pin<T>);
impl_async_mutex_sized_deref!(ManuallyDrop<T>);
#[cfg(feature = "std")]
impl_async_mutex_sized_deref!(AssertUnwindSafe<T>);
impl_async_mutex_sized_deref!(Rc<T>);
impl_async_mutex_sized_deref!(Arc<T>);
impl_async_mutex_sized_deref!(Box<T>);
impl_async_mutex_sized_deref!(Clone Cow<'a, T>, 'a);

// AsyncTimeoutMutexSized
macro_rules! impl_async_timeout_mutex_sized_deref {
    ($impl_type:ty $(, $lifetime:lifetime)*) => {
        impl<'__a, $($lifetime,)* T> AsyncTimeoutMutexSized<'__a> for $impl_type where T: AsyncTimeoutMutexSized<'__a>,
        {
            impl_async_timeout_mutex_sized_deref!();
        }
    };
    (Clone $impl_type:ty $(, $lifetime:lifetime)*) => {
        impl<'__a, $($lifetime,)* T> AsyncTimeoutMutexSized<'__a> for $impl_type where T: AsyncTimeoutMutexSized<'__a> + Clone
        {
            impl_async_timeout_mutex_sized_deref!();
        }
    };
    () => {
        #[inline]
        fn lock_timeout_async_func<F>(
            &'__a self,
            timeout: Duration,
            func: impl FnOnce(Option<&mut Self::Item>) -> F + '__a,
        ) -> Pin<Box<dyn Future<Output = <F as Future>::Output> + '__a>>
        where
            F: Future + '__a,
        {
            self.deref().lock_timeout_async_func(timeout, func)
        }
    };
}
impl_async_timeout_mutex_sized_deref!(&'a T, 'a);
impl_async_timeout_mutex_sized_deref!(&'a mut T, 'a);
// impl_async_timeout_mutex_sized_deref!(Pin<T>);
impl_async_timeout_mutex_sized_deref!(ManuallyDrop<T>);
#[cfg(feature = "std")]
impl_async_timeout_mutex_sized_deref!(AssertUnwindSafe<T>);
impl_async_timeout_mutex_sized_deref!(Rc<T>);
impl_async_timeout_mutex_sized_deref!(Arc<T>);
impl_async_timeout_mutex_sized_deref!(Box<T>);
impl_async_timeout_mutex_sized_deref!(Clone Cow<'a, T>, 'a);

// AsyncRwLockSized
macro_rules! impl_async_rw_lock_sized_deref {
    ($impl_type:ty $(, $lifetime:lifetime)*) => {
        impl<'__a, $($lifetime,)* T> AsyncRwLockSized<'__a> for $impl_type where T: AsyncRwLockSized<'__a>,
        {
            impl_async_rw_lock_sized_deref!();
        }
    };
    (Clone $impl_type:ty $(, $lifetime:lifetime)*) => {
        impl<'__a, $($lifetime,)* T> AsyncRwLockSized<'__a> for $impl_type where T: AsyncRwLockSized<'__a> + Clone
        {
            impl_async_rw_lock_sized_deref!();
        }
    };
    () => {
        #[inline]
        fn read_async_func<F>(
            &'__a self,
            func: impl FnOnce(&Self::Item) -> F + '__a,
        ) -> Pin<Box<dyn Future<Output = <F as Future>::Output> + '__a>>
        where
            F: Future,
        {
            self.deref().read_async_func(func)
        }

        #[inline]
        fn write_async_func<F>(
            &'__a self,
            func: impl FnOnce(&mut Self::Item) -> F + '__a,
        ) -> Pin<Box<dyn Future<Output = <F as Future>::Output> + '__a>>
        where
            F: Future,
        {
            self.deref().write_async_func(func)
        }
    };
}
impl_async_rw_lock_sized_deref!(&'a T, 'a);
impl_async_rw_lock_sized_deref!(&'a mut T, 'a);
// impl_async_rw_lock_sized_deref!(Pin<T>);
impl_async_rw_lock_sized_deref!(ManuallyDrop<T>);
#[cfg(feature = "std")]
impl_async_rw_lock_sized_deref!(AssertUnwindSafe<T>);
impl_async_rw_lock_sized_deref!(Rc<T>);
impl_async_rw_lock_sized_deref!(Arc<T>);
impl_async_rw_lock_sized_deref!(Box<T>);
impl_async_rw_lock_sized_deref!(Clone Cow<'a, T>, 'a);