value.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. package value
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "reflect"
  6. "strconv"
  7. "strings"
  8. )
  9. func ValueOf(val interface{}) Value {
  10. return Value{
  11. val: val,
  12. }
  13. }
  14. type Value struct {
  15. val interface{}
  16. }
  17. func (s *Value) IsValid() bool {
  18. return s.val != nil
  19. }
  20. func (s *Value) Setup(val interface{}) (res bool) {
  21. rr := reflect.ValueOf(val)
  22. if rr.Kind() != reflect.Ptr {
  23. panic(fmt.Errorf("Expected ptr, given %v", rr.Type()))
  24. }
  25. rKind, rType := rr.Elem().Kind(), rr.Elem().Type()
  26. if rKind == reflect.Interface {
  27. rKind, rType = rr.Elem().Elem().Kind(), rr.Elem().Elem().Type()
  28. }
  29. if rKind == reflect.String {
  30. rls := strings.TrimSpace(fmt.Sprint(s.val))
  31. if len(rls) > 0 {
  32. rr.Elem().Set(reflect.ValueOf(rls))
  33. res = true
  34. }
  35. } else {
  36. rl := reflect.ValueOf(s.val)
  37. if rl.Kind() == reflect.String {
  38. switch rKind {
  39. case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
  40. {
  41. if tmp, err := strconv.ParseInt(rl.String(), 10, 64); err == nil {
  42. rr.Elem().Set(reflect.ValueOf(tmp).Convert(rType))
  43. res = true
  44. }
  45. }
  46. case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
  47. {
  48. if tmp, err := strconv.ParseUint(rl.String(), 10, 64); err == nil {
  49. rr.Elem().Set(reflect.ValueOf(tmp).Convert(rType))
  50. res = true
  51. }
  52. }
  53. case reflect.Float32, reflect.Float64:
  54. {
  55. if tmp, err := strconv.ParseFloat(rl.String(), 64); err == nil {
  56. rr.Elem().Set(reflect.ValueOf(tmp).Convert(rType))
  57. res = true
  58. }
  59. }
  60. default:
  61. // json
  62. i := reflect.New(rr.Elem().Type()).Interface()
  63. if err := json.Unmarshal([]byte(rl.String()), i); err == nil {
  64. rr.Elem().Set(reflect.ValueOf(i).Elem())
  65. }
  66. }
  67. } else {
  68. var rVal reflect.Value
  69. defer func() {
  70. if r := recover(); r == nil {
  71. rr.Elem().Set(rVal)
  72. res = true
  73. }
  74. }()
  75. rVal = rl.Convert(rType)
  76. }
  77. }
  78. return
  79. }
  80. func (s *Value) String() string {
  81. return fmt.Sprint(s.val)
  82. }
  83. func (s *Value) Int() int {
  84. var i int
  85. s.Setup(&i)
  86. return i
  87. }
  88. func (s *Value) Int8() int8 {
  89. var i int8
  90. s.Setup(&i)
  91. return i
  92. }
  93. func (s *Value) Int16() int16 {
  94. var i int16
  95. s.Setup(&i)
  96. return i
  97. }
  98. func (s *Value) Int32() int32 {
  99. return int32(s.Int())
  100. }
  101. func (s *Value) Float32() float32 {
  102. var i float32
  103. s.Setup(&i)
  104. return i
  105. }
  106. func (s *Value) Float64() float64 {
  107. var i float64
  108. s.Setup(&i)
  109. return i
  110. }