dongye9071 2019-02-19 11:23 采纳率: 0%
浏览 545
已采纳

当yaml已初始化默认值时,如何在Golang中测试默认值?

I'm writing a daemon's configuration handler and utilizing the yaml package to do so. Importing my file works like this:

package daemon

import (
    "ioutil"
    "log"

    "gopkg.in/yaml.v2"
)

type daemonConfig struct {
    BindAddress string `yaml:"bind_address"`
    BindPort    int    `yaml:"bind_port"`
    VerifySSL   bool   `yaml:"verify_ssl"`
}

I easily unmarshall data from my YAML files like so:

func (config *daemonConfig) getConf() *daemonConfig {
    yamlFile, err := ioutil.ReadFile("config.yaml")
    if err != nil {
        log.Fatal("Unable to open config.yaml:", err)
    }
    err = yaml.Unmarshal(yamlFile, config)
    if err != nil {
        log.Fatal("Failed to unmarshall config.yaml:", err)
    }
    config, err = setDefaults(config)

    return config
}

My question is regarding my custom setDefaults function. If a field isn't provided, like bind_port or bind_address, I'd like to just set them to defaults:

func setDefaults(config *daemonConfig) (*daemonConfig, error) {
    if len(config.BindAddress) <= 0 {
        config.BindAddress = "0.0.0.0"
    }
    if config.BindPort == 0 {
        config.BindPort = 9999
    }

    return config, nil
}

You'll note I'm not setting a default to verify_ssl; when yaml unmarshalls this and fails to find the field, it initializes the bool as false, which is precisely the opposite of what I want the default behavior to be. I'd prefer the user to explicitly set verification of SSL to be off, instead of having it off by default if not specified. If I have a totally empty config.yaml, and expect the default values to be set, it will always put verify_ssl as false (this log is from elsewhere in the application):

2019/02/19 03:56:08 Currently loaded config: {0.0.0.0 9999 false}

How would I go about, if this field is not present in the YAML fields that are being unmarshalled, to checking if the line exists? I could just read the file manually and check for that parameter first, but I was wondering if there's a more elegant way with what I have; otherwise, I'll just use ioutil and string checking to do it. Thanks!

  • 写回答

1条回答 默认 最新

  • duanfan9859 2019-02-19 11:50
    关注

    Thanks to Thomas and mh-cbon I found out I can just use a pointer for this. If I change my VerifySSL field to utilize a pointer and add omitempty:

    type daemonConfig struct {
        BindAddress string `yaml:"bind_address"`
        BindPort    int    `yaml:"bind_port"`
        VerifySSL   *bool  `yaml:"verify_ssl",omitempty`
    }
    

    I can simply dereference the field in the struct to get the true value of what yaml unmarshalled. Setting defaults is as easy as:

    func setDefaults(config *daemonConfig) (*daemonConfig, error) {
        if len(config.BindAddress) <= 0 {
            config.BindAddress = "0.0.0.0"
        }
        if config.BindPort == 0 {
            config.BindPort = 9999
        }
        if config.VerifySSL == nil {
            ssl := true
            config.VerifySSL = &ssl
        }
    
        return config, nil
    }
    

    If it's loaded in the file, config.VerifySSL will contain the address of the bool, so it won't be nil, and if it's truly not in the file at all then the field is simply nil and I can set it or get it via a pointer.

    EDIT: Just a note, if your VerifySSL pointer is nil, you can't assign it like this:

    *config.VerifySSL = true
    

    That's dereferencing a nil pointer. I've updated the solution to include something more manageable.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 关于大棚监测的pcb板设计
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用