Reimplement library to be an Interator.

This commit is contained in:
Fletcher Nichol 2015-09-22 09:01:39 -06:00
parent 4059e5002d
commit 5791c6f7ca
2 changed files with 82 additions and 63 deletions

View File

@ -1,6 +1,9 @@
//! This crate provides a generate that constructs random name strings suitable //! This crate provides a generate that constructs random name strings suitable
//! for use in container instances, project names, application instances, etc. //! for use in container instances, project names, application instances, etc.
//! //!
//! The name `Generator` implements the `Iterator` trait so it can be used with
//! adapters, consumers, and in loops.
//!
//! # Usage //! # Usage
//! //!
//! This crate is [on crates.io](https://crates.io/crates/names) and can be //! This crate is [on crates.io](https://crates.io/crates/names) and can be
@ -24,10 +27,10 @@
//! a name: //! a name:
//! //!
//! ``` //! ```
//! use names::Generator; //! use names::{Generator, Name};
//! //!
//! let generator = Generator::default(); //! let mut generator = Generator::default(Name::Plain);
//! println!("Your project is: {}", generator.name()); //! println!("Your project is: {}", generator.next().unwrap());
//! // #=> "rusty-nail" //! // #=> "rusty-nail"
//! ``` //! ```
//! //!
@ -35,29 +38,27 @@
//! 4-digit number: //! 4-digit number:
//! //!
//! ``` //! ```
//! use names::Generator; //! use names::{Generator, Name};
//! //!
//! let generator = Generator::default(); //! let mut generator = Generator::default(Name::Numbered);
//! println!("Your project is: {}", generator.name_with_number()); //! println!("Your project is: {}", generator.next().unwrap());
//! // #=> "pushy-pencil-5602" //! // #=> "pushy-pencil-5602"
//! ``` //! ```
//! //!
//! # Example: with custom dictionaries //! # Example: with custom dictionaries
//! //!
//! If you would rather supply your own custom adjective and noun word lists, //! If you would rather supply your own custom adjective and noun word lists,
//! you can provide your own by supplying 2 `Dictionary` structs. For example, //! you can provide your own by supplying 2 string slices. For example,
//! this returns only one result: //! this returns only one result:
//! //!
//! ``` //! ```
//! use names::{Dictionary, Generator}; //! use names::{Generator, Name};
//! //!
//! let adjectives = &["imaginary"]; //! let adjectives = &["imaginary"];
//! let nouns = &["roll"]; //! let nouns = &["roll"];
//! let generator = Generator::new( //! let mut generator = Generator::new(adjectives, nouns, Name::Plain);
//! Dictionary::new(adjectives),
//! Dictionary::new(nouns));
//! //!
//! assert_eq!("imaginary-roll", generator.name()); //! assert_eq!("imaginary-roll", generator.next().unwrap());
//! ``` //! ```
extern crate rand; extern crate rand;
@ -67,77 +68,94 @@ use rand::Rng;
mod adjectives; mod adjectives;
mod nouns; mod nouns;
/// A `Dictionary` is collection of words. /// A naming strategy for the `Generator`
pub struct Dictionary<'a> { pub enum Name {
words: &'a [&'a str], /// This represents a plain naming strategy of the form `"ADJECTIVE-NOUN"`
} Plain,
/// This represents a naming strategy with a random number appended to the
impl<'a> Dictionary<'a> { /// end, of the form `"ADJECTIVE-NOUN-NUMBER"`
pub fn new(words: &'a [&'a str]) -> Dictionary<'a> { Numbered
Dictionary { words: words }
}
pub fn random(&self) -> &str {
rand::thread_rng().choose(self.words).unwrap()
}
} }
/// A random name generator which combines an adjective, a noun, and an /// A random name generator which combines an adjective, a noun, and an
/// optional number. /// optional number
/// ///
/// A `Generator` takes a `Dictionary` of adjectives and a `Dictionary` of /// A `Generator` takes a slice of adjective and noun words strings and has
/// nouns. /// a naming strategy (with or without a number appended).
pub struct Generator<'a> { pub struct Generator<'a> {
adjectives: Dictionary<'a>, adjectives: &'a [&'static str],
nouns: Dictionary<'a>, nouns: &'a [&'static str],
naming: Name,
} }
impl<'a> Generator<'a> { impl<'a> Generator<'a> {
/// Constructs a new `Generator<'a>`. /// Constructs a new `Generator<'a>`
/// ///
/// # Examples /// # Examples
/// ///
/// ``` /// ```
/// use names::{Dictionary, Generator}; /// use names::{Generator, Name};
/// ///
/// let adjective_words = &["sassy"]; /// let adjectives = &["sassy"];
/// let noun_words = &["clocks"]; /// let nouns = &["clocks"];
/// let naming = Name::Plain;
/// ///
/// let adjectives = Dictionary::new(adjective_words); /// let mut generator = Generator::new(adjectives, nouns, naming);
/// let nouns = Dictionary::new(noun_words);
/// ///
/// let generator = Generator::new(adjectives, nouns); /// assert_eq!("sassy-clocks", generator.next().unwrap());
///
/// assert_eq!("sassy-clocks", generator.name());
/// ``` /// ```
pub fn new(adjectives: Dictionary<'a>, nouns: Dictionary<'a>) -> Generator<'a> { pub fn new(
Generator { adjectives: adjectives, nouns: nouns } adjectives: &'a [&'static str],
nouns: &'a [&'static str],
naming: Name
) -> Generator<'a> {
Generator {
adjectives: adjectives,
nouns: nouns,
naming: naming,
}
} }
/// Construct and returns a default `Generator<'a>` containing a large /// Construct and returns a default `Generator<'a>` containing a large
/// collection of adjectives and nouns. /// collection of adjectives and nouns
/// ///
/// ``` /// ```
/// use names::Generator; /// use names::{Generator, Name};
/// ///
/// let generator = Generator::default(); /// let mut generator = Generator::default(Name::Plain);
/// ///
/// println!("My new name is: {}", generator.name()); /// println!("My new name is: {}", generator.next().unwrap());
/// ``` /// ```
pub fn default() -> Generator<'a> { pub fn default(naming: Name) -> Generator<'a> {
Generator::new( Generator::new(
Dictionary::new(adjectives::LIST), adjectives::LIST,
Dictionary::new(nouns::LIST)) nouns::LIST,
naming)
} }
pub fn name(&self) -> String { fn rand_adj(&self) -> &str {
format!("{}-{}", self.adjectives.random(), self.nouns.random()) rand::thread_rng().choose(self.adjectives).unwrap()
} }
pub fn name_with_number(&self) -> String { fn rand_noun(&self) -> &str {
format!("{}-{}-{:04}", rand::thread_rng().choose(self.nouns).unwrap()
self.adjectives.random(), }
self.nouns.random(),
rand::thread_rng().gen_range(1, 10000)) fn rand_num(&self) -> u16 {
rand::thread_rng().gen_range(1, 10000)
}
}
impl<'a> Iterator for Generator<'a> {
type Item = String;
fn next(&mut self) -> Option<String> {
let adj = self.rand_adj();
let noun = self.rand_noun();
Some(match self.naming {
Name::Plain => format!("{}-{}", adj, noun),
Name::Numbered => format!("{}-{}-{:04}", adj, noun, self.rand_num()),
})
} }
} }

View File

@ -2,7 +2,7 @@
extern crate names; extern crate names;
use clap::{App, Arg}; use clap::{App, Arg};
use names::Generator; use names::{Generator, Name};
fn main() { fn main() {
let matches = App::new("names") let matches = App::new("names")
@ -20,14 +20,15 @@ fn main() {
) )
.get_matches(); .get_matches();
let amount = value_t!(matches.value_of("AMOUNT"), u32).unwrap_or(1); let amount = value_t!(matches.value_of("AMOUNT"), usize).unwrap_or(1);
let gen = Generator::default(); let naming = if matches.is_present("number") {
Name::Numbered
} else {
Name::Plain
};
let mut generator = Generator::default(naming);
for _ in 0..amount { for _ in 0..amount {
if matches.is_present("number") { println!("{}", generator.next().unwrap());
println!("{}", gen.name_with_number());
} else {
println!("{}", gen.name());
}
} }
} }