2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 19:43:32 +00:00
|
|
|
//
|
2015-03-07 20:36:35 +00: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 15:56:02 +00:00
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-04-22 22:54:31 +00:00
|
|
|
|
2016-04-26 14:01:46 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/config"
|
2016-08-05 17:45:45 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
2016-05-04 10:47:33 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/versioner"
|
2014-09-30 15:56:02 +00:00
|
|
|
)
|
|
|
|
|
2016-05-04 10:47:33 +00:00
|
|
|
func init() {
|
2016-12-16 22:23:35 +00:00
|
|
|
folderFactories[config.FolderTypeSendOnly] = newSendOnlyFolder
|
2016-05-04 10:47:33 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 22:23:35 +00:00
|
|
|
type sendOnlyFolder struct {
|
2016-04-26 14:01:46 +00:00
|
|
|
folder
|
2016-12-21 11:23:20 +00:00
|
|
|
config.FolderConfiguration
|
2014-09-30 15:56:02 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 22:23:35 +00:00
|
|
|
func newSendOnlyFolder(model *Model, cfg config.FolderConfiguration, _ versioner.Versioner, _ *fs.MtimeFS) service {
|
|
|
|
return &sendOnlyFolder{
|
2016-04-26 14:01:46 +00:00
|
|
|
folder: folder{
|
2016-11-22 23:14:20 +00:00
|
|
|
stateTracker: newStateTracker(cfg.ID),
|
|
|
|
scan: newFolderScanner(cfg),
|
2016-06-29 06:37:34 +00:00
|
|
|
stop: make(chan struct{}),
|
|
|
|
model: model,
|
2015-04-22 22:54:31 +00:00
|
|
|
},
|
2016-12-21 11:23:20 +00:00
|
|
|
FolderConfiguration: cfg,
|
2015-03-16 20:14:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-16 22:23:35 +00:00
|
|
|
func (f *sendOnlyFolder) Serve() {
|
2016-04-26 14:01:46 +00:00
|
|
|
l.Debugln(f, "starting")
|
|
|
|
defer l.Debugln(f, "exiting")
|
2014-09-30 15:56:02 +00:00
|
|
|
|
2015-05-01 12:30:17 +00:00
|
|
|
defer func() {
|
2016-04-26 14:01:46 +00:00
|
|
|
f.scan.timer.Stop()
|
2015-05-01 12:30:17 +00:00
|
|
|
}()
|
2014-09-30 15:56:02 +00:00
|
|
|
|
|
|
|
initialScanCompleted := false
|
|
|
|
for {
|
|
|
|
select {
|
2016-04-26 14:01:46 +00:00
|
|
|
case <-f.stop:
|
2014-09-30 15:56:02 +00:00
|
|
|
return
|
|
|
|
|
2016-04-26 14:01:46 +00:00
|
|
|
case <-f.scan.timer.C:
|
|
|
|
if err := f.model.CheckFolderHealth(f.folderID); err != nil {
|
2016-12-21 11:23:20 +00:00
|
|
|
l.Infoln("Skipping scan of", f.Description(), "due to folder error:", err)
|
2016-06-29 06:37:34 +00:00
|
|
|
f.scan.Reschedule()
|
2015-03-28 14:25:42 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-04-26 14:01:46 +00:00
|
|
|
l.Debugln(f, "rescan")
|
2014-09-30 15:56:02 +00:00
|
|
|
|
2016-04-26 14:01:46 +00:00
|
|
|
if err := f.model.internalScanFolderSubdirs(f.folderID, nil); err != nil {
|
2015-03-28 14:25:42 +00:00
|
|
|
// 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
|
2015-04-12 20:12:01 +00:00
|
|
|
// duplicate set is handled by setError.
|
2016-04-26 14:01:46 +00:00
|
|
|
f.setError(err)
|
2016-06-29 06:37:34 +00:00
|
|
|
f.scan.Reschedule()
|
2015-03-28 14:25:42 +00:00
|
|
|
continue
|
2014-09-30 15:56:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if !initialScanCompleted {
|
2016-12-21 11:23:20 +00:00
|
|
|
l.Infoln("Completed initial scan (ro) of", f.Description())
|
2014-09-30 15:56:02 +00:00
|
|
|
initialScanCompleted = true
|
|
|
|
}
|
|
|
|
|
2016-06-29 06:37:34 +00:00
|
|
|
if f.scan.HasNoInterval() {
|
2015-06-20 17:26:25 +00:00
|
|
|
continue
|
2014-10-15 08:51:09 +00:00
|
|
|
}
|
|
|
|
|
2016-06-29 06:37:34 +00:00
|
|
|
f.scan.Reschedule()
|
2015-05-03 12:18:32 +00:00
|
|
|
|
2016-04-26 14:01:46 +00:00
|
|
|
case req := <-f.scan.now:
|
|
|
|
req.err <- f.scanSubdirsIfHealthy(req.subdirs)
|
2015-06-20 17:26:25 +00:00
|
|
|
|
2016-04-26 14:01:46 +00:00
|
|
|
case next := <-f.scan.delay:
|
|
|
|
f.scan.timer.Reset(next)
|
2014-09-30 15:56:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-16 22:23:35 +00:00
|
|
|
func (f *sendOnlyFolder) String() string {
|
|
|
|
return fmt.Sprintf("sendOnlyFolder/%s@%p", f.folderID, f)
|
2015-05-01 12:30:17 +00:00
|
|
|
}
|