This reverts commit 10a72bfd0f. These
commit is incompatible with older CentOS 7 libstdc++.
This commit is contained in:
@ -23,6 +23,7 @@
|
||||
#include <cerrno>
|
||||
#include <climits>
|
||||
#include <iomanip>
|
||||
|
||||
#include <sstream>
|
||||
|
||||
#include "s3fs_logger.h"
|
||||
@ -46,6 +47,24 @@ std::string str(const struct timespec value)
|
||||
return s.str();
|
||||
}
|
||||
|
||||
#ifdef __MSYS__
|
||||
/*
|
||||
* Polyfill for strptime function
|
||||
*
|
||||
* This source code is from https://gist.github.com/jeremyfromearth/5694aa3a66714254752179ecf3c95582 .
|
||||
*/
|
||||
char* strptime(const char* s, const char* f, struct tm* tm)
|
||||
{
|
||||
std::istringstream input(s);
|
||||
input.imbue(std::locale(setlocale(LC_ALL, nullptr)));
|
||||
input >> std::get_time(tm, f);
|
||||
if (input.fail()) {
|
||||
return nullptr;
|
||||
}
|
||||
return (char*)(s + input.tellg());
|
||||
}
|
||||
#endif
|
||||
|
||||
bool s3fs_strtoofft(off_t* value, const char* str, int base)
|
||||
{
|
||||
if(value == nullptr || str == nullptr){
|
||||
@ -240,11 +259,11 @@ bool get_keyword_value(const std::string& target, const char* keyword, std::stri
|
||||
//
|
||||
std::string get_date_rfc850()
|
||||
{
|
||||
std::ostringstream ss;
|
||||
char buf[100];
|
||||
time_t t = time(nullptr);
|
||||
struct tm res;
|
||||
ss << std::put_time(gmtime_r(&t, &res), "%a, %d %b %Y %H:%M:%S GMT");
|
||||
return ss.str();
|
||||
strftime(buf, sizeof(buf), "%a, %d %b %Y %H:%M:%S GMT", gmtime_r(&t, &res));
|
||||
return buf;
|
||||
}
|
||||
|
||||
void get_date_sigv3(std::string& date, std::string& date8601)
|
||||
@ -256,18 +275,18 @@ void get_date_sigv3(std::string& date, std::string& date8601)
|
||||
|
||||
std::string get_date_string(time_t tm)
|
||||
{
|
||||
std::ostringstream ss;
|
||||
char buf[100];
|
||||
struct tm res;
|
||||
ss << std::put_time(gmtime_r(&tm, &res), "%Y%m%d");
|
||||
return ss.str();
|
||||
strftime(buf, sizeof(buf), "%Y%m%d", gmtime_r(&tm, &res));
|
||||
return buf;
|
||||
}
|
||||
|
||||
std::string get_date_iso8601(time_t tm)
|
||||
{
|
||||
std::ostringstream s;
|
||||
char buf[100];
|
||||
struct tm res;
|
||||
s << std::put_time(gmtime_r(&tm, &res), "%Y%m%dT%H%M%SZ");
|
||||
return s.str();
|
||||
strftime(buf, sizeof(buf), "%Y%m%dT%H%M%SZ", gmtime_r(&tm, &res));
|
||||
return buf;
|
||||
}
|
||||
|
||||
bool get_unixtime_from_iso8601(const char* pdate, time_t& unixtime)
|
||||
@ -277,9 +296,8 @@ bool get_unixtime_from_iso8601(const char* pdate, time_t& unixtime)
|
||||
}
|
||||
|
||||
struct tm tm;
|
||||
std::istringstream ss(pdate);
|
||||
ss >> std::get_time(&tm, "%Y-%m-%dT%T");
|
||||
if(ss.fail()){
|
||||
const char* prest = strptime(pdate, "%Y-%m-%dT%T", &tm);
|
||||
if(prest == pdate){
|
||||
// wrong format
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user