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