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
use rand::prelude::*;

include!(concat!(env!("OUT_DIR"), "/names.rs"));

/// Sex type used as a parameter to determine whether the names generated should be
/// male or female.
#[derive(Debug)]
pub enum Sex {
    Male,
    Female,
}

/// Return a random Sex of Male or Female.
///
/// ```
/// use scottish_names::*;
///
/// let s = sex();
/// println!("Random sex is {:?}", s);
/// ```
pub fn sex() -> Sex {
    let mut rng = thread_rng();

    match rng.gen_range(0u8, 2u8) {
        0 => Sex::Female,
        _ => Sex::Male,
    }
}

/// Return a random first name of the given Sex, e.g. `Sex::Female` or `Sex::Male`.
///
/// ```
/// use scottish_names::*;
///
/// let n = first_name(Sex::Male);
/// println!("First name is {}", n);
/// ```
pub fn first_name(sex: Sex) -> &'static str {
    first_name_with_seed(sex, 0)
}

pub fn surname() -> &'static str {
    surname_with_seed(0)
}

fn first_name_with_seed(sex: Sex, seed: u16) -> &'static str {
    let array = match sex {
        Sex::Female => FIRSTNAME_FEMALE,
        Sex::Male => FIRSTNAME_MALE,
    };
    name(array, seed)
}

fn surname_with_seed(seed: u16) -> &'static str {
    name(SURNAME, seed)
}

fn name(array: &[(u32, &'static str)], seed: u16) -> &'static str {
    let mut rng = thread_rng();

    let len = array.len();
    let max: u32 = array[len - 1].0;
    let count: u32 = if seed == 1000 {
        4000
    } else {
        rng.gen_range(0, max)
    };
    get_at_count(array, count, 0, len)
}

fn get_at_count(array: &[(u32, &'static str)], count: u32, min: usize, max: usize) -> &'static str {
    let avg = (min + max) / 2;
    let (low, high) = match avg {
        0 => (0, array[avg].0),
        _ => (array[avg - 1].0, array[avg].0),
    };
    if count >= low && count < high {
        array[avg].1
    } else if count < low {
        get_at_count(&array, count, min, avg - 1)
    } else {
        get_at_count(&array, count, avg + 1, max)
    }
}

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

    #[test]
    fn it_works() {
        assert_eq!(first_name_with_seed(Sex::Female, 1000), "Lucy");
        assert_eq!(first_name_with_seed(Sex::Male, 1000), "Jacob");
        assert_eq!(surname_with_seed(1000), "WILSON");
    }

    #[test]
    fn some_names() {
        for _ in 1..100 {
            let sex = sex();
            let firstname = first_name(sex);
            let surname = surname();
            println!("{} {}", firstname, surname);
        }
    }
}