golang 读取配置文件

前端之家收集整理的这篇文章主要介绍了golang 读取配置文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

unix 风格的配置文件


[default]
path= c:/go
version = 1.44
 
[test]
num =	666
something  = wrong  #注释1
#fdfdfd = fdfdfd    注释整行
refer= refer       //注释3


config.go

package conf

import (
	"bufio"
	"io"
	"os"
	"strings"
)

const middle = "========="

type Config struct {
	Mymap  map[string]string
	strcet string
}

func (c *Config) InitConfig(path string) {
	c.Mymap = make(map[string]string)

	f,err := os.Open(path)
	if err != nil {
		panic(err)
	}
	defer f.Close()

	r := bufio.NewReader(f)
	for {
		b,_,err := r.ReadLine()
		if err != nil {
			if err == io.EOF {
				break
			}
			panic(err)
		}

		s := strings.TrimSpace(string(b))
		//fmt.Println(s)
		if strings.Index(s,"#") == 0 {
			continue
		}

		n1 := strings.Index(s,"[")
		n2 := strings.LastIndex(s,"]")
		if n1 > -1 && n2 > -1 && n2 > n1+1 {
			c.strcet = strings.TrimSpace(s[n1+1 : n2])
			continue
		}

		if len(c.strcet) == 0 {
			continue
		}
		index := strings.Index(s,"=")
		if index < 0 {
			continue
		}

		frist := strings.TrimSpace(s[:index])
		if len(frist) == 0 {
			continue
		}
		second := strings.TrimSpace(s[index+1:])

		pos := strings.Index(second,"\t#")
		if pos > -1 {
			second = second[0:pos]
		}

		pos = strings.Index(second," #")
		if pos > -1 {
			second = second[0:pos]
		}

		pos = strings.Index(second,"\t//")
		if pos > -1 {
			second = second[0:pos]
		}

		pos = strings.Index(second," //")
		if pos > -1 {
			second = second[0:pos]
		}

		if len(second) == 0 {
			continue
		}

		key := c.strcet + middle + frist
		c.Mymap[key] = strings.TrimSpace(second)
	}
}

func (c Config) Read(node,key string) string {
	key = node + middle + key
	v,found := c.Mymap[key]
	if !found {
		return ""
	}
	return v
}

main.go


package main

import (
	"conf"
	"fmt"
)

func main() {
	myConfig := new(cf.Config)
	myConfig.InitConfig("c:/config.txt")
	fmt.Println(myConfig.Read("default","path"))
	fmt.Printf("%v",myConfig.Mymap)
}



result:
	c:/go
	map[default=========path:c:/go default=========version:1.44 test=========num:666 test=========something:wrong test=========refer:refer]
原文链接:https://www.f2er.com/go/190865.html

猜你在找的Go相关文章