2013-01-03 23:50:00 +01:00
|
|
|
// Accounting and limiting reader
|
|
|
|
|
2013-06-27 21:13:07 +02:00
|
|
|
package fs
|
2013-01-03 23:50:00 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"log"
|
2015-09-15 16:46:06 +02:00
|
|
|
"sort"
|
2013-01-03 23:50:00 +01:00
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
2015-02-19 20:26:00 +01:00
|
|
|
|
2015-09-15 16:46:06 +02:00
|
|
|
"github.com/VividCortex/ewma"
|
2015-02-19 20:26:00 +01:00
|
|
|
"github.com/tsenart/tb"
|
2013-01-03 23:50:00 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Globals
|
|
|
|
var (
|
2015-02-19 20:26:00 +01:00
|
|
|
Stats = NewStats()
|
|
|
|
tokenBucket *tb.Bucket
|
2013-01-03 23:50:00 +01:00
|
|
|
)
|
|
|
|
|
2015-02-19 20:26:00 +01:00
|
|
|
// Start the token bucket if necessary
|
|
|
|
func startTokenBucket() {
|
|
|
|
if bwLimit > 0 {
|
|
|
|
tokenBucket = tb.NewBucket(int64(bwLimit), 100*time.Millisecond)
|
|
|
|
Log(nil, "Starting bandwidth limiter at %vBytes/s", &bwLimit)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-15 16:46:06 +02:00
|
|
|
// stringSet holds a set of strings
|
|
|
|
type stringSet map[string]struct{}
|
2013-01-03 23:50:00 +01:00
|
|
|
|
2015-09-15 16:46:06 +02:00
|
|
|
// inProgress holds a synchronizes map of in progress transfers
|
|
|
|
type inProgress struct {
|
|
|
|
mu sync.Mutex
|
|
|
|
m map[string]*Account
|
|
|
|
}
|
|
|
|
|
|
|
|
// newInProgress makes a new inProgress object
|
|
|
|
func newInProgress() *inProgress {
|
|
|
|
return &inProgress{
|
|
|
|
m: make(map[string]*Account, Config.Transfers),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// set marks the name as in progress
|
|
|
|
func (ip *inProgress) set(name string, acc *Account) {
|
|
|
|
ip.mu.Lock()
|
|
|
|
defer ip.mu.Unlock()
|
|
|
|
ip.m[name] = acc
|
|
|
|
}
|
|
|
|
|
|
|
|
// clear marks the name as no longer in progress
|
|
|
|
func (ip *inProgress) clear(name string) {
|
|
|
|
ip.mu.Lock()
|
|
|
|
defer ip.mu.Unlock()
|
|
|
|
delete(ip.m, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// get gets the account for name, of nil if not found
|
|
|
|
func (ip *inProgress) get(name string) *Account {
|
|
|
|
ip.mu.Lock()
|
|
|
|
defer ip.mu.Unlock()
|
|
|
|
return ip.m[name]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Strings returns all the strings in the stringSet
|
|
|
|
func (ss stringSet) Strings() []string {
|
2013-01-03 23:50:00 +01:00
|
|
|
strings := make([]string, 0, len(ss))
|
2015-09-15 16:46:06 +02:00
|
|
|
for name, _ := range ss {
|
|
|
|
var out string
|
|
|
|
if acc := Stats.inProgress.get(name); acc != nil {
|
|
|
|
out = acc.String()
|
|
|
|
} else {
|
|
|
|
out = name
|
|
|
|
}
|
|
|
|
strings = append(strings, " * "+out)
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
2015-09-15 16:46:06 +02:00
|
|
|
sorted := sort.StringSlice(strings)
|
|
|
|
sorted.Sort()
|
|
|
|
return sorted
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
|
|
|
|
2015-09-15 16:46:06 +02:00
|
|
|
// String returns all the file names in the stringSet joined by newline
|
|
|
|
func (ss stringSet) String() string {
|
|
|
|
return strings.Join(ss.Strings(), "\n")
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stats limits and accounts all transfers
|
2013-06-27 21:13:07 +02:00
|
|
|
type StatsInfo struct {
|
2013-01-03 23:50:00 +01:00
|
|
|
lock sync.RWMutex
|
|
|
|
bytes int64
|
|
|
|
errors int64
|
|
|
|
checks int64
|
2015-09-15 16:46:06 +02:00
|
|
|
checking stringSet
|
2013-01-03 23:50:00 +01:00
|
|
|
transfers int64
|
2015-09-15 16:46:06 +02:00
|
|
|
transferring stringSet
|
2013-01-03 23:50:00 +01:00
|
|
|
start time.Time
|
2015-09-15 16:46:06 +02:00
|
|
|
inProgress *inProgress
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
|
|
|
|
2013-06-27 21:13:07 +02:00
|
|
|
// NewStats cretates an initialised StatsInfo
|
|
|
|
func NewStats() *StatsInfo {
|
|
|
|
return &StatsInfo{
|
2015-09-15 16:46:06 +02:00
|
|
|
checking: make(stringSet, Config.Checkers),
|
|
|
|
transferring: make(stringSet, Config.Transfers),
|
2013-01-03 23:50:00 +01:00
|
|
|
start: time.Now(),
|
2015-09-15 16:46:06 +02:00
|
|
|
inProgress: newInProgress(),
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-27 21:13:07 +02:00
|
|
|
// String convert the StatsInfo to a string for printing
|
|
|
|
func (s *StatsInfo) String() string {
|
2013-01-03 23:50:00 +01:00
|
|
|
s.lock.RLock()
|
|
|
|
defer s.lock.RUnlock()
|
2013-06-27 21:13:07 +02:00
|
|
|
dt := time.Now().Sub(s.start)
|
2013-01-03 23:50:00 +01:00
|
|
|
dt_seconds := dt.Seconds()
|
|
|
|
speed := 0.0
|
|
|
|
if dt > 0 {
|
2013-06-27 21:13:07 +02:00
|
|
|
speed = float64(s.bytes) / 1024 / dt_seconds
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
2015-09-15 16:46:06 +02:00
|
|
|
dt_rounded := dt - (dt % (time.Second / 10))
|
2013-01-03 23:50:00 +01:00
|
|
|
buf := &bytes.Buffer{}
|
|
|
|
fmt.Fprintf(buf, `
|
|
|
|
Transferred: %10d Bytes (%7.2f kByte/s)
|
|
|
|
Errors: %10d
|
|
|
|
Checks: %10d
|
|
|
|
Transferred: %10d
|
2015-09-15 16:46:06 +02:00
|
|
|
Elapsed time: %10v
|
2013-01-03 23:50:00 +01:00
|
|
|
`,
|
2013-06-27 21:13:07 +02:00
|
|
|
s.bytes, speed,
|
|
|
|
s.errors,
|
|
|
|
s.checks,
|
|
|
|
s.transfers,
|
2015-09-15 16:46:06 +02:00
|
|
|
dt_rounded)
|
2013-01-03 23:50:00 +01:00
|
|
|
if len(s.checking) > 0 {
|
2015-09-15 16:46:06 +02:00
|
|
|
fmt.Fprintf(buf, "Checking:\n%s\n", s.checking)
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
|
|
|
if len(s.transferring) > 0 {
|
2015-09-15 16:46:06 +02:00
|
|
|
fmt.Fprintf(buf, "Transferring:\n%s\n", s.transferring)
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
|
|
|
return buf.String()
|
|
|
|
}
|
|
|
|
|
2013-06-27 21:13:07 +02:00
|
|
|
// Log outputs the StatsInfo to the log
|
|
|
|
func (s *StatsInfo) Log() {
|
|
|
|
log.Printf("%v\n", s)
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Bytes updates the stats for bytes bytes
|
2013-06-27 21:13:07 +02:00
|
|
|
func (s *StatsInfo) Bytes(bytes int64) {
|
2013-01-03 23:50:00 +01:00
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
|
|
|
s.bytes += bytes
|
|
|
|
}
|
|
|
|
|
|
|
|
// Errors updates the stats for errors
|
2013-06-27 21:13:07 +02:00
|
|
|
func (s *StatsInfo) Errors(errors int64) {
|
2013-01-03 23:50:00 +01:00
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
|
|
|
s.errors += errors
|
|
|
|
}
|
|
|
|
|
2013-07-02 09:33:17 +02:00
|
|
|
// GetErrors reads the number of errors
|
|
|
|
func (s *StatsInfo) GetErrors() int64 {
|
|
|
|
s.lock.RLock()
|
|
|
|
defer s.lock.RUnlock()
|
|
|
|
return s.errors
|
|
|
|
}
|
|
|
|
|
2015-06-06 09:38:45 +02:00
|
|
|
// ResetCounters sets the counters (bytes, checks, errors, transfers) to 0
|
|
|
|
func (s *StatsInfo) ResetCounters() {
|
|
|
|
s.lock.RLock()
|
|
|
|
defer s.lock.RUnlock()
|
|
|
|
s.bytes = 0
|
|
|
|
s.errors = 0
|
|
|
|
s.checks = 0
|
|
|
|
s.transfers = 0
|
|
|
|
}
|
|
|
|
|
2015-08-20 22:07:00 +02:00
|
|
|
// ResetErrors sets the errors count to 0
|
|
|
|
func (s *StatsInfo) ResetErrors() {
|
|
|
|
s.lock.RLock()
|
|
|
|
defer s.lock.RUnlock()
|
|
|
|
s.errors = 0
|
|
|
|
}
|
|
|
|
|
2013-06-27 21:13:07 +02:00
|
|
|
// Errored returns whether there have been any errors
|
|
|
|
func (s *StatsInfo) Errored() bool {
|
2013-07-02 09:33:17 +02:00
|
|
|
s.lock.RLock()
|
|
|
|
defer s.lock.RUnlock()
|
2013-06-27 21:13:07 +02:00
|
|
|
return s.errors != 0
|
|
|
|
}
|
|
|
|
|
2013-01-03 23:50:00 +01:00
|
|
|
// Error adds a single error into the stats
|
2013-06-27 21:13:07 +02:00
|
|
|
func (s *StatsInfo) Error() {
|
2013-01-03 23:50:00 +01:00
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
|
|
|
s.errors += 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checking adds a check into the stats
|
2013-06-28 09:57:32 +02:00
|
|
|
func (s *StatsInfo) Checking(o Object) {
|
2013-01-03 23:50:00 +01:00
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
2015-09-15 16:46:06 +02:00
|
|
|
s.checking[o.Remote()] = struct{}{}
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// DoneChecking removes a check from the stats
|
2013-06-28 09:57:32 +02:00
|
|
|
func (s *StatsInfo) DoneChecking(o Object) {
|
2013-01-03 23:50:00 +01:00
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
2013-06-28 09:57:32 +02:00
|
|
|
delete(s.checking, o.Remote())
|
2013-01-03 23:50:00 +01:00
|
|
|
s.checks += 1
|
|
|
|
}
|
|
|
|
|
2015-06-03 16:08:27 +02:00
|
|
|
// GetTransfers reads the number of transfers
|
|
|
|
func (s *StatsInfo) GetTransfers() int64 {
|
|
|
|
s.lock.RLock()
|
|
|
|
defer s.lock.RUnlock()
|
|
|
|
return s.transfers
|
|
|
|
}
|
|
|
|
|
2013-01-03 23:50:00 +01:00
|
|
|
// Transferring adds a transfer into the stats
|
2013-06-28 09:57:32 +02:00
|
|
|
func (s *StatsInfo) Transferring(o Object) {
|
2013-01-03 23:50:00 +01:00
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
2015-09-15 16:46:06 +02:00
|
|
|
s.transferring[o.Remote()] = struct{}{}
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// DoneTransferring removes a transfer from the stats
|
2013-06-28 09:57:32 +02:00
|
|
|
func (s *StatsInfo) DoneTransferring(o Object) {
|
2013-01-03 23:50:00 +01:00
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
2013-06-28 09:57:32 +02:00
|
|
|
delete(s.transferring, o.Remote())
|
2013-01-03 23:50:00 +01:00
|
|
|
s.transfers += 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Account limits and accounts for one transfer
|
|
|
|
type Account struct {
|
2015-06-09 18:29:25 +02:00
|
|
|
// The mutex is to make sure Read() and Close() aren't called
|
|
|
|
// concurrently. Unfortunately the persistent connection loop
|
|
|
|
// in http transport calls Read() after Do() returns on
|
|
|
|
// CancelRequest so this race can happen when it apparently
|
|
|
|
// shouldn't.
|
2015-09-15 16:46:06 +02:00
|
|
|
mu sync.Mutex
|
|
|
|
in io.ReadCloser
|
|
|
|
size int64
|
|
|
|
name string
|
|
|
|
statmu sync.Mutex // Separate mutex for stat values.
|
|
|
|
bytes int64 // Total number of bytes read
|
|
|
|
start time.Time // Start time of first read
|
|
|
|
lpTime time.Time // Time of last average measurement
|
|
|
|
lpBytes int // Number of bytes read since last measurement
|
|
|
|
avg ewma.MovingAverage // Moving average of last few measurements
|
|
|
|
exit chan struct{} // channel that will be closed when transfer is finished
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
|
|
|
|
2015-09-15 16:46:06 +02:00
|
|
|
// NewAccount makes a Account reader for an object
|
|
|
|
func NewAccount(in io.ReadCloser, obj Object) *Account {
|
|
|
|
acc := &Account{
|
|
|
|
in: in,
|
|
|
|
size: obj.Size(),
|
|
|
|
name: obj.Remote(),
|
|
|
|
exit: make(chan struct{}),
|
|
|
|
avg: ewma.NewMovingAverage(),
|
|
|
|
lpTime: time.Now(),
|
|
|
|
}
|
|
|
|
go acc.averageLoop()
|
|
|
|
Stats.inProgress.set(acc.name, acc)
|
|
|
|
return acc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (file *Account) averageLoop() {
|
|
|
|
tick := time.NewTicker(time.Second)
|
|
|
|
defer tick.Stop()
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case now := <-tick.C:
|
|
|
|
file.statmu.Lock()
|
|
|
|
// Add average of last second.
|
|
|
|
elapsed := now.Sub(file.lpTime).Seconds()
|
|
|
|
avg := float64(file.lpBytes) / elapsed
|
|
|
|
file.avg.Add(avg)
|
|
|
|
file.lpBytes = 0
|
|
|
|
file.lpTime = now
|
|
|
|
// Unlock stats
|
|
|
|
file.statmu.Unlock()
|
|
|
|
case <-file.exit:
|
|
|
|
return
|
|
|
|
}
|
2013-01-03 23:50:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read bytes from the object - see io.Reader
|
|
|
|
func (file *Account) Read(p []byte) (n int, err error) {
|
2015-06-09 18:29:25 +02:00
|
|
|
file.mu.Lock()
|
|
|
|
defer file.mu.Unlock()
|
2015-09-15 16:46:06 +02:00
|
|
|
|
|
|
|
// Set start time.
|
|
|
|
file.statmu.Lock()
|
|
|
|
if file.start.IsZero() {
|
|
|
|
file.start = time.Now()
|
|
|
|
}
|
|
|
|
file.statmu.Unlock()
|
|
|
|
|
2013-01-03 23:50:00 +01:00
|
|
|
n, err = file.in.Read(p)
|
2015-09-15 16:46:06 +02:00
|
|
|
|
|
|
|
// Update Stats
|
|
|
|
file.statmu.Lock()
|
|
|
|
file.lpBytes += n
|
2013-01-03 23:50:00 +01:00
|
|
|
file.bytes += int64(n)
|
2015-09-15 16:46:06 +02:00
|
|
|
file.statmu.Unlock()
|
|
|
|
|
2013-06-27 21:13:07 +02:00
|
|
|
Stats.Bytes(int64(n))
|
2015-09-15 16:46:06 +02:00
|
|
|
|
2015-02-19 20:26:00 +01:00
|
|
|
// Limit the transfer speed if required
|
|
|
|
if tokenBucket != nil {
|
|
|
|
tokenBucket.Wait(int64(n))
|
|
|
|
}
|
2013-01-03 23:50:00 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-09-15 16:46:06 +02:00
|
|
|
// Returns bytes read as well as the size.
|
|
|
|
// Size can be <= 0 if the size is unknown.
|
|
|
|
func (file *Account) Progress() (bytes, size int64) {
|
|
|
|
if file == nil {
|
|
|
|
return 0, 0
|
|
|
|
}
|
|
|
|
file.statmu.Lock()
|
|
|
|
if bytes > size {
|
|
|
|
size = 0
|
|
|
|
}
|
|
|
|
defer file.statmu.Unlock()
|
|
|
|
return file.bytes, file.size
|
|
|
|
}
|
|
|
|
|
|
|
|
// Speed returns the speed of the current file transfer
|
|
|
|
// in bytes per second, as well a an exponentially weighted moving average
|
|
|
|
// If no read has completed yet, 0 is returned for both values.
|
|
|
|
func (file *Account) Speed() (bps, current float64) {
|
|
|
|
if file == nil {
|
|
|
|
return 0, 0
|
|
|
|
}
|
|
|
|
file.statmu.Lock()
|
|
|
|
defer file.statmu.Unlock()
|
|
|
|
if file.bytes == 0 {
|
|
|
|
return 0, 0
|
|
|
|
}
|
|
|
|
// Calculate speed from first read.
|
|
|
|
total := float64(time.Now().Sub(file.start)) / float64(time.Second)
|
|
|
|
bps = float64(file.bytes) / total
|
|
|
|
current = file.avg.Value()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// ETA returns the ETA of the current operation,
|
|
|
|
// rounded to full seconds.
|
|
|
|
// If the ETA cannot be determined 'ok' returns false.
|
|
|
|
func (file *Account) ETA() (eta time.Duration, ok bool) {
|
|
|
|
if file == nil || file.size <= 0 {
|
|
|
|
return 0, false
|
|
|
|
}
|
|
|
|
file.statmu.Lock()
|
|
|
|
defer file.statmu.Unlock()
|
|
|
|
if file.bytes == 0 {
|
|
|
|
return 0, false
|
|
|
|
}
|
|
|
|
left := file.size - file.bytes
|
|
|
|
if left <= 0 {
|
|
|
|
return 0, true
|
|
|
|
}
|
|
|
|
avg := file.avg.Value()
|
|
|
|
if avg <= 0 {
|
|
|
|
return 0, false
|
|
|
|
}
|
|
|
|
seconds := float64(left) / file.avg.Value()
|
|
|
|
|
|
|
|
return time.Duration(time.Second * time.Duration(int(seconds))), true
|
|
|
|
}
|
|
|
|
|
|
|
|
// String produces stats for this file
|
|
|
|
func (file *Account) String() string {
|
|
|
|
a, b := file.Progress()
|
|
|
|
avg, cur := file.Speed()
|
|
|
|
eta, etaok := file.ETA()
|
|
|
|
etas := "-"
|
|
|
|
if etaok {
|
|
|
|
if eta > 0 {
|
|
|
|
etas = fmt.Sprintf("%v", eta)
|
|
|
|
} else {
|
|
|
|
etas = "0s"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
name := []rune(file.name)
|
2015-09-17 15:53:45 +02:00
|
|
|
if len(name) > 45 {
|
|
|
|
where := len(name) - 42
|
2015-09-17 19:42:39 +02:00
|
|
|
name = append([]rune{'.', '.', '.'}, name[where:]...)
|
2015-09-15 16:46:06 +02:00
|
|
|
}
|
|
|
|
if b <= 0 {
|
2015-09-17 15:53:45 +02:00
|
|
|
return fmt.Sprintf("%45s: avg:%7.1f, cur: %6.1f kByte/s. ETA: %s", string(name), avg/1024, cur/1024, etas)
|
2015-09-15 16:46:06 +02:00
|
|
|
}
|
2015-09-17 15:53:45 +02:00
|
|
|
return fmt.Sprintf("%45s: %2d%% done. avg: %6.1f, cur: %6.1f kByte/s. ETA: %s", string(name), int(100*float64(a)/float64(b)), avg/1024, cur/1024, etas)
|
2015-09-15 16:46:06 +02:00
|
|
|
}
|
|
|
|
|
2013-01-03 23:50:00 +01:00
|
|
|
// Close the object
|
|
|
|
func (file *Account) Close() error {
|
2015-09-15 16:46:06 +02:00
|
|
|
close(file.exit)
|
2015-06-09 18:29:25 +02:00
|
|
|
file.mu.Lock()
|
|
|
|
defer file.mu.Unlock()
|
2015-09-15 16:46:06 +02:00
|
|
|
Stats.inProgress.clear(file.name)
|
2013-01-03 23:50:00 +01:00
|
|
|
return file.in.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check it satisfies the interface
|
|
|
|
var _ io.ReadCloser = &Account{}
|