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,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://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"
|
2018-02-25 08:39:00 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/db"
|
2016-08-05 17:45:45 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
2018-02-25 08:39:00 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
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
|
2014-09-30 15:56:02 +00:00
|
|
|
}
|
|
|
|
|
2017-08-19 14:36:56 +00:00
|
|
|
func newSendOnlyFolder(model *Model, cfg config.FolderConfiguration, _ versioner.Versioner, _ fs.Filesystem) service {
|
2018-05-11 08:45:13 +00:00
|
|
|
f := &sendOnlyFolder{
|
|
|
|
folder: newFolder(model, cfg),
|
2014-09-30 15:56:02 +00:00
|
|
|
}
|
2018-05-11 08:45:13 +00:00
|
|
|
f.folder.puller = f
|
|
|
|
return f
|
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
|
|
|
}
|
2018-01-14 17:01:06 +00:00
|
|
|
|
|
|
|
func (f *sendOnlyFolder) PullErrors() []FileError {
|
|
|
|
return nil
|
|
|
|
}
|
2018-02-25 08:39:00 +00:00
|
|
|
|
|
|
|
// pull checks need for files that only differ by metadata (no changes on disk)
|
2018-05-11 08:45:13 +00:00
|
|
|
func (f *sendOnlyFolder) pull() bool {
|
2018-02-25 08:39:00 +00:00
|
|
|
select {
|
|
|
|
case <-f.initialScanFinished:
|
|
|
|
default:
|
|
|
|
// Once the initial scan finished, a pull will be scheduled
|
2018-05-11 08:45:13 +00:00
|
|
|
return false
|
2018-02-25 08:39:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
f.model.fmut.RLock()
|
|
|
|
folderFiles := f.model.folderFiles[f.folderID]
|
|
|
|
ignores := f.model.folderIgnores[f.folderID]
|
|
|
|
f.model.fmut.RUnlock()
|
|
|
|
|
|
|
|
batch := make([]protocol.FileInfo, 0, maxBatchSizeFiles)
|
|
|
|
batchSizeBytes := 0
|
|
|
|
|
|
|
|
folderFiles.WithNeed(protocol.LocalDeviceID, func(intf db.FileIntf) bool {
|
|
|
|
if len(batch) == maxBatchSizeFiles || batchSizeBytes > maxBatchSizeBytes {
|
|
|
|
f.model.updateLocalsFromPulling(f.folderID, batch)
|
|
|
|
batch = batch[:0]
|
|
|
|
batchSizeBytes = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
if ignores.ShouldIgnore(intf.FileName()) {
|
|
|
|
file := intf.(protocol.FileInfo)
|
|
|
|
file.Invalidate(f.shortID)
|
|
|
|
batch = append(batch, file)
|
|
|
|
batchSizeBytes += file.ProtoSize()
|
|
|
|
l.Debugln(f, "Handling ignored file", file)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
curFile, ok := f.model.CurrentFolderFile(f.folderID, intf.FileName())
|
|
|
|
if !ok {
|
|
|
|
if intf.IsDeleted() {
|
|
|
|
panic("Should never get a deleted file as needed when we don't have it")
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
file := intf.(protocol.FileInfo)
|
|
|
|
if !file.IsEquivalent(curFile, f.IgnorePerms, false) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
file.Version = file.Version.Merge(curFile.Version)
|
|
|
|
batch = append(batch, file)
|
|
|
|
batchSizeBytes += file.ProtoSize()
|
|
|
|
l.Debugln(f, "Merging versions of identical file", file)
|
|
|
|
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
|
|
|
|
if len(batch) > 0 {
|
|
|
|
f.model.updateLocalsFromPulling(f.folderID, batch)
|
|
|
|
}
|
2018-05-11 08:45:13 +00:00
|
|
|
|
|
|
|
return true
|
2018-02-25 08:39:00 +00:00
|
|
|
}
|