-
-
Save mewmew/55f91d35d0d0f4f4885f72873fdd277c to your computer and use it in GitHub Desktop.
Unmarshal JSON to specific interface implementation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "reflect" | |
| ) | |
| type Something interface{} | |
| type Something1 struct { | |
| Aaa, Bbb string | |
| } | |
| type Something2 struct { | |
| Ccc, Ddd string | |
| } | |
| var _ Something = (*Something1)(nil) | |
| var _ Something = (*Something2)(nil) | |
| var somethingTypes = map[string]reflect.Type{ | |
| "something1": reflect.TypeOf(Something1{}), | |
| "something2": reflect.TypeOf(Something2{}), | |
| } | |
| type Container struct { | |
| Type string `json:"type"` | |
| Value Something `json:"value"` | |
| } | |
| func (c *Container) UnmarshalJSON(data []byte) error { | |
| m := map[string]interface{}{} | |
| if err := json.Unmarshal(data, &m); err != nil { | |
| return err | |
| } | |
| typeName := m["type"].(string) | |
| var value Something | |
| if ty, found := somethingTypes[typeName]; found { | |
| value = reflect.New(ty).Interface().(Something) | |
| } | |
| valueBytes, err := json.Marshal(m["value"]) | |
| if err != nil { | |
| return err | |
| } | |
| err = json.Unmarshal(valueBytes, &value) | |
| if err != nil { | |
| return err | |
| } | |
| c.Value = value | |
| return nil | |
| } | |
| var _ json.Unmarshaler = (*Container)(nil) | |
| func panicIfErr(err error) { | |
| if err != nil { | |
| panic(err.Error()) | |
| } | |
| } | |
| func main() { | |
| testUnmarshalling(`{"type":"something1","value":{"Aaa": "a"}}`) | |
| testUnmarshalling(`{"type":"something2","value":{"Ccc": "a"}}`) | |
| } | |
| func testUnmarshalling(jsonStr string) { | |
| var container Container | |
| err := json.Unmarshal([]byte(jsonStr), &container) | |
| panicIfErr(err) | |
| fmt.Printf("container=%+v\n", container) | |
| fmt.Printf("value=%#v\n", container.Value) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment