conversion.hpp 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. #ifndef POSIX_TIME_CONVERSION_HPP___
  2. #define POSIX_TIME_CONVERSION_HPP___
  3. /* Copyright (c) 2002-2005 CrystalClear Software, Inc.
  4. * Use, modification and distribution is subject to the
  5. * Boost Software License, Version 1.0. (See accompanying
  6. * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  7. * Author: Jeff Garland, Bart Garst
  8. * $Date: 2010-06-09 11:10:13 -0700 (Wed, 09 Jun 2010) $
  9. */
  10. #include <cstring>
  11. #include <boost/date_time/posix_time/ptime.hpp>
  12. #include <boost/date_time/posix_time/posix_time_duration.hpp>
  13. #include <boost/date_time/filetime_functions.hpp>
  14. #include <boost/date_time/c_time.hpp>
  15. #include <boost/date_time/time_resolution_traits.hpp> // absolute_value
  16. #include <boost/date_time/gregorian/conversion.hpp>
  17. namespace boost {
  18. namespace posix_time {
  19. //! Function that converts a time_t into a ptime.
  20. inline
  21. ptime from_time_t(std::time_t t)
  22. {
  23. ptime start(gregorian::date(1970,1,1));
  24. return start + seconds(static_cast<long>(t));
  25. }
  26. //! Convert a time to a tm structure truncating any fractional seconds
  27. inline
  28. std::tm to_tm(const boost::posix_time::ptime& t) {
  29. std::tm timetm = boost::gregorian::to_tm(t.date());
  30. boost::posix_time::time_duration td = t.time_of_day();
  31. timetm.tm_hour = td.hours();
  32. timetm.tm_min = td.minutes();
  33. timetm.tm_sec = td.seconds();
  34. timetm.tm_isdst = -1; // -1 used when dst info is unknown
  35. return timetm;
  36. }
  37. //! Convert a time_duration to a tm structure truncating any fractional seconds and zeroing fields for date components
  38. inline
  39. std::tm to_tm(const boost::posix_time::time_duration& td) {
  40. std::tm timetm;
  41. std::memset(&timetm, 0, sizeof(timetm));
  42. timetm.tm_hour = date_time::absolute_value(td.hours());
  43. timetm.tm_min = date_time::absolute_value(td.minutes());
  44. timetm.tm_sec = date_time::absolute_value(td.seconds());
  45. timetm.tm_isdst = -1; // -1 used when dst info is unknown
  46. return timetm;
  47. }
  48. //! Convert a tm struct to a ptime ignoring is_dst flag
  49. inline
  50. ptime ptime_from_tm(const std::tm& timetm) {
  51. boost::gregorian::date d = boost::gregorian::date_from_tm(timetm);
  52. return ptime(d, time_duration(timetm.tm_hour, timetm.tm_min, timetm.tm_sec));
  53. }
  54. #if defined(BOOST_HAS_FTIME)
  55. //! Function to create a time object from an initialized FILETIME struct.
  56. /*! Function to create a time object from an initialized FILETIME struct.
  57. * A FILETIME struct holds 100-nanosecond units (0.0000001). When
  58. * built with microsecond resolution the FILETIME's sub second value
  59. * will be truncated. Nanosecond resolution has no truncation.
  60. *
  61. * \note FILETIME is part of the Win32 API, so it is not portable to non-windows
  62. * platforms.
  63. *
  64. * \note The function is templated on the FILETIME type, so that
  65. * it can be used with both native FILETIME and the ad-hoc
  66. * boost::date_time::winapi::file_time type.
  67. */
  68. template< typename TimeT, typename FileTimeT >
  69. inline
  70. TimeT from_ftime(const FileTimeT& ft)
  71. {
  72. return boost::date_time::time_from_ftime<TimeT>(ft);
  73. }
  74. #endif // BOOST_HAS_FTIME
  75. } } //namespace boost::posix_time
  76. #endif