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
// Copyright (c) 2017 Xidorn Quan <me@upsuper.org>
// Copyright (c) 2017 Martijn Rijkeboer <mrr@sru-systems.com>
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

/// The thread mode used to perform the hashing.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum ThreadMode {
    /// Run in one thread.
    Sequential,

    #[cfg(feature = "crossbeam-utils")]
    /// Run in the same number of threads as the number of lanes.
    Parallel,
}

impl ThreadMode {
    #[cfg(feature = "crossbeam-utils")]
    /// Create a thread mode from the threads count.
    pub fn from_threads(threads: u32) -> ThreadMode {
        if threads > 1 {
            ThreadMode::Parallel
        } else {
            ThreadMode::Sequential
        }
    }

    #[cfg(not(feature = "crossbeam-utils"))]
    pub fn from_threads(threads: u32) -> ThreadMode {
        assert_eq!(threads, 1);
        Self::default()
    }
}

impl Default for ThreadMode {
    fn default() -> ThreadMode {
        ThreadMode::Sequential
    }
}

#[cfg(test)]
mod tests {

    use crate::thread_mode::ThreadMode;

    #[test]
    fn default_returns_correct_thread_mode() {
        assert_eq!(ThreadMode::default(), ThreadMode::Sequential);
    }

    #[cfg(feature = "crossbeam-utils")]
    #[test]
    fn from_threads_returns_correct_thread_mode() {
        assert_eq!(ThreadMode::from_threads(0), ThreadMode::Sequential);
        assert_eq!(ThreadMode::from_threads(1), ThreadMode::Sequential);
        assert_eq!(ThreadMode::from_threads(2), ThreadMode::Parallel);
        assert_eq!(ThreadMode::from_threads(10), ThreadMode::Parallel);
        assert_eq!(ThreadMode::from_threads(100), ThreadMode::Parallel);
    }
}