syncthing/lib/model/rofolder.go

92 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"
2015-04-23 00:54:31 +02:00
"github.com/syncthing/syncthing/lib/config"
"github.com/syncthing/syncthing/lib/fs"
"github.com/syncthing/syncthing/lib/versioner"
2014-09-30 17:56:02 +02:00
)
func init() {
folderFactories[config.FolderTypeReadOnly] = newROFolder
}
type roFolder struct {
folder
2014-09-30 17:56:02 +02:00
}
func newROFolder(model *Model, cfg config.FolderConfiguration, _ versioner.Versioner, _ *fs.MtimeFS) service {
return &roFolder{
folder: folder{
stateTracker: newStateTracker(cfg.ID),
scan: newFolderScanner(cfg),
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.HasNoInterval() {
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)
}