mirror of
https://github.com/ftl/tetra-pei.git
synced 2025-04-03 20:27:30 +02:00
add method to COM to shutdown gracefully
This commit is contained in:
parent
2af6ef6e27
commit
978f47a1c5
1 changed files with 19 additions and 0 deletions
19
com/com.go
19
com/com.go
|
@ -26,6 +26,7 @@ func New(device io.ReadWriter) *COM {
|
|||
commands := make(chan command)
|
||||
result := &COM{
|
||||
commands: commands,
|
||||
closing: make(chan struct{}),
|
||||
closed: make(chan struct{}),
|
||||
indications: make(map[string]indicationConfig),
|
||||
}
|
||||
|
@ -43,6 +44,8 @@ func New(device io.ReadWriter) *COM {
|
|||
|
||||
for {
|
||||
select {
|
||||
case <-result.closing:
|
||||
return
|
||||
case line, valid := <-lines:
|
||||
if !valid {
|
||||
return
|
||||
|
@ -102,6 +105,7 @@ func New(device io.ReadWriter) *COM {
|
|||
// COM allows to communicate with a radio's PEI using AT commands.
|
||||
type COM struct {
|
||||
commands chan<- command
|
||||
closing chan struct{}
|
||||
closed chan struct{}
|
||||
tracer io.Writer
|
||||
|
||||
|
@ -148,6 +152,14 @@ func readLoop(r io.Reader) <-chan string {
|
|||
return lines
|
||||
}
|
||||
|
||||
func (c *COM) Close() {
|
||||
select {
|
||||
case <-c.closing:
|
||||
default:
|
||||
close(c.closing)
|
||||
}
|
||||
}
|
||||
|
||||
func (c *COM) Closed() bool {
|
||||
select {
|
||||
case <-c.closed:
|
||||
|
@ -157,6 +169,13 @@ func (c *COM) Closed() bool {
|
|||
}
|
||||
}
|
||||
|
||||
func (c *COM) WaitUntilClosed(ctx context.Context) {
|
||||
select {
|
||||
case <-c.closed:
|
||||
case <-ctx.Done():
|
||||
}
|
||||
}
|
||||
|
||||
func (c *COM) AddIndication(prefix string, trailingLines int, handler func(lines []string)) error {
|
||||
config := indicationConfig{
|
||||
prefix: strings.ToUpper(prefix),
|
||||
|
|
Loading…
Add table
Reference in a new issue