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
#![cfg_attr(use_nightly, feature(core_intrinsics, specialization))]

//! Use debug printlns, without the trait bounds (using specialization to
//! find the right impl anyway).
//! 

use std::fmt;

#[cfg(use_nightly)]
use std::intrinsics::type_name;

/// Print a message, and then each value's debug representation (if it has one)
///
/// NOTE: This macro has **no** format string, only a message and a list of values.
///
/// # Examples
///
/// ```
/// #[macro_use] extern crate debugit;
///
/// fn process_something<T>(x: T) {
///     debugit!("starting with", x);
/// }
///
/// # fn main() { }
/// ```
#[macro_export]
macro_rules! debugit {
    ($message:expr, $($value:expr),*) => {{
        print!("{} ", $message);
        $(
            print!("{:?}", $crate::DebugIt(&$value));
        )*
        println!("");
    }};
}

/// This type always implements `Debug`. Uses specialization to use
/// the inner value's Debug (which it should basically always have).
///
/// Otherwise, falls back to print something else.
///
/// On Rust stable, it always has to print something else.
///
/// # Examples
///
/// ```
/// use debugit::DebugIt as D;
///
/// fn process_something<T>(x: T) {
///     println!("starting with {:?}", D(&x));
/// }
/// ```
#[derive(Copy, Clone)]
pub struct DebugIt<T>(pub T);

#[cfg(not(use_nightly))]
impl<T> fmt::Debug for DebugIt<T> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "<unknown>")
    }
}

#[cfg(use_nightly)]
impl<T> fmt::Debug for DebugIt<T> {
    default fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        unsafe {
            write!(f, "`{}`", type_name::<T>())
        }
    }
}

#[cfg(use_nightly)]
impl<T> fmt::Debug for DebugIt<T>
    where T: fmt::Debug
{
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        self.0.fmt(f)
    }
}

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

    #[test]
    fn it_works() {
        fn debug_no_bound<T>(x: T, s: &str) {
            assert_eq!(&format!("{:?}", DebugIt(&x)), s);
        }
        debug_no_bound(1, "1");
        debug_no_bound((), "()");
    }
}