cache.go 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. package cache
  2. import (
  3. "encoding/json"
  4. "git.sxidc.com/go-tools/utils/reflectutils"
  5. "git.sxidc.com/go-tools/utils/strutils"
  6. "github.com/pkg/errors"
  7. "reflect"
  8. "strconv"
  9. "strings"
  10. "time"
  11. )
  12. // Cache 缓存基础设施接口
  13. type Cache interface {
  14. // Set 设置缓存值
  15. Set(key string, value string, expireSec int64) error
  16. // Get 获取缓存值
  17. Get(key string) (string, error)
  18. // GetMulti 获取多个缓存值
  19. GetMulti(keys []string) (map[string]string, error)
  20. // GetAll 获取所有缓存值
  21. GetAll() (map[string]string, error)
  22. // Delete 删除缓存值
  23. Delete(key string) error
  24. // Clear 清除缓存
  25. Clear() error
  26. }
  27. // Set 设置缓存值
  28. // 参数:
  29. // - cache: 缓存基础设施接口
  30. // - key: 缓存的键
  31. // - value: 要设置的缓存值
  32. // - expireSec: 缓存过期时间,单位秒
  33. // 返回值:
  34. // - 错误
  35. func Set(cache Cache, key string, value any, expireSec int64) error {
  36. valueReflectValue := reflect.ValueOf(value)
  37. if !valueReflectValue.IsValid() {
  38. return errors.New("缓存值无效")
  39. }
  40. stringValue, err := toString(valueReflectValue)
  41. if err != nil {
  42. return err
  43. }
  44. return cache.Set(key, stringValue, expireSec)
  45. }
  46. // Get 获取缓存值
  47. // 泛型参数:
  48. // - T: 缓存值类型
  49. // 参数:
  50. // - cache: 缓存基础设施接口
  51. // - key: 缓存的键
  52. // 返回值:
  53. // - 缓存值
  54. // - 错误
  55. func Get[T any](cache Cache, key string) (T, error) {
  56. var zero T
  57. stringValue, err := cache.Get(key)
  58. if err != nil {
  59. return zero, err
  60. }
  61. retValue := reflectutils.Zero[T]()
  62. retValueReflectType := reflect.TypeOf(retValue)
  63. if retValueReflectType.Kind() == reflect.Pointer {
  64. err := fromString(stringValue, retValue)
  65. if err != nil {
  66. return zero, err
  67. }
  68. } else {
  69. err := fromString(stringValue, &retValue)
  70. if err != nil {
  71. return zero, err
  72. }
  73. }
  74. return retValue, nil
  75. }
  76. // GetMulti 批量获取缓存值
  77. // 参数:
  78. // - cache: 缓存基础设施接口
  79. // - keys: 缓存的键(多个)
  80. // 返回值:
  81. // - 缓存值,value以string类型先返回
  82. // - 错误
  83. func GetMulti(cache Cache, keys []string) (map[string]string, error) {
  84. return cache.GetMulti(keys)
  85. }
  86. // GetAll 获取所有缓存值
  87. // 参数:
  88. // - cache: 缓存基础设施接口
  89. // 返回值:
  90. // - 缓存值,value以string类型先返回
  91. // - 错误
  92. func GetAll(cache Cache) (map[string]string, error) {
  93. return cache.GetAll()
  94. }
  95. // Delete 删除缓存值
  96. // 参数:
  97. // - cache: 缓存基础设施接口
  98. // - key: 缓存的键
  99. // 返回值:
  100. // - 错误
  101. func Delete(cache Cache, key string) error {
  102. return cache.Delete(key)
  103. }
  104. // Clear 清除缓存
  105. // 参数:
  106. // - cache: 缓存基础设施接口
  107. // 返回值:
  108. // - 错误
  109. func Clear(cache Cache) error {
  110. return cache.Clear()
  111. }
  112. func toString(valueReflectValue reflect.Value) (string, error) {
  113. dataVal := reflect.Indirect(valueReflectValue)
  114. dataKind := reflectutils.GroupValueKind(dataVal)
  115. switch dataKind {
  116. case reflect.String:
  117. return dataVal.String(), nil
  118. case reflect.Bool:
  119. if dataVal.Bool() {
  120. return "true", nil
  121. } else {
  122. return "false", nil
  123. }
  124. case reflect.Int64:
  125. return strconv.FormatInt(dataVal.Int(), 10), nil
  126. case reflect.Uint64:
  127. return strconv.FormatUint(dataVal.Uint(), 10), nil
  128. case reflect.Float64:
  129. return strconv.FormatFloat(dataVal.Float(), 'f', -1, 64), nil
  130. case reflect.Slice, reflect.Array:
  131. dataElementType := reflectutils.PointerTypeElem(dataVal.Type().Elem())
  132. // []byte,直接转换为string
  133. if dataElementType.Kind() == reflect.Uint8 {
  134. if dataVal.Len() == 0 {
  135. return "", nil
  136. }
  137. uints := make([]uint8, dataVal.Len(), dataVal.Len())
  138. for i := 0; i < dataVal.Len(); i++ {
  139. uints[i] = dataVal.Index(i).Interface().(uint8)
  140. }
  141. return string(uints), nil
  142. } else {
  143. if dataVal.Len() == 0 {
  144. return "[]", nil
  145. }
  146. stringBuilder := strings.Builder{}
  147. stringBuilder.WriteString("[")
  148. for i := 0; i < dataVal.Len(); i++ {
  149. strValue, err := toString(dataVal.Index(i))
  150. if err != nil {
  151. return "", err
  152. }
  153. if i > 0 {
  154. stringBuilder.WriteString(",")
  155. }
  156. stringBuilder.WriteString(strValue)
  157. }
  158. stringBuilder.WriteString("]")
  159. return stringBuilder.String(), nil
  160. }
  161. case reflect.Map, reflect.Struct:
  162. if dataVal.Type().Name() == "time.Time" {
  163. return dataVal.Interface().(time.Time).Format(time.RFC3339Nano), nil
  164. } else {
  165. jsonBytes, err := json.Marshal(dataVal.Interface())
  166. if err != nil {
  167. return "", errors.New(err.Error())
  168. }
  169. return string(jsonBytes), nil
  170. }
  171. default:
  172. return "", errors.New("不支持的缓存值类型: " + dataVal.Type().Elem().String())
  173. }
  174. }
  175. func fromString(stringValue string, retValue any) error {
  176. retValueReflectValue := reflect.ValueOf(retValue)
  177. if retValueReflectValue.Kind() != reflect.Pointer {
  178. return errors.New("返回值不是指针类型")
  179. }
  180. dataVal := reflect.Indirect(retValueReflectValue)
  181. dataKind := reflectutils.GroupValueKind(dataVal)
  182. switch dataKind {
  183. case reflect.String:
  184. dataVal.SetString(stringValue)
  185. return nil
  186. case reflect.Bool:
  187. if strutils.IsStringEmpty(stringValue) {
  188. dataVal.SetBool(false)
  189. } else {
  190. if stringValue == "false" {
  191. dataVal.SetBool(false)
  192. } else {
  193. dataVal.SetBool(true)
  194. }
  195. }
  196. return nil
  197. case reflect.Int64:
  198. intValue, err := strconv.ParseInt(stringValue, 10, 64)
  199. if err != nil {
  200. return errors.New(err.Error())
  201. }
  202. dataVal.SetInt(intValue)
  203. return nil
  204. case reflect.Uint64:
  205. uintValue, err := strconv.ParseUint(stringValue, 10, 64)
  206. if err != nil {
  207. return err
  208. }
  209. dataVal.SetUint(uintValue)
  210. return nil
  211. case reflect.Float64:
  212. floatValue, err := strconv.ParseFloat(stringValue, 64)
  213. if err != nil {
  214. return err
  215. }
  216. dataVal.SetFloat(floatValue)
  217. return nil
  218. case reflect.Slice, reflect.Array:
  219. dataElementType := reflectutils.PointerTypeElem(dataVal.Type().Elem())
  220. // []byte直接用string赋值
  221. if dataElementType.Kind() == reflect.Uint8 {
  222. dataSliceVal := reflect.MakeSlice(dataVal.Type(), 0, 0)
  223. for _, b := range []byte(stringValue) {
  224. if dataVal.Type().Elem().Kind() == reflect.Pointer {
  225. dataSliceVal = reflect.Append(dataSliceVal, reflect.ValueOf(&b))
  226. } else {
  227. dataSliceVal = reflect.Append(dataSliceVal, reflect.ValueOf(b))
  228. }
  229. }
  230. dataVal.Set(dataSliceVal)
  231. return nil
  232. } else {
  233. if !strings.HasPrefix(stringValue, "[") || !strings.HasSuffix(stringValue, "]") {
  234. return errors.New("缓存值不是切片或数组形式")
  235. }
  236. dataSliceVal := reflect.MakeSlice(dataVal.Type(), 0, 0)
  237. stringValue = strings.TrimSuffix(strings.TrimPrefix(stringValue, "["), "]")
  238. stringValueParts := strings.Split(stringValue, ",")
  239. for _, strValuePart := range stringValueParts {
  240. dataSliceElementType := dataVal.Type().Elem()
  241. dataSliceElementVal := reflect.Indirect(reflect.New(dataSliceElementType))
  242. if dataSliceElementVal.Kind() == reflect.Pointer {
  243. dataSliceElementVal.Set(reflect.New(dataSliceElementVal.Type().Elem()))
  244. err := fromString(strValuePart, dataSliceElementVal.Interface())
  245. if err != nil {
  246. return err
  247. }
  248. } else {
  249. err := fromString(strValuePart, dataSliceElementVal.Addr().Interface())
  250. if err != nil {
  251. return err
  252. }
  253. }
  254. dataSliceVal = reflect.Append(dataSliceVal, dataSliceElementVal)
  255. }
  256. dataVal.Set(dataSliceVal)
  257. return nil
  258. }
  259. case reflect.Map, reflect.Struct:
  260. if dataVal.Type().Name() == "time.Time" {
  261. parsedTime, err := time.ParseInLocation(time.RFC3339Nano, stringValue, time.Local)
  262. if err != nil {
  263. return err
  264. }
  265. dataVal.Set(reflect.ValueOf(parsedTime))
  266. return nil
  267. } else {
  268. err := json.Unmarshal([]byte(stringValue), dataVal.Addr().Interface())
  269. if err != nil {
  270. return errors.New(err.Error())
  271. }
  272. return nil
  273. }
  274. default:
  275. return errors.New("不支持的缓存值类型: " + dataVal.Type().Elem().String())
  276. }
  277. }