forked from dundee/gdu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport.go
197 lines (165 loc) · 4.22 KB
/
export.go
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
package report
import (
"bytes"
"errors"
"fmt"
"io"
"os"
"runtime/debug"
"sort"
"strconv"
"sync"
"time"
"github.com/dundee/gdu/v5/build"
"github.com/dundee/gdu/v5/internal/common"
"github.com/dundee/gdu/v5/pkg/analyze"
"github.com/dundee/gdu/v5/pkg/device"
"github.com/fatih/color"
)
// UI struct
type UI struct {
*common.UI
output io.Writer
exportOutput io.Writer
red *color.Color
orange *color.Color
writtenChan chan struct{}
}
// CreateExportUI creates UI for stdout
func CreateExportUI(output io.Writer, exportOutput io.Writer, useColors bool, showProgress bool) *UI {
ui := &UI{
UI: &common.UI{
ShowProgress: showProgress,
Analyzer: analyze.CreateAnalyzer(),
},
output: output,
exportOutput: exportOutput,
writtenChan: make(chan struct{}),
}
ui.red = color.New(color.FgRed).Add(color.Bold)
ui.orange = color.New(color.FgYellow).Add(color.Bold)
if !useColors {
color.NoColor = true
}
return ui
}
// StartUILoop stub
func (ui *UI) StartUILoop() error {
return nil
}
// ListDevices lists mounted devices and shows their disk usage
func (ui *UI) ListDevices(getter device.DevicesInfoGetter) error {
return errors.New("Exporting devices list is not supported")
}
// ReadAnalysis reads analysis report from JSON file
func (ui *UI) ReadAnalysis(input io.Reader) error {
return errors.New("Reading analysis is not possible while exporting")
}
// AnalyzePath analyzes recursively disk usage in given path
func (ui *UI) AnalyzePath(path string, _ *analyze.Dir) error {
var (
dir *analyze.Dir
wait sync.WaitGroup
waitWritten sync.WaitGroup
err error
)
if ui.ShowProgress {
waitWritten.Add(1)
go func() {
defer waitWritten.Done()
ui.updateProgress()
}()
}
wait.Add(1)
go func() {
defer wait.Done()
defer debug.SetGCPercent(debug.SetGCPercent(-1))
dir = ui.Analyzer.AnalyzeDir(path, ui.CreateIgnoreFunc())
dir.UpdateStats(make(analyze.HardLinkedItems, 10))
}()
wait.Wait()
sort.Sort(dir.Files)
var buff bytes.Buffer
buff.Write([]byte(`[1,2,{"progname":"gdu","progver":"`))
buff.Write([]byte(build.Version))
buff.Write([]byte(`","timestamp":`))
buff.Write([]byte(strconv.FormatInt(time.Now().Unix(), 10)))
buff.Write([]byte("},\n"))
if err = dir.EncodeJSON(&buff, true); err != nil {
return err
}
if _, err = buff.Write([]byte("]\n")); err != nil {
return err
}
if _, err = buff.WriteTo(ui.exportOutput); err != nil {
return err
}
switch f := ui.exportOutput.(type) {
case *os.File:
err = f.Close()
if err != nil {
return err
}
}
if ui.ShowProgress {
ui.writtenChan <- struct{}{}
waitWritten.Wait()
}
return nil
}
func (ui *UI) updateProgress() {
waitingForWrite := false
emptyRow := "\r"
for j := 0; j < 100; j++ {
emptyRow += " "
}
progressRunes := []rune(`⠇⠏⠋⠙⠹⠸⠼⠴⠦⠧`)
progressChan := ui.Analyzer.GetProgressChan()
doneChan := ui.Analyzer.GetDoneChan()
var progress analyze.CurrentProgress
i := 0
for {
fmt.Fprint(ui.output, emptyRow)
select {
case progress = <-progressChan:
case <-doneChan:
fmt.Fprint(ui.output, "\r")
waitingForWrite = true
case <-ui.writtenChan:
fmt.Fprint(ui.output, "\r")
return
default:
}
fmt.Fprintf(ui.output, "\r %s ", string(progressRunes[i]))
if waitingForWrite {
fmt.Fprint(ui.output, "Writing output file...")
} else {
fmt.Fprint(ui.output, "Scanning... Total items: "+
ui.red.Sprint(common.FormatNumber(int64(progress.ItemCount)))+
" size: "+
ui.formatSize(progress.TotalSize))
}
time.Sleep(100 * time.Millisecond)
i++
i %= 10
}
}
func (ui *UI) formatSize(size int64) string {
fsize := float64(size)
switch {
case fsize >= common.EB:
return ui.orange.Sprintf("%.1f", fsize/common.EB) + " EiB"
case fsize >= common.PB:
return ui.orange.Sprintf("%.1f", fsize/common.PB) + " PiB"
case fsize >= common.TB:
return ui.orange.Sprintf("%.1f", fsize/common.TB) + " TiB"
case fsize >= common.GB:
return ui.orange.Sprintf("%.1f", fsize/common.GB) + " GiB"
case fsize >= common.MB:
return ui.orange.Sprintf("%.1f", fsize/common.MB) + " MiB"
case fsize >= common.KB:
return ui.orange.Sprintf("%.1f", fsize/common.KB) + " KiB"
default:
return ui.orange.Sprintf("%d", size) + " B"
}
}