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
use lazy_static::lazy_static;
use parking_lot::ReentrantMutex;
use std::collections::HashMap;
use std::ops::{Deref, DerefMut};
use std::sync::{Arc, RwLock};
lazy_static! {
static ref LOCKS: Arc<RwLock<HashMap<String, ReentrantMutex<()>>>> =
Arc::new(RwLock::new(HashMap::new()));
}
fn check_new_key(name: &str) {
let new_key = {
let unlock = LOCKS.read().unwrap();
!unlock.deref().contains_key(name)
};
if new_key {
LOCKS
.write()
.unwrap()
.deref_mut()
.insert(name.to_string(), ReentrantMutex::new(()));
}
}
#[doc(hidden)]
pub fn serial_core_with_return<E>(name: &str, function: fn() -> Result<(), E>) -> Result<(), E> {
check_new_key(name);
let unlock = LOCKS.read().unwrap();
let _guard = unlock.deref()[name].lock();
function()
}
#[doc(hidden)]
pub fn serial_core(name: &str, function: fn()) {
check_new_key(name);
let unlock = LOCKS.read().unwrap();
let _guard = unlock.deref()[name].lock();
function();
}
#[doc(hidden)]
pub async fn async_serial_core_with_return<E>(
name: &str,
fut: impl std::future::Future<Output = Result<(), E>>,
) -> Result<(), E> {
check_new_key(name);
let unlock = LOCKS.read().unwrap();
let _guard = unlock.deref()[name].lock();
fut.await
}
#[doc(hidden)]
pub async fn async_serial_core(name: &str, fut: impl std::future::Future<Output = ()>) {
check_new_key(name);
let unlock = LOCKS.read().unwrap();
let _guard = unlock.deref()[name].lock();
fut.await
}
#[allow(unused_imports)]
pub use serial_test_derive::serial;