gpt4 book ai didi

c++ - Boost locale - 创建临时文件时需要取消设置 LANG

转载 作者:行者123 更新时间:2023-12-01 13:47:53 28 4
gpt4 key购买 nike

我正在使用 CMake 构建一个 C++ 项目,并且最近使用 Boost C++ 库添加了临时文件创建。这就是我在 CMake 文件中包含 Boost 的方式:

# get boost
SET(Boost_USE_STATIC_LIBS ON)
SET(Boost_USE_MULTITHREADED ON)
SET(Boost_USE_STATIC_RUNTIME OFF)
FIND_PACKAGE(Boost REQUIRED COMPONENTS system filesystem)
INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIR})
TARGET_LINK_LIBRARIES(${exe_name} ${Boost_LIBRARIES})
ADD_LIBRARY(${lib_name} ${common_SOURCES})
TARGET_LINK_LIBRARIES(${lib_name} ${CMAKE_DL_LIBS} ${Boost_LIBRARIES})
TARGET_LINK_LIBRARIES(${exe_name} ${lib_name})
这就是我在 C++ 中的称呼:
#define BOOST_NO_CXX11_SCOPED_ENUMS
#include <boost/filesystem.hpp>
#undef BOOST_NO_CXX11_SCOPED_ENUMS
...
input_file *Utils::get_input_file_from_string(const std::string &inp) {
std::string real_inp(inp);

boost::filesystem::path temp_path = boost::filesystem::unique_path();
const std::string temp_pathstr = temp_path.native();

boost::filesystem::path temp_folder = boost::filesystem::temp_directory_path();
const std::string temp_folderstr = temp_folder.native();
const std::string temp_fname = temp_folderstr + "/" + temp_pathstr;

const char *temp_pathchar = temp_fname.c_str();

...

FILE *temp = fopen(temp_pathchar, "wb+");
...
input_file *ret = new input_file;
loadInput(ret, temp);

fclose(temp);

return ret;
}
当我运行程序时,出现以下错误:
terminate called after throwing an instance of 'std::runtime_error'
what(): locale::facet::_S_create_c_locale name not valid
Aborted (core dumped)
但是,通过运行 bash 命令...
unset LANG
...程序运行成功(注意 echo $LANG 返回 C.UTF-8 )
有没有办法编辑程序,这样我就不需要运行 unset LANG每次加载新的 shell 实例时都使用命令?
编辑:我知道可以在 c++ 中取消设置环境变量,但我相信 Boost 中必须有一个与语言环境相关的解决方案,以确保不会引发错误。
(PS 只是重申一下,当 unset LANG 在运行可执行文件之前被调用时,程序成功运行并具有所需的输出)

最佳答案

没有来回或访问您的机器,很难调试得很好,因为我无法在本地重现它。无论如何,我都会尝试一下。我的猜测是由于 .native() 出现了语言环境问题。转换为 std::string .试试这个:

input_file *Utils::get_input_file_from_string(const std::string &inp) {
...
boost::filesystem::path temp_path = boost::filesystem::unique_path();
boost::filesystem::path temp_folder = boost::filesystem::temp_directory_path();
boost::filesystem::path temp_file_path = temp_folder / temp_path;

// try either:
std::string temp_file_path_string = temp_file_path.string();
const char *temp_pathchar = temp_file_path_string.c_str();
// or:
const char *temp_pathchar = temp_file_path.c_str();
...
}
如果您使用使用 string() 的行,这将不会在非 POSIX 平台上表现良好。由于使用了正斜杠。
另外,我会尝试对显示的代码进行更多的最小化。 unique_path() 似乎有可能正在抛出错误。例如,尝试对路径或路径字符串进行硬编码,然后查看错误是否仍然存在。

关于c++ - Boost locale - 创建临时文件时需要取消设置 LANG,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63425204/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com