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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
|
package analyze
import (
"os"
"path/filepath"
"runtime"
"github.com/dundee/gdu/v5/internal/common"
"github.com/dundee/gdu/v5/pkg/fs"
log "github.com/sirupsen/logrus"
)
var concurrencyLimit = make(chan struct{}, 3*runtime.GOMAXPROCS(0))
// ParallelAnalyzer implements Analyzer
type ParallelAnalyzer 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
matchesTimeFilterFn common.TimeFilter
archiveBrowsing bool
}
// CreateAnalyzer returns Analyzer
func CreateAnalyzer() *ParallelAnalyzer {
return &ParallelAnalyzer{
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 *ParallelAnalyzer) SetFollowSymlinks(v bool) {
a.followSymlinks = v
}
// SetShowAnnexedSize sets whether to use annexed size of git-annex files
func (a *ParallelAnalyzer) SetShowAnnexedSize(v bool) {
a.gitAnnexedSize = v
}
// SetTimeFilter sets the time filter function for file inclusion
func (a *ParallelAnalyzer) SetTimeFilter(matchesTimeFilterFn common.TimeFilter) {
a.matchesTimeFilterFn = matchesTimeFilterFn
}
// SetArchiveBrowsing sets whether browsing of zip/jar archives is enabled
func (a *ParallelAnalyzer) SetArchiveBrowsing(v bool) {
a.archiveBrowsing = v
}
// SetFileTypeFilter sets the file type filter function
func (a *ParallelAnalyzer) SetFileTypeFilter(filter common.ShouldFileBeIgnored) {
a.ignoreFileType = filter
}
// GetProgressChan returns channel for getting progress
func (a *ParallelAnalyzer) GetProgressChan() chan common.CurrentProgress {
return a.progressOutChan
}
// GetDone returns channel for checking when analysis is done
func (a *ParallelAnalyzer) GetDone() common.SignalGroup {
return a.doneChan
}
// ResetProgress returns progress
func (a *ParallelAnalyzer) 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 *ParallelAnalyzer) 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 *ParallelAnalyzer) processDir(path string) *Dir {
var (
file fs.Item
err error
totalSize int64
info os.FileInfo
subDirChan = make(chan *Dir)
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)
for _, f := range files {
name := f.Name()
entryPath := filepath.Join(path, name)
if f.IsDir() {
if a.ignoreDir(name, entryPath) {
continue
}
dirCount++
go func(entryPath string) {
concurrencyLimit <- struct{}{}
subdir := a.processDir(entryPath)
subdir.Parent = dir
subDirChan <- subdir
<-concurrencyLimit
}(entryPath)
} 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
}
}
// Check if it's a zip or jar file
if a.archiveBrowsing && isZipFile(name) {
zipDir, err := processZipFile(entryPath, info)
if err != nil {
// If unable to process zip file, treat as regular file
log.Printf("Failed to process zip file %s: %v", entryPath, err)
file = &File{
Name: name,
Flag: getFlag(info),
Size: info.Size(),
Parent: dir,
}
} else {
// Successfully processed zip file, use zip content size
uncompressedSize, compressedSize, err := getZipFileSize(entryPath)
if err == nil {
zipDir.Size = uncompressedSize
zipDir.Usage = compressedSize
}
zipDir.Parent = dir
file = zipDir
}
} else {
file = &File{
Name: name,
Flag: getFlag(info),
Size: info.Size(),
Parent: dir,
}
}
// Apply time filter if set
if a.matchesTimeFilterFn != nil && !a.matchesTimeFilterFn(info.ModTime()) {
continue // Skip this file
}
// Apply file type filter if set
if a.ignoreFileType != nil && a.ignoreFileType(name) {
continue // Skip this file
}
if file != nil {
// Only set platform-specific attributes for regular files
if regularFile, ok := file.(*File); ok {
setPlatformSpecificAttrs(regularFile, info)
}
totalSize += file.GetUsage()
dir.AddFile(file)
}
}
}
go func() {
var sub *Dir
for i := 0; i < dirCount; i++ {
sub = <-subDirChan
dir.AddFile(sub)
}
a.wait.Done()
}()
a.progressChan <- common.CurrentProgress{
CurrentItemName: path,
ItemCount: int64(len(files)),
TotalSize: totalSize,
}
return dir
}
func (a *ParallelAnalyzer) 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:
}
}
}
func getDirFlag(err error, items int) rune {
switch {
case err != nil:
return '!'
case items == 0:
return 'e'
default:
return ' '
}
}
func getFlag(f os.FileInfo) rune {
if f.Mode()&os.ModeSymlink != 0 || f.Mode()&os.ModeSocket != 0 {
return '@'
}
return ' '
}
|