syncthing/lib/scanner/blockqueue.go

84 lines
1.9 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-07-30 20:10:46 +02:00
package scanner
import (
"os"
"path/filepath"
2015-09-22 19:38:46 +02:00
"github.com/syncthing/syncthing/lib/protocol"
2015-08-06 11:29:25 +02:00
"github.com/syncthing/syncthing/lib/sync"
2014-07-30 20:10:46 +02: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.
func newParallelHasher(dir string, blockSize, workers int, outbox, inbox chan protocol.FileInfo, counter *int64, done chan struct{}) {
2015-04-23 00:54:31 +02:00
wg := sync.NewWaitGroup()
2014-07-30 20:10:46 +02:00
wg.Add(workers)
for i := 0; i < workers; i++ {
go func() {
2015-08-27 00:49:06 +02:00
hashFiles(dir, blockSize, outbox, inbox, counter)
2014-07-30 20:10:46 +02:00
wg.Done()
}()
}
go func() {
wg.Wait()
2015-08-27 00:49:06 +02:00
if done != nil {
close(done)
}
2014-07-30 20:10:46 +02:00
close(outbox)
}()
}
func HashFile(path string, blockSize int, sizeHint int64, counter *int64) ([]protocol.BlockInfo, error) {
2014-10-04 00:15:54 +02:00
fd, err := os.Open(path)
if err != nil {
if debug {
l.Debugln("open:", err)
2014-07-30 20:10:46 +02:00
}
2014-10-04 00:15:54 +02:00
return []protocol.BlockInfo{}, err
}
2015-08-27 00:49:06 +02:00
defer fd.Close()
2014-07-30 20:10:46 +02:00
2015-08-27 00:49:06 +02:00
if sizeHint == 0 {
fi, err := fd.Stat()
if err != nil {
if debug {
l.Debugln("stat:", err)
}
return []protocol.BlockInfo{}, err
2014-07-30 20:10:46 +02:00
}
2015-08-27 00:49:06 +02:00
sizeHint = fi.Size()
2014-10-04 00:15:54 +02:00
}
2015-08-27 00:49:06 +02:00
return Blocks(fd, blockSize, sizeHint, counter)
2014-10-04 00:15:54 +02:00
}
2014-07-30 20:10:46 +02:00
func hashFiles(dir string, blockSize int, outbox, inbox chan protocol.FileInfo, counter *int64) {
2014-10-04 00:15:54 +02:00
for f := range inbox {
2015-08-27 00:49:06 +02:00
if f.IsDirectory() || f.IsDeleted() {
panic("Bug. Asked to hash a directory or a deleted file.")
2014-08-12 13:52:36 +02:00
}
2014-07-30 20:10:46 +02:00
2015-08-27 00:49:06 +02:00
blocks, err := HashFile(filepath.Join(dir, f.Name), blockSize, f.CachedSize, counter)
2014-07-30 20:10:46 +02:00
if err != nil {
if debug {
l.Debugln("hash error:", f.Name, err)
}
continue
}
f.Blocks = blocks
outbox <- f
}
}