如何在 Golang 配置文件中保留注释信息?

如何在 golang 配置文件中保留注释信息?

golang 中保留配置注释的解决方案

在使用 golang 配置文件时,保留注释信息至关重要。虽然 viper 库很受欢迎,但更新配置后可能会丢失注释。对于支持 json5 和 yaml 格式并能保留复杂数据的库,以下解决方案可供参考:

利用 go-yaml 库中的 yaml.node 结构,可以保留注释信息。具体实现方式如下:

package main

import (
    "log"
    "strings"

    yaml "gopkg.in/yaml.v3"
)

func main() {
    var node yaml.node

    data := []byte(strings.trimspace(`
block1:
    # the comment
    map:
        key1: a
        key2: b
    
block2:
    hi: there

`))

    log.printf("input:
 %s", data)

    if err := yaml.unmarshal(data, &node); err != nil {
        log.fatalf("unmarshalling failed %s", err)
    }

    results, err := yaml.marshal(node.content[0])
    if err != nil {
        log.fatalf("marshalling failed %s", err)
    }

    log.printf("result:
 %s", results)
}

输出结果:

2009/11/10 23:00:00 INPUT:
 block1:
    # the comment
    map:
        key1: a
        key2: b
    
block2:
    hi: there
2009/11/10 23:00:00 RESULT:
 block1:
    # the comment
    map:
        key1: a
        key2: b
block2:
    hi: there

通过使用 go-yaml 库,可以保留配置文件中的注释信息,从而避免更新配置后丢失重要注释。

以上就是如何在 Golang 配置文件中保留注释信息?的详细内容,更多请关注硕下网其它相关文章!