PKGBUILD/pkg/sensor/sensor.go

58 lines
1.6 KiB
Go
Raw Normal View History

package sensor
2019-02-24 21:46:36 +00:00
import (
"context"
"fmt"
2019-02-24 21:46:36 +00:00
"sync"
2019-06-15 13:58:41 +00:00
"github.com/go-flucky/flucky/pkg/internal/collect"
"github.com/go-flucky/flucky/pkg/internal/prittyprint"
"github.com/go-flucky/flucky/pkg/types"
2019-02-24 21:46:36 +00:00
)
// Read measured values from sensors
func Read(ctx context.Context, sensors []Sensor) ([]types.MeasuredValue, error) {
measuredValueChannel := make(chan types.MeasuredValue, len(sensors))
errorChannel := make(chan error, len(sensors))
wg := new(sync.WaitGroup)
wg.Add(len(sensors))
2019-02-24 21:46:36 +00:00
for _, sensor := range sensors {
go sensor.ReadContinously(ctx, measuredValueChannel, errorChannel)
}
2019-02-24 21:46:36 +00:00
wg.Wait()
errors := collect.Errors(errorChannel)
if len(errors) > 0 {
return nil, prittyprint.FormatErrors(errors)
}
measuredValues := collect.MeasuredValues(measuredValueChannel)
return measuredValues, nil
}
2019-02-24 21:46:36 +00:00
// ReadChannel reads the measured values from sensors and writes them to a
// channel.
func ReadChannel(ctx context.Context, sensors []Sensor, measuredValueChannel chan<- types.MeasuredValue, errorChannel chan<- error, wg *sync.WaitGroup) {
for _, sensor := range sensors {
sensor.ReadChannel(measuredValueChannel, errorChannel, wg)
2019-02-24 21:46:36 +00:00
}
}
2019-02-24 21:46:36 +00:00
// ReadContinuously reads the measured values continously from sensors and writes
// them to a channel.
func ReadContinuously(ctx context.Context, sensors []Sensor, measuredValueChannel chan<- types.MeasuredValue, errorChannel chan<- error) {
for {
select {
case <-ctx.Done():
errorChannel <- fmt.Errorf("Context closed: %v", ctx.Err())
return
default:
ReadChannel(ctx, sensors, measuredValueChannel, errorChannel, nil)
}
2019-02-24 21:46:36 +00:00
}
}