blob: 15ac925a5b1d5d5b98a64c8f1761a37beabe8b56 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
* Copyright (c) 2013-2014 Regents of the University of California.
*
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
*
* ndn-cxx library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later version.
*
* ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received copies of the GNU General Public License and GNU Lesser
* General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
* <http://www.gnu.org/licenses/>.
*
* See AUTHORS.md for complete list of ndn-cxx authors and contributors.
*/
#include "time.hpp"
#include <boost/date_time/posix_time/posix_time.hpp>
namespace ndn {
namespace time {
std::string
toIsoString(const system_clock::TimePoint& timePoint)
{
namespace bpt = boost::posix_time;
bpt::ptime ptime = bpt::from_time_t(system_clock::to_time_t(timePoint));
uint64_t micro = duration_cast<microseconds>(timePoint - getUnixEpoch()).count() % 1000000;
if (micro > 0)
{
ptime += bpt::microseconds(micro);
return bpt::to_iso_string(ptime);
}
else
return bpt::to_iso_string(ptime);
}
system_clock::TimePoint
fromIsoString(const std::string& isoString)
{
namespace bpt = boost::posix_time;
static bpt::ptime posixTimeEpoch = bpt::from_time_t(0);
bpt::ptime ptime = bpt::from_iso_string(isoString);
system_clock::TimePoint point =
system_clock::from_time_t((ptime - posixTimeEpoch).total_seconds());
point += microseconds((ptime - posixTimeEpoch).total_microseconds() % 1000000);
return point;
}
std::string
toString(const system_clock::TimePoint& timePoint,
const std::string& format/* = "%Y-%m-%d %H:%M:%S"*/,
const std::locale& locale/* = std::locale("C")*/)
{
namespace bpt = boost::posix_time;
bpt::ptime ptime = bpt::from_time_t(system_clock::to_time_t(timePoint));
uint64_t micro = duration_cast<microseconds>(timePoint - getUnixEpoch()).count() % 1000000;
ptime += bpt::microseconds(micro);
bpt::time_facet* facet = new bpt::time_facet(format.c_str());
std::ostringstream formattedTimePoint;
formattedTimePoint.imbue(std::locale(locale, facet));
formattedTimePoint << ptime;
return formattedTimePoint.str();
}
system_clock::TimePoint
fromString(const std::string& formattedTimePoint,
const std::string& format/* = "%Y-%m-%d %H:%M:%S"*/,
const std::locale& locale/* = std::locale("C")*/)
{
namespace bpt = boost::posix_time;
static bpt::ptime posixTimeEpoch = bpt::from_time_t(0);
bpt::time_input_facet* facet = new bpt::time_input_facet(format);
std::istringstream is(formattedTimePoint);
is.imbue(std::locale(locale, facet));
bpt::ptime ptime;
is >> ptime;
system_clock::TimePoint point =
system_clock::from_time_t((ptime - posixTimeEpoch).total_seconds());
point += microseconds((ptime - posixTimeEpoch).total_microseconds() % 1000000);
return point;
}
} // namespace time
} // namespace ndn