mirror of
https://github.com/minio/mc.git
synced 2025-11-10 13:42:32 +03:00
152 lines
3.6 KiB
Go
152 lines
3.6 KiB
Go
/*
|
|
* MinIO Client (C) 2014, 2015 MinIO, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"sync"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"github.com/cheggaaa/pb"
|
|
"github.com/minio/mc/pkg/probe"
|
|
)
|
|
|
|
// accounter keeps tabs of ongoing data transfer information.
|
|
type accounter struct {
|
|
current int64
|
|
|
|
Total int64
|
|
startTime time.Time
|
|
startValue int64
|
|
refreshRate time.Duration
|
|
currentValue int64
|
|
finishOnce sync.Once
|
|
isFinished chan struct{}
|
|
}
|
|
|
|
// Instantiate a new accounter.
|
|
func newAccounter(total int64) *accounter {
|
|
acct := &accounter{
|
|
Total: total,
|
|
startTime: time.Now(),
|
|
startValue: 0,
|
|
refreshRate: time.Millisecond * 200,
|
|
isFinished: make(chan struct{}),
|
|
currentValue: -1,
|
|
}
|
|
go acct.writer()
|
|
return acct
|
|
}
|
|
|
|
// write calculate the final speed.
|
|
func (a *accounter) write(current int64) float64 {
|
|
fromStart := time.Since(a.startTime)
|
|
currentFromStart := current - a.startValue
|
|
if currentFromStart > 0 {
|
|
speed := float64(currentFromStart) / (float64(fromStart) / float64(time.Second))
|
|
return speed
|
|
}
|
|
return 0.0
|
|
}
|
|
|
|
// writer update new accounting data for a specified refreshRate.
|
|
func (a *accounter) writer() {
|
|
a.Update()
|
|
for {
|
|
select {
|
|
case <-a.isFinished:
|
|
return
|
|
case <-time.After(a.refreshRate):
|
|
a.Update()
|
|
}
|
|
}
|
|
}
|
|
|
|
// accountStat cantainer for current stats captured.
|
|
type accountStat struct {
|
|
Status string `json:"status"`
|
|
Total int64 `json:"total"`
|
|
Transferred int64 `json:"transferred"`
|
|
Speed float64 `json:"speed"`
|
|
}
|
|
|
|
func (c accountStat) JSON() string {
|
|
c.Status = "success"
|
|
accountMessageBytes, e := json.MarshalIndent(c, "", " ")
|
|
fatalIf(probe.NewError(e), "Unable to marshal into JSON.")
|
|
|
|
return string(accountMessageBytes)
|
|
}
|
|
|
|
func (c accountStat) String() string {
|
|
speedBox := pb.Format(int64(c.Speed)).To(pb.U_BYTES).String()
|
|
if speedBox == "" {
|
|
speedBox = "0 MB"
|
|
} else {
|
|
speedBox = speedBox + "/s"
|
|
}
|
|
message := fmt.Sprintf("Total: %s, Transferred: %s, Speed: %s", pb.Format(c.Total).To(pb.U_BYTES),
|
|
pb.Format(c.Transferred).To(pb.U_BYTES), speedBox)
|
|
return message
|
|
}
|
|
|
|
// Stat provides current stats captured.
|
|
func (a *accounter) Stat() accountStat {
|
|
var acntStat accountStat
|
|
a.finishOnce.Do(func() {
|
|
close(a.isFinished)
|
|
acntStat.Total = a.Total
|
|
acntStat.Transferred = atomic.LoadInt64(&a.current)
|
|
acntStat.Speed = a.write(atomic.LoadInt64(&a.current))
|
|
})
|
|
return acntStat
|
|
}
|
|
|
|
// Update update with new values loaded atomically.
|
|
func (a *accounter) Update() {
|
|
c := atomic.LoadInt64(&a.current)
|
|
if c != a.currentValue {
|
|
a.write(c)
|
|
a.currentValue = c
|
|
}
|
|
}
|
|
|
|
// Set sets the current value atomically.
|
|
func (a *accounter) Set(n int64) *accounter {
|
|
atomic.StoreInt64(&a.current, n)
|
|
return a
|
|
}
|
|
|
|
// Get gets current value atomically
|
|
func (a *accounter) Get() int64 {
|
|
return atomic.LoadInt64(&a.current)
|
|
}
|
|
|
|
// Add add to current value atomically.
|
|
func (a *accounter) Add(n int64) int64 {
|
|
return atomic.AddInt64(&a.current, n)
|
|
}
|
|
|
|
// Read implements Reader which internally updates current value.
|
|
func (a *accounter) Read(p []byte) (n int, err error) {
|
|
n = len(p)
|
|
a.Add(int64(n))
|
|
return
|
|
}
|