errors.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright 2021 ByteDance Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package encoder
  17. import (
  18. `encoding/json`
  19. `fmt`
  20. `reflect`
  21. `strconv`
  22. `unsafe`
  23. `github.com/bytedance/sonic/internal/rt`
  24. )
  25. var _ERR_too_deep = &json.UnsupportedValueError {
  26. Str : "Value nesting too deep",
  27. Value : reflect.ValueOf("..."),
  28. }
  29. var _ERR_nan_or_infinite = &json.UnsupportedValueError {
  30. Str : "NaN or ±Infinite",
  31. Value : reflect.ValueOf("NaN or ±Infinite"),
  32. }
  33. func error_type(vtype reflect.Type) error {
  34. return &json.UnsupportedTypeError{Type: vtype}
  35. }
  36. func error_number(number json.Number) error {
  37. return &json.UnsupportedValueError {
  38. Str : "invalid number literal: " + strconv.Quote(string(number)),
  39. Value : reflect.ValueOf(number),
  40. }
  41. }
  42. func error_marshaler(ret []byte, pos int) error {
  43. return fmt.Errorf("invalid Marshaler output json syntax at %d: %q", pos, ret)
  44. }
  45. const (
  46. panicNilPointerOfNonEmptyString int = 1 + iota
  47. )
  48. func goPanic(code int, val unsafe.Pointer) {
  49. switch(code){
  50. case panicNilPointerOfNonEmptyString:
  51. panic(fmt.Sprintf("val: %#v has nil pointer while its length is not zero!", (*rt.GoString)(val)))
  52. default:
  53. panic("encoder error!")
  54. }
  55. }