map.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. package json
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "reflect"
  6. "strconv"
  7. )
  8. // Map type
  9. type Map map[string]interface{}
  10. // New init Map object
  11. func NewMap() Map {
  12. return make(Map)
  13. }
  14. // FromInterface convert map[string]interface{} or Map interface to Map
  15. func MapFromInterface(iface interface{}) (res Map) {
  16. switch val := iface.(type) {
  17. case map[string]interface{}:
  18. res = FromMap(val)
  19. case Map:
  20. res = val
  21. default:
  22. res = NewMap()
  23. }
  24. return
  25. }
  26. // FromMap convert map[string]interface{} to Map object
  27. func FromMap(m map[string]interface{}) Map {
  28. return Map(m)
  29. }
  30. // Bool returns bool value by key
  31. func (s Map) Bool(key string, defaultVal bool) bool {
  32. if res, check := s[key].(bool); check {
  33. return res
  34. }
  35. return defaultVal
  36. }
  37. // KeyExists check value exists by key
  38. func (s Map) KeyExists(key string) bool {
  39. _, check := s[key]
  40. return check
  41. }
  42. // KeysExists check values exists by keys list.
  43. // Returns the first blank key found.
  44. // If all keys are defined, an empty string will be returned
  45. func (s Map) KeysExists(keys []string) string {
  46. for _, key := range keys {
  47. if _, check := s[key]; !check {
  48. return key
  49. }
  50. }
  51. return ""
  52. }
  53. func val(l, r interface{}) (res reflect.Value) {
  54. lVal, rVal := reflect.ValueOf(l), reflect.ValueOf(r)
  55. if lVal.Kind() == reflect.Ptr && rVal.Kind() != reflect.Ptr {
  56. return val(lVal.Elem().Interface(), r)
  57. }
  58. defer func() {
  59. if r := recover(); r != nil {
  60. res = rVal
  61. }
  62. }()
  63. res = lVal.Convert(rVal.Type())
  64. return
  65. }
  66. // Int returns int64 value by key.
  67. // If key isn't defined will be returned defaultVal arg value
  68. func (s Map) Int(key string, defaultVal int64) int64 {
  69. if iface, check := s[key]; check {
  70. return val(iface, defaultVal).Int()
  71. }
  72. return defaultVal
  73. }
  74. func (s Map) Int32(key string, defaultVal int) int {
  75. if iface, check := s[key]; check {
  76. return val(iface, defaultVal).Interface().(int)
  77. }
  78. return defaultVal
  79. }
  80. // Value returns interface object with attempt to convert to defaultVal type.
  81. // If key isn't defined will be returned defaultVal arg value
  82. func (s Map) Value(key string, defaultVal interface{}) interface{} {
  83. // check value exists by key
  84. if iface, check := s[key]; check {
  85. // check defaultVal is valid
  86. dVal := reflect.ValueOf(defaultVal)
  87. if !dVal.IsValid() {
  88. // invalid, return arrived interface
  89. return iface
  90. }
  91. // defaultVal is valid, attempt to convert found value to defaultVal type
  92. lVal := reflect.ValueOf(iface)
  93. switch {
  94. case !lVal.IsValid():
  95. return defaultVal // invalid found value, return defaultVal
  96. case lVal.Kind() == dVal.Kind():
  97. return iface // types of found value and defaultVal is match. return found value
  98. case lVal.Type().ConvertibleTo(dVal.Type()):
  99. return lVal.Convert(dVal.Type()).Interface() // found value type can be converted to defaultVal type. return converted found value
  100. default:
  101. {
  102. // found value type can't be converted to defaultVal type. If found value is string, attempt to convert to number value
  103. if lVal.Kind() == reflect.String {
  104. switch dVal.Kind() {
  105. case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
  106. val, err := strconv.Atoi(lVal.String())
  107. if err != nil {
  108. return defaultVal
  109. }
  110. lVal = reflect.ValueOf(val)
  111. return lVal.Convert(dVal.Type())
  112. case reflect.Float32, reflect.Float64:
  113. val, err := strconv.ParseFloat(lVal.String(), 64)
  114. if err != nil {
  115. return defaultVal
  116. }
  117. lVal = reflect.ValueOf(val)
  118. return lVal.Convert(dVal.Type())
  119. }
  120. }
  121. }
  122. }
  123. }
  124. return defaultVal
  125. }
  126. // ValueJSON returns json source object by key
  127. // If key isn't defined will be returned defaultVal arg value
  128. func (s Map) ValueJSON(key string, defaultVal []byte) (res []byte) {
  129. res = defaultVal
  130. if s.KeyExists(key) {
  131. if r, err := json.Marshal(s[key]); err == nil {
  132. res = r
  133. }
  134. }
  135. return
  136. }
  137. // String returns string value by key
  138. // If key isn't defined will be returned defaultVal arg value
  139. func (s Map) String(key, defaultVal string) string {
  140. if iface, check := s[key]; check {
  141. return val(iface, defaultVal).String()
  142. }
  143. return defaultVal
  144. }
  145. func (s Map) Bytes(key, defaultVal []byte) []byte {
  146. if iface, check := s[key]; check {
  147. return []byte(val(iface, defaultVal).String())
  148. }
  149. return defaultVal
  150. }
  151. func (s Map) StringVal(key, defaultVal string) string {
  152. if iface, check := s[key]; check {
  153. return fmt.Sprint(iface)
  154. }
  155. return defaultVal
  156. }
  157. // Slce returns slice of interface{} by key
  158. // If key isn't defined or have a different type will be returned defaultVal arg value
  159. func (s Map) Slice(key string, defaultVal []interface{}) (res []interface{}) {
  160. if arr, check := s[key].([]interface{}); check {
  161. res = arr
  162. } else {
  163. res = defaultVal
  164. }
  165. return
  166. }
  167. // StringSlice returns string slice by key
  168. // If key isn't defined will be returned defaultVal arg value
  169. func (s Map) StringSlice(key string, defaultVal []string) (res []string) {
  170. if arr, check := s[key].([]interface{}); check {
  171. res = make([]string, len(arr))
  172. for i, v := range arr {
  173. res[i] = fmt.Sprint(v)
  174. }
  175. } else {
  176. res = defaultVal
  177. }
  178. return
  179. }
  180. // Map returns Map object by key
  181. // If key isn't defined or have other type will be returned defaultVal arg value
  182. func (s Map) Map(key string, defaultVal Map) (res Map) {
  183. val := s[key]
  184. switch iface := val.(type) {
  185. case Map:
  186. res = iface
  187. case map[string]interface{}:
  188. res = Map(iface)
  189. default:
  190. res = defaultVal
  191. }
  192. return
  193. }
  194. // JSON returns JSON source of the self object
  195. func (s Map) JSON() (res []byte) {
  196. res, _ = json.Marshal(s)
  197. return
  198. }
  199. // JSONIndent returns JSON source of the self object with indent
  200. func (s Map) JSONIndent(prefix, indent string) (res []byte) {
  201. res, _ = json.MarshalIndent(s, prefix, indent)
  202. return
  203. }
  204. // ToMap returns map[string]interface{} of the self object
  205. func (s Map) ToMap() map[string]interface{} { return map[string]interface{}(s) }
  206. // Copy returns copied map (todo dipcopy)
  207. func (s Map) Copy() (res Map) {
  208. res = make(Map)
  209. for key, val := range s {
  210. res[key] = val
  211. }
  212. return
  213. }
  214. func (s Map) IsEmpty() bool {
  215. return len(s) == 0
  216. }
  217. func (s Map) Update(m Map) {
  218. for key, val := range m {
  219. s[key] = val
  220. }
  221. }
  222. func (s Map) StorePtr(key string, val interface{}) interface{} {
  223. s[key] = &val
  224. return &val
  225. }
  226. func (s Map) Variable(key string, ptr interface{}) bool {
  227. val, check := s[key]
  228. if !check {
  229. // value is not exists
  230. return false
  231. }
  232. vVal := reflect.ValueOf(ptr)
  233. if vVal.Kind() != reflect.Ptr {
  234. // ptr is not a pointer
  235. return false
  236. }
  237. vElem := vVal.Elem()
  238. rVal := reflect.ValueOf(val)
  239. if !rVal.CanConvert(vElem.Type()) {
  240. // type is not converted
  241. return false
  242. }
  243. vElem.Set(rVal.Convert(vElem.Type()))
  244. return true
  245. }