Skip to content

go-ini

Репозиторий: go-ini/ini: Package ini provides INI file read and write functionality in Go (github.com)

Документация: go-ini/ini: Awesome Go INI file parsing (unknwon.cn)

Введение

Библиотека парсинга ini-файлов, написанная на Go, поддерживающая сериализацию и десериализацию, сопоставление структур и операции с комментариями.

Установка

go get gopkg.in/ini.v1

Быстрый старт

ini-файл следующий

ini
# possible values : production, development
app_mode = development

[paths]
# Path to where grafana can store temp files, sessions, and the sqlite3 db (if that is used)
data = /home/git/grafana

[server]
# Protocol (http or https)
protocol = http

# The http port  to use
http_port = 9999

# Redirect to correct domain if host header does not match domain
# Prevents DNS rebinding attacks
enforce_domain = true

go-файл

go
package main

import (
    "fmt"
    "os"

    "gopkg.in/ini.v1"
)

func main() {
    cfg, err := ini.Load("my.ini")
    if err != nil {
        fmt.Printf("Fail to read file: %v", err)
        os.Exit(1)
    }

    // Типичная операция чтения, секция по умолчанию может быть представлена пустой строкой
    fmt.Println("App Mode:", cfg.Section("").Key("app_mode").String())
    fmt.Println("Data Path:", cfg.Section("paths").Key("data").String())

    // Мы можем выполнить некоторые операции с ограничениями кандидатных значений
    fmt.Println("Server Protocol:",
        cfg.Section("server").Key("protocol").In("http", []string{"http", "https"}))
    // Если прочитанное значение не в списке кандидатных, оно вернётся к предоставленному значению по умолчанию
    fmt.Println("Email Protocol:",
        cfg.Section("server").Key("protocol").In("smtp", []string{"imap", "smtp"}))

    // Попробовать автоматическое преобразование типов
    fmt.Printf("Port Number: (%[1]T) %[1]d\n", cfg.Section("server").Key("http_port").MustInt(9999))
    fmt.Printf("Enforce Domain: (%[1]T) %[1]v\n", cfg.Section("server").Key("enforce_domain").MustBool(false))

    // Вот и всё, изменить значение и сохранить
    cfg.Section("").Key("app_mode").SetValue("production")
    cfg.SaveTo("my.ini.local")
}

Вывод

$ go run main.go
App Mode: development
Data Path: /home/git/grafana
Server Protocol: http
Email Protocol: smtp
Port Number: (int) 9999
Enforce Domain: (bool) true

$ cat my.ini.local
# possible values : production, development
app_mode = production

[paths]
# Path to where grafana can store temp files, sessions, and the sqlite3 db (if that is used)
data = /home/git/grafana
...

Golang by www.golangdev.cn edit