Skip to content

Commit d670417

Browse files
authored
Merge pull request #19 from twpayne/string-annotation
feat: add support for ,string annotations
2 parents 2b88864 + bd71258 commit d670417

File tree

5 files changed

+395
-78
lines changed

5 files changed

+395
-78
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ To learn about more about the available options, run:
174174
input, making it suitable for incorporation into build pipelines or detecting
175175
schema changes.
176176
* Generates `omitempty` when possible.
177+
* Generates `,string` tags.
177178
* Uses the standard library's `time.Time` when possible.
178179
* Gracefully handles properties with spaces that [cannot be unmarshalled by
179180
`encoding/json`](https://github.com/golang/go/issues/18531).

cmd/gojsonstruct/main.go

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ var (
2020
packageComment = pflag.String("package-comment", "", "package comment")
2121
packageName = pflag.String("package-name", "main", "package name")
2222
skipUnparsableProperties = pflag.Bool("skip-unparsable-properties", true, "skip unparsable properties")
23+
stringTags = pflag.Bool("string-tags", false, "generate ,string tags")
2324
structTagName = pflag.String("struct-tag-name", "", "struct tag name")
2425
typeComment = pflag.String("type-comment", "", "type comment")
2526
typeName = pflag.String("typename", "T", "type name")
@@ -41,6 +42,7 @@ func run() error {
4142
options := []jsonstruct.GeneratorOption{
4243
jsonstruct.WithOmitEmpty(omitEmptyOption[*omitempty]),
4344
jsonstruct.WithSkipUnparsableProperties(*skipUnparsableProperties),
45+
jsonstruct.WithStringTags(*stringTags),
4446
jsonstruct.WithUseJSONNumber(*useJSONNumber),
4547
jsonstruct.WithGoFormat(*goFormat),
4648
}

generator.go

+11-2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ type Generator struct {
3939
packageComment string
4040
packageName string
4141
skipUnparsableProperties bool
42+
stringTags bool
4243
structTagNames []string
4344
typeComment string
4445
typeName string
@@ -127,6 +128,13 @@ func WithSkipUnparsableProperties(skipUnparsableProperties bool) GeneratorOption
127128
}
128129
}
129130

131+
// WithStringTags sets whether ",string" tags should be used.
132+
func WithStringTags(stringTags bool) GeneratorOption {
133+
return func(g *Generator) {
134+
g.stringTags = stringTags
135+
}
136+
}
137+
130138
// WithStructTagName sets the struct tag name.
131139
func WithStructTagName(structTagName string) GeneratorOption {
132140
return func(g *Generator) {
@@ -216,12 +224,13 @@ func (g *Generator) Generate() ([]byte, error) {
216224
}
217225
fmt.Fprintf(buffer, "package %s\n", g.packageName)
218226
imports := maps.Clone(g.imports)
219-
goType, _ := g.value.goType(0, &generateOptions{
227+
goType := g.value.goType(0, &generateOptions{
220228
exportNameFunc: g.exportNameFunc,
221229
imports: imports,
222230
intType: g.intType,
223231
omitEmptyOption: g.omitEmptyOption,
224232
skipUnparsableProperties: g.skipUnparsableProperties,
233+
stringTags: g.stringTags,
225234
structTagNames: g.structTagNames,
226235
useJSONNumber: g.useJSONNumber,
227236
})
@@ -236,7 +245,7 @@ func (g *Generator) Generate() ([]byte, error) {
236245
if g.typeComment != "" {
237246
fmt.Fprintf(buffer, "// %s\n", g.typeComment)
238247
}
239-
fmt.Fprintf(buffer, "type %s %s\n", g.typeName, goType)
248+
fmt.Fprintf(buffer, "type %s %s\n", g.typeName, goType.typeStr)
240249
if !g.goFormat {
241250
return buffer.Bytes(), nil
242251
}

0 commit comments

Comments
 (0)