1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
package analyze
import (
"os"
"path/filepath"
"github.com/dundee/gdu/v5/internal/common"
"github.com/dundee/gdu/v5/pkg/fs"
log "github.com/sirupsen/logrus"
)
// ParallelStableOrderAnalyzer implements Analyzer
type ParallelStableOrderAnalyzer struct {
progress *common.CurrentProgress
progressChan chan common.CurrentProgress
progressOutChan chan common.CurrentProgress
progressDoneChan chan struct{}
doneChan common.SignalGroup
wait *WaitGroup
ignoreDir common.ShouldDirBeIgnored
ignoreFileType common.ShouldFileBeIgnored
followSymlinks bool
gitAnnexedSize bool
}
// CreateStableOrderAnalyzer returns parallel Analyzer which keeps stable order of files
func CreateStableOrderAnalyzer() *ParallelStableOrderAnalyzer {
return &ParallelStableOrderAnalyzer{
progress: &common.CurrentProgress{
ItemCount: 0,
TotalSize: int64(0),
},
progressChan: make(chan common.CurrentProgress, 1),
progressOutChan: make(chan common.CurrentProgress, 1),
progressDoneChan: make(chan struct{}),
doneChan: make(common.SignalGroup),
wait: (&WaitGroup{}).Init(),
}
}
// SetFollowSymlinks sets whether symlink to files should be followed
func (a *ParallelStableOrderAnalyzer) SetFollowSymlinks(v bool) {
a.followSymlinks = v
}
// SetShowAnnexedSize sets whether to use annexed size of git-annex files
func (a *ParallelStableOrderAnalyzer) SetShowAnnexedSize(v bool) {
a.gitAnnexedSize = v
}
// SetFileTypeFilter sets the file type filter function
func (a *ParallelStableOrderAnalyzer) SetFileTypeFilter(filter common.ShouldFileBeIgnored) {
a.ignoreFileType = filter
}
// GetProgressChan returns channel for getting progress
func (a *ParallelStableOrderAnalyzer) GetProgressChan() chan common.CurrentProgress {
return a.progressOutChan
}
// GetDone returns channel for checking when analysis is done
func (a *ParallelStableOrderAnalyzer) GetDone() common.SignalGroup {
return a.doneChan
}
// ResetProgress returns progress
func (a *ParallelStableOrderAnalyzer) ResetProgress() {
a.progress = &common.CurrentProgress{}
a.progressChan = make(chan common.CurrentProgress, 1)
a.progressOutChan = make(chan common.CurrentProgress, 1)
a.progressDoneChan = make(chan struct{})
a.doneChan = make(common.SignalGroup)
a.wait = (&WaitGroup{}).Init()
}
// AnalyzeDir analyzes given path
func (a *ParallelStableOrderAnalyzer) AnalyzeDir(
path string, ignore common.ShouldDirBeIgnored, fileTypeFilter common.ShouldFileBeIgnored,
) fs.Item {
a.ignoreDir = ignore
a.ignoreFileType = fileTypeFilter
go a.updateProgress()
dir := a.processDir(path)
dir.BasePath = filepath.Dir(path)
a.wait.Wait()
a.progressDoneChan <- struct{}{}
a.doneChan.Broadcast()
return dir
}
func (a *ParallelStableOrderAnalyzer) processDir(path string) *Dir {
type indexedItem struct {
index int
item fs.Item
}
var (
file *File
err error
totalSize int64
info os.FileInfo
itemCount int
dirCount int
)
a.wait.Add(1)
files, err := os.ReadDir(path)
if err != nil {
log.Print(err.Error())
}
dir := &Dir{
File: &File{
Name: filepath.Base(path),
Flag: getDirFlag(err, len(files)),
},
ItemCount: 1,
Files: make(fs.Files, 0, len(files)),
}
setDirPlatformSpecificAttrs(dir, path)
// Buffer channel to prevent deadlock when sending files synchronously
itemChan := make(chan indexedItem, len(files))
for _, f := range files {
name := f.Name()
entryPath := filepath.Join(path, name)
if f.IsDir() {
if a.ignoreDir(name, entryPath) {
continue
}
currentIndex := itemCount
itemCount++
dirCount++
go func(entryPath string, idx int) {
concurrencyLimit <- struct{}{}
subdir := a.processDir(entryPath)
subdir.Parent = dir
itemChan <- indexedItem{idx, subdir}
<-concurrencyLimit
}(entryPath, currentIndex)
} else {
info, err = f.Info()
if err != nil {
log.Print(err.Error())
dir.Flag = '!'
continue
}
if a.followSymlinks && info.Mode()&os.ModeSymlink != 0 {
infoF, err := followSymlink(entryPath, a.gitAnnexedSize)
if err != nil {
log.Print(err.Error())
dir.Flag = '!'
continue
}
if infoF != nil {
info = infoF
}
}
// Apply file type filter if set
if a.ignoreFileType != nil && a.ignoreFileType(name) {
continue // Skip this file
}
file = &File{
Name: name,
Flag: getFlag(info),
Size: info.Size(),
Parent: dir,
}
setPlatformSpecificAttrs(file, info)
totalSize += file.Usage
// Send file to channel with its index
itemChan <- indexedItem{itemCount, file}
itemCount++
}
}
go func() {
items := make([]indexedItem, itemCount)
// Collect all items (both files and subdirs)
for i := 0; i < itemCount; i++ {
indexed := <-itemChan
items[indexed.index] = indexed
}
// Add all items in their original order
for i := 0; i < itemCount; i++ {
dir.AddFile(items[i].item)
}
a.wait.Done()
}()
a.progressChan <- common.CurrentProgress{
CurrentItemName: path,
ItemCount: int64(len(files)),
TotalSize: totalSize,
}
return dir
}
func (a *ParallelStableOrderAnalyzer) updateProgress() {
for {
select {
case <-a.progressDoneChan:
return
case progress := <-a.progressChan:
a.progress.CurrentItemName = progress.CurrentItemName
a.progress.ItemCount += progress.ItemCount
a.progress.TotalSize += progress.TotalSize
}
select {
case a.progressOutChan <- *a.progress:
default:
}
}
}
|