blob: bc8b3f8cc2610ef021670b0b30da3ed342256a38 (
plain)
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 <utils/time.hpp>
#include <time.h>
namespace utils
{
std::string to_string(const std::time_t& timestamp)
{
constexpr std::size_t stamp_size = 21;
char date_buf[stamp_size];
if (std::strftime(date_buf, stamp_size, "%FT%TZ", std::gmtime(×tamp)) != stamp_size - 1)
return "";
return {std::begin(date_buf), std::end(date_buf) - 1};
}
std::time_t parse_datetime(const std::string& stamp)
{
struct tm tm;
if (!::strptime(stamp.data(), "%FT%T%Z", &tm))
return -1;
auto res = ::timegm(&tm);
return res;
}
}
|