/**
* Copyright (c) 2016 by Contributors
*/
#ifndef PS_INTERNAL_ENV_H_
#define PS_INTERNAL_ENV_H_
#include <cstdlib>
#include <unordered_map>
#include <memory>
#include <string>
namespace ps {
/**
* \brief Environment configurations
*/
class Environment {
public:
/** 返回单例 */
/**
* \brief return the singleton instance
*/
static inline Environment* Get() {
return _GetSharedRef(nullptr).get();
}
/** 返回单例共享引用 */
/**
* \brief return a shared ptr of the singleton instance
*/
static inline std::shared_ptr<Environment> _GetSharedRef() {
return _GetSharedRef(nullptr);
}
/** 一次创建单例类 */
/**
* \brief initialize the environment
* \param envs key-value environment variables
* \return the initialized singleton instance
*/
static inline Environment* Init(const std::unordered_map<std::string, std::string>& envs) {
Environment* env = _GetSharedRef(&envs).get();
env->kvs = envs;
return env;
}
/** 检索环境变量值 */
/**
* \brief find the env value.
* User-defined env vars first. If not found, check system's environment
* \param k the environment key
* \return the related environment value, nullptr when not found
*/
const char* find(const char* k) {
std::string key(k);
return kvs.find(key) == kvs.end() ? getenv(k) : kvs[key].c_str();
}
private:
/** 禁止外部创建和隐式类型转换 */
explicit Environment(const std::unordered_map<std::string, std::string>* envs) {
if (envs) kvs = *envs;
}
/** 创建单例或获取单例共享引用 */
static std::shared_ptr<Environment> _GetSharedRef(
const std::unordered_map<std::string, std::string>* envs) {
static std::shared_ptr<Environment> inst_ptr(new Environment(envs));
return inst_ptr;
}
std::unordered_map<std::string, std::string> kvs;
};
} // namespace ps
#endif // PS_INTERNAL_ENV_H_
ps-lite源码分析: include/ps/internal/env.h
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- /*** Copyright (c) 2015 by Contributors*/#ifndef PS_INTE...
- /*** Copyright (c) 2015 by Contributors*/#ifndef PS_BASE...
- 文章也同时在个人博客 http://kimihe.com/[http://kimihe.com/2018/06/0...