mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-30 02:42:42 +00:00
79 lines
1.2 KiB
Go
79 lines
1.2 KiB
Go
package confwatcher
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/fsnotify/fsnotify"
|
|
)
|
|
|
|
// ConfWatcher is a configuration file watcher.
|
|
type ConfWatcher struct {
|
|
inner *fsnotify.Watcher
|
|
|
|
// out
|
|
signal chan struct{}
|
|
done chan struct{}
|
|
}
|
|
|
|
// New allocates a ConfWatcher.
|
|
func New(confPath string) (*ConfWatcher, error) {
|
|
inner, err := fsnotify.NewWatcher()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if _, err := os.Stat(confPath); err == nil {
|
|
err := inner.Add(confPath)
|
|
if err != nil {
|
|
inner.Close()
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
w := &ConfWatcher{
|
|
inner: inner,
|
|
signal: make(chan struct{}),
|
|
done: make(chan struct{}),
|
|
}
|
|
|
|
go w.run()
|
|
return w, nil
|
|
}
|
|
|
|
// Close closes a ConfWatcher.
|
|
func (w *ConfWatcher) Close() {
|
|
go func() {
|
|
for range w.signal {
|
|
}
|
|
}()
|
|
w.inner.Close()
|
|
<-w.done
|
|
}
|
|
|
|
func (w *ConfWatcher) run() {
|
|
defer close(w.done)
|
|
|
|
outer:
|
|
for {
|
|
select {
|
|
case event := <-w.inner.Events:
|
|
if (event.Op & fsnotify.Write) == fsnotify.Write {
|
|
// wait some additional time to avoid EOF
|
|
time.Sleep(10 * time.Millisecond)
|
|
w.signal <- struct{}{}
|
|
}
|
|
|
|
case <-w.inner.Errors:
|
|
break outer
|
|
}
|
|
}
|
|
|
|
close(w.signal)
|
|
}
|
|
|
|
// Watch returns when the configuration file has changed.
|
|
func (w *ConfWatcher) Watch() chan struct{} {
|
|
return w.signal
|
|
}
|