douxigai8757 2019-05-06 00:45
浏览 96
已采纳

如何在运行时与从配置文件读取的值一起初始化全局变量

I'm trying to initialize a global variable with an interval value which is read from a configuration file at run time.

The configuration file contains set of key-value pairs.As part of init() function, Using yaml parser the values are parsed and stored in a structure.

  1. package main
  2. import (
  3. "fmt"
  4. "io/ioutil"
  5. "time"
  6. yaml "gopkg.in/yaml.v2"
  7. )
  8. func init(){
  9. PopulateConfig("./test.config")
  10. }
  11. var Conf Config
  12. var Interval = time.Second * Conf.Interval
  13. type Config struct {
  14. Port string `yaml:"port"`
  15. Interval time.Duration `yaml:"interval"`
  16. }
  17. func PopulateConfig(filePath string) {
  18. data, err := ioutil.ReadFile(filePath)
  19. err = yaml.Unmarshal(data, &Conf)
  20. if err != nil {
  21. }
  22. fmt.Println("CONFIG => ", Conf)
  23. }
  24. func main() {
  25. // start timer
  26. fmt.Println("Inside main, Interval = ", Interval)
  27. purgeTicker := time.NewTicker(time.Second * 10)
  28. go Handle(purgeTicker)
  29. time.Sleep(60 * time.Second)
  30. }
  31. func Handle(ticker *time.Ticker) {
  32. fmt.Println("Inside Handle, Interval = ", Interval)
  33. for t := range ticker.C {
  34. fmt.Println("Calling purge timer at ", t)
  35. //Additional processing
  36. }
  37. }
  38. ===========================
  39. config file:
  40. # cat test.config
  41. port: 1234
  42. interval: 15

The config values are populated correctly within the structure. Expected result is to set the global variable with the value read from file. But the actual output is 0. Actual Result:

  1. # ./main
  2. CONFIG => {1234 15ns}
  3. Inside main, Interval = 0s
  4. Inside Handle, Interval = 0s

展开全部

  • 写回答

1条回答 默认 最新

  • dskvfdxgdo2422392 2019-05-06 06:12
    关注

    You already have done the hard part: a global Conf object where the YAML config is unmarshaled to. So simply reference it directly:

    // var Interval = time.Second * Conf.Interval // <- don't use this
    
    // use Conf.Interval directly
    
    func init() {
            PopulateConfig("./test.config")
            Conf.Interval = Conf.Interval * time.Second // convert to seconds here
    }
    
    func main() {
        fmt.Println("Inside main, Interval = ", Conf.Interval)
    }
    
    func Handle(ticker *time.Ticker) {
        fmt.Println("Inside Handle, Interval = ", Conf.Interval)
    }
    

    https://play.golang.org/p/FiheCtV2gtv

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

报告相同问题?

悬赏问题

  • ¥100 有能够实现人机模式的c/c++代码,有图片背景等,能够直接进行游戏
  • ¥20 校园网认证openwrt插件
  • ¥15 以AT89C51单片机芯片为核心来制作一个简易计算器,外部由4*4矩阵键盘和一个LCD1602字符型液晶显示屏构成,内部由一块AT89C51单片机构成,通过软件编程可实现简单加减乘除。
  • ¥15 某东JD算法逆向算法
  • ¥15 求GCMS辅导数据分析
  • ¥30 SD中的一段Unet下采样代码其中的resnet是谁跟谁进行残差连接
  • ¥15 Unet采样阶段的res_samples问题
  • ¥60 Python+pygame坦克大战游戏开发实验报告
  • ¥15 R语言regionNames()和demomap()无法选中中文地区的问题
  • ¥15 Open GL ES 的使用
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部