cache.go 8.3 KB

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