开始使用

我们将通过一个非常简单的例子来了解如何使用。

首先,我们需要在任意目录创建两个文件(my.inimain.go),在这里我们选择 /tmp/ini 目录。

  1. $ mkdir -p /tmp/ini
  2. $ cd /tmp/ini
  3. $ touch my.ini main.go
  4. $ tree .
  5. .
  6. ├── main.go
  7. └── my.ini
  8. 0 directories, 2 files

现在,我们编辑 my.ini 文件并输入以下内容(部分内容来自 Grafana)。

  1. # possible values : production, development
  2. app_mode = development
  3. [paths]
  4. # Path to where grafana can store temp files, sessions, and the sqlite3 db (if that is used)
  5. data = /home/git/grafana
  6. [server]
  7. # Protocol (http or https)
  8. protocol = http
  9. # The http port to use
  10. http_port = 9999
  11. # Redirect to correct domain if host header does not match domain
  12. # Prevents DNS rebinding attacks
  13. enforce_domain = true

很好,接下来我们需要编写 main.go 文件来操作刚才创建的配置文件。

  1. package main
  2. import (
  3. "fmt"
  4. "os"
  5. "gopkg.in/ini.v1"
  6. )
  7. func main() {
  8. cfg, err := ini.Load("my.ini")
  9. if err != nil {
  10. fmt.Printf("Fail to read file: %v", err)
  11. os.Exit(1)
  12. }
  13. // 典型读取操作,默认分区可以使用空字符串表示
  14. fmt.Println("App Mode:", cfg.Section("").Key("app_mode").String())
  15. fmt.Println("Data Path:", cfg.Section("paths").Key("data").String())
  16. // 我们可以做一些候选值限制的操作
  17. fmt.Println("Server Protocol:",
  18. cfg.Section("server").Key("protocol").In("http", []string{"http", "https"}))
  19. // 如果读取的值不在候选列表内,则会回退使用提供的默认值
  20. fmt.Println("Email Protocol:",
  21. cfg.Section("server").Key("protocol").In("smtp", []string{"imap", "smtp"}))
  22. // 试一试自动类型转换
  23. fmt.Printf("Port Number: (%[1]T) %[1]d\n", cfg.Section("server").Key("http_port").MustInt(9999))
  24. fmt.Printf("Enforce Domain: (%[1]T) %[1]v\n", cfg.Section("server").Key("enforce_domain").MustBool(false))
  25. // 差不多了,修改某个值然后进行保存
  26. cfg.Section("").Key("app_mode").SetValue("production")
  27. cfg.SaveTo("my.ini.local")
  28. }

运行程序,我们可以看下以下输出:

  1. $ go run main.go
  2. App Mode: development
  3. Data Path: /home/git/grafana
  4. Server Protocol: http
  5. Email Protocol: smtp
  6. Port Number: (int) 9999
  7. Enforce Domain: (bool) true
  8. $ cat my.ini.local
  9. # possible values : production, development
  10. app_mode = production
  11. [paths]
  12. # Path to where grafana can store temp files, sessions, and the sqlite3 db (if that is used)
  13. data = /home/git/grafana
  14. ...

完美!这个例子很简单,展示的也只是极其小部分的功能,想要完全掌握还需要多读多看,毕竟学无止境嘛。