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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
#![no_std]

#![feature(const_fn)]
#![feature(optin_builtin_traits)]

//! Provides an unsafe way to late-initialize static variables that will see a lot of use.
//! Meant as a replacement for `static mut` that only allows setting once.
//!
//! Usage:
//!
//! ```
//! # use lateinit::LateInit;
//! static SOMETHING: LateInit<String> = LateInit::new();
//!
//! unsafe { SOMETHING.init("hello world".to_owned()); }
//! println!("{}", SOMETHING);
//! ```
//!
//! Multiple-initialization causes a panic:
//! ```should_panic
//! # use lateinit::LateInit;
//! static SOMETHING: LateInit<String> = LateInit::new();
//!
//! unsafe {
//!     SOMETHING.init("something".to_owned());
//!     SOMETHING.init("something else".to_owned());
//! }
//! ```

use core::{
    ops::Deref,
    cmp::{
        PartialEq,
        PartialOrd,
        Ordering
    },
    cell::UnsafeCell,
    clone::Clone,
    convert::AsRef,
    fmt::{
        Display,
        Debug,
        Formatter,
        Error as FmtError
    }
};

/// The primary type for this crate. Initialize before use.
// We use UnsafeCell because we need interior mutability, and we're not using Cell because we don't
//  want any runtime cost. There isn't any principled reason this is UnsafeCell<Option> rather than
//  Option<UnsafeCell>, so if performance is better one way or the other this may change.
pub struct LateInit<T>(UnsafeCell<Option<T>>);

unsafe impl <T> Sync for LateInit<T> {}
impl <T> !Send for LateInit<T> {}

impl <T> LateInit<T> {
    /// Create a new LateInit.
    pub const fn new() -> Self {
        LateInit(UnsafeCell::new(None))
    }

    /// Assign a value. Panics if called more than once.
    pub unsafe fn init(&self, value: T) {
        assert!(self.option().is_none(), "LateInit.init called more than once");

        *self.0.get() = Some(value);
    }

    #[inline(always)]
    fn option(&self) -> &Option<T> {
        unsafe { &*self.0.get() }
    }

    #[inline(always)]
    fn data(&self) -> &T {
        #[cfg(not(feature = "debug_unchecked"))] {
            debug_assert!(self.option().is_some(), "LateInit used without initialization");
        }

        match self.option() {
            Some(ref x) => x,
            _ => unreachable!(),
        }
    }
}

impl <T: Clone> LateInit<T> {
    /// Clone contained value. Panics in debug profile if called before initialization.
    ///
    /// Note that `Clone` is not implemented because `LateInit` doesn't
    /// support mutation, so `clone_from` is impossible.
    #[inline(always)]
    pub fn clone(&self) -> T {
        self.data().clone()
    }
}

impl <T> Deref for LateInit<T> {
    type Target = T;

    /// Deref to contained value. Panics in debug if called before initialization.
    #[inline(always)]
    fn deref(&self) -> &T {
        self.data()
    }
}

impl <T> AsRef<T> for LateInit<T> {
    /// Panics in debug if called before initialization.
    #[inline(always)]
    fn as_ref(&self) -> &T {
        self.data()
    }
}

impl <T: PartialEq<W>, W> PartialEq<W> for LateInit<T> {
    #[inline(always)]
    fn eq(&self, other: &W) -> bool {
        self.data().eq(other)
    }

    #[inline(always)]
    fn ne(&self, other: &W) -> bool {
        self.data().ne(other)
    }
}

impl <T: PartialOrd<W>, W> PartialOrd<W> for LateInit<T> {
    fn partial_cmp(&self, other: &W) -> Option<Ordering> {
        self.data().partial_cmp(other)
    }

    fn lt(&self, other: &W) -> bool {
        self.data().lt(other)
    }

    fn le(&self, other: &W) -> bool {
        self.data().le(other)
    }

    fn gt(&self, other: &W) -> bool {
        self.data().gt(other)
    }

    fn ge(&self, other: &W) -> bool {
        self.data().ge(other)
    }
}

impl <T: Debug> Debug for LateInit<T> {
    /// Delegates to `Debug` implementation on contained value. This is a checked access.
    fn fmt(&self, f: &mut Formatter) -> Result<(), FmtError> {
        match self.option() {
            Some(ref x) => { x.fmt(f) },
            None => { write!(f, "<UNINITIALIZED>") },
        }
    }
}

impl <T: Display> Display for LateInit<T> {
    /// Delegates to `Display` implementation on contained value. This is a checked access.
    fn fmt(&self, f: &mut Formatter) -> Result<(), FmtError> {
        match self.option() {
            Some(ref x) => { x.fmt(f) },
            None => { write!(f, "<UNINITIALIZED>") },
        }
    }
}

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

    use core::convert::AsRef;
    use core::ops::Deref;

    #[test]
    #[should_panic]
    #[cfg(not(feature = "debug_unchecked"))]
    fn multiple_init_panics() {
        let li = LateInit::<usize>::new();
        unsafe {
            li.init(4);
            li.init(4);
        }
    }

    #[test]
    #[should_panic]
    #[cfg(not(feature = "debug_unchecked"))]
    fn as_ref_panics() {
        let li = LateInit::<usize>::new();
        let _ = li.as_ref();
    }

    #[test]
    #[should_panic]
    #[cfg(not(feature = "debug_unchecked"))]
    fn deref_panics() {
        let li = LateInit::<usize>::new();
        let _ = li.deref();
    }

    #[test]
    fn compare() {
        let li = LateInit::<usize>::new();
        unsafe { li.init(4); }

        assert!(li > 3);
        assert!(li < 5);
        assert!(li >= 4);
        assert!(li <= 4);
    }

    #[test]
    #[should_panic]
    #[cfg(not(feature = "debug_unchecked"))]
    fn compare_panics() {
        let li = LateInit::<usize>::new();
        let _ = li > 4;
    }

    #[test]
    fn eq() {
        let li = LateInit::<usize>::new();
        unsafe { li.init(4); }

        assert_eq!(li, 4);
        assert_ne!(li, 5);
    }

    #[test]
    #[should_panic]
    #[cfg(not(feature = "debug_unchecked"))]
    fn eq_panics() {
        let li = LateInit::<usize>::new();
        let _ = li == 4;
    }
}