2014-04-27 22:27:20 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2014-12-22 11:04:23 -06:00
|
|
|
use std::thread::Thread;
|
|
|
|
use std::comm::{channel, Receiver};
|
|
|
|
|
2014-04-27 22:27:20 -05:00
|
|
|
fn periodical(n: int) -> Receiver<bool> {
|
|
|
|
let (chan, port) = channel();
|
2014-12-22 11:04:23 -06:00
|
|
|
Thread::spawn(move|| {
|
2014-04-27 22:27:20 -05:00
|
|
|
loop {
|
|
|
|
for _ in range(1, n) {
|
|
|
|
match chan.send_opt(false) {
|
|
|
|
Ok(()) => {}
|
|
|
|
Err(..) => break,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
match chan.send_opt(true) {
|
|
|
|
Ok(()) => {}
|
|
|
|
Err(..) => break
|
|
|
|
}
|
|
|
|
}
|
2014-12-22 11:04:23 -06:00
|
|
|
}).detach();
|
2014-04-27 22:27:20 -05:00
|
|
|
return port;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn integers() -> Receiver<int> {
|
|
|
|
let (chan, port) = channel();
|
2014-12-22 11:04:23 -06:00
|
|
|
Thread::spawn(move|| {
|
2014-04-27 22:27:20 -05:00
|
|
|
let mut i = 1;
|
|
|
|
loop {
|
|
|
|
match chan.send_opt(i) {
|
|
|
|
Ok(()) => {}
|
|
|
|
Err(..) => break,
|
|
|
|
}
|
|
|
|
i = i + 1;
|
|
|
|
}
|
2014-12-22 11:04:23 -06:00
|
|
|
}).detach();
|
2014-04-27 22:27:20 -05:00
|
|
|
return port;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let ints = integers();
|
|
|
|
let threes = periodical(3);
|
|
|
|
let fives = periodical(5);
|
2014-04-21 16:58:52 -05:00
|
|
|
for _ in range(1i, 100i) {
|
2014-04-27 22:27:20 -05:00
|
|
|
match (ints.recv(), threes.recv(), fives.recv()) {
|
|
|
|
(_, true, true) => println!("FizzBuzz"),
|
|
|
|
(_, true, false) => println!("Fizz"),
|
|
|
|
(_, false, true) => println!("Buzz"),
|
|
|
|
(i, false, false) => println!("{}", i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|