local_utc_conversion.cpp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* Demonstrate conversions between a local time and utc
  2. * Output:
  3. *
  4. * UTC <--> New York while DST is NOT active (5 hours)
  5. * 2001-Dec-31 19:00:00 in New York is 2002-Jan-01 00:00:00 UTC time
  6. * 2002-Jan-01 00:00:00 UTC is 2001-Dec-31 19:00:00 New York time
  7. *
  8. * UTC <--> New York while DST is active (4 hours)
  9. * 2002-May-31 20:00:00 in New York is 2002-Jun-01 00:00:00 UTC time
  10. * 2002-Jun-01 00:00:00 UTC is 2002-May-31 20:00:00 New York time
  11. *
  12. * UTC <--> Arizona (7 hours)
  13. * 2002-May-31 17:00:00 in Arizona is 2002-Jun-01 00:00:00 UTC time
  14. */
  15. #include "boost/date_time/posix_time/posix_time.hpp"
  16. #include "boost/date_time/local_time_adjustor.hpp"
  17. #include "boost/date_time/c_local_time_adjustor.hpp"
  18. #include <iostream>
  19. int
  20. main()
  21. {
  22. using namespace boost::posix_time;
  23. using namespace boost::gregorian;
  24. //This local adjustor depends on the machine TZ settings-- highly dangerous!
  25. typedef boost::date_time::c_local_adjustor<ptime> local_adj;
  26. ptime t10(date(2002,Jan,1), hours(7));
  27. ptime t11 = local_adj::utc_to_local(t10);
  28. std::cout << "UTC <--> Zone base on TZ setting" << std::endl;
  29. std::cout << to_simple_string(t11) << " in your TZ is "
  30. << to_simple_string(t10) << " UTC time "
  31. << std::endl;
  32. time_duration td = t11 - t10;
  33. std::cout << "A difference of: "
  34. << to_simple_string(td) << std::endl;
  35. //eastern timezone is utc-5
  36. typedef boost::date_time::local_adjustor<ptime, -5, us_dst> us_eastern;
  37. ptime t1(date(2001,Dec,31), hours(19)); //5 hours b/f midnight NY time
  38. std::cout << "\nUTC <--> New York while DST is NOT active (5 hours)"
  39. << std::endl;
  40. ptime t2 = us_eastern::local_to_utc(t1);
  41. std::cout << to_simple_string(t1) << " in New York is "
  42. << to_simple_string(t2) << " UTC time "
  43. << std::endl;
  44. ptime t3 = us_eastern::utc_to_local(t2);//back should be the same
  45. std::cout << to_simple_string(t2) << " UTC is "
  46. << to_simple_string(t3) << " New York time "
  47. << "\n\n";
  48. ptime t4(date(2002,May,31), hours(20)); //4 hours b/f midnight NY time
  49. std::cout << "UTC <--> New York while DST is active (4 hours)" << std::endl;
  50. ptime t5 = us_eastern::local_to_utc(t4);
  51. std::cout << to_simple_string(t4) << " in New York is "
  52. << to_simple_string(t5) << " UTC time "
  53. << std::endl;
  54. ptime t6 = us_eastern::utc_to_local(t5);//back should be the same
  55. std::cout << to_simple_string(t5) << " UTC is "
  56. << to_simple_string(t6) << " New York time "
  57. << "\n" << std::endl;
  58. //Arizona timezone is utc-7 with no dst
  59. typedef boost::date_time::local_adjustor<ptime, -7, no_dst> us_arizona;
  60. ptime t7(date(2002,May,31), hours(17));
  61. std::cout << "UTC <--> Arizona (7 hours)" << std::endl;
  62. ptime t8 = us_arizona::local_to_utc(t7);
  63. std::cout << to_simple_string(t7) << " in Arizona is "
  64. << to_simple_string(t8) << " UTC time "
  65. << std::endl;
  66. return 0;
  67. }
  68. /* Copyright 2001-2004: CrystalClear Software, Inc
  69. * http://www.crystalclearsoftware.com
  70. *
  71. * Subject to the Boost Software License, Version 1.0.
  72. * (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  73. */