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
use std::marker::PhantomData;
use std::cell::UnsafeCell;
use std::fmt;
use init::Init;
/// A single storage location for global access to a value.
///
/// A `Storage` instance can hold a single value in a global context. A
/// `Storage` instance begins without a value and must be initialized via the
/// [set](#method.set) method. Once a value has been set, it can be retrieved at
/// any time and in any thread via the [get](#method.get) method. The
/// [try_get](#method.try_get) can be used to determine whether the `Storage`
/// has been initialized before attempting to retrieve the value.
///
/// For safety reasons, values stored in `Storage` must be `Send + Sync +
/// 'static`.
///
/// # Example
///
/// The following example uses `Storage` to hold a global instance of a
/// `HashMap` which can be modified at will:
///
/// ```rust
/// use std::collections::HashMap;
/// use std::sync::Mutex;
/// use std::thread;
///
/// use state::Storage;
///
/// static GLOBAL_MAP: Storage<Mutex<HashMap<String, String>>> = Storage::new();
///
/// fn run_program() {
/// let mut map = GLOBAL_MAP.get().lock().unwrap();
/// map.insert("another_key".into(), "another_value".into());
/// }
///
/// fn main() {
/// // Create the initial map and store it in `GLOBAL_MAP`.
/// let mut initial_map = HashMap::new();
/// initial_map.insert("key".into(), "value".into());
/// GLOBAL_MAP.set(Mutex::new(initial_map));
///
/// // For illustration, we spawn a new thread that modified the map.
/// thread::spawn(|| run_program()).join().expect("thread");
///
/// // Assert that the modification took place.
/// let map = GLOBAL_MAP.get().lock().unwrap();
/// assert_eq!(map.get("another_key").unwrap(), "another_value");
/// }
pub struct Storage<T> {
_phantom: PhantomData<T>,
item: UnsafeCell<Option<T>>,
init: Init
}
impl<T> Storage<T> {
/// Create a new, uninitialized storage location.
///
/// # Example
///
/// ```rust
/// use state::Storage;
///
/// static MY_GLOBAL: Storage<String> = Storage::new();
/// ```
pub const fn new() -> Storage<T> {
Storage {
_phantom: PhantomData,
item: UnsafeCell::new(None),
init: Init::new()
}
}
}
impl<T: Send + Sync + 'static> Storage<T> {
/// Sets the value for this storage unit to `value` if it has not already
/// been set before.
///
/// If a value has previously been set, `self` is unchanged and `false` is
/// returned. Otherwise `true` is returned.
///
/// # Example
///
/// ```rust
/// # use state::Storage;
/// static MY_GLOBAL: Storage<&'static str> = Storage::new();
///
/// assert_eq!(MY_GLOBAL.set("Hello, world!"), true);
/// assert_eq!(MY_GLOBAL.set("Goodbye, world!"), false);
/// ```
pub fn set(&self, value: T) -> bool {
if self.init.needed() {
unsafe { *self.item.get() = Some(value); }
self.init.mark_complete();
return true;
}
false
}
/// Attempts to borrow the value in this storage location.
///
/// Returns `Some` if the state has previously been [set](#method.set).
/// Otherwise returns `None`.
///
/// # Example
///
/// ```rust
/// # use state::Storage;
/// static MY_GLOBAL: Storage<&'static str> = Storage::new();
///
/// assert_eq!(MY_GLOBAL.try_get(), None);
///
/// MY_GLOBAL.set("Hello, world!");
///
/// assert_eq!(MY_GLOBAL.try_get(), Some(&"Hello, world!"));
/// ```
#[inline]
pub fn try_get(&self) -> Option<&T> {
if !self.init.has_completed() {
return None
}
unsafe {
(*self.item.get()).as_ref()
}
}
/// Borrows the value in this storage location.
///
/// # Panics
///
/// Panics if a value has not previously been
/// [set](#method.set). Use [try_get](#method.try_get) for a non-panicking
/// version.
///
/// # Example
///
/// ```rust
/// # use state::Storage;
/// static MY_GLOBAL: Storage<&'static str> = Storage::new();
///
/// MY_GLOBAL.set("Hello, world!");
/// assert_eq!(*MY_GLOBAL.get(), "Hello, world!");
/// ```
#[inline]
pub fn get(&self) -> &T {
self.try_get()
.expect("storage::get(): called get() before set()")
}
/// If the storage location has not yet been set, it is set to the return
/// value of `from`. Returns a borrow to the value in this storage location.
///
/// # Example
///
/// ```rust
/// # use state::Storage;
/// static MY_GLOBAL: Storage<&'static str> = Storage::new();
///
/// assert_eq!(*MY_GLOBAL.get_or_set(|| "Hello, world!"), "Hello, world!");
/// ```
#[inline]
pub fn get_or_set<F: FnOnce() -> T>(&self, from: F) -> &T {
if let Some(value) = self.try_get() {
value
} else {
self.set(from());
self.get()
}
}
}
unsafe impl<T: Send + Sync + 'static> Sync for Storage<T> { }
unsafe impl<T: Send + Sync + 'static> Send for Storage<T> { }
impl<T: fmt::Debug + Send + Sync + 'static> fmt::Debug for Storage<T> {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
match self.try_get() {
Some(object) => object.fmt(f),
None => write!(f, "[uninitialized storage]")
}
}
}
impl<T: Send + Sync + 'static> From<T> for Storage<T> {
fn from(value: T) -> Storage<T> {
let storage = Storage::new();
assert!(storage.set(value));
storage
}
}
impl<T: Clone + Send + Sync + 'static> Clone for Storage<T> {
fn clone(&self) -> Storage<T> {
match self.try_get() {
Some(val) => Storage::from(val.clone()),
None => Storage::new()
}
}
}