primitives.go 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 jitdec
  17. import (
  18. `encoding`
  19. `encoding/json`
  20. `unsafe`
  21. `github.com/bytedance/sonic/internal/native`
  22. `github.com/bytedance/sonic/internal/rt`
  23. )
  24. func decodeTypedPointer(s string, i int, vt *rt.GoType, vp unsafe.Pointer, sb *_Stack, fv uint64) (int, error) {
  25. if fn, err := findOrCompile(vt); err != nil {
  26. return 0, err
  27. } else {
  28. rt.MoreStack(_FP_size + _VD_size + native.MaxFrameSize)
  29. ret, err := fn(s, i, vp, sb, fv, "", nil)
  30. return ret, err
  31. }
  32. }
  33. func decodeJsonUnmarshaler(vv interface{}, s string) error {
  34. return vv.(json.Unmarshaler).UnmarshalJSON(rt.Str2Mem(s))
  35. }
  36. // used to distinguish between MismatchQuoted and other MismatchedTyped errors, see issue #670 and #716
  37. type MismatchQuotedError struct {}
  38. func (*MismatchQuotedError) Error() string {
  39. return "mismatch quoted"
  40. }
  41. func decodeJsonUnmarshalerQuoted(vv interface{}, s string) error {
  42. if len(s) < 2 || s[0] != '"' || s[len(s)-1] != '"' {
  43. return &MismatchQuotedError{}
  44. }
  45. return vv.(json.Unmarshaler).UnmarshalJSON(rt.Str2Mem(s[1:len(s)-1]))
  46. }
  47. func decodeTextUnmarshaler(vv interface{}, s string) error {
  48. return vv.(encoding.TextUnmarshaler).UnmarshalText(rt.Str2Mem(s))
  49. }