-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathendpoint_serial.go
110 lines (89 loc) · 1.94 KB
/
endpoint_serial.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
package gomavlib
import (
"context"
"io"
"time"
"go.bug.st/serial"
)
var serialOpenFunc = func(device string, baud int) (io.ReadWriteCloser, error) {
dev, err := serial.Open(device, &serial.Mode{
BaudRate: baud,
Parity: serial.NoParity,
DataBits: 8,
StopBits: serial.OneStopBit,
})
if err != nil {
return nil, err
}
dev.SetDTR(true) //nolint:errcheck
dev.SetRTS(true) //nolint:errcheck
return dev, nil
}
// EndpointSerial sets up a endpoint that works with a serial port.
type EndpointSerial struct {
// name of the device of the serial port (i.e: /dev/ttyUSB0)
Device string
// baud rate (i.e: 57600)
Baud int
}
func (conf EndpointSerial) init(node *Node) (Endpoint, error) {
e := &endpointSerial{
node: node,
conf: conf,
}
err := e.initialize()
return e, err
}
type endpointSerial struct {
node *Node
conf EndpointSerial
ctx context.Context
ctxCancel func()
first bool
}
func (e *endpointSerial) initialize() error {
// check device existence
test, err := serialOpenFunc(e.conf.Device, e.conf.Baud)
if err != nil {
return err
}
test.Close()
e.ctx, e.ctxCancel = context.WithCancel(context.Background())
return nil
}
func (e *endpointSerial) isEndpoint() {}
func (e *endpointSerial) Conf() EndpointConf {
return e.conf
}
func (e *endpointSerial) close() {
e.ctxCancel()
}
func (e *endpointSerial) oneChannelAtAtime() bool {
return true
}
func (e *endpointSerial) connect() (io.ReadWriteCloser, error) {
return serialOpenFunc(e.conf.Device, e.conf.Baud)
}
func (e *endpointSerial) provide() (string, io.ReadWriteCloser, error) {
if !e.first {
e.first = true
} else {
select {
case <-time.After(reconnectPeriod):
case <-e.ctx.Done():
return "", nil, errTerminated
}
}
for {
conn, err := e.connect()
if err != nil {
select {
case <-time.After(reconnectPeriod):
continue
case <-e.ctx.Done():
return "", nil, errTerminated
}
}
return "serial", conn, nil
}
}