wireguard-go/signal.go

54 lines
694 B
Go
Raw Normal View History

2017-11-30 23:22:40 +01:00
package main
type Signal struct {
enabled AtomicBool
C chan struct{}
}
func NewSignal() (s Signal) {
s.C = make(chan struct{}, 1)
s.Enable()
return
}
func (s *Signal) Disable() {
s.enabled.Set(false)
s.Clear()
}
func (s *Signal) Enable() {
s.enabled.Set(true)
}
2017-12-01 23:37:26 +01:00
/* Unblock exactly one listener
*/
2017-11-30 23:22:40 +01:00
func (s *Signal) Send() {
if s.enabled.Get() {
select {
case s.C <- struct{}{}:
default:
}
}
}
2017-12-01 23:37:26 +01:00
/* Clear the signal if already fired
*/
2017-11-30 23:22:40 +01:00
func (s Signal) Clear() {
select {
case <-s.C:
default:
}
}
2017-12-01 23:37:26 +01:00
/* Unblocks all listeners (forever)
*/
2017-11-30 23:22:40 +01:00
func (s Signal) Broadcast() {
2017-12-01 23:37:26 +01:00
close(s.C)
2017-11-30 23:22:40 +01:00
}
2017-12-01 23:37:26 +01:00
/* Wait for the signal
*/
2017-11-30 23:22:40 +01:00
func (s Signal) Wait() chan struct{} {
return s.C
}