syncthing/lib/model/rofolder.go

96 lines
2.1 KiB
Go
Raw Normal View History

2014-11-16 21:13:20 +01:00
// Copyright (C) 2014 The Syncthing Authors.
2014-09-29 21:43:32 +02:00
//
2015-03-07 21:36:35 +01:00
// 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/.
2014-09-30 17:56:02 +02:00
package model
import (
"fmt"
"time"
2015-04-23 00:54:31 +02:00
"github.com/syncthing/syncthing/lib/config"
2015-08-06 11:29:25 +02:00
"github.com/syncthing/syncthing/lib/sync"
2014-09-30 17:56:02 +02:00
)
type roFolder struct {
folder
2014-09-30 17:56:02 +02:00
}
func newROFolder(model *Model, cfg config.FolderConfiguration) *roFolder {
return &roFolder{
folder: folder{
stateTracker: stateTracker{
folderID: cfg.ID,
mut: sync.NewMutex(),
},
scan: folderscan{
interval: time.Duration(cfg.RescanIntervalS) * time.Second,
timer: time.NewTimer(time.Millisecond),
now: make(chan rescanRequest),
delay: make(chan time.Duration),
},
stop: make(chan struct{}),
model: model,
2015-04-23 00:54:31 +02:00
},
}
}
func (f *roFolder) Serve() {
l.Debugln(f, "starting")
defer l.Debugln(f, "exiting")
2014-09-30 17:56:02 +02:00
defer func() {
f.scan.timer.Stop()
}()
2014-09-30 17:56:02 +02:00
initialScanCompleted := false
for {
select {
case <-f.stop:
2014-09-30 17:56:02 +02:00
return
case <-f.scan.timer.C:
if err := f.model.CheckFolderHealth(f.folderID); err != nil {
l.Infoln("Skipping folder", f.folderID, "scan due to folder error:", err)
f.scan.reschedule()
continue
}
l.Debugln(f, "rescan")
2014-09-30 17:56:02 +02:00
if err := f.model.internalScanFolderSubdirs(f.folderID, nil); err != nil {
// Potentially sets the error twice, once in the scanner just
// by doing a check, and once here, if the error returned is
// the same one as returned by CheckFolderHealth, though
// duplicate set is handled by setError.
f.setError(err)
f.scan.reschedule()
continue
2014-09-30 17:56:02 +02:00
}
if !initialScanCompleted {
l.Infoln("Completed initial scan (ro) of folder", f.folderID)
2014-09-30 17:56:02 +02:00
initialScanCompleted = true
}
if f.scan.interval == 0 {
continue
}
f.scan.reschedule()
2015-05-03 14:18:32 +02:00
case req := <-f.scan.now:
req.err <- f.scanSubdirsIfHealthy(req.subdirs)
case next := <-f.scan.delay:
f.scan.timer.Reset(next)
2014-09-30 17:56:02 +02:00
}
}
}
func (f *roFolder) String() string {
return fmt.Sprintf("roFolder/%s@%p", f.folderID, f)
}