with '#' will be ignored, and an empty message aborts the commit. Author: Ethan Alicea <64653625+Tech-Gamer@users.noreply.github.com> On branch develop Your branch is up to date with 'origin/develop'. Changes to be committed: modified: .github/workflows/push.yaml modified: .github/workflows/release.yaml modified: CHANGELOG.md modified: Dockerfile modified: Makefile modified: README.md modified: cmd/configure.go modified: cmd/diagnostics.go modified: cmd/root.go modified: config/config.go modified: environment/allocations.go modified: environment/docker.go modified: environment/docker/api.go modified: environment/docker/container.go modified: environment/docker/environment.go modified: environment/docker/power.go modified: environment/docker/stats.go modified: environment/environment.go modified: environment/settings.go modified: events/events.go modified: go.mod modified: internal/cron/activity_cron.go modified: internal/cron/cron.go modified: internal/cron/sftp_cron.go modified: internal/database/database.go modified: internal/progress/progress.go modified: internal/progress/progress_test.go modified: loggers/cli/cli.go new file: oryxBuildBinary modified: parser/parser.go modified: remote/http.go modified: remote/servers.go modified: remote/types.go modified: router/downloader/downloader.go modified: router/middleware.go modified: router/middleware/middleware.go modified: router/middleware/request_error.go modified: router/router.go modified: router/router_download.go modified: router/router_server.go modified: router/router_server_backup.go modified: router/router_server_files.go modified: router/router_server_transfer.go modified: router/router_server_ws.go modified: router/router_system.go modified: router/router_transfer.go modified: router/tokens/parser.go modified: router/websocket/listeners.go modified: router/websocket/websocket.go modified: server/activity.go modified: server/backup.go modified: server/backup/backup.go modified: server/backup/backup_local.go modified: server/backup/backup_s3.go modified: server/configuration.go modified: server/console.go modified: server/crash.go modified: server/events.go modified: server/filesystem/archive.go modified: server/filesystem/filesystem.go modified: server/filesystem/filesystem_test.go modified: server/install.go modified: server/installer/installer.go modified: server/listeners.go modified: server/manager.go modified: server/mounts.go modified: server/power.go modified: server/power_test.go modified: server/resources.go modified: server/server.go modified: server/transfer/archive.go modified: server/transfer/source.go modified: server/transfer/transfer.go modified: server/update.go modified: sftp/event.go modified: sftp/handler.go modified: sftp/server.go modified: wings.go
91 lines
2.8 KiB
Go
91 lines
2.8 KiB
Go
package progress
|
|
|
|
import (
|
|
"io"
|
|
"strings"
|
|
"sync/atomic"
|
|
|
|
"github.com/Tech-Gamer/nwy-wings/system"
|
|
)
|
|
|
|
// Progress is used to track the progress of any I/O operation that are being
|
|
// performed.
|
|
type Progress struct {
|
|
// written is the total size of the files that have been written to the writer.
|
|
written uint64
|
|
// Total is the total size of the archive in bytes.
|
|
total uint64
|
|
|
|
// Writer .
|
|
Writer io.Writer
|
|
}
|
|
|
|
// NewProgress returns a new progress tracker for the given total size.
|
|
func NewProgress(total uint64) *Progress {
|
|
return &Progress{total: total}
|
|
}
|
|
|
|
// Written returns the total number of bytes written.
|
|
// This function should be used when the progress is tracking data being written.
|
|
func (p *Progress) Written() uint64 {
|
|
return atomic.LoadUint64(&p.written)
|
|
}
|
|
|
|
// Total returns the total size in bytes.
|
|
func (p *Progress) Total() uint64 {
|
|
return atomic.LoadUint64(&p.total)
|
|
}
|
|
|
|
// SetTotal sets the total size of the archive in bytes. This function is safe
|
|
// to call concurrently and can be used to update the total size if it changes,
|
|
// such as when the total size is simultaneously being calculated as data is
|
|
// being written through the progress writer.
|
|
func (p *Progress) SetTotal(total uint64) {
|
|
atomic.StoreUint64(&p.total, total)
|
|
}
|
|
|
|
// Write totals the number of bytes that have been written to the writer.
|
|
func (p *Progress) Write(v []byte) (int, error) {
|
|
n := len(v)
|
|
atomic.AddUint64(&p.written, uint64(n))
|
|
if p.Writer != nil {
|
|
return p.Writer.Write(v)
|
|
}
|
|
return n, nil
|
|
}
|
|
|
|
// Progress returns a formatted progress string for the current progress.
|
|
func (p *Progress) Progress(width int) string {
|
|
// current = 100 (Progress, dynamic)
|
|
// total = 1000 (Content-Length, dynamic)
|
|
// width = 25 (Number of ticks to display, static)
|
|
// widthPercentage = 100 / width (What percentage does each tick represent, static)
|
|
//
|
|
// percentageDecimal = current / total = 0.1
|
|
// percentage = percentageDecimal * 100 = 10%
|
|
// ticks = percentage / widthPercentage = 2.5
|
|
//
|
|
// ticks is a float64, so we cast it to an int which rounds it down to 2.
|
|
|
|
// Values are cast to floats to prevent integer division.
|
|
current := p.Written()
|
|
total := p.Total()
|
|
// width := is passed as a parameter
|
|
widthPercentage := float64(100) / float64(width)
|
|
percentageDecimal := float64(current) / float64(total)
|
|
percentage := percentageDecimal * 100
|
|
ticks := int(percentage / widthPercentage)
|
|
|
|
// Ensure that we never get a negative number of ticks, this will prevent strings#Repeat
|
|
// from panicking. A negative number of ticks is likely to happen when the total size is
|
|
// inaccurate, such as when we are going off of rough disk usage calculation.
|
|
if ticks < 0 {
|
|
ticks = 0
|
|
} else if ticks > width {
|
|
ticks = width
|
|
}
|
|
|
|
bar := strings.Repeat("=", ticks) + strings.Repeat(" ", width-ticks)
|
|
return "[" + bar + "] " + system.FormatBytes(current) + " / " + system.FormatBytes(total)
|
|
}
|