123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391 |
- // Copyright GoFrame Author(https://github.com/gogf/gf). All Rights Reserved.
- //
- // This Source Code Form is subject to the terms of the MIT License.
- // If a copy of the MIT was not distributed with this file,
- // You can obtain one at https://github.com/gogf/gf.
- // Package gcfg provides reading, caching and managing for configuration.
- package gcfg
- import (
- "bytes"
- "errors"
- "fmt"
- "github.com/gogf/gf/os/gcmd"
- "github.com/gogf/gf/text/gstr"
- "github.com/gogf/gf/os/gres"
- "github.com/gogf/gf/container/garray"
- "github.com/gogf/gf/container/gmap"
- "github.com/gogf/gf/encoding/gjson"
- "github.com/gogf/gf/os/gfile"
- "github.com/gogf/gf/os/gfsnotify"
- "github.com/gogf/gf/os/glog"
- "github.com/gogf/gf/os/gspath"
- )
- const (
- DefaultConfigFile = "config.toml" // The default configuration file name.
- cmdEnvKey = "gf.gcfg" // Configuration key for command argument or environment.
- )
- // Configuration struct.
- type Config struct {
- name string // Default configuration file name.
- paths *garray.StrArray // Searching path array.
- jsons *gmap.StrAnyMap // The pared JSON objects for configuration files.
- vc bool // Whether do violence check in value index searching. It affects the performance when set true(false in default).
- }
- var (
- supportedFileTypes = []string{"toml", "yaml", "json", "ini", "xml"}
- resourceTryFiles = []string{"", "/", "config/", "config", "/config", "/config/"}
- )
- // New returns a new configuration management object.
- // The parameter <file> specifies the default configuration file name for reading.
- func New(file ...string) *Config {
- name := DefaultConfigFile
- if len(file) > 0 {
- name = file[0]
- }
- c := &Config{
- name: name,
- paths: garray.NewStrArray(true),
- jsons: gmap.NewStrAnyMap(true),
- }
- // Customized dir path from env/cmd.
- if envPath := gcmd.GetWithEnv(fmt.Sprintf("%s.path", cmdEnvKey)).String(); envPath != "" {
- if gfile.Exists(envPath) {
- _ = c.SetPath(envPath)
- } else {
- if errorPrint() {
- glog.Errorf("Configuration directory path does not exist: %s", envPath)
- }
- }
- } else {
- // Dir path of working dir.
- _ = c.SetPath(gfile.Pwd())
- // Dir path of binary.
- if selfPath := gfile.SelfDir(); selfPath != "" && gfile.Exists(selfPath) {
- _ = c.AddPath(selfPath)
- }
- // Dir path of main package.
- if mainPath := gfile.MainPkgPath(); mainPath != "" && gfile.Exists(mainPath) {
- _ = c.AddPath(mainPath)
- }
- }
- return c
- }
- // filePath returns the absolute configuration file path for the given filename by <file>.
- func (c *Config) filePath(file ...string) (path string) {
- name := c.name
- if len(file) > 0 {
- name = file[0]
- }
- path = c.FilePath(name)
- if path == "" {
- buffer := bytes.NewBuffer(nil)
- if c.paths.Len() > 0 {
- buffer.WriteString(fmt.Sprintf("[gcfg] cannot find config file \"%s\" in following paths:", name))
- c.paths.RLockFunc(func(array []string) {
- index := 1
- for _, v := range array {
- v = gstr.TrimRight(v, `\/`)
- buffer.WriteString(fmt.Sprintf("\n%d. %s", index, v))
- index++
- buffer.WriteString(fmt.Sprintf("\n%d. %s", index, v+gfile.Separator+"config"))
- index++
- }
- })
- } else {
- buffer.WriteString(fmt.Sprintf("[gcfg] cannot find config file \"%s\" with no path set/add", name))
- }
- if errorPrint() {
- glog.Error(buffer.String())
- }
- }
- return path
- }
- // SetPath sets the configuration directory path for file search.
- // The parameter <path> can be absolute or relative path,
- // but absolute path is strongly recommended.
- func (c *Config) SetPath(path string) error {
- var (
- isDir = false
- realPath = ""
- )
- if file := gres.Get(path); file != nil {
- realPath = path
- isDir = file.FileInfo().IsDir()
- } else {
- // Absolute path.
- realPath = gfile.RealPath(path)
- if realPath == "" {
- // Relative path.
- c.paths.RLockFunc(func(array []string) {
- for _, v := range array {
- if path, _ := gspath.Search(v, path); path != "" {
- realPath = path
- break
- }
- }
- })
- }
- if realPath != "" {
- isDir = gfile.IsDir(realPath)
- }
- }
- // Path not exist.
- if realPath == "" {
- buffer := bytes.NewBuffer(nil)
- if c.paths.Len() > 0 {
- buffer.WriteString(fmt.Sprintf("[gcfg] SetPath failed: cannot find directory \"%s\" in following paths:", path))
- c.paths.RLockFunc(func(array []string) {
- for k, v := range array {
- buffer.WriteString(fmt.Sprintf("\n%d. %s", k+1, v))
- }
- })
- } else {
- buffer.WriteString(fmt.Sprintf(`[gcfg] SetPath failed: path "%s" does not exist`, path))
- }
- err := errors.New(buffer.String())
- if errorPrint() {
- glog.Error(err)
- }
- return err
- }
- // Should be a directory.
- if !isDir {
- err := fmt.Errorf(`[gcfg] SetPath failed: path "%s" should be directory type`, path)
- if errorPrint() {
- glog.Error(err)
- }
- return err
- }
- // Repeated path check.
- if c.paths.Search(realPath) != -1 {
- return nil
- }
- c.jsons.Clear()
- c.paths.Clear()
- c.paths.Append(realPath)
- return nil
- }
- // SetViolenceCheck sets whether to perform hierarchical conflict checking.
- // This feature needs to be enabled when there is a level symbol in the key name.
- // It is off in default.
- //
- // Note that, turning on this feature is quite expensive, and it is not recommended
- // to allow separators in the key names. It is best to avoid this on the application side.
- func (c *Config) SetViolenceCheck(check bool) {
- c.vc = check
- c.Clear()
- }
- // AddPath adds a absolute or relative path to the search paths.
- func (c *Config) AddPath(path string) error {
- var (
- isDir = false
- realPath = ""
- )
- // It firstly checks the resource manager,
- // and then checks the filesystem for the path.
- if file := gres.Get(path); file != nil {
- realPath = path
- isDir = file.FileInfo().IsDir()
- } else {
- // Absolute path.
- realPath = gfile.RealPath(path)
- if realPath == "" {
- // Relative path.
- c.paths.RLockFunc(func(array []string) {
- for _, v := range array {
- if path, _ := gspath.Search(v, path); path != "" {
- realPath = path
- break
- }
- }
- })
- }
- if realPath != "" {
- isDir = gfile.IsDir(realPath)
- }
- }
- if realPath == "" {
- buffer := bytes.NewBuffer(nil)
- if c.paths.Len() > 0 {
- buffer.WriteString(fmt.Sprintf("[gcfg] AddPath failed: cannot find directory \"%s\" in following paths:", path))
- c.paths.RLockFunc(func(array []string) {
- for k, v := range array {
- buffer.WriteString(fmt.Sprintf("\n%d. %s", k+1, v))
- }
- })
- } else {
- buffer.WriteString(fmt.Sprintf(`[gcfg] AddPath failed: path "%s" does not exist`, path))
- }
- err := errors.New(buffer.String())
- if errorPrint() {
- glog.Error(err)
- }
- return err
- }
- if !isDir {
- err := fmt.Errorf(`[gcfg] AddPath failed: path "%s" should be directory type`, path)
- if errorPrint() {
- glog.Error(err)
- }
- return err
- }
- // Repeated path check.
- if c.paths.Search(realPath) != -1 {
- return nil
- }
- c.paths.Append(realPath)
- //glog.Debug("[gcfg] AddPath:", realPath)
- return nil
- }
- // GetFilePath returns the absolute path of the specified configuration file.
- // If <file> is not passed, it returns the configuration file path of the default name.
- // If the specified configuration file does not exist,
- // an empty string is returned.
- func (c *Config) FilePath(file ...string) (path string) {
- name := c.name
- if len(file) > 0 {
- name = file[0]
- }
- // Searching resource manager.
- if !gres.IsEmpty() {
- for _, v := range resourceTryFiles {
- if file := gres.Get(v + name); file != nil {
- path = file.Name()
- return
- }
- }
- c.paths.RLockFunc(func(array []string) {
- for _, prefix := range array {
- for _, v := range resourceTryFiles {
- if file := gres.Get(prefix + v + name); file != nil {
- path = file.Name()
- return
- }
- }
- }
- })
- }
- // Searching the file system.
- c.paths.RLockFunc(func(array []string) {
- for _, prefix := range array {
- prefix = gstr.TrimRight(prefix, `\/`)
- if path, _ = gspath.Search(prefix, name); path != "" {
- return
- }
- if path, _ = gspath.Search(prefix+gfile.Separator+"config", name); path != "" {
- return
- }
- }
- })
- return
- }
- // SetFileName sets the default configuration file name.
- func (c *Config) SetFileName(name string) *Config {
- c.name = name
- return c
- }
- // GetFileName returns the default configuration file name.
- func (c *Config) GetFileName() string {
- return c.name
- }
- // Available checks and returns whether configuration of given <file> is available.
- func (c *Config) Available(file ...string) bool {
- var name string
- if len(file) > 0 && file[0] != "" {
- name = file[0]
- } else {
- name = c.name
- }
- if c.FilePath(name) != "" {
- return true
- }
- if GetContent(name) != "" {
- return true
- }
- return false
- }
- // getJson returns a *gjson.Json object for the specified <file> content.
- // It would print error if file reading fails. It return nil if any error occurs.
- func (c *Config) getJson(file ...string) *gjson.Json {
- var name string
- if len(file) > 0 && file[0] != "" {
- name = file[0]
- } else {
- name = c.name
- }
- r := c.jsons.GetOrSetFuncLock(name, func() interface{} {
- var (
- content = ""
- filePath = ""
- )
- // The configured content can be any kind of data type different from its file type.
- isFromConfigContent := true
- if content = GetContent(name); content == "" {
- isFromConfigContent = false
- filePath = c.filePath(name)
- if filePath == "" {
- return nil
- }
- if file := gres.Get(filePath); file != nil {
- content = string(file.Content())
- } else {
- content = gfile.GetContents(filePath)
- }
- }
- // Note that the underlying configuration json object operations are concurrent safe.
- var (
- j *gjson.Json
- err error
- )
- dataType := gfile.ExtName(name)
- if gjson.IsValidDataType(dataType) && !isFromConfigContent {
- j, err = gjson.LoadContentType(dataType, content, true)
- } else {
- j, err = gjson.LoadContent(content, true)
- }
- if err == nil {
- j.SetViolenceCheck(c.vc)
- // Add monitor for this configuration file,
- // any changes of this file will refresh its cache in Config object.
- if filePath != "" && !gres.Contains(filePath) {
- _, err = gfsnotify.Add(filePath, func(event *gfsnotify.Event) {
- c.jsons.Remove(name)
- })
- if err != nil && errorPrint() {
- glog.Error(err)
- }
- }
- return j
- } else {
- if errorPrint() {
- if filePath != "" {
- glog.Criticalf(`[gcfg] Load config file "%s" failed: %s`, filePath, err.Error())
- } else {
- glog.Criticalf(`[gcfg] Load configuration failed: %s`, err.Error())
- }
- }
- }
- return nil
- })
- if r != nil {
- return r.(*gjson.Json)
- }
- return nil
- }
|