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
// This file is part of Gear.

// Copyright (C) 2021-2024 Gear Technologies Inc.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

/// Unwrap `Result<T, E>` to `T` if it is `Ok(T)` or panic with the provided
/// message if the result is `Err(E)`.
///
/// The message argument(s) can be either:
///
/// - a string literal;
/// - two string literals: the first is provided with panic when the program has
///   been compiled in release mode, and the second is provided when the program
///   is compiled in debug mode (either with `--debug` or `--features=debug`
///   parameters);
/// - a format string followed by arguments.
///
/// # Examples
///
/// Unwrap `Ok(i32)` value to `i32`:
///
/// ```
/// use gstd::bail;
///
/// let result: Result<i32, ()> = Ok(42);
/// let value = bail!(result, "Unreachable as `result` is `Ok`");
/// assert_eq!(value, 42);
/// ```
///
/// Panic when trying to unwrap the `Err(&str)` value:
///
/// ```should_panic
/// # use gstd::bail;
/// let result: Result<(), &str> = Err("Wrong value");
/// // The next line will result in panic
/// let value = bail!(result, "We have an error value");
/// ```
///
/// Panic with different messages for release and debug profiles:
///
/// ```should_panic
/// # use gstd::bail;
/// let result: Result<(), &str> = Err("Wrong value");
/// // The next line will result in panic
/// let value = bail!(result, "Message in release mode", "Message in debug mode");
/// ```
///
/// Panic with the formatted message string:
///
/// ```should_panic
/// # use gstd::bail;
/// let result: Result<(), &str> = Err("Wrong value");
/// let a = 42;
/// // The next line will result in panic
/// let value = bail!(result, "Error", "a = {}", a);
/// ```
#[cfg(any(feature = "debug", debug_assertions))]
#[macro_export]
macro_rules! bail {
    ($res:expr, $msg:literal) => {
        $res.expect($msg)
    };
    ($res:expr, $expl:literal, $fmtd:literal) => {
        {
            let _ = $expl;
            $res.expect($fmtd)
        }
    };
    ($res:expr, $expl:literal, $fmt:literal $(, $args:tt)+) => {
        {
            let _ = $expl;
            $res.expect(&$crate::prelude::format!($fmt $(, $args)+))
        }
    };
}

#[cfg(not(any(feature = "debug", debug_assertions)))]
#[allow(missing_docs)]
#[macro_export]
macro_rules! bail {
    ($res:expr, $msg:literal) => {
        match $res {
            Ok(v) => v,
            Err(_) => $crate::prelude::panic!($msg),
        }
    };
    ($res:expr, $expl:literal, $fmtd:literal) => {
        let _ = $fmtd;
        match $res {
            Ok(v) => v,
            Err(_) => $crate::prelude::panic!($expl),
        }
    };
    ($res:expr, $expl:literal, $fmt:literal $(, $args:tt)+) => {
        let _ = $fmt;
        $(let _ = $args;) +
        match $res {
            Ok(v) => v,
            Err(_) => $crate::prelude::panic!($expl),
        }
    };
}