boost::posix_time::ptime parseDate(const std::string& format, const std::string& localDate)
{
std::istringstream is(localDate);
is.imbue(std::locale(is.getloc(), new boost::local_time::local_time_input_facet(format.c_str())));
boost::posix_time::ptime pt;
is >> pt;
if (pt == boost::posix_time::ptime())
{
throw std::runtime_error("Parse error");
}
return pt;
}
此函数应采用日期和格式字符串return boost::posix_time::ptime
。
例如:2012:06:14 02:50:58
和%Y:%m:%d %H:%M:%S
。
但是,如果我在多线程程序中调用它,有时会抛出异常,尽管format
和localDate
是正确且可解析的(我对每次调用都使用相同的日期)。
我发现了一些关于std::stringstream
/ std::locale
线程问题但没有更新的内容(我使用的是gcc 4.6.3 64位)。
Here有人遇到同样的问题:
使用Valgrind / drd测试过去几天,我发现我的代码中有很多部分会导致问题。例如,当调用一些提升日期时间转换函数时,我点击std :: locale(),这不是线程安全的。
更新了没有问题的代码:
boost::posix_time::ptime parseDate(const std::string& format, const std::string& localDate)
{
std::istringstream is(localDate);
auto* facet = new boost::local_time::local_time_input_facet(format.c_str());
{
boost::unique_lock<boost::mutex> lock(globalLocaleMutex);
is.imbue(std::locale(is.getloc(), facet));
}
boost::posix_time::ptime pt;
is >> pt;
if (pt == boost::posix_time::ptime())
{
throw std::runtime_error("Parse error");
}
return pt;
}
但仍然:为什么?
答案 0 :(得分:1)
我看到有一个对local_time的调用。我不确定底层代码是否调用localtime或localtime_r。如果它调用localtime,那么它不是线程安全的。我相信localtime在返回结果时会使用静态变量。