Как конвертировать boost local_date_time в time_t

Я имею:

time_t dataFromTodayByAddingYearsMonthsDays(int years, int months, int days)
{
using namespace boost::local_time;

local_date_time local = local_sec_clock::local_time(time_zone_ptr());
local += boost::gregorian::years(years);
local += boost::gregorian::months(months);
local += boost::gregorian::days(days);

return ???;
}

Как я могу преобразовать это повышение local_date_time зверь для time_t?

2

Решение

Вот говядина ответа:

time_t to_time_t(boost::posix_time::ptime const& pt) //! assumes UTC
{
return (pt - boost::posix_time::from_time_t(0)).total_seconds();
}

Я бы записал вычисление даты более кратко, пока вы на нем:

int main()
{
using namespace boost::local_time;

auto now  = local_sec_clock::local_time(time_zone_ptr()),
then = now + ymd_duration { 1, 3, -4 };

std::cout << now  << ", " << to_time_t(now.utc_time())  << "\n";
std::cout << then << ", " << to_time_t(then.utc_time()) << "\n";
}

Видеть это Жить на Колиру, печать

2014-May-12 21:50:06 UTC, 1399931406
2015-Aug-08 21:50:06 UTC, 1439070606

Full Code:

#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/date_time/local_time/local_time.hpp>
#include <boost/date_time/local_time/local_time_io.hpp>

struct ymd_duration { int years, months, day; };

template <typename T>
T operator+(T const& pt, ymd_duration delta)
{
using namespace boost::gregorian;
return pt + years(delta.years) + months(delta.months) + days(delta.day);
}

time_t to_time_t(boost::posix_time::ptime const& pt) //! assumes UTC
{
return (pt - boost::posix_time::from_time_t(0)).total_seconds();
}

int main()
{
using namespace boost::local_time;

auto now  = local_sec_clock::local_time(time_zone_ptr()),
then = now + ymd_duration { 1, 3, -4 };

std::cout << now  << ", " << to_time_t(now.utc_time())  << "\n";
std::cout << then << ", " << to_time_t(then.utc_time()) << "\n";
}
4

Другие решения

time_t dataFromTodayByAddingYearsMonthsDays(int years, int months, int days)
{
using namespace boost::local_time;
using namespace boost::posix_time;

local_date_time local = local_sec_clock::local_time(time_zone_ptr());
local += boost::gregorian::years(years);
local += boost::gregorian::months(months);
local += boost::gregorian::days(days);

ptime utc = local.utc_time();
ptime epoch(boost::gregorian::date(1970, 1, 1));
time_duration::sec_type diff = (utc - epoch).total_seconds();

return time_t(diff);
}
1

По вопросам рекламы [email protected]