| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- // Copyright (C) 2016 The Syncthing Authors.
- //
- // This Source Code Form is subject to the terms of the Mozilla Public
- // License, v. 2.0. If a copy of the MPL was not distributed with this file,
- // You can obtain one at http://mozilla.org/MPL/2.0/.
- // +build !solaris,!darwin solaris,cgo darwin,cgo
- package fs
- import (
- "context"
- "errors"
- "path/filepath"
- "runtime"
- "github.com/syncthing/notify"
- )
- // Notify does not block on sending to channel, so the channel must be buffered.
- // The actual number is magic.
- // Not meant to be changed, but must be changeable for tests
- var backendBuffer = 500
- func (f *BasicFilesystem) Watch(name string, ignore Matcher, ctx context.Context, ignorePerms bool) (<-chan Event, error) {
- evalRoot, err := evalSymlinks(f.root)
- if err != nil {
- return nil, err
- }
- absName, err := rooted(name, evalRoot)
- if err != nil {
- return nil, err
- }
- // Remove `\\?\` prefix if the path is just a drive letter as a dirty
- // fix for https://github.com/syncthing/syncthing/issues/5578
- if runtime.GOOS == "windows" && len(absName) <= 7 && len(absName) > 4 && absName[:4] == `\\?\` {
- absName = absName[4:]
- }
- outChan := make(chan Event)
- backendChan := make(chan notify.EventInfo, backendBuffer)
- eventMask := subEventMask
- if !ignorePerms {
- eventMask |= permEventMask
- }
- if ignore.SkipIgnoredDirs() {
- absShouldIgnore := func(absPath string) bool {
- return ignore.ShouldIgnore(f.unrootedChecked(absPath, evalRoot))
- }
- err = notify.WatchWithFilter(filepath.Join(absName, "..."), backendChan, absShouldIgnore, eventMask)
- } else {
- err = notify.Watch(filepath.Join(absName, "..."), backendChan, eventMask)
- }
- if err != nil {
- notify.Stop(backendChan)
- if reachedMaxUserWatches(err) {
- err = errors.New("failed to setup inotify handler. Please increase inotify limits, see https://docs.syncthing.net/users/faq.html#inotify-limits")
- }
- return nil, err
- }
- go f.watchLoop(name, evalRoot, backendChan, outChan, ignore, ctx)
- return outChan, nil
- }
- func (f *BasicFilesystem) watchLoop(name, evalRoot string, backendChan chan notify.EventInfo, outChan chan<- Event, ignore Matcher, ctx context.Context) {
- for {
- // Detect channel overflow
- if len(backendChan) == backendBuffer {
- outer:
- for {
- select {
- case <-backendChan:
- default:
- break outer
- }
- }
- // When next scheduling a scan, do it on the entire folder as events have been lost.
- outChan <- Event{Name: name, Type: NonRemove}
- l.Debugln(f.Type(), f.URI(), "Watch: Event overflow, send \".\"")
- }
- select {
- case ev := <-backendChan:
- relPath := f.unrootedChecked(ev.Path(), evalRoot)
- if ignore.ShouldIgnore(relPath) {
- l.Debugln(f.Type(), f.URI(), "Watch: Ignoring", relPath)
- continue
- }
- evType := f.eventType(ev.Event())
- select {
- case outChan <- Event{Name: relPath, Type: evType}:
- l.Debugln(f.Type(), f.URI(), "Watch: Sending", relPath, evType)
- case <-ctx.Done():
- notify.Stop(backendChan)
- l.Debugln(f.Type(), f.URI(), "Watch: Stopped")
- return
- }
- case <-ctx.Done():
- notify.Stop(backendChan)
- l.Debugln(f.Type(), f.URI(), "Watch: Stopped")
- return
- }
- }
- }
- func (f *BasicFilesystem) eventType(notifyType notify.Event) EventType {
- if notifyType&rmEventMask != 0 {
- return Remove
- }
- return NonRemove
- }
|