cell_number.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package xvdoc
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "reflect"
  6. "strings"
  7. )
  8. func constructorNumber(dec *json.Decoder, t json.Token) (res Cell, err error) {
  9. if _, check := t.(float64); check {
  10. var (
  11. lInt int64
  12. lFloat float64
  13. )
  14. lIntType, lFloatType := reflect.TypeOf(lInt), reflect.TypeOf(lFloat)
  15. rVal := reflect.ValueOf(t)
  16. if rVal.Type().ConvertibleTo(lIntType) && strings.IndexByte(fmt.Sprint(t), '.') < 0 {
  17. res = &CellInteger{rVal.Convert(lIntType).Int()}
  18. } else if rVal.Type().ConvertibleTo(lFloatType) {
  19. res = &CellFloat{rVal.Convert(lFloatType).Float()}
  20. }
  21. }
  22. return
  23. }
  24. // CellInteger is cell with integer type value
  25. type CellInteger struct {
  26. val int64
  27. }
  28. // Val method is value getter
  29. func (s *CellInteger) Val() interface{} {
  30. return s.val
  31. }
  32. // Type method is value type getter
  33. func (s *CellInteger) Type() string {
  34. return "number"
  35. }
  36. func (s *CellInteger) String() string {
  37. return fmt.Sprintf("{ int64: %v }", s.val)
  38. }
  39. func (s *CellInteger) Styles() []string {
  40. return nil
  41. }
  42. //////////////////////////////////
  43. type CellFloat struct {
  44. val float64
  45. }
  46. func (s *CellFloat) Val() interface{} {
  47. return s.val
  48. }
  49. func (s *CellFloat) Type() string {
  50. return "float"
  51. }
  52. func (s *CellFloat) String() string {
  53. return fmt.Sprintf("{ float64: %v }", s.val)
  54. }
  55. func (s *CellFloat) Styles() []string {
  56. return nil
  57. }