| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- package util
- import (
- "crypto/rand"
- "encoding/hex"
- "io/ioutil"
- "os"
- "path/filepath"
- "reflect"
- "runtime"
- "strconv"
- "strings"
- )
- // 提供一些常用方法
- // 计算结构体大小
- func SizeOfStruct(data interface{}) int {
- return sizeof(reflect.ValueOf(data))
- }
- func sizeof(v reflect.Value) int {
- var sum int
- switch v.Kind() {
- case reflect.Map:
- sum = 0
- keys := v.MapKeys()
- for i := 0; i < len(keys); i++ {
- mapkey := keys[i]
- s := sizeof(mapkey)
- if s < 0 {
- return -1
- }
- sum += s
- s = sizeof(v.MapIndex(mapkey))
- if s < 0 {
- return -1
- }
- sum += s
- }
- case reflect.Slice, reflect.Array:
- sum = 0
- for i, n := 0, v.Len(); i < n; i++ {
- s := sizeof(v.Index(i))
- if s < 0 {
- return -1
- }
- sum += s
- }
- case reflect.String:
- sum = 0
- for i, n := 0, v.Len(); i < n; i++ {
- s := sizeof(v.Index(i))
- if s < 0 {
- return -1
- }
- sum += s
- }
- case reflect.Struct:
- sum = 0
- for i, n := 0, v.NumField(); i < n; i++ {
- s := sizeof(v.Field(i))
- if s < 0 {
- return -1
- }
- sum += s
- }
- case reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64,
- reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
- reflect.Float32, reflect.Float64, reflect.Complex64, reflect.Complex128,
- reflect.Int:
- sum = int(v.Type().Size())
- default:
- return 0
- }
- return sum
- }
- // 读文件
- func ReadFile(filename string) ([]byte, error) {
- fp, err := os.Open(filename)
- if err != nil {
- return nil, err
- }
- defer fp.Close()
- buf, err := ioutil.ReadAll(fp)
- if err != nil {
- return nil, err
- }
- return buf, nil
- }
- // 处理PDU uuid 转成字节数组
- func PDUUuidFromBytes(uuid string) []byte {
- s := strings.ReplaceAll(uuid, "-", "")
- b, _ := hex.DecodeString(s)
- r := []byte{b[3], b[2], b[1], b[0], b[5], b[4], b[7], b[6], b[8], b[9], b[10], b[11], b[12], b[13], b[14], b[15]}
- return r
- }
- func Random(n int) []byte {
- const alpha = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
- var bytes = make([]byte, n)
- rand.Read(bytes)
- for i, b := range bytes {
- bytes[i] = alpha[b%byte(len(alpha))]
- }
- return bytes
- }
- func BytesFromHex(hexstr string) []byte {
- data := make([]byte, len(hexstr)/2)
- for i := 0; i < len(hexstr)/2; i++ {
- var s = hexstr[i*2 : i*2+2]
- num, _ := strconv.ParseInt(s, 16, 0)
- data[i] = byte(num)
- }
- // log.Printf("%v", data)
- return data
- }
- func FileExist(filePath string) bool {
- _, err := os.Stat(filePath)
- if err == nil {
- // path/to/whatever exists
- return true
- } else if os.IsNotExist(err) {
- // path/to/whatever does *not* exist
- // logx.Infof("not exist, path: %v, err: %v", filePath, err)
- return false
- } else {
- // logx.Infof("path: %v, err: %v", filePath, err)
- // Schrodinger: file may or may not exist. See err for details.
- // Therefore, do *NOT* use !os.IsNotExist(err) to test for file existence
- }
- return false
- }
- func PWDR() string {
- _, KSrcPath, _, _ := runtime.Caller(1)
- return filepath.Dir(KSrcPath)
- }
|