12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // Copyright GoFrame Author(https://goframe.org). 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://github.com/gogf/gf.
- // Package gtoml provides accessing and converting for TOML content.
- package gtoml
- import (
- "bytes"
- "github.com/gogf/gf/internal/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)
- }
- }
|