Skip to content

Commit

Permalink
feat: Output plain map/slice for nullable types
Browse files Browse the repository at this point in the history
Go maps and slices can be nil. An avro nullable union can thus be
represented directly by a map or a slice without using an explicit
pointer (`*`).

This feature is hidden being the `PlainMap` and `PlainSlice` options to
preserve the existing behavior.

Closes hamba#461
  • Loading branch information
0xjac committed Oct 7, 2024
1 parent b4fe207 commit dfbeef7
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions gen/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ type Config struct {
FullName bool
Encoders bool
FullSchema bool
PlainMap bool
PlainSlice bool
StrictTypes bool
Initialisms []string
LogicalTypes []LogicalType
Expand All @@ -43,6 +45,9 @@ const (
Kebab TagStyle = "kebab"
// UpperCamel is a style like ImWrittenInUpperCamel.
UpperCamel TagStyle = "upper-camel"

prefixMap string = "map["
prefixSlice string = "[]"
)

//go:embed output_template.tmpl
Expand Down Expand Up @@ -85,6 +90,8 @@ func StructFromSchema(schema avro.Schema, w io.Writer, cfg Config) error {
WithInitialisms(cfg.Initialisms),
WithStrictTypes(cfg.StrictTypes),
WithFullSchema(cfg.FullSchema),
WithPlainMap(cfg.PlainMap),
WithPlainSlice(cfg.PlainSlice),
}
for _, opt := range cfg.LogicalTypes {
opts = append(opts, WithLogicalType(opt))
Expand Down Expand Up @@ -168,6 +175,20 @@ func WithFullSchema(b bool) OptsFunc {
}
}

// WithPlainMap configures the generator to emit a plain map and not a map ptr for nullable unions.
func WithPlainMap(b bool) OptsFunc {
return func(g *Generator) {
g.plainMap = b
}
}

// WithPlainSlice configures the generator to emit a plain map and not a map ptr for nullable unions.
func WithPlainSlice(b bool) OptsFunc {
return func(g *Generator) {
g.plainSlice = b
}
}

// LogicalType used when the name of the "LogicalType" field in the Avro schema matches the Name attribute.
type LogicalType struct {
// Name of the LogicalType
Expand Down Expand Up @@ -210,6 +231,8 @@ type Generator struct {
fullName bool
encoders bool
fullSchema bool
plainMap bool
plainSlice bool
strictTypes bool
initialisms []string
logicalTypes map[avro.LogicalType]LogicalType
Expand Down Expand Up @@ -356,6 +379,14 @@ func (g *Generator) resolveUnionTypes(s *avro.UnionSchema) string {
types = append(types, g.generate(elem))
}
if s.Nullable() {
if g.plainMap && strings.HasPrefix(types[0], prefixMap) {
return types[0]
}

if g.plainSlice && strings.HasPrefix(types[0], prefixSlice) {
return types[0]
}

return "*" + types[0]
}
return "any"
Expand Down

0 comments on commit dfbeef7

Please sign in to comment.