2012-02-21 16:19:59 -07:00
|
|
|
// build
|
|
|
|
|
2008-03-11 19:07:22 -06:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2012-02-23 17:48:19 -07:00
|
|
|
// Test basic concurrency: the classic prime sieve.
|
|
|
|
// Do not run - loops forever.
|
|
|
|
|
2008-07-12 14:56:33 -06:00
|
|
|
package main
|
2008-03-11 19:07:22 -06:00
|
|
|
|
|
|
|
// Send the sequence 2, 3, 4, ... to channel 'ch'.
|
2009-01-20 15:40:40 -07:00
|
|
|
func Generate(ch chan<- int) {
|
2008-07-15 21:52:07 -06:00
|
|
|
for i := 2; ; i++ {
|
2010-09-03 18:36:13 -06:00
|
|
|
ch <- i // Send 'i' to channel 'ch'.
|
2008-07-15 21:52:07 -06:00
|
|
|
}
|
2008-03-11 19:07:22 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the values from channel 'in' to channel 'out',
|
|
|
|
// removing those divisible by 'prime'.
|
2009-01-20 15:40:40 -07:00
|
|
|
func Filter(in <-chan int, out chan<- int, prime int) {
|
2008-07-15 21:52:07 -06:00
|
|
|
for {
|
2010-09-03 18:36:13 -06:00
|
|
|
i := <-in // Receive value of new variable 'i' from 'in'.
|
|
|
|
if i%prime != 0 {
|
|
|
|
out <- i // Send 'i' to channel 'out'.
|
2008-07-15 21:52:07 -06:00
|
|
|
}
|
|
|
|
}
|
2008-03-11 19:07:22 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// The prime sieve: Daisy-chain Filter processes together.
|
2009-01-20 15:40:40 -07:00
|
|
|
func Sieve() {
|
2010-09-03 18:36:13 -06:00
|
|
|
ch := make(chan int) // Create a new channel.
|
|
|
|
go Generate(ch) // Start Generate() as a subprocess.
|
2008-07-15 21:52:07 -06:00
|
|
|
for {
|
2010-09-03 18:36:13 -06:00
|
|
|
prime := <-ch
|
|
|
|
print(prime, "\n")
|
|
|
|
ch1 := make(chan int)
|
|
|
|
go Filter(ch, ch1, prime)
|
2008-07-15 21:52:07 -06:00
|
|
|
ch = ch1
|
|
|
|
}
|
2008-03-11 19:07:22 -06:00
|
|
|
}
|
|
|
|
|
2008-07-12 14:56:33 -06:00
|
|
|
func main() {
|
2009-08-17 14:30:22 -06:00
|
|
|
Sieve()
|
2008-03-11 19:07:22 -06:00
|
|
|
}
|