go-ini
저장소: go-ini/ini: Package ini provides INI file read and write functionality in Go (github.com)
문서: go-ini/ini: 超赞的 Go 语言 INI 文件操作 (unknwon.cn)
소개
Go 언어로 작성된 ini 파일 파싱 라이브러리로 직렬화 및 역직렬화를 지원하며 구조체 매핑, 주석 작업을 지원합니다.
설치
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 = truego 파일
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
...