| 
									
										
										
										
											2008-09-16 11:00:11 -07: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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package main | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-18 14:09:16 -07:00
										 |  |  | import "fmt" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-16 11:00:11 -07:00
										 |  |  | // Send the sequence 2, 3, 4, ... to channel 'ch'. | 
					
						
							| 
									
										
										
										
											2009-01-15 17:54:07 -08:00
										 |  |  | func generate(ch chan int) { | 
					
						
							| 
									
										
										
										
											2008-09-16 11:00:11 -07:00
										 |  |  | 	for i := 2; ; i++ { | 
					
						
							| 
									
										
										
										
											2009-10-13 12:37:04 -07:00
										 |  |  | 		ch <- i  // Send 'i' to channel 'ch'. | 
					
						
							| 
									
										
										
										
											2008-09-16 11:00:11 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Copy the values from channel 'in' to channel 'out', | 
					
						
							|  |  |  | // removing those divisible by 'prime'. | 
					
						
							| 
									
										
										
										
											2009-01-15 17:54:07 -08:00
										 |  |  | func filter(in, out chan int, prime int) { | 
					
						
							| 
									
										
										
										
											2008-09-16 11:00:11 -07:00
										 |  |  | 	for { | 
					
						
							| 
									
										
										
										
											2009-10-13 12:37:04 -07:00
										 |  |  | 		i := <-in;  // Receive value of new variable 'i' from 'in'. | 
					
						
							|  |  |  | 		if i % prime != 0 { | 
					
						
							|  |  |  | 			out <- i  // Send 'i' to channel 'out'. | 
					
						
							| 
									
										
										
										
											2008-09-16 11:00:11 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-20 19:32:36 -08:00
										 |  |  | // The prime sieve: Daisy-chain filter processes together. | 
					
						
							| 
									
										
										
										
											2008-09-16 11:00:11 -07:00
										 |  |  | func main() { | 
					
						
							| 
									
										
										
										
											2009-10-13 12:37:04 -07:00
										 |  |  | 	ch := make(chan int);  // Create a new channel. | 
					
						
							|  |  |  | 	go generate(ch);  // Start generate() as a goroutine. | 
					
						
							| 
									
										
										
										
											2008-09-16 11:00:11 -07:00
										 |  |  | 	for { | 
					
						
							|  |  |  | 		prime := <-ch; | 
					
						
							| 
									
										
										
										
											2009-03-18 14:09:16 -07:00
										 |  |  | 		fmt.Println(prime); | 
					
						
							| 
									
										
										
										
											2009-01-06 15:49:27 -08:00
										 |  |  | 		ch1 := make(chan int); | 
					
						
							| 
									
										
										
										
											2009-01-15 17:54:07 -08:00
										 |  |  | 		go filter(ch, ch1, prime); | 
					
						
							| 
									
										
										
										
											2009-10-13 12:37:04 -07:00
										 |  |  | 		ch = ch1 | 
					
						
							| 
									
										
										
										
											2008-09-16 11:00:11 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } |