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
//! Macros for last-resort debugging.
//!
//! _Note:_ This facility is going to be replaced by an error type that
//! includes a backtrace of the `extra-debug` feature is set.
//!
//! Since error reporting of the BER parser is limited on purpose, debugging
//! code using it may be difficult. To remedy this somewhat, this module
//! contains a macro `xerr!()` that will panic if the `extra-debug` feature
//! is enable during build or resolve into whatever the expression it
//! encloses resolves to otherwise. Use it whenever you initially produce an
//! error, i.e.:
//!
//! ```rust,ignore
//! if foo {
//!     xerr!(Err(Error::Malformed))
//! }
//! ```
//!
//! or, with an early return:
//!
//! ```rust,ignore
//! if foo {
//!     xerr!(return Err(Error::Malformed)));
//! }
//! ```
//!
//! By enabling `extra-debug` and setting the `RUST_BACKTRACE`
//! environment variable, you can create a proper backtrace whenever the
//! code reaches one of these booby-trapped points.

#[cfg(feature = "extra-debug")]
#[macro_export]
macro_rules! xerr {
    ($test:expr) => { panic!("extra debugging enabled") };
}

#[cfg(not(feature = "extra-debug"))]
#[macro_export]
macro_rules! xerr {
    ($test:expr) => { $test };
}