Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Transparent encoding #91

Merged
merged 4 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 84 additions & 12 deletions gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ var _ = sort.Sort
`)
}

// FieldNameSelf is the name of the field that is the marshal target itself.
// This is used in non-struct types which are handled like transparent structs.
const FieldNameSelf = "."

type Field struct {
Name string
MapKey string
Expand Down Expand Up @@ -145,8 +149,9 @@ func (f Field) Len() int {
}

type GenTypeInfo struct {
Name string
Fields []Field
Name string
Fields []Field
Transparent bool
}

func (gti *GenTypeInfo) Imports() []Import {
Expand Down Expand Up @@ -178,10 +183,36 @@ func ParseTypeInfo(itype interface{}) (*GenTypeInfo, error) {
pkg := t.PkgPath()

out := GenTypeInfo{
Name: t.Name(),
Name: t.Name(),
Transparent: false,
}

if t.Kind() != reflect.Struct {
return &GenTypeInfo{
Name: t.Name(),
Transparent: true,
Fields: []Field{
{
Name: FieldNameSelf,
MapKey: "",
Pointer: t.Kind() == reflect.Ptr,
Type: t,
Pkg: pkg,
Const: nil,
OmitEmpty: false,
PreserveNil: false,
IterLabel: "",
MaxLen: NoUsrMaxLen,
},
},
}, nil
}

for i := 0; i < t.NumField(); i++ {
if out.Transparent {
return nil, fmt.Errorf("transparent structs must have exactly one field")
}

f := t.Field(i)
if !nameIsExported(f.Name) {
continue
Expand Down Expand Up @@ -226,6 +257,12 @@ func ParseTypeInfo(itype interface{}) (*GenTypeInfo, error) {
constval = &cv
}

_, transparent := tags["transparent"]
if transparent && len(out.Fields) > 0 {
return nil, fmt.Errorf("only one transparent field is allowed")
}
out.Transparent = transparent

_, omitempty := tags["omitempty"]
_, preservenil := tags["preservenil"]

Expand Down Expand Up @@ -270,6 +307,8 @@ func tagparse(v string) (map[string]string, error) {
out["preservenil"] = "true"
} else if elem == "ignore" || elem == "-" {
out["ignore"] = "true"
} else if elem == "transparent" {
out["transparent"] = "true"
} else {
out["name"] = elem
}
Expand Down Expand Up @@ -678,9 +717,15 @@ func emitCborMarshalArrayField(w io.Writer, f Field) error {
return nil
}

func emitCborMarshalStructTuple(w io.Writer, gti *GenTypeInfo) error {
// 9 byte buffer to accomodate for the maximum header length (cbor varints are maximum 9 bytes_
err := doTemplate(w, gti, `var lengthBuf{{ .Name }} = {{ .TupleHeaderAsByteString }}
func emitCborMarshalStructTuple(w io.Writer, gti *GenTypeInfo) (err error) {
// 9 byte buffer to accommodate for the maximum header length (cbor varints are maximum 9 bytes_
if gti.Transparent {
err = doTemplate(w, gti, `
func (t *{{ .Name }}) MarshalCBOR(w io.Writer) error {
cw := cbg.NewCborWriter(w)
`)
} else {
err = doTemplate(w, gti, `var lengthBuf{{ .Name }} = {{ .TupleHeaderAsByteString }}
func (t *{{ .Name }}) MarshalCBOR(w io.Writer) error {
if t == nil {
_, err := w.Write(cbg.CborNull)
Expand All @@ -692,14 +737,20 @@ func (t *{{ .Name }}) MarshalCBOR(w io.Writer) error {
if _, err := cw.Write(lengthBuf{{ .Name }}); err != nil {
return err
}

`)
}
if err != nil {
return err
}

for _, f := range gti.Fields {
fmt.Fprintf(w, "\n\t// t.%s (%s) (%s)", f.Name, f.Type, f.Type.Kind())
f.Name = "t." + f.Name
if f.Name == FieldNameSelf {
f.Name = "(*t)"
} else {
f.Name = "t." + f.Name
}
fmt.Fprintf(w, "\n\t// %s (%s) (%s)", f.Name, f.Type, f.Type.Kind())

switch f.Type.Kind() {
case reflect.String:
Expand Down Expand Up @@ -1422,8 +1473,20 @@ func emitCborUnmarshalArrayField(w io.Writer, f Field) error {
return nil
}

func emitCborUnmarshalStructTuple(w io.Writer, gti *GenTypeInfo) error {
err := doTemplate(w, gti, `
func emitCborUnmarshalStructTuple(w io.Writer, gti *GenTypeInfo) (err error) {
if gti.Transparent {
err = doTemplate(w, gti, `
func (t *{{ .Name}}) UnmarshalCBOR(r io.Reader) (err error) {
*t = {{.Name}}{}

cr := cbg.NewCborReader(r)
var maj byte
var extra uint64
_ = maj
_ = extra
`)
} else {
err = doTemplate(w, gti, `
func (t *{{ .Name}}) UnmarshalCBOR(r io.Reader) (err error) {
*t = {{.Name}}{}

Expand All @@ -1448,13 +1511,18 @@ func (t *{{ .Name}}) UnmarshalCBOR(r io.Reader) (err error) {
}

`)
}
if err != nil {
return err
}

for _, f := range gti.Fields {
fmt.Fprintf(w, "\t// t.%s (%s) (%s)\n", f.Name, f.Type, f.Type.Kind())
f.Name = "t." + f.Name
if f.Name == FieldNameSelf {
f.Name = "(*t)" // self
} else {
f.Name = "t." + f.Name
}
fmt.Fprintf(w, "\t// %s (%s) (%s)\n", f.Name, f.Type, f.Type.Kind())

switch f.Type.Kind() {
case reflect.String:
Expand Down Expand Up @@ -1539,6 +1607,10 @@ func emitCborMarshalStructMap(w io.Writer, gti *GenTypeInfo) error {
}
}

if gti.Transparent {
return fmt.Errorf("transparent fields not supported in map mode, use tuple encoding (outcome should be the same)")
}

err := doTemplate(w, gti, `func (t *{{ .Name }}) MarshalCBOR(w io.Writer) error {
if t == nil {
_, err := w.Write(cbg.CborNull)
Expand Down
6 changes: 6 additions & 0 deletions testgen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ func main() {
types.FixedArrays{},
types.ThingWithSomeTime{},
types.BigField{},
types.IntArray{},
types.IntAliasArray{},
types.TupleIntArray{},
types.IntArrayNewType{},
types.IntArrayAliasNewType{},
types.MapTransparentType{},
); err != nil {
panic(err)
}
Expand Down
Loading