Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

1. 关键词

C++ 系统调用 环境变量 getenv 跨平台

2. sysutil.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <cstdint>
#include <string>

namespace cutl
{
/**
* @brief Get an environment variable.
*
* @param name the name of the environment variable.
* @param default_value the default value if the variable is not found.
* @return std::string the value of the environment variable.
*/
std::string getenv(const std::string &name, const std::string &default_value);
} // namespace cutl

3. sysutil.cpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

#include <map>
#include <iostream>
#include <strutil.h>
#include <cstdlib>
#include "sysutil.h"
#include "inner/logger.h"
#include "inner/system_util.h"
#include "inner/filesystem.h"

namespace cutl
{
std::string getenv(const std::string &name, const std::string &default_value)
{
const char *text = std::getenv(name.c_str());
if (text == nullptr)
{
CUTL_ERROR("variable [" + name + "] not set, fallback to " + default_value);
return default_value;
}

return std::string(text);
}
} // namespace cutl

4. 测试代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "common.hpp"
#include "sysutil.h"

void TestGetEnv()
{
PrintSubTitle("TestGetEnv");

auto result = cutl::getenv("PATH", "not found");
std::cout << "getenv for PATH, result:" << std::endl
<< result << std::endl;

// for Windows testing
std::cout << "USERPROFILE: " << cutl::getenv("USERPROFILE", "not found") << std::endl;
std::cout << "PROCESSOR_ARCHITECTURE: " << cutl::getenv("PROCESSOR_ARCHITECTURE", "not found") << std::endl;
// FOR UNIX/LINUX/MAC testing
std::cout << "HOME: " << cutl::getenv("HOME", "not found") << std::endl;
}

5. 运行结果

1
2
3
4
5
6
7
8
---------------------------------------------TestGetEnv---------------------------------------------
getenv for PATH, result:
/usr/local/bin:/usr/local/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/usr/local/go/bin
USERPROFILE: [2024-06-21 21:32:28.863][E]]0x7ff85b8d5fc0](cutl) [sysutil.cpp:208:getenv] variable [USERPROFILE] not set, fallback to not found
not found
PROCESSOR_ARCHITECTURE: [2024-06-21 21:32:28.863][E]]0x7ff85b8d5fc0](cutl) [sysutil.cpp:208:getenv] variable [PROCESSOR_ARCHITECTURE] not set, fallback to not found
not found
HOME: /Users/spencer

6. 源码地址

更多详细代码,请查看本人写的C++ 通用工具库: common_util, 本项目已开源,代码简洁,且有详细的文档和Demo。

推荐阅读
C++数据格式化6 - uint转换成二六进制字符串 C++数据格式化6 - uint转换成二六进制字符串 C++系统相关操作4 - 获取CPU(指令集)架构类型 C++系统相关操作4 - 获取CPU(指令集)架构类型 C++系统相关操作8 - 获取程序的工作路径&获取用户的Home目录 C++系统相关操作8 - 获取程序的工作路径&获取用户的Home目录

评论