gf/g/encoding/gtoml/gtoml.go

42 lines
1001 B
Go

// Copyright 2017 gf Author(https://gitee.com/johng/gf). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// TOML
package gtoml
import (
"bytes"
"encoding/json"
"github.com/BurntSushi/toml"
)
func Encode(v interface{}) ([]byte, error) {
buffer := bytes.NewBuffer(nil)
if err := toml.NewEncoder(buffer).Encode(v); err != nil {
return nil, err
}
return buffer.Bytes(), nil
}
func Decode(v []byte) (interface{}, error) {
var result interface{}
if err := toml.Unmarshal(v, &result); err != nil {
return nil, err
}
return result, nil
}
func DecodeTo(v []byte, result interface{}) error {
return toml.Unmarshal(v, result)
}
func ToJson(v []byte) ([]byte, error) {
if r, err := Decode(v); err != nil {
return nil, err
} else {
return json.Marshal(r)
}
}