3 Star 12 Fork 2

Git工具集/git-lfs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
os_fetcher.go 1.65 KB
一键复制 编辑 原始数据 按行查看 历史
Kitten King 提交于 6年前 . Fix Typos
package config
import (
"os"
"sync"
)
// OsFetcher is an implementation of the Fetcher type for communicating with
// the system's environment.
//
// It is safe to use across multiple goroutines.
type OsFetcher struct {
// vmu guards read/write access to vals
vmu sync.Mutex
// vals maintains a local cache of the system's environment variables
// for fast repeat lookups of a given key.
vals map[string]*string
}
// NewOsFetcher returns a new *OsFetcher.
func NewOsFetcher() *OsFetcher {
return &OsFetcher{
vals: make(map[string]*string),
}
}
// Get returns the value associated with the given key as stored in the local
// cache, or in the operating system's environment variables.
//
// If there was a cache-hit, the value will be returned from the cache, skipping
// a check against os.Getenv. Otherwise, the value will be fetched from the
// system, stored in the cache, and then returned. If no value was present in
// the cache or in the system, an empty string will be returned.
//
// Get is safe to call across multiple goroutines.
func (o *OsFetcher) Get(key string) (val string, ok bool) {
o.vmu.Lock()
defer o.vmu.Unlock()
if i, ok := o.vals[key]; ok {
if i == nil {
return "", false
}
return *i, true
}
v, ok := os.LookupEnv(key)
if ok {
o.vals[key] = &v
} else {
o.vals[key] = nil
}
return v, ok
}
// GetAll implements the `config.Fetcher.GetAll` method by returning, at most, a
// 1-ary set containing the result of `config.OsFetcher.Get()`.
func (o *OsFetcher) GetAll(key string) []string {
if v, ok := o.Get(key); ok {
return []string{v}
}
return make([]string, 0)
}
func (o *OsFetcher) All() map[string][]string {
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/vcs-all-in-one/git-lfs.git
git@gitee.com:vcs-all-in-one/git-lfs.git
vcs-all-in-one
git-lfs
git-lfs
master

搜索帮助