summaryrefslogtreecommitdiff
path: root/louloulibs/utils/time.cpp
blob: 305b2adc5f313e9d30b5086df6d7f90a3a308338 (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(&timestamp)) != 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;
}

}