forked from hybridgroup/gobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adaptor.go
93 lines (78 loc) · 1.72 KB
/
adaptor.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
package gobot
import "fmt"
type Adaptor struct {
name string
port string
connected bool
adaptorType string
}
// AdaptorInterface defines behaviour expected for a Gobot Adaptor
type AdaptorInterface interface {
Finalize() bool
Connect() bool
Port() string
Name() string
Type() string
Connected() bool
SetConnected(bool)
SetName(string)
SetPort(string)
ToJSON() *JSONConnection
}
// NewAdaptor returns a new Adaptor given a name, adaptorType and optionally accepts:
//
// string: Port the adaptor connects to
//
// adaptorType is a label used for identification in the api
func NewAdaptor(name string, adaptorType string, v ...interface{}) *Adaptor {
if name == "" {
name = fmt.Sprintf("%X", Rand(int(^uint(0)>>1)))
}
a := &Adaptor{
adaptorType: adaptorType,
name: name,
port: "",
}
for i := range v {
switch v[i].(type) {
case string:
a.port = v[i].(string)
}
}
return a
}
// Port returns adaptor port
func (a *Adaptor) Port() string {
return a.port
}
// SetPort sets adaptor port
func (a *Adaptor) SetPort(s string) {
a.port = s
}
// Name returns adaptor name
func (a *Adaptor) Name() string {
return a.name
}
// SetName sets adaptor name
func (a *Adaptor) SetName(s string) {
a.name = s
}
// Type returns adaptor type
func (a *Adaptor) Type() string {
return a.adaptorType
}
// Connected returns true if the adaptor is connected
func (a *Adaptor) Connected() bool {
return a.connected
}
// SetConnected sets adaptor as connected/disconnected
func (a *Adaptor) SetConnected(b bool) {
a.connected = b
}
// ToJSON returns a json representation of an adaptor
func (a *Adaptor) ToJSON() *JSONConnection {
return &JSONConnection{
Name: a.Name(),
Adaptor: a.Type(),
}
}