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
use { ForceSomeRwLockReadGuard, ForceSomeRwLockWriteGuard };
use error::*;
use std::any::Any;
use std::error::Error as StdError;
use std::mem;
use std::ops::Deref;
use std::ops::DerefMut;
use std::sync::RwLock;

pub struct MutStatic<T> {
    data: RwLock<Option<T>>,
}

unsafe impl <T> Sync for MutStatic<T>
    where T: Sync { }

impl <T> MutStatic<T>
    where T: Any {
    pub fn new() -> Self {
        MutStatic {
            data: RwLock::new(None)
        }
    }

    pub fn is_set(&self) -> Result<bool> {
        match self.data.read() {
            Ok(ok) => {
                if let &Some(_) = ok.deref() {
                    Ok(true)
                } else {
                    Ok(false)
                }
            },
            Err(err) => Err(ErrorKind::PoisonError(err.description().to_string(), format!("{}", err)).into()),
        }
    }

    pub fn read(&self) -> Result<ForceSomeRwLockReadGuard<T>> {
        match self.data.read() {
            Ok(ok) => {
                if let &None = ok.deref() {
                    return Err(ErrorKind::StaticWasNeverSet.into())
                }
                Ok(ForceSomeRwLockReadGuard::new(ok))
            },
            Err(err) => Err(ErrorKind::PoisonError(err.description().to_string(), format!("{}", err)).into()),
        }
    }

    pub fn set(&self, value: T) -> Result<()> {
        let mut data =
            match self.data.write() {
                Ok(some) => some,
                Err(err) => return Err(ErrorKind::PoisonError(err.description().to_string(), format!("{}", err)).into()),
            };

        let data_ref = data.deref_mut();

        if let Some(_) = mem::replace(data_ref, Some(value)) {
            Err(ErrorKind::StaticIsAlreadySet.into())
        } else {
            Ok(())
        }
    }

    pub fn write(&self) -> Result<ForceSomeRwLockWriteGuard<T>> {
        match self.data.write() {
            Ok(ok) => {
                if let &None = ok.deref() {
                    return Err(ErrorKind::StaticWasNeverSet.into())
                }
                Ok(ForceSomeRwLockWriteGuard::new(ok))
            },
            Err(err) => Err(ErrorKind::PoisonError(err.description().to_string(), format!("{}", err)).into()),
        }
    }
}

impl <T> From<T> for MutStatic<T> {
    fn from(value: T) -> Self {
        MutStatic {
            data: RwLock::new(Some(value))
        }
    }
}