LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2010 The Go Authors. All rights reserved. | 1 // Copyright 2010 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package main | 5 package main |
6 | 6 |
7 import ( | 7 import ( |
8 "log" | 8 "log" |
9 "net/http" | 9 "net/http" |
10 "time" | 10 "time" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 resp, err := http.Head(r.url) | 69 resp, err := http.Head(r.url) |
70 if err != nil { | 70 if err != nil { |
71 log.Println("Error", r.url, err) | 71 log.Println("Error", r.url, err) |
72 r.errCount++ | 72 r.errCount++ |
73 return err.Error() | 73 return err.Error() |
74 } | 74 } |
75 r.errCount = 0 | 75 r.errCount = 0 |
76 return resp.Status | 76 return resp.Status |
77 } | 77 } |
78 | 78 |
79 // Sleep sleeps for an appropriate interval (dependant on error state) | 79 // Sleep sleeps for an appropriate interval (dependent on error state) |
80 // before sending the Resource to done. | 80 // before sending the Resource to done. |
81 func (r *Resource) Sleep(done chan<- *Resource) { | 81 func (r *Resource) Sleep(done chan<- *Resource) { |
82 time.Sleep(pollInterval + errTimeout*time.Duration(r.errCount)) | 82 time.Sleep(pollInterval + errTimeout*time.Duration(r.errCount)) |
83 done <- r | 83 done <- r |
84 } | 84 } |
85 | 85 |
86 func Poller(in <-chan *Resource, out chan<- *Resource, status chan<- State) { | 86 func Poller(in <-chan *Resource, out chan<- *Resource, status chan<- State) { |
87 for r := range in { | 87 for r := range in { |
88 s := r.Poll() | 88 s := r.Poll() |
89 status <- State{r.url, s} | 89 status <- State{r.url, s} |
(...skipping 17 matching lines...) Expand all Loading... |
107 go func() { | 107 go func() { |
108 for _, url := range urls { | 108 for _, url := range urls { |
109 pending <- &Resource{url: url} | 109 pending <- &Resource{url: url} |
110 } | 110 } |
111 }() | 111 }() |
112 | 112 |
113 for r := range complete { | 113 for r := range complete { |
114 go r.Sleep(pending) | 114 go r.Sleep(pending) |
115 } | 115 } |
116 } | 116 } |
LEFT | RIGHT |