value.go 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. package value
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "log"
  6. "reflect"
  7. "strconv"
  8. "strings"
  9. )
  10. func ValueOf(val interface{}) Value {
  11. return Value{
  12. val: val,
  13. }
  14. }
  15. type Value struct {
  16. val interface{}
  17. }
  18. func (s *Value) IsValid() bool {
  19. return s.val != nil
  20. }
  21. func (s *Value) Setup(val interface{}) (res bool) {
  22. rr := reflect.ValueOf(val)
  23. if rr.Kind() != reflect.Ptr {
  24. panic(fmt.Errorf("Expected ptr, given %v", rr.Type()))
  25. }
  26. rKind, rType := rr.Elem().Kind(), rr.Elem().Type()
  27. if rKind == reflect.Interface {
  28. rKind, rType = rr.Elem().Elem().Kind(), rr.Elem().Elem().Type()
  29. }
  30. if rKind == reflect.String {
  31. rls := strings.TrimSpace(fmt.Sprint(s.val))
  32. if len(rls) > 0 {
  33. rr.Elem().Set(reflect.ValueOf(rls))
  34. res = true
  35. }
  36. } else {
  37. rl := reflect.ValueOf(s.val)
  38. if rl.Kind() == reflect.String {
  39. switch rKind {
  40. case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
  41. {
  42. if tmp, err := strconv.ParseInt(rl.String(), 10, 64); err == nil {
  43. rr.Elem().Set(reflect.ValueOf(tmp).Convert(rType))
  44. res = true
  45. }
  46. }
  47. case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
  48. {
  49. if tmp, err := strconv.ParseUint(rl.String(), 10, 64); err == nil {
  50. rr.Elem().Set(reflect.ValueOf(tmp).Convert(rType))
  51. res = true
  52. }
  53. }
  54. case reflect.Float32, reflect.Float64:
  55. {
  56. if tmp, err := strconv.ParseFloat(rl.String(), 64); err == nil {
  57. rr.Elem().Set(reflect.ValueOf(tmp).Convert(rType))
  58. res = true
  59. }
  60. }
  61. case reflect.Slice:
  62. {
  63. slType := rType.Elem()
  64. if rr.Kind() == reflect.Slice {
  65. slRes := reflect.MakeSlice(slType, rr.Len(), rr.Cap())
  66. for i := 0; i < rl.Len(); i++ {
  67. if val := rl.Index(i); val.CanConvert(slType) {
  68. slRes.Index(i).Set(val.Convert(slType))
  69. } else {
  70. return false
  71. }
  72. }
  73. rr.Elem().Set(slRes)
  74. res = true
  75. } else if rl.Kind() == reflect.String {
  76. slType := rType.Elem()
  77. sls := strings.Split(rl.String(), ",")
  78. log.Println(slType, rr.Type())
  79. slRes := reflect.MakeSlice(rr.Type().Elem(), len(sls), cap(sls))
  80. for i, sVal := range sls {
  81. sItem := reflect.ValueOf(strings.TrimSpace(sVal))
  82. switch {
  83. case isKindNumber(slType.Kind()):
  84. {
  85. numVal, err := strconv.ParseFloat(sItem.String(), 64)
  86. if err != nil {
  87. return false
  88. }
  89. sItem = reflect.ValueOf(numVal)
  90. slRes.Index(i).Set(sItem.Convert(slType))
  91. }
  92. default:
  93. {
  94. if !sItem.CanConvert(slType) {
  95. return false
  96. }
  97. slRes.Index(i).Set(sItem.Convert(slType))
  98. }
  99. }
  100. }
  101. rr.Elem().Set(slRes)
  102. res = true
  103. }
  104. /*
  105. log.Println("Slice")
  106. slType := rType.Elem()
  107. if rr.Kind() == reflect.Slice {
  108. slRes := reflect.MakeSlice(slType, rr.Len(), rr.Cap())
  109. for i := 0; i < rl.Len(); i++ {
  110. if val := rl.Index(i); val.CanConvert(slType) {
  111. slRes.Index(i).Set(val.Convert(slType))
  112. } else {
  113. return false
  114. }
  115. }
  116. rr.Elem().Set(slRes)
  117. res = true
  118. } else if rl.Kind() == reflect.String {
  119. log.Println("sl <===> str")
  120. sls := strings.Split(rl.String(), ",")
  121. log.Println(slType, rr.Type())
  122. slRes := reflect.MakeSlice(slType, len(sls), cap(sls))
  123. switch {
  124. case isKindNumber(slType.Kind()):
  125. log.Println("AAAAAAAAAAAAAAAAA")
  126. for i, sVal := range sls {
  127. numVal, err := strconv.ParseFloat(sVal, 64)
  128. if err != nil {
  129. return false
  130. }
  131. rl := reflect.ValueOf(numVal)
  132. if val := rl.Index(i); val.CanConvert(slType) {
  133. slRes.Index(i).Set(val.Convert(slType))
  134. } else {
  135. return false
  136. }
  137. }
  138. rr.Elem().Set(slRes)
  139. res = true
  140. }
  141. }
  142. */
  143. }
  144. default:
  145. // json
  146. i := reflect.New(rr.Elem().Type()).Interface()
  147. if err := json.Unmarshal([]byte(rl.String()), i); err == nil {
  148. rr.Elem().Set(reflect.ValueOf(i).Elem())
  149. }
  150. }
  151. } else {
  152. var rVal reflect.Value
  153. defer func() {
  154. if r := recover(); r == nil {
  155. rr.Elem().Set(rVal)
  156. res = true
  157. }
  158. }()
  159. rVal = rl.Convert(rType)
  160. }
  161. }
  162. return
  163. }
  164. func (s *Value) String() string {
  165. return fmt.Sprint(s.val)
  166. }
  167. func (s *Value) Int() int {
  168. var i int
  169. s.Setup(&i)
  170. return i
  171. }
  172. func (s *Value) Int8() int8 {
  173. var i int8
  174. s.Setup(&i)
  175. return i
  176. }
  177. func (s *Value) Int16() int16 {
  178. var i int16
  179. s.Setup(&i)
  180. return i
  181. }
  182. func (s *Value) Int32() int32 {
  183. return int32(s.Int())
  184. }
  185. func (s *Value) Float32() float32 {
  186. var i float32
  187. s.Setup(&i)
  188. return i
  189. }
  190. func (s *Value) Float64() float64 {
  191. var i float64
  192. s.Setup(&i)
  193. return i
  194. }