forked from hybridgroup/gobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
driver.go
147 lines (122 loc) · 2.84 KB
/
driver.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
package gobot
import (
"fmt"
"time"
)
type DriverInterface interface {
Start() bool
Halt() bool
Adaptor() AdaptorInterface
SetInterval(time.Duration)
Interval() time.Duration
SetName(string)
Name() string
Pin() string
SetPin(string)
Command(string) func(map[string]interface{}) interface{}
Commands() map[string]func(map[string]interface{}) interface{}
AddCommand(string, func(map[string]interface{}) interface{})
Events() map[string]*Event
Event(string) *Event
AddEvent(string)
Type() string
ToJSON() *JSONDevice
}
type Driver struct {
adaptor AdaptorInterface
interval time.Duration
pin string
name string
commands map[string]func(map[string]interface{}) interface{}
events map[string]*Event
driverType string
}
func NewDriver(name string, driverType string, v ...interface{}) *Driver {
if name == "" {
name = fmt.Sprintf("%X", Rand(int(^uint(0)>>1)))
}
d := &Driver{
driverType: driverType,
name: name,
interval: 10 * time.Millisecond,
commands: make(map[string]func(map[string]interface{}) interface{}),
events: make(map[string]*Event),
adaptor: nil,
pin: "",
}
for i := range v {
switch v[i].(type) {
case string:
d.pin = v[i].(string)
case AdaptorInterface:
d.adaptor = v[i].(AdaptorInterface)
case time.Duration:
d.interval = v[i].(time.Duration)
default:
fmt.Println("Unknown argument passed to NewDriver")
}
}
return d
}
func (d *Driver) Adaptor() AdaptorInterface {
return d.adaptor
}
func (d *Driver) SetInterval(t time.Duration) {
d.interval = t
}
func (d *Driver) Interval() time.Duration {
return d.interval
}
func (d *Driver) SetName(s string) {
d.name = s
}
func (d *Driver) Name() string {
return d.name
}
func (d *Driver) Pin() string {
return d.pin
}
func (d *Driver) SetPin(pin string) {
d.pin = pin
}
func (d *Driver) Type() string {
return d.driverType
}
func (d *Driver) Events() map[string]*Event {
return d.events
}
func (d *Driver) Event(name string) *Event {
e, ok := d.events[name]
if ok {
return e
} else {
panic(fmt.Sprintf("Unknown Driver Event: %v", name))
}
}
func (d *Driver) AddEvent(name string) {
d.events[name] = NewEvent()
}
func (d *Driver) Command(name string) func(map[string]interface{}) interface{} {
return d.commands[name]
}
func (d *Driver) Commands() map[string]func(map[string]interface{}) interface{} {
return d.commands
}
func (d *Driver) AddCommand(name string, f func(map[string]interface{}) interface{}) {
d.commands[name] = f
}
func (d *Driver) ToJSON() *JSONDevice {
jsonDevice := &JSONDevice{
Name: d.Name(),
Driver: d.Type(),
Commands: []string{},
Connection: nil,
}
if d.Adaptor() != nil {
jsonDevice.Connection = d.Adaptor().ToJSON()
}
for command := range d.Commands() {
jsonDevice.Commands = append(jsonDevice.Commands, command)
}
return jsonDevice
}