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-07-30 18:10:46 +00:00
|
|
|
|
|
|
|
package scanner
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
2015-09-22 17:38:46 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
2015-08-06 09:29:25 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/sync"
|
2014-07-30 18:10:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// The parallell hasher reads FileInfo structures from the inbox, hashes the
|
|
|
|
// file to populate the Blocks element and sends it to the outbox. A number of
|
|
|
|
// workers are used in parallel. The outbox will become closed when the inbox
|
|
|
|
// is closed and all items handled.
|
|
|
|
|
2015-11-17 20:08:36 +00:00
|
|
|
func newParallelHasher(dir string, blockSize, workers int, outbox, inbox chan protocol.FileInfo, counter Counter, done, cancel chan struct{}) {
|
2015-04-22 22:54:31 +00:00
|
|
|
wg := sync.NewWaitGroup()
|
2014-07-30 18:10:46 +00:00
|
|
|
wg.Add(workers)
|
|
|
|
|
|
|
|
for i := 0; i < workers; i++ {
|
|
|
|
go func() {
|
2015-11-13 14:00:32 +00:00
|
|
|
hashFiles(dir, blockSize, outbox, inbox, counter, cancel)
|
2014-07-30 18:10:46 +00:00
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
wg.Wait()
|
2015-08-26 22:49:06 +00:00
|
|
|
if done != nil {
|
|
|
|
close(done)
|
|
|
|
}
|
2014-07-30 18:10:46 +00:00
|
|
|
close(outbox)
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2015-11-17 20:08:36 +00:00
|
|
|
func HashFile(path string, blockSize int, sizeHint int64, counter Counter) ([]protocol.BlockInfo, error) {
|
2014-10-03 22:15:54 +00:00
|
|
|
fd, err := os.Open(path)
|
|
|
|
if err != nil {
|
2015-10-03 15:25:21 +00:00
|
|
|
l.Debugln("open:", err)
|
2014-10-03 22:15:54 +00:00
|
|
|
return []protocol.BlockInfo{}, err
|
|
|
|
}
|
2015-08-26 22:49:06 +00:00
|
|
|
defer fd.Close()
|
2014-07-30 18:10:46 +00:00
|
|
|
|
2015-08-26 22:49:06 +00:00
|
|
|
if sizeHint == 0 {
|
|
|
|
fi, err := fd.Stat()
|
|
|
|
if err != nil {
|
2015-10-03 15:25:21 +00:00
|
|
|
l.Debugln("stat:", err)
|
2015-08-26 22:49:06 +00:00
|
|
|
return []protocol.BlockInfo{}, err
|
2014-07-30 18:10:46 +00:00
|
|
|
}
|
2015-08-26 22:49:06 +00:00
|
|
|
sizeHint = fi.Size()
|
2014-10-03 22:15:54 +00:00
|
|
|
}
|
2015-08-26 22:49:06 +00:00
|
|
|
|
|
|
|
return Blocks(fd, blockSize, sizeHint, counter)
|
2014-10-03 22:15:54 +00:00
|
|
|
}
|
2014-07-30 18:10:46 +00:00
|
|
|
|
2015-11-17 20:08:36 +00:00
|
|
|
func hashFiles(dir string, blockSize int, outbox, inbox chan protocol.FileInfo, counter Counter, cancel chan struct{}) {
|
2015-11-13 14:00:32 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case f, ok := <-inbox:
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2014-07-30 18:10:46 +00:00
|
|
|
|
2015-11-13 14:00:32 +00:00
|
|
|
if f.IsDirectory() || f.IsDeleted() {
|
|
|
|
panic("Bug. Asked to hash a directory or a deleted file.")
|
|
|
|
}
|
2014-07-30 18:10:46 +00:00
|
|
|
|
2015-11-13 14:00:32 +00:00
|
|
|
blocks, err := HashFile(filepath.Join(dir, f.Name), blockSize, f.CachedSize, counter)
|
|
|
|
if err != nil {
|
|
|
|
l.Debugln("hash error:", f.Name, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
f.Blocks = blocks
|
|
|
|
select {
|
|
|
|
case outbox <- f:
|
|
|
|
case <-cancel:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
case <-cancel:
|
|
|
|
return
|
|
|
|
}
|
2014-07-30 18:10:46 +00:00
|
|
|
}
|
|
|
|
}
|