123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- // comment this out // + build ignore
-
- // Copyright (c) 2012-2018 Ugorji Nwoke. All rights reserved.
- // Use of this source code is governed by a MIT license found in the LICENSE file.
-
- // Code generated from gen-helper.go.tmpl - DO NOT EDIT.
-
- package codec
-
- import (
- "encoding"
- "reflect"
- "strconv"
- )
-
- // GenVersion is the current version of codecgen.
- const GenVersion = {{ .Version }}
-
- // This file is used to generate helper code for codecgen.
- // The values here i.e. genHelper(En|De)coder are not to be used directly by
- // library users. They WILL change continuously and without notice.
- //
- // To help enforce this, we create an unexported type with exported members.
- // The only way to get the type is via the one exported type that we control (somewhat).
- //
- // When static codecs are created for types, they will use this value
- // to perform encoding or decoding of primitives or known slice or map types.
-
- // GenHelperEncoder is exported so that it can be used externally by codecgen.
- //
- // Library users: DO NOT USE IT DIRECTLY. IT WILL CHANGE CONTINOUSLY WITHOUT NOTICE.
- func GenHelperEncoder(e *Encoder) (ge genHelperEncoder, ee genHelperEncDriver) {
- ge = genHelperEncoder{e: e}
- ee = genHelperEncDriver{encDriver: e.e}
- return
- }
-
- // GenHelperDecoder is exported so that it can be used externally by codecgen.
- //
- // Library users: DO NOT USE IT DIRECTLY. IT WILL CHANGE CONTINOUSLY WITHOUT NOTICE.
- func GenHelperDecoder(d *Decoder) (gd genHelperDecoder, dd genHelperDecDriver) {
- gd = genHelperDecoder{d: d}
- dd = genHelperDecDriver{decDriver: d.d}
- return
- }
-
- type genHelperEncDriver struct {
- encDriver
- }
-
- func (x genHelperEncDriver) EncodeBuiltin(rt uintptr, v interface{}) {}
- func (x genHelperEncDriver) EncStructFieldKey(keyType valueType, s string) {
- var m must
- if keyType == valueTypeString {
- x.encDriver.EncodeStringEnc(cUTF8, s)
- } else if keyType == valueTypeInt {
- x.encDriver.EncodeInt(m.Int(strconv.ParseInt(s, 10, 64)))
- } else if keyType == valueTypeUint {
- x.encDriver.EncodeUint(m.Uint(strconv.ParseUint(s, 10, 64)))
- } else if keyType == valueTypeFloat {
- x.encDriver.EncodeFloat64(m.Float(strconv.ParseFloat(s, 64)))
- }
- // encStructFieldKey(x.encDriver, keyType, s)
- }
- func (x genHelperEncDriver) EncodeSymbol(s string) {
- x.encDriver.EncodeStringEnc(cUTF8, s)
- }
-
- type genHelperDecDriver struct {
- decDriver
- C checkOverflow
- }
-
- func (x genHelperDecDriver) DecodeBuiltin(rt uintptr, v interface{}) {}
- func (x genHelperDecDriver) DecStructFieldKey(keyType valueType, buf *[decScratchByteArrayLen]byte) []byte {
- return decStructFieldKey(x.decDriver, keyType, buf)
- }
- func (x genHelperDecDriver) DecodeInt(bitsize uint8) (i int64) {
- return x.C.IntV(x.decDriver.DecodeInt64(), bitsize)
- }
- func (x genHelperDecDriver) DecodeUint(bitsize uint8) (ui uint64) {
- return x.C.UintV(x.decDriver.DecodeUint64(), bitsize)
- }
- func (x genHelperDecDriver) DecodeFloat(chkOverflow32 bool) (f float64) {
- f = x.DecodeFloat64()
- if chkOverflow32 && chkOvf.Float32(f) {
- panicv.errorf("float32 overflow: %v", f)
- }
- return
- }
- func (x genHelperDecDriver) DecodeFloat32As64() (f float64) {
- f = x.DecodeFloat64()
- if chkOvf.Float32(f) {
- panicv.errorf("float32 overflow: %v", f)
- }
- return
- }
-
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- type genHelperEncoder struct {
- M must
- e *Encoder
- F fastpathT
- }
-
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- type genHelperDecoder struct {
- C checkOverflow
- d *Decoder
- F fastpathT
- }
-
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperEncoder) EncBasicHandle() *BasicHandle {
- return f.e.h
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperEncoder) EncBinary() bool {
- return f.e.be // f.e.hh.isBinaryEncoding()
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperEncoder) IsJSONHandle() bool {
- return f.e.js
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperEncoder) EncFallback(iv interface{}) {
- // println(">>>>>>>>> EncFallback")
- // f.e.encodeI(iv, false, false)
- f.e.encodeValue(reflect.ValueOf(iv), nil, false)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperEncoder) EncTextMarshal(iv encoding.TextMarshaler) {
- bs, fnerr := iv.MarshalText()
- f.e.marshalUtf8(bs, fnerr)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperEncoder) EncJSONMarshal(iv jsonMarshaler) {
- bs, fnerr := iv.MarshalJSON()
- f.e.marshalAsis(bs, fnerr)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperEncoder) EncBinaryMarshal(iv encoding.BinaryMarshaler) {
- bs, fnerr := iv.MarshalBinary()
- f.e.marshalRaw(bs, fnerr)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperEncoder) EncRaw(iv Raw) { f.e.rawBytes(iv) }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- //
- // Deprecated: builtin no longer supported - so we make this method a no-op,
- // but leave in-place so that old generated files continue to work without regeneration.
- func (f genHelperEncoder) TimeRtidIfBinc() (v uintptr) { return }
- // func (f genHelperEncoder) TimeRtidIfBinc() uintptr {
- // if _, ok := f.e.hh.(*BincHandle); ok {
- // return timeTypId
- // }
- // }
-
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperEncoder) I2Rtid(v interface{}) uintptr {
- return i2rtid(v)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperEncoder) Extension(rtid uintptr) (xfn *extTypeTagFn) {
- return f.e.h.getExt(rtid)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperEncoder) EncExtension(v interface{}, xfFn *extTypeTagFn) {
- f.e.e.EncodeExt(v, xfFn.tag, xfFn.ext, f.e)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperEncoder) WriteStr(s string) {
- f.e.w.writestr(s)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- //
- // Deprecated: No longer used,
- // but leave in-place so that old generated files continue to work without regeneration.
- func (f genHelperEncoder) HasExtensions() bool {
- return len(f.e.h.extHandle) != 0
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- //
- // Deprecated: No longer used,
- // but leave in-place so that old generated files continue to work without regeneration.
- func (f genHelperEncoder) EncExt(v interface{}) (r bool) {
- if xfFn := f.e.h.getExt(i2rtid(v)); xfFn != nil {
- f.e.e.EncodeExt(v, xfFn.tag, xfFn.ext, f.e)
- return true
- }
- return false
- }
-
- // ---------------- DECODER FOLLOWS -----------------
-
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecBasicHandle() *BasicHandle {
- return f.d.h
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecBinary() bool {
- return f.d.be // f.d.hh.isBinaryEncoding()
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecSwallow() { f.d.swallow() }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecScratchBuffer() []byte {
- return f.d.b[:]
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecScratchArrayBuffer() *[decScratchByteArrayLen]byte {
- return &f.d.b
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecFallback(iv interface{}, chkPtr bool) {
- // println(">>>>>>>>> DecFallback")
- rv := reflect.ValueOf(iv)
- if chkPtr {
- rv = f.d.ensureDecodeable(rv)
- }
- f.d.decodeValue(rv, nil, false)
- // f.d.decodeValueFallback(rv)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecSliceHelperStart() (decSliceHelper, int) {
- return f.d.decSliceHelperStart()
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecStructFieldNotFound(index int, name string) {
- f.d.structFieldNotFound(index, name)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecArrayCannotExpand(sliceLen, streamLen int) {
- f.d.arrayCannotExpand(sliceLen, streamLen)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecTextUnmarshal(tm encoding.TextUnmarshaler) {
- fnerr := tm.UnmarshalText(f.d.d.DecodeStringAsBytes())
- if fnerr != nil {
- panic(fnerr)
- }
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecJSONUnmarshal(tm jsonUnmarshaler) {
- // bs := f.dd.DecodeStringAsBytes()
- // grab the bytes to be read, as UnmarshalJSON needs the full JSON so as to unmarshal it itself.
- fnerr := tm.UnmarshalJSON(f.d.nextValueBytes())
- if fnerr != nil {
- panic(fnerr)
- }
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecBinaryUnmarshal(bm encoding.BinaryUnmarshaler) {
- fnerr := bm.UnmarshalBinary(f.d.d.DecodeBytes(nil, true))
- if fnerr != nil {
- panic(fnerr)
- }
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecRaw() []byte { return f.d.rawBytes() }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- //
- // Deprecated: builtin no longer supported - so we make this method a no-op,
- // but leave in-place so that old generated files continue to work without regeneration.
- func (f genHelperDecoder) TimeRtidIfBinc() (v uintptr) { return }
- // func (f genHelperDecoder) TimeRtidIfBinc() uintptr {
- // // Note: builtin is no longer supported - so make this a no-op
- // if _, ok := f.d.hh.(*BincHandle); ok {
- // return timeTypId
- // }
- // return 0
- // }
-
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) IsJSONHandle() bool {
- return f.d.js
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) I2Rtid(v interface{}) uintptr {
- return i2rtid(v)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) Extension(rtid uintptr) (xfn *extTypeTagFn) {
- return f.d.h.getExt(rtid)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecExtension(v interface{}, xfFn *extTypeTagFn) {
- f.d.d.DecodeExt(v, xfFn.tag, xfFn.ext)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- //
- // Deprecated: No longer used,
- // but leave in-place so that old generated files continue to work without regeneration.
- func (f genHelperDecoder) HasExtensions() bool {
- return len(f.d.h.extHandle) != 0
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- //
- // Deprecated: No longer used,
- // but leave in-place so that old generated files continue to work without regeneration.
- func (f genHelperDecoder) DecExt(v interface{}) (r bool) {
- if xfFn := f.d.h.getExt(i2rtid(v)); xfFn != nil {
- f.d.d.DecodeExt(v, xfFn.tag, xfFn.ext)
- return true
- }
- return false
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- func (f genHelperDecoder) DecInferLen(clen, maxlen, unit int) (rvlen int) {
- return decInferLen(clen, maxlen, unit)
- }
- // FOR USE BY CODECGEN ONLY. IT *WILL* CHANGE WITHOUT NOTICE. *DO NOT USE*
- //
- // Deprecated: no longer used,
- // but leave in-place so that old generated files continue to work without regeneration.
- func (f genHelperDecoder) StringView(v []byte) string { return stringView(v) }
-
|