2018-02-01 14:13:24 +01:00
|
|
|
package accounting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ncw/rclone/fs"
|
2018-08-30 18:26:07 +02:00
|
|
|
"github.com/ncw/rclone/fs/fserrors"
|
2018-08-07 21:56:40 +02:00
|
|
|
"github.com/ncw/rclone/fs/rc"
|
2018-02-01 14:13:24 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// Stats is global statistics counter
|
|
|
|
Stats = NewStats()
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
// Set the function pointer up in fs
|
|
|
|
fs.CountError = Stats.Error
|
2018-08-07 21:56:40 +02:00
|
|
|
|
|
|
|
rc.Add(rc.Call{
|
|
|
|
Path: "core/stats",
|
|
|
|
Fn: Stats.RemoteStats,
|
|
|
|
Title: "Returns stats about current transfers.",
|
|
|
|
Help: `
|
|
|
|
This returns all available stats
|
|
|
|
|
|
|
|
rclone rc core/stats
|
|
|
|
|
2018-08-07 22:05:21 +02:00
|
|
|
Returns the following values:
|
|
|
|
|
|
|
|
` + "```" + `
|
2018-08-07 21:56:40 +02:00
|
|
|
{
|
|
|
|
"speed": average speed in bytes/sec since start of the process,
|
|
|
|
"bytes": total transferred bytes since the start of the process,
|
|
|
|
"errors": number of errors,
|
2018-08-30 18:26:07 +02:00
|
|
|
"fatalError": whether there has been at least one FatalError,
|
|
|
|
"retryError": whether there has been at least one non-NoRetryError,
|
2018-08-07 21:56:40 +02:00
|
|
|
"checks": number of checked files,
|
|
|
|
"transfers": number of transferred files,
|
|
|
|
"deletes" : number of deleted files,
|
|
|
|
"elapsedTime": time in seconds since the start of the process,
|
|
|
|
"lastError": last occurred error,
|
|
|
|
"transferring": an array of currently active file transfers:
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"bytes": total transferred bytes for this file,
|
|
|
|
"eta": estimated time in seconds until file transfer completion
|
|
|
|
"name": name of the file,
|
|
|
|
"percentage": progress of the file transfer in percent,
|
|
|
|
"speed": speed in bytes/sec,
|
|
|
|
"speedAvg": speed in bytes/sec as an exponentially weighted moving average,
|
|
|
|
"size": size of the file in bytes
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"checking": an array of names of currently active file checks
|
|
|
|
[]
|
|
|
|
}
|
2018-08-07 22:05:21 +02:00
|
|
|
` + "```" + `
|
2018-08-07 21:56:40 +02:00
|
|
|
Values for "transferring", "checking" and "lastError" are only assigned if data is available.
|
|
|
|
The value for "eta" is null if an eta cannot be determined.
|
|
|
|
`,
|
|
|
|
})
|
2018-02-01 14:13:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// StatsInfo accounts all transfers
|
|
|
|
type StatsInfo struct {
|
2018-07-19 23:41:34 +02:00
|
|
|
mu sync.RWMutex
|
|
|
|
bytes int64
|
|
|
|
errors int64
|
|
|
|
lastError error
|
2018-08-30 18:26:07 +02:00
|
|
|
fatalError bool
|
|
|
|
retryError bool
|
2018-07-19 23:41:34 +02:00
|
|
|
checks int64
|
|
|
|
checking *stringSet
|
|
|
|
checkQueue int
|
|
|
|
checkQueueSize int64
|
|
|
|
transfers int64
|
|
|
|
transferring *stringSet
|
|
|
|
transferQueue int
|
|
|
|
transferQueueSize int64
|
|
|
|
renameQueue int
|
|
|
|
renameQueueSize int64
|
|
|
|
deletes int64
|
|
|
|
start time.Time
|
|
|
|
inProgress *inProgress
|
2018-02-01 14:13:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewStats cretates an initialised StatsInfo
|
|
|
|
func NewStats() *StatsInfo {
|
|
|
|
return &StatsInfo{
|
2018-05-02 18:01:39 +02:00
|
|
|
checking: newStringSet(fs.Config.Checkers),
|
|
|
|
transferring: newStringSet(fs.Config.Transfers),
|
2018-02-01 14:13:24 +01:00
|
|
|
start: time.Now(),
|
|
|
|
inProgress: newInProgress(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-07 21:56:40 +02:00
|
|
|
// RemoteStats returns stats for rc
|
|
|
|
func (s *StatsInfo) RemoteStats(in rc.Params) (out rc.Params, err error) {
|
|
|
|
out = make(rc.Params)
|
|
|
|
s.mu.RLock()
|
|
|
|
dt := time.Now().Sub(s.start)
|
|
|
|
dtSeconds := dt.Seconds()
|
|
|
|
speed := 0.0
|
|
|
|
if dt > 0 {
|
|
|
|
speed = float64(s.bytes) / dtSeconds
|
|
|
|
}
|
|
|
|
out["speed"] = speed
|
|
|
|
out["bytes"] = s.bytes
|
|
|
|
out["errors"] = s.errors
|
2018-08-30 18:26:07 +02:00
|
|
|
out["fatalError"] = s.fatalError
|
|
|
|
out["retryError"] = s.retryError
|
2018-08-07 21:56:40 +02:00
|
|
|
out["checks"] = s.checks
|
|
|
|
out["transfers"] = s.transfers
|
|
|
|
out["deletes"] = s.deletes
|
|
|
|
out["elapsedTime"] = dtSeconds
|
|
|
|
s.mu.RUnlock()
|
|
|
|
if !s.checking.empty() {
|
|
|
|
var c []string
|
|
|
|
s.checking.mu.RLock()
|
|
|
|
defer s.checking.mu.RUnlock()
|
|
|
|
for name := range s.checking.items {
|
|
|
|
c = append(c, name)
|
|
|
|
}
|
|
|
|
out["checking"] = c
|
|
|
|
}
|
|
|
|
if !s.transferring.empty() {
|
|
|
|
var t []interface{}
|
|
|
|
s.transferring.mu.RLock()
|
|
|
|
defer s.transferring.mu.RUnlock()
|
|
|
|
for name := range s.transferring.items {
|
|
|
|
if acc := s.inProgress.get(name); acc != nil {
|
|
|
|
t = append(t, acc.RemoteStats())
|
|
|
|
} else {
|
|
|
|
t = append(t, name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out["transferring"] = t
|
|
|
|
}
|
|
|
|
if s.errors > 0 {
|
|
|
|
out["lastError"] = s.lastError
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2018-08-28 12:17:05 +02:00
|
|
|
// eta returns the ETA of the current operation,
|
|
|
|
// rounded to full seconds.
|
|
|
|
// If the ETA cannot be determined 'ok' returns false.
|
|
|
|
func eta(size, total int64, rate float64) (eta time.Duration, ok bool) {
|
|
|
|
if total <= 0 || size < 0 || rate <= 0 {
|
|
|
|
return 0, false
|
|
|
|
}
|
|
|
|
remaining := total - size
|
|
|
|
if remaining < 0 {
|
|
|
|
return 0, false
|
|
|
|
}
|
|
|
|
seconds := float64(remaining) / rate
|
|
|
|
return time.Second * time.Duration(seconds), true
|
|
|
|
}
|
|
|
|
|
|
|
|
// etaString returns the ETA of the current operation,
|
|
|
|
// rounded to full seconds.
|
|
|
|
// If the ETA cannot be determined it returns "-"
|
|
|
|
func etaString(done, total int64, rate float64) string {
|
|
|
|
d, ok := eta(done, total, rate)
|
|
|
|
if !ok {
|
|
|
|
return "-"
|
|
|
|
}
|
|
|
|
return d.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// percent returns a/b as a percentage rounded to the nearest integer
|
|
|
|
// as a string
|
|
|
|
//
|
|
|
|
// if the percentage is invalid it returns "-"
|
|
|
|
func percent(a int64, b int64) string {
|
|
|
|
if a < 0 || b <= 0 {
|
|
|
|
return "-"
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%d%%", int(float64(a)*100/float64(b)+0.5))
|
|
|
|
}
|
|
|
|
|
2018-02-01 14:13:24 +01:00
|
|
|
// String convert the StatsInfo to a string for printing
|
|
|
|
func (s *StatsInfo) String() string {
|
2018-08-28 12:17:05 +02:00
|
|
|
// checking and transferring have their own locking so read
|
|
|
|
// here before lock to prevent deadlock on GetBytes
|
|
|
|
transferring, checking := s.transferring.count(), s.checking.count()
|
|
|
|
transferringBytesDone, transferringBytesTotal := s.transferring.progress()
|
|
|
|
|
2018-05-02 18:01:39 +02:00
|
|
|
s.mu.RLock()
|
|
|
|
|
2018-02-01 14:13:24 +01:00
|
|
|
dt := time.Now().Sub(s.start)
|
|
|
|
dtSeconds := dt.Seconds()
|
|
|
|
speed := 0.0
|
|
|
|
if dt > 0 {
|
|
|
|
speed = float64(s.bytes) / dtSeconds
|
|
|
|
}
|
|
|
|
dtRounded := dt - (dt % (time.Second / 10))
|
|
|
|
|
|
|
|
if fs.Config.DataRateUnit == "bits" {
|
|
|
|
speed = speed * 8
|
|
|
|
}
|
|
|
|
|
2018-08-28 12:17:05 +02:00
|
|
|
var (
|
|
|
|
totalChecks = int64(s.checkQueue) + s.checks + int64(checking)
|
|
|
|
totalTransfer = int64(s.transferQueue) + s.transfers + int64(transferring)
|
|
|
|
// note that s.bytes already includes transferringBytesDone so
|
|
|
|
// we take it off here to avoid double counting
|
|
|
|
totalSize = s.transferQueueSize + s.bytes + transferringBytesTotal - transferringBytesDone
|
|
|
|
currentSize = s.bytes
|
|
|
|
buf = &bytes.Buffer{}
|
|
|
|
xfrchkString = ""
|
|
|
|
)
|
2018-07-19 23:43:53 +02:00
|
|
|
|
2018-08-16 17:32:35 +02:00
|
|
|
if !fs.Config.StatsOneLine {
|
|
|
|
_, _ = fmt.Fprintf(buf, "\nTransferred: ")
|
2018-08-28 12:17:05 +02:00
|
|
|
} else {
|
2018-08-16 17:32:35 +02:00
|
|
|
xfrchk := []string{}
|
|
|
|
if totalTransfer > 0 && s.transferQueue > 0 {
|
|
|
|
xfrchk = append(xfrchk, fmt.Sprintf("xfr#%d/%d", s.transfers, totalTransfer))
|
|
|
|
}
|
|
|
|
if totalChecks > 0 && s.checkQueue > 0 {
|
|
|
|
xfrchk = append(xfrchk, fmt.Sprintf("chk#%d/%d", s.checks, totalChecks))
|
|
|
|
}
|
|
|
|
if len(xfrchk) > 0 {
|
|
|
|
xfrchkString = fmt.Sprintf(" (%s)", strings.Join(xfrchk, ", "))
|
|
|
|
}
|
2018-07-19 23:43:53 +02:00
|
|
|
}
|
2018-08-28 12:17:05 +02:00
|
|
|
|
|
|
|
_, _ = fmt.Fprintf(buf, "%10s / %s, %s, %s, ETA %s%s",
|
|
|
|
fs.SizeSuffix(s.bytes),
|
|
|
|
fs.SizeSuffix(totalSize).Unit("Bytes"),
|
|
|
|
percent(s.bytes, totalSize),
|
|
|
|
fs.SizeSuffix(speed).Unit(strings.Title(fs.Config.DataRateUnit)+"/s"),
|
|
|
|
etaString(currentSize, totalSize, speed),
|
|
|
|
xfrchkString,
|
|
|
|
)
|
|
|
|
|
2018-08-16 17:32:35 +02:00
|
|
|
if !fs.Config.StatsOneLine {
|
2018-08-30 18:26:07 +02:00
|
|
|
errorDetails := ""
|
|
|
|
switch {
|
|
|
|
case s.fatalError:
|
|
|
|
errorDetails = " (fatal error encountered)"
|
|
|
|
case s.retryError:
|
|
|
|
errorDetails = " (retrying may help)"
|
|
|
|
case s.errors != 0:
|
|
|
|
errorDetails = " (no need to retry)"
|
|
|
|
}
|
|
|
|
|
2018-08-16 17:32:35 +02:00
|
|
|
_, _ = fmt.Fprintf(buf, `
|
2018-08-30 18:26:07 +02:00
|
|
|
Errors: %10d%s
|
2018-08-28 12:17:05 +02:00
|
|
|
Checks: %10d / %d, %s
|
|
|
|
Transferred: %10d / %d, %s
|
2018-02-01 14:13:24 +01:00
|
|
|
Elapsed time: %10v
|
|
|
|
`,
|
2018-08-30 18:26:07 +02:00
|
|
|
s.errors, errorDetails,
|
2018-08-16 17:32:35 +02:00
|
|
|
s.checks, totalChecks, percent(s.checks, totalChecks),
|
|
|
|
s.transfers, totalTransfer, percent(s.transfers, totalTransfer),
|
|
|
|
dtRounded)
|
|
|
|
}
|
2018-05-02 18:01:39 +02:00
|
|
|
|
|
|
|
// checking and transferring have their own locking so unlock
|
|
|
|
// here to prevent deadlock on GetBytes
|
|
|
|
s.mu.RUnlock()
|
|
|
|
|
2018-08-28 12:17:05 +02:00
|
|
|
// Add per transfer stats if required
|
2018-08-16 17:32:35 +02:00
|
|
|
if !fs.Config.StatsOneLine {
|
|
|
|
if !s.checking.empty() {
|
|
|
|
_, _ = fmt.Fprintf(buf, "Checking:\n%s\n", s.checking)
|
|
|
|
}
|
|
|
|
if !s.transferring.empty() {
|
|
|
|
_, _ = fmt.Fprintf(buf, "Transferring:\n%s\n", s.transferring)
|
|
|
|
}
|
2018-02-01 14:13:24 +01:00
|
|
|
}
|
2018-08-28 12:17:05 +02:00
|
|
|
|
2018-02-01 14:13:24 +01:00
|
|
|
return buf.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Log outputs the StatsInfo to the log
|
|
|
|
func (s *StatsInfo) Log() {
|
|
|
|
fs.LogLevelPrintf(fs.Config.StatsLogLevel, nil, "%v\n", s)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bytes updates the stats for bytes bytes
|
|
|
|
func (s *StatsInfo) Bytes(bytes int64) {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2018-02-01 14:13:24 +01:00
|
|
|
s.bytes += bytes
|
|
|
|
}
|
|
|
|
|
2018-04-21 23:03:27 +02:00
|
|
|
// GetBytes returns the number of bytes transferred so far
|
|
|
|
func (s *StatsInfo) GetBytes() int64 {
|
2018-07-22 11:33:19 +02:00
|
|
|
s.mu.RLock()
|
|
|
|
defer s.mu.RUnlock()
|
2018-04-21 23:03:27 +02:00
|
|
|
return s.bytes
|
|
|
|
}
|
|
|
|
|
2018-02-01 14:13:24 +01:00
|
|
|
// Errors updates the stats for errors
|
|
|
|
func (s *StatsInfo) Errors(errors int64) {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2018-02-01 14:13:24 +01:00
|
|
|
s.errors += errors
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetErrors reads the number of errors
|
|
|
|
func (s *StatsInfo) GetErrors() int64 {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.mu.RLock()
|
|
|
|
defer s.mu.RUnlock()
|
2018-02-01 14:13:24 +01:00
|
|
|
return s.errors
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetLastError returns the lastError
|
|
|
|
func (s *StatsInfo) GetLastError() error {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.mu.RLock()
|
|
|
|
defer s.mu.RUnlock()
|
2018-02-01 14:13:24 +01:00
|
|
|
return s.lastError
|
|
|
|
}
|
|
|
|
|
2018-08-30 18:26:07 +02:00
|
|
|
// FatalError sets the fatalError flag
|
|
|
|
func (s *StatsInfo) FatalError() {
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
s.fatalError = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// HadFatalError returns whether there has been at least one FatalError
|
|
|
|
func (s *StatsInfo) HadFatalError() bool {
|
|
|
|
s.mu.RLock()
|
|
|
|
defer s.mu.RUnlock()
|
|
|
|
return s.fatalError
|
|
|
|
}
|
|
|
|
|
|
|
|
// RetryError sets the retryError flag
|
|
|
|
func (s *StatsInfo) RetryError() {
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
s.retryError = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// HadRetryError returns whether there has been at least one non-NoRetryError
|
|
|
|
func (s *StatsInfo) HadRetryError() bool {
|
|
|
|
s.mu.RLock()
|
|
|
|
defer s.mu.RUnlock()
|
|
|
|
return s.retryError
|
|
|
|
}
|
|
|
|
|
2018-01-22 19:53:18 +01:00
|
|
|
// Deletes updates the stats for deletes
|
|
|
|
func (s *StatsInfo) Deletes(deletes int64) int64 {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2018-01-22 19:53:18 +01:00
|
|
|
s.deletes += deletes
|
|
|
|
return s.deletes
|
|
|
|
}
|
|
|
|
|
2018-08-30 18:26:07 +02:00
|
|
|
// ResetCounters sets the counters (bytes, checks, errors, transfers, deletes) to 0 and resets lastError, fatalError and retryError
|
2018-02-01 14:13:24 +01:00
|
|
|
func (s *StatsInfo) ResetCounters() {
|
2018-07-22 11:33:19 +02:00
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2018-02-01 14:13:24 +01:00
|
|
|
s.bytes = 0
|
|
|
|
s.errors = 0
|
2018-08-30 18:26:07 +02:00
|
|
|
s.lastError = nil
|
|
|
|
s.fatalError = false
|
|
|
|
s.retryError = false
|
2018-02-01 14:13:24 +01:00
|
|
|
s.checks = 0
|
|
|
|
s.transfers = 0
|
2018-01-22 19:53:18 +01:00
|
|
|
s.deletes = 0
|
2018-02-01 14:13:24 +01:00
|
|
|
}
|
|
|
|
|
2018-08-30 18:26:07 +02:00
|
|
|
// ResetErrors sets the errors count to 0 and resets lastError, fatalError and retryError
|
2018-02-01 14:13:24 +01:00
|
|
|
func (s *StatsInfo) ResetErrors() {
|
2018-07-22 11:33:19 +02:00
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2018-02-01 14:13:24 +01:00
|
|
|
s.errors = 0
|
2018-08-30 18:26:07 +02:00
|
|
|
s.lastError = nil
|
|
|
|
s.fatalError = false
|
|
|
|
s.retryError = false
|
2018-02-01 14:13:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Errored returns whether there have been any errors
|
|
|
|
func (s *StatsInfo) Errored() bool {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.mu.RLock()
|
|
|
|
defer s.mu.RUnlock()
|
2018-02-01 14:13:24 +01:00
|
|
|
return s.errors != 0
|
|
|
|
}
|
|
|
|
|
2018-08-30 18:26:07 +02:00
|
|
|
// Error adds a single error into the stats, assigns lastError and eventually sets fatalError or retryError
|
2018-02-01 14:13:24 +01:00
|
|
|
func (s *StatsInfo) Error(err error) {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2018-02-01 14:13:24 +01:00
|
|
|
s.errors++
|
|
|
|
s.lastError = err
|
2018-08-30 18:26:07 +02:00
|
|
|
switch {
|
|
|
|
case fserrors.IsFatalError(err):
|
|
|
|
s.fatalError = true
|
|
|
|
case !fserrors.IsNoRetryError(err):
|
|
|
|
s.retryError = true
|
|
|
|
}
|
2018-02-01 14:13:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Checking adds a check into the stats
|
|
|
|
func (s *StatsInfo) Checking(remote string) {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.checking.add(remote)
|
2018-02-01 14:13:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// DoneChecking removes a check from the stats
|
|
|
|
func (s *StatsInfo) DoneChecking(remote string) {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.checking.del(remote)
|
|
|
|
s.mu.Lock()
|
2018-02-01 14:13:24 +01:00
|
|
|
s.checks++
|
2018-05-02 18:01:39 +02:00
|
|
|
s.mu.Unlock()
|
2018-02-01 14:13:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetTransfers reads the number of transfers
|
|
|
|
func (s *StatsInfo) GetTransfers() int64 {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.mu.RLock()
|
|
|
|
defer s.mu.RUnlock()
|
2018-02-01 14:13:24 +01:00
|
|
|
return s.transfers
|
|
|
|
}
|
|
|
|
|
|
|
|
// Transferring adds a transfer into the stats
|
|
|
|
func (s *StatsInfo) Transferring(remote string) {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.transferring.add(remote)
|
2018-02-01 14:13:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// DoneTransferring removes a transfer from the stats
|
|
|
|
//
|
|
|
|
// if ok is true then it increments the transfers count
|
|
|
|
func (s *StatsInfo) DoneTransferring(remote string, ok bool) {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.transferring.del(remote)
|
2018-02-01 14:13:24 +01:00
|
|
|
if ok {
|
2018-05-02 18:01:39 +02:00
|
|
|
s.mu.Lock()
|
2018-02-01 14:13:24 +01:00
|
|
|
s.transfers++
|
2018-05-02 18:01:39 +02:00
|
|
|
s.mu.Unlock()
|
2018-02-01 14:13:24 +01:00
|
|
|
}
|
|
|
|
}
|
2018-07-19 23:41:34 +02:00
|
|
|
|
|
|
|
// SetCheckQueue sets the number of queued checks
|
|
|
|
func (s *StatsInfo) SetCheckQueue(n int, size int64) {
|
|
|
|
s.mu.Lock()
|
|
|
|
s.checkQueue = n
|
|
|
|
s.checkQueueSize = size
|
|
|
|
s.mu.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetTransferQueue sets the number of queued transfers
|
|
|
|
func (s *StatsInfo) SetTransferQueue(n int, size int64) {
|
|
|
|
s.mu.Lock()
|
|
|
|
s.transferQueue = n
|
|
|
|
s.transferQueueSize = size
|
|
|
|
s.mu.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetRenameQueue sets the number of queued transfers
|
|
|
|
func (s *StatsInfo) SetRenameQueue(n int, size int64) {
|
|
|
|
s.mu.Lock()
|
|
|
|
s.renameQueue = n
|
|
|
|
s.renameQueueSize = size
|
|
|
|
s.mu.Unlock()
|
|
|
|
}
|