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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#![deny(unused_must_use)]

//! # `nitric-lock`
//!

pub use self::group::{LockGroup, LockToken};
pub use self::join::lock2;
pub use self::lock::{Lock, LockInfo, Mut, RawLockGuard, ReadLock, Ref, WriteLock};
pub use self::mutex::{Mutex, MutexGuard};

mod group;
mod join;
mod lock;
mod mutex;

// TODO: remove this code once the `join` mod is done
/*
pub struct MutexJoin<'a, A, B> {
    head: &'a Mutex<A>,
    tail: B,
}

impl<'a, A, B> MutexJoin<'a, A, B>
where
    B: 'a,
{
    pub fn new(head: &'a Mutex<A>, tail: B) -> Self {
        MutexJoin { head, tail }
    }

    //noinspection RsNeedlessLifetimes
    pub fn lock<'l>(&'l self) -> <Self as MutexLikeInner>::Output
    where
        B: MutexLikeInner<'l>,
    {
        let collection = self.collect_raw_set();

        for (_, mutex) in collection {
            mutex.lock();
        }

        unsafe { self.lock_unchecked() }
    }

    //noinspection RsNeedlessLifetimes
    pub fn try_lock<'l>(&'l self) -> Option<<Self as MutexLikeInner<'_>>::Output>
    where
        B: MutexLikeInner<'l>,
    {
        let collection = self.collect_raw_set();

        if collection.into_iter().map(|(_, m)| m.try_lock()).all(|b| b) {
            unsafe { Some(self.lock_unchecked()) }
        } else {
            None
        }
    }

    //noinspection RsNeedlessLifetimes
    fn collect_raw_set<'l>(&'l self) -> Vec<(usize, &RawMutex)>
    where
        B: MutexLikeInner<'l>,
    {
        let mut collection = vec![];

        unsafe {
            self.extend_raw_set(&mut collection);
        }

        collection.sort_by_key(|e| e.0);

        collection
    }
}

impl<'a, A, B> MutexLikeInner<'a> for MutexJoin<'_, A, B>
where
    A: 'a,
    B: MutexLikeInner<'a> + 'a,
{
    type Output = (MutexGuard<'a, A>, <B as MutexLikeInner<'a>>::Output);

    unsafe fn extend_raw_set<E: Extend<(usize, &'a RawMutex)>>(&'a self, e: &mut E) {
        self.head.extend_raw_set(e);
        self.tail.extend_raw_set(e);
    }

    unsafe fn lock_unchecked(&'a self) -> <Self as MutexLikeInner<'a>>::Output {
        (self.head.lock_unchecked(), self.tail.lock_unchecked())
    }
}

pub trait MutexLike {}

impl<T> MutexLike for T where T: for<'a> MutexLikeInner<'a> {}

pub trait MutexLikeInner<'a> {
    type Output;

    unsafe fn extend_raw_set<E: Extend<(usize, &'a RawMutex)>>(&'a self, e: &mut E);
    unsafe fn lock_unchecked(&'a self) -> Self::Output;
}

impl<'a, T> MutexLikeInner<'a> for &'a Mutex<T>
where
    T: 'a,
{
    type Output = MutexGuard<'a, T>;

    unsafe fn extend_raw_set<E: Extend<(usize, &'a RawMutex)>>(&'a self, e: &mut E) {
        e.extend(Some((self.lock_id(), self.raw())))
    }

    unsafe fn lock_unchecked(&'a self) -> <Self as MutexLikeInner<'a>>::Output {
        self.acquire_guard()
    }
}

#[macro_export]
macro_rules! lock {
    ($($ac:ident $id:ident),+) => {
        lock!(lock => $($ac $id),*);
    };
    ($action:ident => $($ac:ident $id:ident),+) => {

        {
            let __join_binding;
            __join_binding = lock!(@new $($id),*);
            let lock!(@nest $($id),*) = __join_binding.$action();

            ($($id),*)
        }
    };
    (@nest $head:ident, $($id:ident),+) => {
        ($head, lock!(@nest $($id),*))
    };
    (@nest $head:ident) => {
        $head
    };
    (@new $head:ident, $($id:ident),+) => {
        {
            use std::borrow::Borrow;

            MutexJoin::new($head.borrow(), lock!(@new $($id),*))
        }
    };
    (@new $head:ident) => {
        {
            use std::borrow::Borrow;

            $head.borrow()
        }
    };
    (@brw ref $e:expr) => {
        &$e
    };
    (@brw mut $e:expr) => {
        &mut $e
    };
}


#[cfg(never)]
mod tests {
    use super::*;

    #[test]
    fn test_join_macro() {
        let mut group = LockGroup::new();

        let a = group.mutex(18);
        let b = group.mutex(false);
        let c = group.mutex("Hello world".to_owned());

        let (a, b, c) = lock!(ref a, ref b, ref c);

        assert_eq!(*a, 18);
        assert_eq!(*b, false);
    }

    #[test]
    fn test_deadlock() {
        let mut group = LockGroup::new();

        let a = group.mutex(18);
        let b = group.mutex(false);
        let c = group.mutex("Hello world".to_owned());

        let (a, b, c) = lock!(ref a, ref b, ref c);

        assert_eq!(*a, 18);
        assert_eq!(*b, false);
    }

    #[test]
    fn test_foo() {
        fn foo(b: &mut i32, a: &bool) {
            *b = 5;

            println!("{} {}", b, a);
        }

        fn foo_locking(b: &Mutex<i32>, a: &Mutex<bool>) {
            let (mut b, a) = lock!(mut b, ref a);
            foo(&mut b, &a);
        }

        let mut group = LockGroup::new();

        let a = group.mutex(false);
        let b = group.mutex(18);

        foo_locking(&b, &a);
    }
}
*/