simplejson_go10.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. // +build !go1.1
  2. package simplejson
  3. import (
  4. "encoding/json"
  5. "errors"
  6. "io"
  7. "reflect"
  8. )
  9. // NewFromReader returns a *Json by decoding from an io.Reader
  10. func NewFromReader(r io.Reader) (*Json, error) {
  11. j := new(Json)
  12. dec := json.NewDecoder(r)
  13. err := dec.Decode(&j.data)
  14. return j, err
  15. }
  16. // Implements the json.Unmarshaler interface.
  17. func (j *Json) UnmarshalJSON(p []byte) error {
  18. return json.Unmarshal(p, &j.data)
  19. }
  20. // Float64 coerces into a float64
  21. func (j *Json) Float64() (float64, error) {
  22. switch j.data.(type) {
  23. case float32, float64:
  24. return reflect.ValueOf(j.data).Float(), nil
  25. case int, int8, int16, int32, int64:
  26. return float64(reflect.ValueOf(j.data).Int()), nil
  27. case uint, uint8, uint16, uint32, uint64:
  28. return float64(reflect.ValueOf(j.data).Uint()), nil
  29. }
  30. return 0, errors.New("invalid value type")
  31. }
  32. // Int coerces into an int
  33. func (j *Json) Int() (int, error) {
  34. switch j.data.(type) {
  35. case float32, float64:
  36. return int(reflect.ValueOf(j.data).Float()), nil
  37. case int, int8, int16, int32, int64:
  38. return int(reflect.ValueOf(j.data).Int()), nil
  39. case uint, uint8, uint16, uint32, uint64:
  40. return int(reflect.ValueOf(j.data).Uint()), nil
  41. }
  42. return 0, errors.New("invalid value type")
  43. }
  44. // Int64 coerces into an int64
  45. func (j *Json) Int64() (int64, error) {
  46. switch j.data.(type) {
  47. case float32, float64:
  48. return int64(reflect.ValueOf(j.data).Float()), nil
  49. case int, int8, int16, int32, int64:
  50. return reflect.ValueOf(j.data).Int(), nil
  51. case uint, uint8, uint16, uint32, uint64:
  52. return int64(reflect.ValueOf(j.data).Uint()), nil
  53. }
  54. return 0, errors.New("invalid value type")
  55. }
  56. // Uint64 coerces into an uint64
  57. func (j *Json) Uint64() (uint64, error) {
  58. switch j.data.(type) {
  59. case float32, float64:
  60. return uint64(reflect.ValueOf(j.data).Float()), nil
  61. case int, int8, int16, int32, int64:
  62. return uint64(reflect.ValueOf(j.data).Int()), nil
  63. case uint, uint8, uint16, uint32, uint64:
  64. return reflect.ValueOf(j.data).Uint(), nil
  65. }
  66. return 0, errors.New("invalid value type")
  67. }