encoding/jsonpb: change MarshalOptions.Compact option to Indent

This makes it consistent with jsonpb.MarshalOptions. This does change
the default to be in compact form.

Change-Id: I1b07f06f282c019b30f3f1cbb43f6c8cba18f385
Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/168405
Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
This commit is contained in:
Herbie Ong 2019-03-20 14:04:24 -07:00
parent 1321a0e05b
commit 3a385917c0
4 changed files with 9 additions and 11 deletions

View File

@ -27,8 +27,10 @@ func Marshal(m proto.Message) ([]byte, error) {
type MarshalOptions struct {
pragma.NoUnkeyedLiterals
// Set Compact to true to have output in a single line with no line breaks.
Compact bool
// If Indent is a non-empty string, it causes entries for a Message to be
// preceded by the indent and trailed by a newline. Indent can only be
// composed of space or tab characters.
Indent string
// Resolver is the registry used for type lookups when marshaling out
// google.protobuf.Any messages in expanded form. If Resolver is not set,
@ -49,14 +51,9 @@ func (o MarshalOptions) Marshal(m proto.Message) ([]byte, error) {
return nil, err
}
indent := " "
if o.Compact {
indent = ""
}
delims := [2]byte{'{', '}'}
const outputASCII = false
b, err := text.Marshal(v, indent, delims, outputASCII)
b, err := text.Marshal(v, o.Indent, delims, outputASCII)
if !nerr.Merge(err) {
return nil, err
}

View File

@ -1111,7 +1111,8 @@ value: "\x80"
for _, tt := range tests {
tt := tt
t.Run(tt.desc, func(t *testing.T) {
t.Parallel()
// Use 2-space indentation on all MarshalOptions.
tt.mo.Indent = " "
b, err := tt.mo.Marshal(tt.input)
if err != nil && !tt.wantErr {
t.Errorf("Marshal() returned error: %v\n", err)

View File

@ -91,6 +91,6 @@ func (Export) ExtensionTypeOf(d pref.ExtensionDescriptor, t interface{}) pref.Ex
// MessageStringOf returns the message value as a string,
// which is the message serialized in the protobuf text format.
func (Export) MessageStringOf(m pref.ProtoMessage) string {
b, _ := textpb.MarshalOptions{Compact: true}.Marshal(m)
b, _ := textpb.Marshal(m)
return string(b)
}

View File

@ -1110,7 +1110,7 @@ func (g *GeneratedFile) metaFile(content []byte) (string, error) {
}
}
b, err := textpb.MarshalOptions{Compact: true}.Marshal(info)
b, err := textpb.Marshal(info)
if err != nil {
return "", err
}