56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
// Copyright 2013 Prometheus Team
|
|
// 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 utility
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// The canonical example: http://golang.org/doc/progs/eff_bytesize.go.
|
|
type ByteSize float64
|
|
|
|
const (
|
|
_ = iota // ignore first value by assigning to blank identifier
|
|
KB ByteSize = 1 << (10 * iota)
|
|
MB
|
|
GB
|
|
TB
|
|
PB
|
|
EB
|
|
ZB
|
|
YB
|
|
)
|
|
|
|
func (b ByteSize) String() string {
|
|
switch {
|
|
case b >= YB:
|
|
return fmt.Sprintf("%.2fYB", b/YB)
|
|
case b >= ZB:
|
|
return fmt.Sprintf("%.2fZB", b/ZB)
|
|
case b >= EB:
|
|
return fmt.Sprintf("%.2fEB", b/EB)
|
|
case b >= PB:
|
|
return fmt.Sprintf("%.2fPB", b/PB)
|
|
case b >= TB:
|
|
return fmt.Sprintf("%.2fTB", b/TB)
|
|
case b >= GB:
|
|
return fmt.Sprintf("%.2fGB", b/GB)
|
|
case b >= MB:
|
|
return fmt.Sprintf("%.2fMB", b/MB)
|
|
case b >= KB:
|
|
return fmt.Sprintf("%.2fKB", b/KB)
|
|
}
|
|
return fmt.Sprintf("%.2fB", b)
|
|
}
|