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
#![no_std]

//! Annotate unwraps as manually checked
//!
//! The `safe_unwrap` macros allows unwrapping and annotating that the unwrap
//! will never fail.
//!
//! An example:
//!
//! ```
//! #[macro_use]
//! extern crate safe_unwrap;
//!
//! fn main() {
//!    let res = Some(42);
//!
//!    // we know that unwrapping res will never fail, so it is safe to call unwrap
//!    let val = safe_unwrap!("is constant value", res);
//!
//!    assert_eq!(val, 42);
//! }
//! ```
//!
//! In release builds, `safe_unwrap!(expr)` is equivalent to `expr.unwrap()`;
//! in debug builds, `expect()` will be called with a message indicating that
//! the assumed invariant has been violated.
//!
//! Alternative, for `Result` and `Option` types, you can risk a small bit of
//! overhead in exchange for nicer syntax:
//!
//! ```
//! extern crate safe_unwrap;
//! use safe_unwrap::SafeUnwrap;
//!
//! fn main() {
//!     let res = Some(42);
//!
//!     // works only for Result and Option types
//!     let val = res.safe_unwrap("is constant value");
//!
//!     assert_eq!(val, 42);
//!
//!     #[cfg(feature = "std")]
//!     {
//!         // With `std`, two additional methods are available.
//!         let val = res.unwrap_or_abort("is constant value");
//!         assert_eq!(val, 42);
//!         let val = res.unwrap_or_exit("is constant value");
//!         assert_eq!(val, 42);
//!     }
//! }
//! ```
//!
//! The semantics of `.safe_unwrap` are otherwise the same as the
//! `safe_unwrap!` macro. The tradeoff here is that you are at the mercy of the
//! LLVM optimizer to remove the unused static string `"is constant value"`
//! from the resulting executable (often works in release mode).
//!
//!
//! ## `std` support
//!
//! By default, `no_std` is supported. With the `std` feature, `SafeUnwrap` has
//! two additional methods, which require the standard library. They work the
//! same way as `safe_unwrap`, but:
//!
//! * `unwrap_or_abort` aborts the process instead of panicking.
//! * `unwrap_or_exit` exits with code 1 instead of panicking.

#[cfg(feature = "std")]
extern crate std;

#[cfg(feature = "std")]
use std::io::Write;

// TODO: replace `cfg(debug_assertions)` with something cleaner using a build
//       script
#[macro_export]
#[cfg(not(debug_assertions))]
macro_rules! safe_unwrap {
    ($reason:expr, $e:expr) => ($e.unwrap())
}

#[macro_export]
#[cfg(debug_assertions)]
macro_rules! safe_unwrap {
    ($reason:expr, $e:expr) => (
        $e.expect(concat!("[BUG] violated: ",
        $reason))
    )
}

pub trait SafeUnwrap<T> {
    fn safe_unwrap(self, msg: &str) -> T;
    #[cfg(feature = "std")]
    fn unwrap_or_abort(self, msg: &str) -> T;
    #[cfg(feature = "std")]
    fn unwrap_or_exit(self, msg: &str) -> T;
}

#[cfg(not(debug_assertions))]
impl<T, E: core::fmt::Debug> SafeUnwrap<T> for Result<T, E> {
    #[inline]
    fn safe_unwrap(self, _: &str) -> T {
        self.unwrap()
    }

    #[cfg(feature = "std")]
    #[inline]
    fn unwrap_or_abort(self, _: &str) -> T {
        self.unwrap_or_else(|_| std::process::abort())
    }

    #[cfg(feature = "std")]
    #[inline]
    fn unwrap_or_exit(self, _: &str) -> T {
        self.unwrap_or_else(|_| std::process::exit(1))
    }
}

#[cfg(not(debug_assertions))]
impl<T> SafeUnwrap<T> for Option<T> {
    #[inline]
    fn safe_unwrap(self, _: &str) -> T {
        self.unwrap()
    }

    #[cfg(feature = "std")]
    #[inline]
    fn unwrap_or_abort(self, _: &str) -> T {
        self.unwrap_or_else(|| std::process::abort())
    }

    #[cfg(feature = "std")]
    #[inline]
    fn unwrap_or_exit(self, _: &str) -> T {
        self.unwrap_or_else(|| std::process::exit(1))
    }
}

#[cfg(debug_assertions)]
impl<T, E: core::fmt::Debug> SafeUnwrap<T> for Result<T, E> {
    #[inline]
    fn safe_unwrap(self, msg: &str) -> T {
        self.expect(msg)
    }

    #[cfg(feature = "std")]
    #[inline]
    fn unwrap_or_abort(self, msg: &str) -> T {
        self.unwrap_or_else(|_| {
            let _ = writeln!(std::io::stderr(), "{}", msg);
            std::process::abort()
        })
    }

    #[cfg(feature = "std")]
    #[inline]
    fn unwrap_or_exit(self, msg: &str) -> T {
        self.unwrap_or_else(|_| {
            let _ = writeln!(std::io::stderr(), "{}", msg);
            std::process::exit(1)
        })
    }
}

#[cfg(debug_assertions)]
impl<T> SafeUnwrap<T> for Option<T> {
    #[inline]
    fn safe_unwrap(self, msg: &str) -> T {
        self.expect(msg)
    }

    #[cfg(feature = "std")]
    #[inline]
    fn unwrap_or_abort(self, msg: &str) -> T {
        self.unwrap_or_else(|| {
            let _ = writeln!(std::io::stderr(), "{}", msg);
            std::process::abort()
        })
    }

    #[cfg(feature = "std")]
    #[inline]
    fn unwrap_or_exit(self, msg: &str) -> T {
        self.unwrap_or_else(|| {
            let _ = writeln!(std::io::stderr(), "{}", msg);
            std::process::exit(1)
        })
    }
}

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

    #[test]
    fn works_when_ok() {
        let x = safe_unwrap!("this comment is meaningless", Some(42));
        assert_eq!(x, 42);
    }

    #[test]
    #[should_panic]
    fn doesnt_work_when_err() {
        let _: Option<()> = safe_unwrap!("should fail", None);
    }

    #[test]
    fn trait_works_when_ok() {
        let x = Some(42).safe_unwrap("meaningless comment");
        assert_eq!(x, 42);

        let r: Result<usize, ()> = Ok(42);
        let y = r.safe_unwrap("meaningless comment");
        assert_eq!(y, 42);
    }

    #[test]
    #[should_panic]
    fn trait_doesnt_work_when_err() {
        let _: Option<()> = None.safe_unwrap("should fail");
        let _: Result<(), ()> = Err(()).safe_unwrap("should fail");
    }

}