* chore: remove unreachable dead code across the codebase Remove ~50,000 lines of unreachable code identified by static analysis. Major removals: - weed/filer/redis_lua: entire unused Redis Lua filer store implementation - weed/wdclient/net2, resource_pool: unused connection/resource pool packages - weed/plugin/worker/lifecycle: unused lifecycle plugin worker - weed/s3api: unused S3 policy templates, presigned URL IAM, streaming copy, multipart IAM, key rotation, and various SSE helper functions - weed/mq/kafka: unused partition mapping, compression, schema, and protocol functions - weed/mq/offset: unused SQL storage and migration code - weed/worker: unused registry, task, and monitoring functions - weed/query: unused SQL engine, parquet scanner, and type functions - weed/shell: unused EC proportional rebalance functions - weed/storage/erasure_coding/distribution: unused distribution analysis functions - Individual unreachable functions removed from 150+ files across admin, credential, filer, iam, kms, mount, mq, operation, pb, s3api, server, shell, storage, topology, and util packages * fix(s3): reset shared memory store in IAM test to prevent flaky failure TestLoadIAMManagerFromConfig_EmptyConfigWithFallbackKey was flaky because the MemoryStore credential backend is a singleton registered via init(). Earlier tests that create anonymous identities pollute the shared store, causing LookupAnonymous() to unexpectedly return true. Fix by calling Reset() on the memory store before the test runs. * style: run gofmt on changed files * fix: restore KMS functions used by integration tests * fix(plugin): prevent panic on send to closed worker session channel The Plugin.sendToWorker method could panic with "send on closed channel" when a worker disconnected while a message was being sent. The race was between streamSession.close() closing the outgoing channel and sendToWorker writing to it concurrently. Add a done channel to streamSession that is closed before the outgoing channel, and check it in sendToWorker's select to safely detect closed sessions without panicking.
263 lines
4.6 KiB
Go
263 lines
4.6 KiB
Go
package util
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/md5"
|
|
"crypto/rand"
|
|
"encoding/base64"
|
|
"fmt"
|
|
"io"
|
|
"math"
|
|
"strconv"
|
|
"strings"
|
|
"unicode"
|
|
)
|
|
|
|
// BytesToHumanReadable returns the converted human readable representation of the bytes.
|
|
func BytesToHumanReadable(b uint64) string {
|
|
const unit = 1024
|
|
if b < unit {
|
|
return fmt.Sprintf("%d B", b)
|
|
}
|
|
|
|
div, exp := uint64(unit), 0
|
|
for n := b / unit; n >= unit; n /= unit {
|
|
div *= unit
|
|
exp++
|
|
}
|
|
|
|
return fmt.Sprintf("%.2f %ciB", float64(b)/float64(div), "KMGTPE"[exp])
|
|
}
|
|
|
|
// big endian
|
|
|
|
func BytesToUint64(b []byte) (v uint64) {
|
|
length := uint(len(b))
|
|
for i := uint(0); i < length-1; i++ {
|
|
v += uint64(b[i])
|
|
v <<= 8
|
|
}
|
|
v += uint64(b[length-1])
|
|
return
|
|
}
|
|
func BytesToUint32(b []byte) (v uint32) {
|
|
length := uint(len(b))
|
|
for i := uint(0); i < length-1; i++ {
|
|
v += uint32(b[i])
|
|
v <<= 8
|
|
}
|
|
v += uint32(b[length-1])
|
|
return
|
|
}
|
|
func BytesToUint16(b []byte) (v uint16) {
|
|
v += uint16(b[0])
|
|
v <<= 8
|
|
v += uint16(b[1])
|
|
return
|
|
}
|
|
func Uint64toBytes(b []byte, v uint64) {
|
|
for i := uint(0); i < 8; i++ {
|
|
b[7-i] = byte(v >> (i * 8))
|
|
}
|
|
}
|
|
func Uint32toBytes(b []byte, v uint32) {
|
|
for i := uint(0); i < 4; i++ {
|
|
b[3-i] = byte(v >> (i * 8))
|
|
}
|
|
}
|
|
func Uint16toBytes(b []byte, v uint16) {
|
|
b[0] = byte(v >> 8)
|
|
b[1] = byte(v)
|
|
}
|
|
func Uint8toBytes(b []byte, v uint8) {
|
|
b[0] = byte(v)
|
|
}
|
|
|
|
// returns a 64 bit big int
|
|
func HashStringToLong(dir string) (v int64) {
|
|
h := md5.New()
|
|
io.WriteString(h, dir)
|
|
|
|
b := h.Sum(nil)
|
|
|
|
v += int64(b[0])
|
|
v <<= 8
|
|
v += int64(b[1])
|
|
v <<= 8
|
|
v += int64(b[2])
|
|
v <<= 8
|
|
v += int64(b[3])
|
|
v <<= 8
|
|
v += int64(b[4])
|
|
v <<= 8
|
|
v += int64(b[5])
|
|
v <<= 8
|
|
v += int64(b[6])
|
|
v <<= 8
|
|
v += int64(b[7])
|
|
|
|
return
|
|
}
|
|
|
|
func HashToInt32(data []byte) (v int32) {
|
|
h := md5.New()
|
|
h.Write(data)
|
|
|
|
b := h.Sum(nil)
|
|
|
|
v += int32(b[0])
|
|
v <<= 8
|
|
v += int32(b[1])
|
|
v <<= 8
|
|
v += int32(b[2])
|
|
v <<= 8
|
|
v += int32(b[3])
|
|
|
|
return
|
|
}
|
|
|
|
func Base64Encode(data []byte) string {
|
|
return base64.StdEncoding.EncodeToString(data)
|
|
}
|
|
|
|
func Md5(data []byte) []byte {
|
|
hash := md5.New()
|
|
hash.Write(data)
|
|
return hash.Sum(nil)
|
|
}
|
|
|
|
func Md5String(data []byte) string {
|
|
return fmt.Sprintf("%x", Md5(data))
|
|
}
|
|
|
|
func Base64Md5ToBytes(contentMd5 string) []byte {
|
|
data, err := base64.StdEncoding.DecodeString(contentMd5)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
return data
|
|
}
|
|
|
|
func RandomInt32() int32 {
|
|
buf := make([]byte, 4)
|
|
rand.Read(buf)
|
|
return int32(BytesToUint32(buf))
|
|
}
|
|
|
|
func RandomUint64() int32 {
|
|
buf := make([]byte, 8)
|
|
rand.Read(buf)
|
|
return int32(BytesToUint64(buf))
|
|
}
|
|
|
|
func RandomBytes(byteCount int) []byte {
|
|
buf := make([]byte, byteCount)
|
|
rand.Read(buf)
|
|
return buf
|
|
}
|
|
|
|
type BytesReader struct {
|
|
Bytes []byte
|
|
*bytes.Reader
|
|
}
|
|
|
|
func NewBytesReader(b []byte) *BytesReader {
|
|
return &BytesReader{
|
|
Bytes: b,
|
|
Reader: bytes.NewReader(b),
|
|
}
|
|
}
|
|
|
|
// EmptyTo returns to if s is empty.
|
|
func EmptyTo(s, to string) string {
|
|
if s == "" {
|
|
return to
|
|
}
|
|
|
|
return s
|
|
}
|
|
|
|
// IfElse works like b ? this : that.
|
|
func IfElse(b bool, this, that string) string {
|
|
if b {
|
|
return this
|
|
}
|
|
return that
|
|
}
|
|
|
|
// ParseBytes parses a string representation of bytes into the number
|
|
// of bytes it represents.
|
|
//
|
|
// See Also: Bytes, IBytes.
|
|
//
|
|
// ParseBytes("42MB") -> 42000000, nil
|
|
// ParseBytes("42 MB") -> 42000000, nil
|
|
// ParseBytes("42 mib") -> 44040192, nil
|
|
func ParseBytes(s string) (uint64, error) {
|
|
lastDigit := 0
|
|
hasComma := false
|
|
for _, r := range s {
|
|
if !(unicode.IsDigit(r) || r == '.' || r == ',') {
|
|
break
|
|
}
|
|
if r == ',' {
|
|
hasComma = true
|
|
}
|
|
lastDigit++
|
|
}
|
|
|
|
num := s[:lastDigit]
|
|
if hasComma {
|
|
num = strings.Replace(num, ",", "", -1)
|
|
}
|
|
|
|
f, err := strconv.ParseFloat(num, 64)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
extra := strings.ToLower(strings.TrimSpace(s[lastDigit:]))
|
|
if m, ok := bytesSizeTable[extra]; ok {
|
|
f *= float64(m)
|
|
if f >= math.MaxUint64 {
|
|
return 0, fmt.Errorf("too large: %v", s)
|
|
}
|
|
return uint64(f), nil
|
|
}
|
|
|
|
return 0, fmt.Errorf("unhandled size name: %v", extra)
|
|
}
|
|
|
|
var bytesSizeTable = map[string]uint64{
|
|
"b": Byte, "kib": KiByte, "kb": KByte, "mib": MiByte, "mb": MByte, "gib": GiByte, "gb": GByte,
|
|
"tib": TiByte, "tb": TByte, "pib": PiByte, "pb": PByte, "eib": EiByte, "eb": EByte,
|
|
// Without suffix
|
|
"": Byte, "ki": KiByte, "k": KByte, "mi": MiByte, "m": MByte, "gi": GiByte, "g": GByte,
|
|
"ti": TiByte, "t": TByte, "pi": PiByte, "p": PByte, "ei": EiByte, "e": EByte,
|
|
}
|
|
|
|
// IEC Sizes.
|
|
// kibis of bits
|
|
const (
|
|
Byte = 1 << (iota * 10)
|
|
KiByte
|
|
MiByte
|
|
GiByte
|
|
TiByte
|
|
PiByte
|
|
EiByte
|
|
)
|
|
|
|
// SI Sizes.
|
|
const (
|
|
IByte = 1
|
|
KByte = IByte * 1000
|
|
MByte = KByte * 1000
|
|
GByte = MByte * 1000
|
|
TByte = GByte * 1000
|
|
PByte = TByte * 1000
|
|
EByte = PByte * 1000
|
|
)
|
|
|
|
const ErrVolumeNoSpaceLeft = "no space left for disk type"
|