2012-02-21 23:19:59 +00:00
|
|
|
// build
|
|
|
|
|
2008-03-12 01:07:22 +00: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-24 00:48:19 +00:00
|
|
|
// Test basic concurrency: the classic prime sieve.
|
|
|
|
// Do not run - loops forever.
|
|
|
|
|
2008-07-12 20:56:33 +00:00
|
|
|
package main
|
2008-03-12 01:07:22 +00:00
|
|
|
|
|
|
|
// Send the sequence 2, 3, 4, ... to channel 'ch'.
|
2009-01-20 22:40:40 +00:00
|
|
|
func Generate(ch chan<- int) {
|
2008-07-16 03:52:07 +00:00
|
|
|
for i := 2; ; i++ {
|
2010-09-04 00:36:13 +00:00
|
|
|
ch <- i // Send 'i' to channel 'ch'.
|
2008-07-16 03:52:07 +00:00
|
|
|
}
|
2008-03-12 01:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the values from channel 'in' to channel 'out',
|
|
|
|
// removing those divisible by 'prime'.
|
2009-01-20 22:40:40 +00:00
|
|
|
func Filter(in <-chan int, out chan<- int, prime int) {
|
2008-07-16 03:52:07 +00:00
|
|
|
for {
|
2010-09-04 00:36:13 +00:00
|
|
|
i := <-in // Receive value of new variable 'i' from 'in'.
|
|
|
|
if i%prime != 0 {
|
|
|
|
out <- i // Send 'i' to channel 'out'.
|
2008-07-16 03:52:07 +00:00
|
|
|
}
|
|
|
|
}
|
2008-03-12 01:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// The prime sieve: Daisy-chain Filter processes together.
|
2009-01-20 22:40:40 +00:00
|
|
|
func Sieve() {
|
2010-09-04 00:36:13 +00:00
|
|
|
ch := make(chan int) // Create a new channel.
|
|
|
|
go Generate(ch) // Start Generate() as a subprocess.
|
2008-07-16 03:52:07 +00:00
|
|
|
for {
|
2010-09-04 00:36:13 +00:00
|
|
|
prime := <-ch
|
|
|
|
print(prime, "\n")
|
|
|
|
ch1 := make(chan int)
|
|
|
|
go Filter(ch, ch1, prime)
|
2008-07-16 03:52:07 +00:00
|
|
|
ch = ch1
|
|
|
|
}
|
2008-03-12 01:07:22 +00:00
|
|
|
}
|
|
|
|
|
2008-07-12 20:56:33 +00:00
|
|
|
func main() {
|
2009-08-17 20:30:22 +00:00
|
|
|
Sieve()
|
2008-03-12 01:07:22 +00:00
|
|
|
}
|