2020-09-23 14:45:59 +00:00
|
|
|
package hcl
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"github.com/hashicorp/hcl"
|
|
|
|
"github.com/hashicorp/hcl/hcl/printer"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Codec implements the encoding.Encoder and encoding.Decoder interfaces for HCL encoding.
|
|
|
|
// TODO: add printer config to the codec?
|
|
|
|
type Codec struct{}
|
|
|
|
|
2021-07-15 22:26:30 +00:00
|
|
|
func (Codec) Encode(v map[string]interface{}) ([]byte, error) {
|
2020-09-23 14:45:59 +00:00
|
|
|
b, err := json.Marshal(v)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: use printer.Format? Is the trailing newline an issue?
|
|
|
|
|
|
|
|
ast, err := hcl.Parse(string(b))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var buf bytes.Buffer
|
|
|
|
|
|
|
|
err = printer.Fprint(&buf, ast.Node)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf.Bytes(), nil
|
|
|
|
}
|
|
|
|
|
2021-07-15 21:47:20 +00:00
|
|
|
func (Codec) Decode(b []byte, v map[string]interface{}) error {
|
|
|
|
return hcl.Unmarshal(b, &v)
|
2020-09-23 14:45:59 +00:00
|
|
|
}
|