mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-27 12:49:41 +08:00
remove unused
This commit is contained in:
parent
81188ec9cb
commit
00f87e5bb5
@ -1,62 +0,0 @@
|
|||||||
package remote_storage
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
||||||
"github.com/seaweedfs/seaweedfs/weed/util"
|
|
||||||
"sync"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
type ListDirectoryFunc func(parentDir util.FullPath, visitFn VisitFunc) error
|
|
||||||
|
|
||||||
func TraverseBfs(listDirFn ListDirectoryFunc, parentPath util.FullPath, visitFn VisitFunc) (err error) {
|
|
||||||
K := 5
|
|
||||||
|
|
||||||
var dirQueueWg sync.WaitGroup
|
|
||||||
dirQueue := util.NewQueue()
|
|
||||||
dirQueueWg.Add(1)
|
|
||||||
dirQueue.Enqueue(parentPath)
|
|
||||||
var isTerminating bool
|
|
||||||
|
|
||||||
for i := 0; i < K; i++ {
|
|
||||||
go func() {
|
|
||||||
for {
|
|
||||||
if isTerminating {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
t := dirQueue.Dequeue()
|
|
||||||
if t == nil {
|
|
||||||
time.Sleep(329 * time.Millisecond)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
dir := t.(util.FullPath)
|
|
||||||
processErr := processOneDirectory(listDirFn, dir, visitFn, dirQueue, &dirQueueWg)
|
|
||||||
if processErr != nil {
|
|
||||||
err = processErr
|
|
||||||
}
|
|
||||||
dirQueueWg.Done()
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
dirQueueWg.Wait()
|
|
||||||
isTerminating = true
|
|
||||||
return
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func processOneDirectory(listDirFn ListDirectoryFunc, parentPath util.FullPath, visitFn VisitFunc, dirQueue *util.Queue, dirQueueWg *sync.WaitGroup) error {
|
|
||||||
|
|
||||||
return listDirFn(parentPath, func(dir string, name string, isDirectory bool, remoteEntry *filer_pb.RemoteEntry) error {
|
|
||||||
if err := visitFn(dir, name, isDirectory, remoteEntry); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if !isDirectory {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
dirQueueWg.Add(1)
|
|
||||||
dirQueue.Enqueue(parentPath.Child(name))
|
|
||||||
return nil
|
|
||||||
})
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user