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
// wengwengweng

#[macro_export]
macro_rules! ctx {
	($state:ident: $type:ty) => {
		static mut $state: Option<$type> = None;
	}
}

#[macro_export]
macro_rules! ctx_init {
	($state:ident, $value:expr) => {
		unsafe {
			if $state.is_none() {
				$state = Some($value);
			} else {
				panic!("cannot initialize {} twice", stringify!($state));
			}
		}
	}
}

#[macro_export]
macro_rules! ctx_get {
	($state:ident) => {
		unsafe {
			$state
				.as_ref()
				.unwrap_or_else(|| panic!("{} not initialized", stringify!($state)))
		}
	}
}

#[macro_export]
macro_rules! ctx_mut {
	($state:ident) => {
		unsafe {
			$state
				.as_mut()
				.unwrap_or_else(|| panic!("{} not initialized", stringify!($state)))
		}
	}
}

#[macro_export]
macro_rules! ctx_ok {
	($state:ident) => {
		unsafe {
			$state
				.is_some()
		}
	}
}