date_duration.hpp 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. #ifndef DATE_TIME_DATE_DURATION__
  2. #define DATE_TIME_DATE_DURATION__
  3. /* Copyright (c) 2002,2003 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$
  9. */
  10. #include <boost/operators.hpp>
  11. #include <boost/date_time/special_defs.hpp>
  12. namespace boost {
  13. namespace date_time {
  14. //! Duration type with date level resolution
  15. template<class duration_rep_traits>
  16. class date_duration : private
  17. boost::less_than_comparable1< date_duration< duration_rep_traits >
  18. , boost::equality_comparable1< date_duration< duration_rep_traits >
  19. , boost::addable1< date_duration< duration_rep_traits >
  20. , boost::subtractable1< date_duration< duration_rep_traits >
  21. , boost::dividable2< date_duration< duration_rep_traits >, int
  22. > > > > >
  23. {
  24. public:
  25. typedef typename duration_rep_traits::int_type duration_rep_type;
  26. typedef typename duration_rep_traits::impl_type duration_rep;
  27. //! Construct from a day count
  28. explicit date_duration(duration_rep day_count) : days_(day_count) {}
  29. /*! construct from special_values - only works when
  30. * instantiated with duration_traits_adapted */
  31. date_duration(special_values sv) :
  32. days_(duration_rep::from_special(sv))
  33. {}
  34. // copy constructor required for addable<> & subtractable<>
  35. //! Construct from another date_duration (Copy Constructor)
  36. date_duration(const date_duration<duration_rep_traits>& other) :
  37. days_(other.days_)
  38. {}
  39. //! returns days_ as it's instantiated type - used for streaming
  40. duration_rep get_rep()const
  41. {
  42. return days_;
  43. }
  44. bool is_special()const
  45. {
  46. return days_.is_special();
  47. }
  48. //! returns days as value, not object.
  49. duration_rep_type days() const
  50. {
  51. return duration_rep_traits::as_number(days_);
  52. }
  53. //! Returns the smallest duration -- used by to calculate 'end'
  54. static date_duration unit()
  55. {
  56. return date_duration<duration_rep_traits>(1);
  57. }
  58. //! Equality
  59. bool operator==(const date_duration& rhs) const
  60. {
  61. return days_ == rhs.days_;
  62. }
  63. //! Less
  64. bool operator<(const date_duration& rhs) const
  65. {
  66. return days_ < rhs.days_;
  67. }
  68. /* For shortcut operators (+=, -=, etc) simply using
  69. * "days_ += days_" may not work. If instantiated with
  70. * an int_adapter, shortcut operators are not present,
  71. * so this will not compile */
  72. //! Subtract another duration -- result is signed
  73. date_duration& operator-=(const date_duration& rhs)
  74. {
  75. //days_ -= rhs.days_;
  76. days_ = days_ - rhs.days_;
  77. return *this;
  78. }
  79. //! Add a duration -- result is signed
  80. date_duration& operator+=(const date_duration& rhs)
  81. {
  82. days_ = days_ + rhs.days_;
  83. return *this;
  84. }
  85. //! unary- Allows for dd = -date_duration(2); -> dd == -2
  86. date_duration operator-() const
  87. {
  88. return date_duration<duration_rep_traits>(get_rep() * (-1));
  89. }
  90. //! Division operations on a duration with an integer.
  91. date_duration& operator/=(int divisor)
  92. {
  93. days_ = days_ / divisor;
  94. return *this;
  95. }
  96. //! return sign information
  97. bool is_negative() const
  98. {
  99. return days_ < 0;
  100. }
  101. private:
  102. duration_rep days_;
  103. };
  104. /*! Struct for instantiating date_duration with <b>NO</b> special values
  105. * functionality. Allows for transparent implementation of either
  106. * date_duration<long> or date_duration<int_adapter<long> > */
  107. struct duration_traits_long
  108. {
  109. typedef long int_type;
  110. typedef long impl_type;
  111. static int_type as_number(impl_type i) { return i; }
  112. };
  113. /*! Struct for instantiating date_duration <b>WITH</b> special values
  114. * functionality. Allows for transparent implementation of either
  115. * date_duration<long> or date_duration<int_adapter<long> > */
  116. struct duration_traits_adapted
  117. {
  118. typedef long int_type;
  119. typedef boost::date_time::int_adapter<long> impl_type;
  120. static int_type as_number(impl_type i) { return i.as_number(); }
  121. };
  122. } } //namspace date_time
  123. #endif