teleport/lib/utils/conv.go
Ev Kontsevoy 312af8f02d Converted DynamoDB and etcd to common backend API
TODO:
- fix etcd tests
- do some manual testing of all backends
2017-01-15 16:28:18 -08:00

63 lines
1.6 KiB
Go

/*
Copyright 2015 Gravitational, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package utils
import (
"encoding/json"
"fmt"
"github.com/gravitational/trace"
)
// ObjectToStruct is converts any structure into JSON and then unmarshalls it into
// another structure.
//
// Teleport configuration uses this (strange, at first) trick to convert from one
// struct type to another, if their fields are loosely compatible via their `json` tags
//
// Example: assume you have two structs:
//
// type A struct {
// Name string `json:"name"`
// Age int `json:"age"`
// }
//
// type B struct {
// FullName string `json:"name"`
// }
//
// Now you can convert B to A:
//
// b := &B{ FullName: "Bob Dilan"}
// var a *A
// utils.ObjectToStruct(b, &a)
// fmt.Println(a.Name)
//
// > "Bob Dilan"
//
func ObjectToStruct(in interface{}, out interface{}) error {
bytes, err := json.Marshal(in)
if err != nil {
return trace.Wrap(err, fmt.Sprintf("failed to marshal: %v", in))
}
if err := json.Unmarshal([]byte(bytes), out); err != nil {
return trace.Wrap(err, fmt.Sprintf("failed to unmarshal %v into %T", in, out))
}
return nil
}