Ready-to-use SRT / WebRTC / RTSP / RTMP / LL-HLS media server and media proxy that allows to read, publish, proxy, record and playback video and audio streams.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

78 lines
1.2 KiB

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
}