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
//! Contains macros which together define a benchmark harness that can be used
//! in place of the standard benchmark harness. This allows the user to run
//! Criterion.rs benchmarks with `cargo bench`.

/// Macro used to define a benchmark group for the benchmark harness; see the
/// criterion! macro for more details.
/// 
/// This is used to define a benchmark group; a collection of related benchmarks
/// which share a common configuration. Accepts two forms which can be seen
/// below.
/// 
/// # Examples:
/// 
/// Complete form:
/// 
/// ```
/// # #[macro_use]
/// # extern crate criterion;
/// # use criterion::Criterion;
/// # fn bench_method1(c: &mut Criterion) {
/// # }
/// #
/// # fn bench_method2(c: &mut Criterion) {
/// # }
/// #
/// criterion_group!{
///     name = benches;
///     config = Criterion::default();
///     targets = bench_method1, bench_method2
/// }
/// #
/// # fn main() {}
/// ```
/// 
/// In this form, all of the options are clearly spelled out. This expands to
/// a function named benches, which uses the given config expression to create
/// an instance of the Criterion struct. This is then passed by mutable
/// reference to the targets.
/// 
/// Compact Form:
/// 
/// ```
/// # #[macro_use]
/// # extern crate criterion;
/// # use criterion::Criterion;
/// # fn bench_method1(c: &mut Criterion) {
/// # }
/// #
/// # fn bench_method2(c: &mut Criterion) {
/// # }
/// #
/// criterion_group!(benches, bench_method1, bench_method2);
/// #
/// # fn main() {}
/// ```
/// In this form, the first parameter is the name of the group and subsequent
/// parameters are the target methods. The Criterion struct will be created using
/// the `Criterion::default()` function. If you wish to customize the
/// configuration, use the complete form and provide your own configuration
/// function.
#[macro_export]
macro_rules! criterion_group {
    (name = $name:ident; config = $config:expr; targets = $( $target:path ),+ ) => {
        pub fn $name() {
            $(
                let mut criterion: Criterion = $config;
                criterion.configure_from_args();
                $target(&mut criterion);
            )+
        }
    };
    ($name:ident, $( $target:path ),+ ) => {
        criterion_group!{
            name = $name;
            config = Criterion::default();
            targets = $( $target ),+
        }
    }
}

/// Macro which expands to a benchmark harness.
/// 
/// Currently, using Criterion.rs requires disabling the benchmark harness
/// generated automatically by rustc. This can be done like so:
/// 
/// ```toml
/// [[bench]]
/// name = "my_bench"
/// harness = false
/// ```
/// 
/// In this case, `my_bench` must be a rust file inside the 'benches' directory,
/// like so:
/// 
/// `benches/my_bench.rs`
/// 
/// Since we've disabled the default benchmark harness, we need to add our own:
/// 
/// ```ignore
/// #[macro_use]
/// extern crate criterion;
/// use criterion::Criterion;
/// fn bench_method1(c: &mut Criterion) {
/// }
/// 
/// fn bench_method2(c: &mut Criterion) {
/// }
/// 
/// criterion_group!(benches, bench_method1, bench_method2);
/// criterion_main!(benches);
/// ```
/// 
/// The `criterion_main` macro expands to a `main` function which runs all of the
/// benchmarks in the given groups.
/// 
#[macro_export]
macro_rules! criterion_main {
    ( $( $group:path ),+ ) => {
        fn main() {
            criterion::init_logging();
            $(
                $group();
            )+
        }
    }
}