Go學習筆記一:解析toml配置文件

本文系做者原創,轉載請註明出處http://www.javashuo.com/article/p-gqbwblpj-en.html 。html

一些mysql或者日誌路徑的信息須要放在配置文件中。那麼本博文主要介紹go對toml文件的解析。mysql

使用了  "github.com/BurntSushi/toml" 標準庫。git

1 toml文件的寫法github

[Mysql]
UserName = "sonofelice"
Password = "123456"
IpHost = "127.0.0.1:8902"
DbName = "sonofelice_db"

 

2 對toml文件的解析sql

爲了要解析上面的toml文件,咱們須要定義與之對應的struct:函數

type Mysql struct {
    UserName string
    Password string
    IpHost   string
    DbName   string
}

 

那麼其實能夠寫這樣一個conf.go學習

package conf

import (
    "nlu/log"
    "github.com/BurntSushi/toml"
    "flag"
)

var (
    confPath string
    // Conf global
    Conf = &Config{}
)

// Config .
type Config struct {
    Mysql *Mysql
}

type Mysql struct {
    UserName string
    Password string
    IpHost   string
    DbName   string
}


func init() {
    flag.StringVar(&confPath, "conf", "./conf/conf.toml", "-conf path")
}

// Init init conf
func Init() (err error) {
    _, err = toml.DecodeFile(confPath, &Conf)
    return
}

經過簡單的一行代碼toml.DecodeFile(confPath, &Conf),就把解析好的struct存到了&Conf裏面spa

那麼咱們在main裏面調用一下init:日誌

func main() {
    flag.Parse()
    if err := conf.Init(); err != nil {
        log.Error("conf.Init() err:%+v", err)
    }
    mysqlConf := conf.Conf.Mysql
    fmt.Println(mysqlConf.DbName)
}

而後運行一下main函數,就能夠看到控制檯中打印出了咱們在conf.toml中配置的code

sonofelice_db
相關文章
相關標籤/搜索