primitives.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 decoder
  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. rt.StopProf()
  30. ret, err := fn(s, i, vp, sb, fv, "", nil)
  31. rt.StartProf()
  32. return ret, err
  33. }
  34. }
  35. func decodeJsonUnmarshaler(vv interface{}, s string) error {
  36. return vv.(json.Unmarshaler).UnmarshalJSON(rt.Str2Mem(s))
  37. }
  38. func decodeTextUnmarshaler(vv interface{}, s string) error {
  39. return vv.(encoding.TextUnmarshaler).UnmarshalText(rt.Str2Mem(s))
  40. }