-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonitor.go
62 lines (53 loc) · 1.2 KB
/
monitor.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package monitor
import (
"time"
"go.mrm.dev/venstar"
)
type Monitor struct {
devices []*venstar.Device
}
func (m *Monitor) Run(resultsChan chan *Results, errorsChan chan error) {
var results *Results
var err error
for _, device := range m.devices {
results, err = GetDeviceResults(device)
if err != nil {
errorsChan <- err
continue
}
resultsChan <- results
}
}
func (m *Monitor) IntervalMonitor(interval time.Duration, resultsChan chan *Results, errorsChan chan error, stopChan chan bool) {
ticker := time.NewTicker(interval)
defer ticker.Stop()
for {
select {
case <-stopChan:
return
case <-ticker.C:
m.Run(resultsChan, errorsChan)
}
}
}
func (m *Monitor) Monitor(interval time.Duration, stopChan chan bool) (chan *Results, chan error) {
resultsChan := make(chan *Results, 1)
errorsChan := make(chan error, 1)
go func() {
defer close(resultsChan)
defer close(errorsChan)
m.IntervalMonitor(interval, resultsChan, errorsChan, stopChan)
}()
return resultsChan, errorsChan
}
type ResultsWriter interface {
WriteResults(*Results) error
}
type Server interface {
Serve() error
}
func New(devices ...*venstar.Device) *Monitor {
return &Monitor{
devices: devices,
}
}