forked from ebhomengo/niki
1
0
Fork 0
niki/vendor/github.com/knadh/koanf/providers/file/file.go

202 lines
3.0 KiB
Go
Raw Normal View History

2024-02-18 10:42:21 +00:00
// Package file implements a koanf.Provider that reads raw bytes
2024-02-18 10:42:21 +00:00
// from files on disk to be used with a koanf.Parser to parse
2024-02-18 10:42:21 +00:00
// into conf maps.
2024-02-18 10:42:21 +00:00
package file
import (
"errors"
"fmt"
"io/ioutil"
"path/filepath"
"time"
"github.com/fsnotify/fsnotify"
)
// File implements a File provider.
2024-02-18 10:42:21 +00:00
type File struct {
path string
}
// Provider returns a file provider.
2024-02-18 10:42:21 +00:00
func Provider(path string) *File {
2024-02-18 10:42:21 +00:00
return &File{path: filepath.Clean(path)}
2024-02-18 10:42:21 +00:00
}
// ReadBytes reads the contents of a file on disk and returns the bytes.
2024-02-18 10:42:21 +00:00
func (f *File) ReadBytes() ([]byte, error) {
2024-02-18 10:42:21 +00:00
return ioutil.ReadFile(f.path)
2024-02-18 10:42:21 +00:00
}
// Read is not supported by the file provider.
2024-02-18 10:42:21 +00:00
func (f *File) Read() (map[string]interface{}, error) {
2024-02-18 10:42:21 +00:00
return nil, errors.New("file provider does not support this method")
2024-02-18 10:42:21 +00:00
}
// Watch watches the file and triggers a callback when it changes. It is a
2024-02-18 10:42:21 +00:00
// blocking function that internally spawns a goroutine to watch for changes.
2024-02-18 10:42:21 +00:00
func (f *File) Watch(cb func(event interface{}, err error)) error {
2024-02-18 10:42:21 +00:00
// Resolve symlinks and save the original path so that changes to symlinks
2024-02-18 10:42:21 +00:00
// can be detected.
2024-02-18 10:42:21 +00:00
realPath, err := filepath.EvalSymlinks(f.path)
2024-02-18 10:42:21 +00:00
if err != nil {
2024-02-18 10:42:21 +00:00
return err
2024-02-18 10:42:21 +00:00
}
2024-02-18 10:42:21 +00:00
realPath = filepath.Clean(realPath)
// Although only a single file is being watched, fsnotify has to watch
2024-02-18 10:42:21 +00:00
// the whole parent directory to pick up all events such as symlink changes.
2024-02-18 10:42:21 +00:00
fDir, _ := filepath.Split(f.path)
w, err := fsnotify.NewWatcher()
2024-02-18 10:42:21 +00:00
if err != nil {
2024-02-18 10:42:21 +00:00
return err
2024-02-18 10:42:21 +00:00
}
var (
lastEvent string
2024-02-18 10:42:21 +00:00
lastEventTime time.Time
)
go func() {
2024-02-18 10:42:21 +00:00
loop:
2024-02-18 10:42:21 +00:00
for {
2024-02-18 10:42:21 +00:00
select {
2024-02-18 10:42:21 +00:00
case event, ok := <-w.Events:
2024-02-18 10:42:21 +00:00
if !ok {
2024-02-18 10:42:21 +00:00
cb(nil, errors.New("fsnotify watch channel closed"))
2024-02-18 10:42:21 +00:00
break loop
2024-02-18 10:42:21 +00:00
}
// Use a simple timer to buffer events as certain events fire
2024-02-18 10:42:21 +00:00
// multiple times on some platforms.
2024-02-18 10:42:21 +00:00
if event.String() == lastEvent && time.Since(lastEventTime) < time.Millisecond*5 {
2024-02-18 10:42:21 +00:00
continue
2024-02-18 10:42:21 +00:00
}
2024-02-18 10:42:21 +00:00
lastEvent = event.String()
2024-02-18 10:42:21 +00:00
lastEventTime = time.Now()
evFile := filepath.Clean(event.Name)
// Since the event is triggered on a directory, is this
2024-02-18 10:42:21 +00:00
// one on the file being watched?
2024-02-18 10:42:21 +00:00
if evFile != realPath && evFile != f.path {
2024-02-18 10:42:21 +00:00
continue
2024-02-18 10:42:21 +00:00
}
// The file was removed.
2024-02-18 10:42:21 +00:00
if event.Op&fsnotify.Remove != 0 {
2024-02-18 10:42:21 +00:00
cb(nil, fmt.Errorf("file %s was removed", event.Name))
2024-02-18 10:42:21 +00:00
break loop
2024-02-18 10:42:21 +00:00
}
// Resolve symlink to get the real path, in case the symlink's
2024-02-18 10:42:21 +00:00
// target has changed.
2024-02-18 10:42:21 +00:00
curPath, err := filepath.EvalSymlinks(f.path)
2024-02-18 10:42:21 +00:00
if err != nil {
2024-02-18 10:42:21 +00:00
cb(nil, err)
2024-02-18 10:42:21 +00:00
break loop
2024-02-18 10:42:21 +00:00
}
2024-02-18 10:42:21 +00:00
realPath = filepath.Clean(curPath)
// Finally, we only care about create and write.
2024-02-18 10:42:21 +00:00
if event.Op&(fsnotify.Write|fsnotify.Create) == 0 {
2024-02-18 10:42:21 +00:00
continue
2024-02-18 10:42:21 +00:00
}
// Trigger event.
2024-02-18 10:42:21 +00:00
cb(nil, nil)
// There's an error.
2024-02-18 10:42:21 +00:00
case err, ok := <-w.Errors:
2024-02-18 10:42:21 +00:00
if !ok {
2024-02-18 10:42:21 +00:00
cb(nil, errors.New("fsnotify err channel closed"))
2024-02-18 10:42:21 +00:00
break loop
2024-02-18 10:42:21 +00:00
}
// Pass the error to the callback.
2024-02-18 10:42:21 +00:00
cb(nil, err)
2024-02-18 10:42:21 +00:00
break loop
2024-02-18 10:42:21 +00:00
}
2024-02-18 10:42:21 +00:00
}
w.Close()
2024-02-18 10:42:21 +00:00
}()
// Watch the directory for changes.
2024-02-18 10:42:21 +00:00
return w.Add(fDir)
2024-02-18 10:42:21 +00:00
}