simplejson.go 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. package simplejson
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "log"
  6. )
  7. // returns the current implementation version
  8. func Version() string {
  9. return "0.5.0"
  10. }
  11. type Json struct {
  12. data interface{}
  13. }
  14. // NewJson returns a pointer to a new `Json` object
  15. // after unmarshaling `body` bytes
  16. func NewJson(body []byte) (*Json, error) {
  17. j := new(Json)
  18. err := j.UnmarshalJSON(body)
  19. if err != nil {
  20. return nil, err
  21. }
  22. return j, nil
  23. }
  24. // New returns a pointer to a new, empty `Json` object
  25. func New() *Json {
  26. return &Json{
  27. data: make(map[string]interface{}),
  28. }
  29. }
  30. // Interface returns the underlying data
  31. func (j *Json) Interface() interface{} {
  32. return j.data
  33. }
  34. // Encode returns its marshaled data as `[]byte`
  35. func (j *Json) Encode() ([]byte, error) {
  36. return j.MarshalJSON()
  37. }
  38. // EncodePretty returns its marshaled data as `[]byte` with indentation
  39. func (j *Json) EncodePretty() ([]byte, error) {
  40. return json.MarshalIndent(&j.data, "", " ")
  41. }
  42. // Implements the json.Marshaler interface.
  43. func (j *Json) MarshalJSON() ([]byte, error) {
  44. return json.Marshal(&j.data)
  45. }
  46. // Set modifies `Json` map by `key` and `value`
  47. // Useful for changing single key/value in a `Json` object easily.
  48. func (j *Json) Set(key string, val interface{}) {
  49. m, err := j.Map()
  50. if err != nil {
  51. return
  52. }
  53. m[key] = val
  54. }
  55. // SetPath modifies `Json`, recursively checking/creating map keys for the supplied path,
  56. // and then finally writing in the value
  57. func (j *Json) SetPath(branch []string, val interface{}) {
  58. if len(branch) == 0 {
  59. j.data = val
  60. return
  61. }
  62. // in order to insert our branch, we need map[string]interface{}
  63. if _, ok := (j.data).(map[string]interface{}); !ok {
  64. // have to replace with something suitable
  65. j.data = make(map[string]interface{})
  66. }
  67. curr := j.data.(map[string]interface{})
  68. for i := 0; i < len(branch)-1; i++ {
  69. b := branch[i]
  70. // key exists?
  71. if _, ok := curr[b]; !ok {
  72. n := make(map[string]interface{})
  73. curr[b] = n
  74. curr = n
  75. continue
  76. }
  77. // make sure the value is the right sort of thing
  78. if _, ok := curr[b].(map[string]interface{}); !ok {
  79. // have to replace with something suitable
  80. n := make(map[string]interface{})
  81. curr[b] = n
  82. }
  83. curr = curr[b].(map[string]interface{})
  84. }
  85. // add remaining k/v
  86. curr[branch[len(branch)-1]] = val
  87. }
  88. // Del modifies `Json` map by deleting `key` if it is present.
  89. func (j *Json) Del(key string) {
  90. m, err := j.Map()
  91. if err != nil {
  92. return
  93. }
  94. delete(m, key)
  95. }
  96. // Get returns a pointer to a new `Json` object
  97. // for `key` in its `map` representation
  98. //
  99. // useful for chaining operations (to traverse a nested JSON):
  100. // js.Get("top_level").Get("dict").Get("value").Int()
  101. func (j *Json) Get(key string) *Json {
  102. m, err := j.Map()
  103. if err == nil {
  104. if val, ok := m[key]; ok {
  105. return &Json{val}
  106. }
  107. }
  108. return &Json{nil}
  109. }
  110. // GetPath searches for the item as specified by the branch
  111. // without the need to deep dive using Get()'s.
  112. //
  113. // js.GetPath("top_level", "dict")
  114. func (j *Json) GetPath(branch ...string) *Json {
  115. jin := j
  116. for _, p := range branch {
  117. jin = jin.Get(p)
  118. }
  119. return jin
  120. }
  121. // GetIndex returns a pointer to a new `Json` object
  122. // for `index` in its `array` representation
  123. //
  124. // this is the analog to Get when accessing elements of
  125. // a json array instead of a json object:
  126. // js.Get("top_level").Get("array").GetIndex(1).Get("key").Int()
  127. func (j *Json) GetIndex(index int) *Json {
  128. a, err := j.Array()
  129. if err == nil {
  130. if len(a) > index {
  131. return &Json{a[index]}
  132. }
  133. }
  134. return &Json{nil}
  135. }
  136. // CheckGet returns a pointer to a new `Json` object and
  137. // a `bool` identifying success or failure
  138. //
  139. // useful for chained operations when success is important:
  140. // if data, ok := js.Get("top_level").CheckGet("inner"); ok {
  141. // log.Println(data)
  142. // }
  143. func (j *Json) CheckGet(key string) (*Json, bool) {
  144. m, err := j.Map()
  145. if err == nil {
  146. if val, ok := m[key]; ok {
  147. return &Json{val}, true
  148. }
  149. }
  150. return nil, false
  151. }
  152. // Map type asserts to `map`
  153. func (j *Json) Map() (map[string]interface{}, error) {
  154. if m, ok := (j.data).(map[string]interface{}); ok {
  155. return m, nil
  156. }
  157. return nil, errors.New("type assertion to map[string]interface{} failed")
  158. }
  159. // Array type asserts to an `array`
  160. func (j *Json) Array() ([]interface{}, error) {
  161. if a, ok := (j.data).([]interface{}); ok {
  162. return a, nil
  163. }
  164. return nil, errors.New("type assertion to []interface{} failed")
  165. }
  166. // Bool type asserts to `bool`
  167. func (j *Json) Bool() (bool, error) {
  168. if s, ok := (j.data).(bool); ok {
  169. return s, nil
  170. }
  171. return false, errors.New("type assertion to bool failed")
  172. }
  173. // String type asserts to `string`
  174. func (j *Json) String() (string, error) {
  175. if s, ok := (j.data).(string); ok {
  176. return s, nil
  177. }
  178. return "", errors.New("type assertion to string failed")
  179. }
  180. // Bytes type asserts to `[]byte`
  181. func (j *Json) Bytes() ([]byte, error) {
  182. if s, ok := (j.data).(string); ok {
  183. return []byte(s), nil
  184. }
  185. return nil, errors.New("type assertion to []byte failed")
  186. }
  187. // StringArray type asserts to an `array` of `string`
  188. func (j *Json) StringArray() ([]string, error) {
  189. arr, err := j.Array()
  190. if err != nil {
  191. return nil, err
  192. }
  193. retArr := make([]string, 0, len(arr))
  194. for _, a := range arr {
  195. if a == nil {
  196. retArr = append(retArr, "")
  197. continue
  198. }
  199. s, ok := a.(string)
  200. if !ok {
  201. return nil, errors.New("type assertion to []string failed")
  202. }
  203. retArr = append(retArr, s)
  204. }
  205. return retArr, nil
  206. }
  207. // MustArray guarantees the return of a `[]interface{}` (with optional default)
  208. //
  209. // useful when you want to interate over array values in a succinct manner:
  210. // for i, v := range js.Get("results").MustArray() {
  211. // fmt.Println(i, v)
  212. // }
  213. func (j *Json) MustArray(args ...[]interface{}) []interface{} {
  214. var def []interface{}
  215. switch len(args) {
  216. case 0:
  217. case 1:
  218. def = args[0]
  219. default:
  220. log.Panicf("MustArray() received too many arguments %d", len(args))
  221. }
  222. a, err := j.Array()
  223. if err == nil {
  224. return a
  225. }
  226. return def
  227. }
  228. // MustMap guarantees the return of a `map[string]interface{}` (with optional default)
  229. //
  230. // useful when you want to interate over map values in a succinct manner:
  231. // for k, v := range js.Get("dictionary").MustMap() {
  232. // fmt.Println(k, v)
  233. // }
  234. func (j *Json) MustMap(args ...map[string]interface{}) map[string]interface{} {
  235. var def map[string]interface{}
  236. switch len(args) {
  237. case 0:
  238. case 1:
  239. def = args[0]
  240. default:
  241. log.Panicf("MustMap() received too many arguments %d", len(args))
  242. }
  243. a, err := j.Map()
  244. if err == nil {
  245. return a
  246. }
  247. return def
  248. }
  249. // MustString guarantees the return of a `string` (with optional default)
  250. //
  251. // useful when you explicitly want a `string` in a single value return context:
  252. // myFunc(js.Get("param1").MustString(), js.Get("optional_param").MustString("my_default"))
  253. func (j *Json) MustString(args ...string) string {
  254. var def string
  255. switch len(args) {
  256. case 0:
  257. case 1:
  258. def = args[0]
  259. default:
  260. log.Panicf("MustString() received too many arguments %d", len(args))
  261. }
  262. s, err := j.String()
  263. if err == nil {
  264. return s
  265. }
  266. return def
  267. }
  268. // MustStringArray guarantees the return of a `[]string` (with optional default)
  269. //
  270. // useful when you want to interate over array values in a succinct manner:
  271. // for i, s := range js.Get("results").MustStringArray() {
  272. // fmt.Println(i, s)
  273. // }
  274. func (j *Json) MustStringArray(args ...[]string) []string {
  275. var def []string
  276. switch len(args) {
  277. case 0:
  278. case 1:
  279. def = args[0]
  280. default:
  281. log.Panicf("MustStringArray() received too many arguments %d", len(args))
  282. }
  283. a, err := j.StringArray()
  284. if err == nil {
  285. return a
  286. }
  287. return def
  288. }
  289. // MustInt guarantees the return of an `int` (with optional default)
  290. //
  291. // useful when you explicitly want an `int` in a single value return context:
  292. // myFunc(js.Get("param1").MustInt(), js.Get("optional_param").MustInt(5150))
  293. func (j *Json) MustInt(args ...int) int {
  294. var def int
  295. switch len(args) {
  296. case 0:
  297. case 1:
  298. def = args[0]
  299. default:
  300. log.Panicf("MustInt() received too many arguments %d", len(args))
  301. }
  302. i, err := j.Int()
  303. if err == nil {
  304. return i
  305. }
  306. return def
  307. }
  308. // MustFloat64 guarantees the return of a `float64` (with optional default)
  309. //
  310. // useful when you explicitly want a `float64` in a single value return context:
  311. // myFunc(js.Get("param1").MustFloat64(), js.Get("optional_param").MustFloat64(5.150))
  312. func (j *Json) MustFloat64(args ...float64) float64 {
  313. var def float64
  314. switch len(args) {
  315. case 0:
  316. case 1:
  317. def = args[0]
  318. default:
  319. log.Panicf("MustFloat64() received too many arguments %d", len(args))
  320. }
  321. f, err := j.Float64()
  322. if err == nil {
  323. return f
  324. }
  325. return def
  326. }
  327. // MustBool guarantees the return of a `bool` (with optional default)
  328. //
  329. // useful when you explicitly want a `bool` in a single value return context:
  330. // myFunc(js.Get("param1").MustBool(), js.Get("optional_param").MustBool(true))
  331. func (j *Json) MustBool(args ...bool) bool {
  332. var def bool
  333. switch len(args) {
  334. case 0:
  335. case 1:
  336. def = args[0]
  337. default:
  338. log.Panicf("MustBool() received too many arguments %d", len(args))
  339. }
  340. b, err := j.Bool()
  341. if err == nil {
  342. return b
  343. }
  344. return def
  345. }
  346. // MustInt64 guarantees the return of an `int64` (with optional default)
  347. //
  348. // useful when you explicitly want an `int64` in a single value return context:
  349. // myFunc(js.Get("param1").MustInt64(), js.Get("optional_param").MustInt64(5150))
  350. func (j *Json) MustInt64(args ...int64) int64 {
  351. var def int64
  352. switch len(args) {
  353. case 0:
  354. case 1:
  355. def = args[0]
  356. default:
  357. log.Panicf("MustInt64() received too many arguments %d", len(args))
  358. }
  359. i, err := j.Int64()
  360. if err == nil {
  361. return i
  362. }
  363. return def
  364. }
  365. // MustUInt64 guarantees the return of an `uint64` (with optional default)
  366. //
  367. // useful when you explicitly want an `uint64` in a single value return context:
  368. // myFunc(js.Get("param1").MustUint64(), js.Get("optional_param").MustUint64(5150))
  369. func (j *Json) MustUint64(args ...uint64) uint64 {
  370. var def uint64
  371. switch len(args) {
  372. case 0:
  373. case 1:
  374. def = args[0]
  375. default:
  376. log.Panicf("MustUint64() received too many arguments %d", len(args))
  377. }
  378. i, err := j.Uint64()
  379. if err == nil {
  380. return i
  381. }
  382. return def
  383. }