syncthing/internal/scanner/blockqueue.go

79 lines
1.7 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"
"github.com/syncthing/protocol"
2015-04-23 00:54:31 +02:00
"github.com/syncthing/syncthing/internal/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) {
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() {
2014-10-04 00:15:54 +02:00
hashFiles(dir, blockSize, outbox, inbox)
2014-07-30 20:10:46 +02:00
wg.Done()
}()
}
go func() {
wg.Wait()
close(outbox)
}()
}
2014-10-04 00:15:54 +02:00
func HashFile(path string, blockSize int) ([]protocol.BlockInfo, error) {
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
}
2014-07-30 20:10:46 +02:00
2014-10-04 00:15:54 +02:00
fi, err := fd.Stat()
if err != nil {
fd.Close()
if debug {
l.Debugln("stat:", err)
2014-07-30 20:10:46 +02:00
}
2014-10-04 00:15:54 +02:00
return []protocol.BlockInfo{}, err
}
defer fd.Close()
return Blocks(fd, blockSize, fi.Size())
}
2014-07-30 20:10:46 +02:00
2014-10-04 00:15:54 +02:00
func hashFiles(dir string, blockSize int, outbox, inbox chan protocol.FileInfo) {
for f := range inbox {
2014-11-09 05:26:52 +01:00
if f.IsDirectory() || f.IsDeleted() || f.IsSymlink() {
2014-10-04 00:15:54 +02:00
outbox <- f
2014-08-12 13:52:36 +02:00
continue
}
2014-07-30 20:10:46 +02:00
2014-10-04 00:15:54 +02:00
blocks, err := HashFile(filepath.Join(dir, f.Name), blockSize)
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
}
}