-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
device.go
83 lines (71 loc) · 1.82 KB
/
device.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package gobot
import (
"log"
"reflect"
multierror "github.com/hashicorp/go-multierror"
)
// JSONDevice is a JSON representation of a Device.
type JSONDevice struct {
Name string `json:"name"`
Driver string `json:"driver"`
Connection string `json:"connection"`
Commands []string `json:"commands"`
}
// NewJSONDevice returns a JSONDevice given a Device.
func NewJSONDevice(device Device) *JSONDevice {
jsonDevice := &JSONDevice{
Name: device.Name(),
Driver: reflect.TypeOf(device).String(),
Commands: []string{},
Connection: "",
}
if device.Connection() != nil {
jsonDevice.Connection = device.Connection().Name()
}
if commander, ok := device.(Commander); ok {
for command := range commander.Commands() {
jsonDevice.Commands = append(jsonDevice.Commands, command)
}
}
return jsonDevice
}
// A Device is an instnace of a Driver
type Device Driver
// Devices represents a collection of Device
type Devices []Device
// Len returns devices length
func (d *Devices) Len() int {
return len(*d)
}
// Each enumerates through the Devices and calls specified callback function.
func (d *Devices) Each(f func(Device)) {
for _, device := range *d {
f(device)
}
}
// Start calls Start on each Device in d
func (d *Devices) Start() error {
log.Println("Starting devices...")
var err error
for _, device := range *d {
info := "Starting device " + device.Name()
if pinner, ok := device.(Pinner); ok {
info = info + " on pin " + pinner.Pin()
}
log.Println(info + "...")
if derr := device.Start(); derr != nil {
err = multierror.Append(err, derr)
}
}
return err
}
// Halt calls Halt on each Device in d
func (d *Devices) Halt() error {
var err error
for _, device := range *d {
if derr := device.Halt(); derr != nil {
err = multierror.Append(err, derr)
}
}
return err
}