date.hpp 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. #ifndef DATE_TIME_DATE_HPP___
  2. #define DATE_TIME_DATE_HPP___
  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/year_month_day.hpp>
  12. #include <boost/date_time/special_defs.hpp>
  13. namespace boost {
  14. namespace date_time {
  15. //!Representation of timepoint at the one day level resolution.
  16. /*!
  17. The date template represents an interface shell for a date class
  18. that is based on a year-month-day system such as the gregorian
  19. or iso systems. It provides basic operations to enable calculation
  20. and comparisons.
  21. <b>Theory</b>
  22. This date representation fundamentally departs from the C tm struct
  23. approach. The goal for this type is to provide efficient date
  24. operations (add, subtract) and storage (minimize space to represent)
  25. in a concrete class. Thus, the date uses a count internally to
  26. represent a particular date. The calendar parameter defines
  27. the policies for converting the the year-month-day and internal
  28. counted form here. Applications that need to perform heavy
  29. formatting of the same date repeatedly will perform better
  30. by using the year-month-day representation.
  31. Internally the date uses a day number to represent the date.
  32. This is a monotonic time representation. This representation
  33. allows for fast comparison as well as simplifying
  34. the creation of writing numeric operations. Essentially, the
  35. internal day number is like adjusted julian day. The adjustment
  36. is determined by the Epoch date which is represented as day 1 of
  37. the calendar. Day 0 is reserved for negative infinity so that
  38. any actual date is automatically greater than negative infinity.
  39. When a date is constructed from a date or formatted for output,
  40. the appropriate conversions are applied to create the year, month,
  41. day representations.
  42. */
  43. template<class T, class calendar, class duration_type_>
  44. class date : private
  45. boost::less_than_comparable<T
  46. , boost::equality_comparable<T
  47. > >
  48. {
  49. public:
  50. typedef T date_type;
  51. typedef calendar calendar_type;
  52. typedef typename calendar::date_traits_type traits_type;
  53. typedef duration_type_ duration_type;
  54. typedef typename calendar::year_type year_type;
  55. typedef typename calendar::month_type month_type;
  56. typedef typename calendar::day_type day_type;
  57. typedef typename calendar::ymd_type ymd_type;
  58. typedef typename calendar::date_rep_type date_rep_type;
  59. typedef typename calendar::date_int_type date_int_type;
  60. typedef typename calendar::day_of_week_type day_of_week_type;
  61. date(year_type y, month_type m, day_type d)
  62. : days_(calendar::day_number(ymd_type(y, m, d)))
  63. {}
  64. date(const ymd_type& ymd)
  65. : days_(calendar::day_number(ymd))
  66. {}
  67. //let the compiler write copy, assignment, and destructor
  68. year_type year() const
  69. {
  70. ymd_type ymd = calendar::from_day_number(days_);
  71. return ymd.year;
  72. }
  73. month_type month() const
  74. {
  75. ymd_type ymd = calendar::from_day_number(days_);
  76. return ymd.month;
  77. }
  78. day_type day() const
  79. {
  80. ymd_type ymd = calendar::from_day_number(days_);
  81. return ymd.day;
  82. }
  83. day_of_week_type day_of_week() const
  84. {
  85. ymd_type ymd = calendar::from_day_number(days_);
  86. return calendar::day_of_week(ymd);
  87. }
  88. ymd_type year_month_day() const
  89. {
  90. return calendar::from_day_number(days_);
  91. }
  92. bool operator<(const date_type& rhs) const
  93. {
  94. return days_ < rhs.days_;
  95. }
  96. bool operator==(const date_type& rhs) const
  97. {
  98. return days_ == rhs.days_;
  99. }
  100. //! check to see if date is a special value
  101. bool is_special()const
  102. {
  103. return(is_not_a_date() || is_infinity());
  104. }
  105. //! check to see if date is not a value
  106. bool is_not_a_date() const
  107. {
  108. return traits_type::is_not_a_number(days_);
  109. }
  110. //! check to see if date is one of the infinity values
  111. bool is_infinity() const
  112. {
  113. return traits_type::is_inf(days_);
  114. }
  115. //! check to see if date is greater than all possible dates
  116. bool is_pos_infinity() const
  117. {
  118. return traits_type::is_pos_inf(days_);
  119. }
  120. //! check to see if date is greater than all possible dates
  121. bool is_neg_infinity() const
  122. {
  123. return traits_type::is_neg_inf(days_);
  124. }
  125. //! return as a special value or a not_special if a normal date
  126. special_values as_special() const
  127. {
  128. return traits_type::to_special(days_);
  129. }
  130. duration_type operator-(const date_type& d) const
  131. {
  132. if (!this->is_special() && !d.is_special())
  133. {
  134. // The duration underlying type may be wider than the date underlying type.
  135. // Thus we calculate the difference in terms of two durations from some common fixed base date.
  136. typedef typename duration_type::duration_rep_type duration_rep_type;
  137. return duration_type(static_cast< duration_rep_type >(days_) - static_cast< duration_rep_type >(d.days_));
  138. }
  139. else
  140. {
  141. // In this case the difference will be a special value, too
  142. date_rep_type val = date_rep_type(days_) - date_rep_type(d.days_);
  143. return duration_type(val.as_special());
  144. }
  145. }
  146. date_type operator-(const duration_type& dd) const
  147. {
  148. if(dd.is_special())
  149. {
  150. return date_type(date_rep_type(days_) - dd.get_rep());
  151. }
  152. return date_type(date_rep_type(days_) - static_cast<date_int_type>(dd.days()));
  153. }
  154. date_type operator-=(const duration_type& dd)
  155. {
  156. *this = *this - dd;
  157. return date_type(days_);
  158. }
  159. date_rep_type day_count() const
  160. {
  161. return days_;
  162. }
  163. //allow internal access from operators
  164. date_type operator+(const duration_type& dd) const
  165. {
  166. if(dd.is_special())
  167. {
  168. return date_type(date_rep_type(days_) + dd.get_rep());
  169. }
  170. return date_type(date_rep_type(days_) + static_cast<date_int_type>(dd.days()));
  171. }
  172. date_type operator+=(const duration_type& dd)
  173. {
  174. *this = *this + dd;
  175. return date_type(days_);
  176. }
  177. //see reference
  178. protected:
  179. /*! This is a private constructor which allows for the creation of new
  180. dates. It is not exposed to users since that would require class
  181. users to understand the inner workings of the date class.
  182. */
  183. explicit date(date_int_type days) : days_(days) {}
  184. explicit date(date_rep_type days) : days_(days.as_number()) {}
  185. date_int_type days_;
  186. };
  187. } } // namespace date_time
  188. #endif