xP: fix log JSON serialization

This commit is contained in:
Přemysl Eric Janouch 2022-09-15 01:47:52 +02:00
parent 92f2f6895b
commit b53fc1918f
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 9 additions and 0 deletions

View File

@ -100,6 +100,7 @@ function codegen_begin() {
print "package main"
print ""
print "import ("
print "\t`encoding/base64`"
print "\t`encoding/binary`"
print "\t`encoding/json`"
print "\t`errors`"
@ -274,6 +275,14 @@ function codegen_struct_field_marshal(d, cg, camel, f, marshal) {
return
}
if (d["type"] == "u8") {
append(cg, "marshal",
"\tb = append(b, `,\"" decapitalize(camel) "\":\"`...)\n" \
"\tb = append(b, base64.StdEncoding.EncodeToString(" f ")...)\n" \
"\tb = append(b, '\"')\n")
return
}
if (CodegenIsMarshaler[d["type"]])
marshal = f "[i].MarshalJSON()"
else