mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 20:28:17 +08:00
132 lines
4.5 KiB
Go
132 lines
4.5 KiB
Go
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
// Package gfsnotify provides a platform-independent interface for file system notifications.
|
|
package gfsnotify
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"github.com/gogf/gf/container/gset"
|
|
"time"
|
|
|
|
"github.com/fsnotify/fsnotify"
|
|
"github.com/gogf/gf/container/glist"
|
|
"github.com/gogf/gf/container/gmap"
|
|
"github.com/gogf/gf/container/gqueue"
|
|
"github.com/gogf/gf/container/gtype"
|
|
"github.com/gogf/gf/os/gcache"
|
|
)
|
|
|
|
// Watcher is the monitor for file changes.
|
|
type Watcher struct {
|
|
watcher *fsnotify.Watcher // Underlying fsnotify object.
|
|
events *gqueue.Queue // Used for internal event management.
|
|
cache *gcache.Cache // Used for repeated event filter.
|
|
nameSet *gset.StrSet // Used for AddOnce feature.
|
|
callbacks *gmap.StrAnyMap // Path(file/folder) to callbacks mapping.
|
|
closeChan chan struct{} // Used for watcher closing notification.
|
|
}
|
|
|
|
// Callback is the callback function for Watcher.
|
|
type Callback struct {
|
|
Id int // Unique id for callback object.
|
|
Func func(event *Event) // Callback function.
|
|
Path string // Bound file path (absolute).
|
|
name string // Registered name for AddOnce.
|
|
elem *glist.Element // Element in the callbacks of watcher.
|
|
recursive bool // Is bound to path recursively or not.
|
|
}
|
|
|
|
// Event is the event produced by underlying fsnotify.
|
|
type Event struct {
|
|
event fsnotify.Event // Underlying event.
|
|
Path string // Absolute file path.
|
|
Op Op // File operation.
|
|
Watcher *Watcher // Parent watcher.
|
|
}
|
|
|
|
// Op is the bits union for file operations.
|
|
type Op uint32
|
|
|
|
const (
|
|
CREATE Op = 1 << iota
|
|
WRITE
|
|
REMOVE
|
|
RENAME
|
|
CHMOD
|
|
)
|
|
|
|
const (
|
|
REPEAT_EVENT_FILTER_DURATION = time.Millisecond // Duration for repeated event filter.
|
|
gFSNOTIFY_EVENT_EXIT = "exit" // Custom exit event for internal usage.
|
|
)
|
|
|
|
var (
|
|
defaultWatcher, _ = New() // Default watcher.
|
|
callbackIdMap = gmap.NewIntAnyMap(true) // Id to callback mapping.
|
|
callbackIdGenerator = gtype.NewInt() // Atomic id generator for callback.
|
|
)
|
|
|
|
// New creates and returns a new watcher.
|
|
// Note that the watcher number is limited by the file handle setting of the system.
|
|
// Eg: fs.inotify.max_user_instances system variable in linux systems.
|
|
func New() (*Watcher, error) {
|
|
w := &Watcher{
|
|
cache: gcache.New(),
|
|
events: gqueue.New(),
|
|
nameSet: gset.NewStrSet(true),
|
|
closeChan: make(chan struct{}),
|
|
callbacks: gmap.NewStrAnyMap(true),
|
|
}
|
|
if watcher, err := fsnotify.NewWatcher(); err == nil {
|
|
w.watcher = watcher
|
|
} else {
|
|
return nil, err
|
|
}
|
|
w.startWatchLoop()
|
|
w.startEventLoop()
|
|
return w, nil
|
|
}
|
|
|
|
// Add monitors <path> using default watcher with callback function <callbackFunc>.
|
|
// The optional parameter <recursive> specifies whether monitoring the <path> recursively, which is true in default.
|
|
func Add(path string, callbackFunc func(event *Event), recursive ...bool) (callback *Callback, err error) {
|
|
return defaultWatcher.Add(path, callbackFunc, recursive...)
|
|
}
|
|
|
|
// AddOnce monitors <path> using default watcher with callback function <callbackFunc> only once using unique name <name>.
|
|
// If AddOnce is called multiple times with the same <name> parameter, <path> is only added to monitor once. It returns error
|
|
// if it's called twice with the same <name>.
|
|
//
|
|
// The optional parameter <recursive> specifies whether monitoring the <path> recursively, which is true in default.
|
|
func AddOnce(name, path string, callbackFunc func(event *Event), recursive ...bool) (callback *Callback, err error) {
|
|
return defaultWatcher.AddOnce(name, path, callbackFunc, recursive...)
|
|
}
|
|
|
|
// Remove removes all monitoring callbacks of given <path> from watcher recursively.
|
|
func Remove(path string) error {
|
|
return defaultWatcher.Remove(path)
|
|
}
|
|
|
|
// RemoveCallback removes specified callback with given id from watcher.
|
|
func RemoveCallback(callbackId int) error {
|
|
callback := (*Callback)(nil)
|
|
if r := callbackIdMap.Get(callbackId); r != nil {
|
|
callback = r.(*Callback)
|
|
}
|
|
if callback == nil {
|
|
return errors.New(fmt.Sprintf(`callback for id %d not found`, callbackId))
|
|
}
|
|
defaultWatcher.RemoveCallback(callbackId)
|
|
return nil
|
|
}
|
|
|
|
// Exit is only used in the callback function, which can be used to remove current callback from the watcher.
|
|
func Exit() {
|
|
panic(gFSNOTIFY_EVENT_EXIT)
|
|
}
|