mirror of
https://github.com/octoleo/restic.git
synced 2024-11-23 21:27:34 +00:00
a376323331
Previously, they were printed as freeform text. This also adds a ui.Terminal interface to make writing tests easier and also adds a few tests.
88 lines
2.5 KiB
Go
88 lines
2.5 KiB
Go
package restore
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/restic/restic/internal/ui"
|
|
)
|
|
|
|
type textPrinter struct {
|
|
*ui.Message
|
|
|
|
terminal ui.Terminal
|
|
}
|
|
|
|
func NewTextProgress(terminal ui.Terminal, verbosity uint) ProgressPrinter {
|
|
return &textPrinter{
|
|
Message: ui.NewMessage(terminal, verbosity),
|
|
terminal: terminal,
|
|
}
|
|
}
|
|
|
|
func (t *textPrinter) Update(p State, duration time.Duration) {
|
|
timeLeft := ui.FormatDuration(duration)
|
|
formattedAllBytesWritten := ui.FormatBytes(p.AllBytesWritten)
|
|
formattedAllBytesTotal := ui.FormatBytes(p.AllBytesTotal)
|
|
allPercent := ui.FormatPercent(p.AllBytesWritten, p.AllBytesTotal)
|
|
progress := fmt.Sprintf("[%s] %s %v files/dirs %s, total %v files/dirs %v",
|
|
timeLeft, allPercent, p.FilesFinished, formattedAllBytesWritten, p.FilesTotal, formattedAllBytesTotal)
|
|
if p.FilesSkipped > 0 {
|
|
progress += fmt.Sprintf(", skipped %v files/dirs %v", p.FilesSkipped, ui.FormatBytes(p.AllBytesSkipped))
|
|
}
|
|
|
|
t.terminal.SetStatus([]string{progress})
|
|
}
|
|
|
|
func (t *textPrinter) Error(item string, err error) error {
|
|
t.E("ignoring error for %s: %s\n", item, err)
|
|
return nil
|
|
}
|
|
|
|
func (t *textPrinter) CompleteItem(messageType ItemAction, item string, size uint64) {
|
|
var action string
|
|
switch messageType {
|
|
case ActionDirRestored:
|
|
action = "restored"
|
|
case ActionFileRestored:
|
|
action = "restored"
|
|
case ActionOtherRestored:
|
|
action = "restored"
|
|
case ActionFileUpdated:
|
|
action = "updated"
|
|
case ActionFileUnchanged:
|
|
action = "unchanged"
|
|
case ActionDeleted:
|
|
action = "deleted"
|
|
default:
|
|
panic("unknown message type")
|
|
}
|
|
|
|
if messageType == ActionDirRestored || messageType == ActionOtherRestored || messageType == ActionDeleted {
|
|
t.VV("%-9v %v", action, item)
|
|
} else {
|
|
t.VV("%-9v %v with size %v", action, item, ui.FormatBytes(size))
|
|
}
|
|
}
|
|
|
|
func (t *textPrinter) Finish(p State, duration time.Duration) {
|
|
t.terminal.SetStatus(nil)
|
|
|
|
timeLeft := ui.FormatDuration(duration)
|
|
formattedAllBytesTotal := ui.FormatBytes(p.AllBytesTotal)
|
|
|
|
var summary string
|
|
if p.FilesFinished == p.FilesTotal && p.AllBytesWritten == p.AllBytesTotal {
|
|
summary = fmt.Sprintf("Summary: Restored %d files/dirs (%s) in %s", p.FilesTotal, formattedAllBytesTotal, timeLeft)
|
|
} else {
|
|
formattedAllBytesWritten := ui.FormatBytes(p.AllBytesWritten)
|
|
summary = fmt.Sprintf("Summary: Restored %d / %d files/dirs (%s / %s) in %s",
|
|
p.FilesFinished, p.FilesTotal, formattedAllBytesWritten, formattedAllBytesTotal, timeLeft)
|
|
}
|
|
if p.FilesSkipped > 0 {
|
|
summary += fmt.Sprintf(", skipped %v files/dirs %v", p.FilesSkipped, ui.FormatBytes(p.AllBytesSkipped))
|
|
}
|
|
|
|
t.terminal.Print(summary)
|
|
}
|