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

support for any maps in msgp.AppendIntf like in (*Writer).WriteIntf #340

Merged
merged 1 commit into from
Feb 26, 2024
Merged
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
20 changes: 18 additions & 2 deletions msgp/write_bytes.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package msgp

import (
"errors"
"math"
"reflect"
"time"
Expand Down Expand Up @@ -342,10 +343,10 @@ func AppendMapStrIntf(b []byte, m map[string]interface{}) ([]byte, error) {
// provided []byte. 'i' must be one of the following:
// - 'nil'
// - A bool, float, string, []byte, int, uint, or complex
// - A map[string]interface{} or map[string]string
// - A map[string]T where T is another supported type
// - A []T, where T is another supported type
// - A *T, where T is another supported type
// - A type that satisfieds the msgp.Marshaler interface
// - A type that satisfies the msgp.Marshaler interface
// - A type that satisfies the msgp.Extension interface
func AppendIntf(b []byte, i interface{}) ([]byte, error) {
if i == nil {
Expand Down Expand Up @@ -414,6 +415,21 @@ func AppendIntf(b []byte, i interface{}) ([]byte, error) {
var err error
v := reflect.ValueOf(i)
switch v.Kind() {
case reflect.Map:
if v.Type().Key().Kind() != reflect.String {
return b, errors.New("msgp: map keys must be strings")
}
ks := v.MapKeys()
b = AppendMapHeader(b, uint32(len(ks)))
for _, key := range ks {
val := v.MapIndex(key)
b = AppendString(b, key.String())
b, err = AppendIntf(b, val.Interface())
if err != nil {
return nil, err
}
}
return b, nil
case reflect.Array, reflect.Slice:
l := v.Len()
b = AppendArrayHeader(b, uint32(l))
Expand Down
Loading