mirror of
https://github.com/go-kratos/kratos.git
synced 2025-01-14 02:33:03 +02:00
2a65502be2
* style(config): code specification tweaks and abstracts some methods * optimize * modify func location
69 lines
1.3 KiB
Go
69 lines
1.3 KiB
Go
package file
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/fsnotify/fsnotify"
|
|
|
|
"github.com/go-kratos/kratos/v2/config"
|
|
)
|
|
|
|
var _ config.Watcher = (*watcher)(nil)
|
|
|
|
type watcher struct {
|
|
f *file
|
|
fw *fsnotify.Watcher
|
|
|
|
ctx context.Context
|
|
cancel context.CancelFunc
|
|
}
|
|
|
|
func newWatcher(f *file) (config.Watcher, error) {
|
|
fw, err := fsnotify.NewWatcher()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := fw.Add(f.path); err != nil {
|
|
return nil, err
|
|
}
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
return &watcher{f: f, fw: fw, ctx: ctx, cancel: cancel}, nil
|
|
}
|
|
|
|
func (w *watcher) Next() ([]*config.KeyValue, error) {
|
|
select {
|
|
case <-w.ctx.Done():
|
|
return nil, w.ctx.Err()
|
|
case event := <-w.fw.Events:
|
|
if event.Op == fsnotify.Rename {
|
|
if _, err := os.Stat(event.Name); err == nil || os.IsExist(err) {
|
|
if err := w.fw.Add(event.Name); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
}
|
|
fi, err := os.Stat(w.f.path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
path := w.f.path
|
|
if fi.IsDir() {
|
|
path = filepath.Join(w.f.path, filepath.Base(event.Name))
|
|
}
|
|
kv, err := w.f.loadFile(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return []*config.KeyValue{kv}, nil
|
|
case err := <-w.fw.Errors:
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
func (w *watcher) Stop() error {
|
|
w.cancel()
|
|
return w.fw.Close()
|
|
}
|