2016-04-10 07:24:22 +00:00
|
|
|
package util
|
|
|
|
|
2020-01-19 20:06:19 +00:00
|
|
|
import (
|
|
|
|
"crypto/md5"
|
2020-04-09 05:30:38 +00:00
|
|
|
"fmt"
|
2020-01-19 20:06:19 +00:00
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
2020-05-29 02:00:07 +00:00
|
|
|
// 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])
|
|
|
|
}
|
|
|
|
|
2016-04-10 07:24:22 +00:00
|
|
|
// big endian
|
|
|
|
|
2019-08-23 14:59:09 +00:00
|
|
|
func BytesToUint64(b []byte) (v uint64) {
|
2016-04-10 07:24:22 +00:00
|
|
|
length := uint(len(b))
|
|
|
|
for i := uint(0); i < length-1; i++ {
|
|
|
|
v += uint64(b[i])
|
|
|
|
v <<= 8
|
|
|
|
}
|
|
|
|
v += uint64(b[length-1])
|
|
|
|
return
|
|
|
|
}
|
2019-08-23 14:59:09 +00:00
|
|
|
func BytesToUint32(b []byte) (v uint32) {
|
2016-04-10 07:24:22 +00:00
|
|
|
length := uint(len(b))
|
|
|
|
for i := uint(0); i < length-1; i++ {
|
|
|
|
v += uint32(b[i])
|
|
|
|
v <<= 8
|
|
|
|
}
|
|
|
|
v += uint32(b[length-1])
|
|
|
|
return
|
|
|
|
}
|
2019-08-23 14:59:09 +00:00
|
|
|
func BytesToUint16(b []byte) (v uint16) {
|
2016-04-10 07:24:22 +00:00
|
|
|
v += uint16(b[0])
|
|
|
|
v <<= 8
|
|
|
|
v += uint16(b[1])
|
|
|
|
return
|
|
|
|
}
|
2019-08-23 14:59:09 +00:00
|
|
|
func Uint64toBytes(b []byte, v uint64) {
|
2016-04-10 07:24:22 +00:00
|
|
|
for i := uint(0); i < 8; i++ {
|
|
|
|
b[7-i] = byte(v >> (i * 8))
|
|
|
|
}
|
|
|
|
}
|
2019-08-23 14:59:09 +00:00
|
|
|
func Uint32toBytes(b []byte, v uint32) {
|
2016-04-10 07:24:22 +00:00
|
|
|
for i := uint(0); i < 4; i++ {
|
|
|
|
b[3-i] = byte(v >> (i * 8))
|
|
|
|
}
|
|
|
|
}
|
2019-08-23 14:59:09 +00:00
|
|
|
func Uint16toBytes(b []byte, v uint16) {
|
2016-04-10 07:24:22 +00:00
|
|
|
b[0] = byte(v >> 8)
|
|
|
|
b[1] = byte(v)
|
|
|
|
}
|
|
|
|
func Uint8toBytes(b []byte, v uint8) {
|
|
|
|
b[0] = byte(v)
|
|
|
|
}
|
2020-01-19 20:06:19 +00:00
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
2020-03-30 08:19:33 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2020-04-09 05:30:38 +00:00
|
|
|
|
|
|
|
func Md5(data []byte) string {
|
|
|
|
hash := md5.New()
|
|
|
|
hash.Write(data)
|
|
|
|
return fmt.Sprintf("%x", hash.Sum(nil))
|
|
|
|
}
|