forked from arduino/arduino-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrpc_progress.go
118 lines (109 loc) · 3.07 KB
/
rpc_progress.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
// This file is part of arduino-cli.
//
// Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
//
// This software is released under the GNU General Public License version 3,
// which covers the main part of arduino-cli.
// The terms of this license can be found at:
// https://www.gnu.org/licenses/gpl-3.0.en.html
//
// You can be released from the requirements of the above licenses by purchasing
// a commercial license. Buying such a license is mandatory if you want to
// modify or otherwise use the software for commercial activities involving the
// Arduino software without disclosing the source code of your own applications.
// To purchase a commercial license, send an email to [email protected].
package output
import (
"fmt"
"sync"
"github.com/arduino/arduino-cli/cli/feedback"
"github.com/arduino/arduino-cli/i18n"
rpc "github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1"
"github.com/cmaglie/pb"
)
var (
// OutputFormat can be "text" or "json"
OutputFormat string
tr = i18n.Tr
)
// ProgressBar returns a DownloadProgressCB that prints a progress bar.
// If JSON output format has been selected, the callback outputs nothing.
func ProgressBar() rpc.DownloadProgressCB {
if OutputFormat != "json" {
return NewDownloadProgressBarCB()
}
return func(curr *rpc.DownloadProgress) {
// XXX: Output progress in JSON?
}
}
// TaskProgress returns a TaskProgressCB that prints the task progress.
// If JSON output format has been selected, the callback outputs nothing.
func TaskProgress() rpc.TaskProgressCB {
if OutputFormat != "json" {
return NewTaskProgressCB()
}
return func(curr *rpc.TaskProgress) {
// XXX: Output progress in JSON?
}
}
// NewDownloadProgressBarCB creates a progress bar callback that outputs a progress
// bar on the terminal
func NewDownloadProgressBarCB() func(*rpc.DownloadProgress) {
var mux sync.Mutex
var bar *pb.ProgressBar
var label string
started := false
return func(curr *rpc.DownloadProgress) {
mux.Lock()
defer mux.Unlock()
if start := curr.GetStart(); start != nil {
label = start.GetLabel()
bar = pb.New(0)
bar.Prefix(label)
bar.SetUnits(pb.U_BYTES)
}
if update := curr.GetUpdate(); update != nil {
bar.SetTotal64(update.GetTotalSize())
if !started {
bar.Start()
started = true
}
bar.Set64(update.GetDownloaded())
}
if end := curr.GetEnd(); end != nil {
msg := end.GetMessage()
if end.GetSuccess() && msg == "" {
msg = tr("downloaded")
}
if started {
bar.FinishPrintOver(label + " " + msg)
} else {
feedback.Print(label + " " + msg)
}
started = false
}
}
}
// NewTaskProgressCB returns a commands.TaskProgressCB progress listener
// that outputs to terminal
func NewTaskProgressCB() func(curr *rpc.TaskProgress) {
var name string
return func(curr *rpc.TaskProgress) {
// fmt.Printf(">>> %v\n", curr)
msg := curr.GetMessage()
if curr.GetName() != "" {
name = curr.GetName()
if msg == "" {
msg = name
}
}
if msg != "" {
fmt.Print(msg)
if curr.GetCompleted() {
fmt.Println()
} else {
fmt.Println("...")
}
}
}
}