sl@0
|
1 |
#ifndef DATE_TIME_TIME_HPP___
|
sl@0
|
2 |
#define DATE_TIME_TIME_HPP___
|
sl@0
|
3 |
|
sl@0
|
4 |
/* Copyright (c) 2002,2003,2005 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: 2005/04/23 05:39:52 $
|
sl@0
|
10 |
*/
|
sl@0
|
11 |
|
sl@0
|
12 |
|
sl@0
|
13 |
/*! @file time.hpp
|
sl@0
|
14 |
This file contains the interface for the time associated classes.
|
sl@0
|
15 |
*/
|
sl@0
|
16 |
#include "boost/date_time/time_defs.hpp"
|
sl@0
|
17 |
#include "boost/operators.hpp"
|
sl@0
|
18 |
#include <string>
|
sl@0
|
19 |
|
sl@0
|
20 |
namespace boost {
|
sl@0
|
21 |
namespace date_time {
|
sl@0
|
22 |
|
sl@0
|
23 |
//! Representation of a precise moment in time, including the date.
|
sl@0
|
24 |
/*!
|
sl@0
|
25 |
This class is a skeleton for the interface of a temporal type
|
sl@0
|
26 |
with a resolution that is higher than a day. It is intended that
|
sl@0
|
27 |
this class be the base class and that the actual time
|
sl@0
|
28 |
class be derived using the BN pattern. In this way, the derived
|
sl@0
|
29 |
class can make decisions such as 'should there be a default constructor'
|
sl@0
|
30 |
and what should it set its value to, should there be optional constructors
|
sl@0
|
31 |
say allowing only an time_durations that generate a time from a clock,etc.
|
sl@0
|
32 |
So, in fact multiple time types can be created for a time_system with
|
sl@0
|
33 |
different construction policies, and all of them can perform basic
|
sl@0
|
34 |
operations by only writing a copy constructor. Finally, compiler
|
sl@0
|
35 |
errors are also shorter.
|
sl@0
|
36 |
|
sl@0
|
37 |
The real behavior of the time class is provided by the time_system
|
sl@0
|
38 |
template parameter. This class must provide all the logic
|
sl@0
|
39 |
for addition, subtraction, as well as define all the interface
|
sl@0
|
40 |
types.
|
sl@0
|
41 |
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
|
sl@0
|
44 |
template <class T, class time_system>
|
sl@0
|
45 |
class base_time : private
|
sl@0
|
46 |
boost::less_than_comparable<T
|
sl@0
|
47 |
, boost::equality_comparable<T
|
sl@0
|
48 |
> >
|
sl@0
|
49 |
{
|
sl@0
|
50 |
public:
|
sl@0
|
51 |
typedef T time_type;
|
sl@0
|
52 |
typedef typename time_system::time_rep_type time_rep_type;
|
sl@0
|
53 |
typedef typename time_system::date_type date_type;
|
sl@0
|
54 |
typedef typename time_system::date_duration_type date_duration_type;
|
sl@0
|
55 |
typedef typename time_system::time_duration_type time_duration_type;
|
sl@0
|
56 |
//typedef typename time_system::hms_type hms_type;
|
sl@0
|
57 |
|
sl@0
|
58 |
base_time(const date_type& day,
|
sl@0
|
59 |
const time_duration_type& td,
|
sl@0
|
60 |
dst_flags dst=not_dst) :
|
sl@0
|
61 |
time_(time_system::get_time_rep(day, td, dst))
|
sl@0
|
62 |
{}
|
sl@0
|
63 |
base_time(special_values sv) :
|
sl@0
|
64 |
time_(time_system::get_time_rep(sv))
|
sl@0
|
65 |
{}
|
sl@0
|
66 |
base_time(const time_rep_type& rhs) :
|
sl@0
|
67 |
time_(rhs)
|
sl@0
|
68 |
{}
|
sl@0
|
69 |
date_type date() const
|
sl@0
|
70 |
{
|
sl@0
|
71 |
return time_system::get_date(time_);
|
sl@0
|
72 |
}
|
sl@0
|
73 |
time_duration_type time_of_day() const
|
sl@0
|
74 |
{
|
sl@0
|
75 |
return time_system::get_time_of_day(time_);
|
sl@0
|
76 |
}
|
sl@0
|
77 |
/*! Optional bool parameter will return time zone as an offset
|
sl@0
|
78 |
* (ie "+07:00"). Empty string is returned for classes that do
|
sl@0
|
79 |
* not use a time_zone */
|
sl@0
|
80 |
std::string zone_name(bool as_offset=false) const
|
sl@0
|
81 |
{
|
sl@0
|
82 |
return time_system::zone_name(time_);
|
sl@0
|
83 |
}
|
sl@0
|
84 |
/*! Optional bool parameter will return time zone as an offset
|
sl@0
|
85 |
* (ie "+07:00"). Empty string is returned for classes that do
|
sl@0
|
86 |
* not use a time_zone */
|
sl@0
|
87 |
std::string zone_abbrev(bool as_offset=false) const
|
sl@0
|
88 |
{
|
sl@0
|
89 |
return time_system::zone_name(time_);
|
sl@0
|
90 |
}
|
sl@0
|
91 |
//! An empty string is returned for classes that do not use a time_zone
|
sl@0
|
92 |
std::string zone_as_posix_string() const
|
sl@0
|
93 |
{
|
sl@0
|
94 |
return std::string("");
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
//! check to see if date is not a value
|
sl@0
|
98 |
bool is_not_a_date_time() const
|
sl@0
|
99 |
{
|
sl@0
|
100 |
return time_.is_not_a_date_time();
|
sl@0
|
101 |
}
|
sl@0
|
102 |
//! check to see if date is one of the infinity values
|
sl@0
|
103 |
bool is_infinity() const
|
sl@0
|
104 |
{
|
sl@0
|
105 |
return (is_pos_infinity() || is_neg_infinity());
|
sl@0
|
106 |
}
|
sl@0
|
107 |
//! check to see if date is greater than all possible dates
|
sl@0
|
108 |
bool is_pos_infinity() const
|
sl@0
|
109 |
{
|
sl@0
|
110 |
return time_.is_pos_infinity();
|
sl@0
|
111 |
}
|
sl@0
|
112 |
//! check to see if date is greater than all possible dates
|
sl@0
|
113 |
bool is_neg_infinity() const
|
sl@0
|
114 |
{
|
sl@0
|
115 |
return time_.is_neg_infinity();
|
sl@0
|
116 |
}
|
sl@0
|
117 |
//! check to see if time is a special value
|
sl@0
|
118 |
bool is_special() const
|
sl@0
|
119 |
{
|
sl@0
|
120 |
return(is_not_a_date_time() || is_infinity());
|
sl@0
|
121 |
}
|
sl@0
|
122 |
//!Equality operator -- others generated by boost::equality_comparable
|
sl@0
|
123 |
bool operator==(const time_type& rhs) const
|
sl@0
|
124 |
{
|
sl@0
|
125 |
return time_system::is_equal(time_,rhs.time_);
|
sl@0
|
126 |
}
|
sl@0
|
127 |
//!Equality operator -- others generated by boost::less_than_comparable
|
sl@0
|
128 |
bool operator<(const time_type& rhs) const
|
sl@0
|
129 |
{
|
sl@0
|
130 |
return time_system::is_less(time_,rhs.time_);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
//! difference between two times
|
sl@0
|
133 |
time_duration_type operator-(const time_type& rhs) const
|
sl@0
|
134 |
{
|
sl@0
|
135 |
return time_system::subtract_times(time_, rhs.time_);
|
sl@0
|
136 |
}
|
sl@0
|
137 |
//! add date durations
|
sl@0
|
138 |
time_type operator+(const date_duration_type& dd) const
|
sl@0
|
139 |
{
|
sl@0
|
140 |
return time_system::add_days(time_, dd);
|
sl@0
|
141 |
}
|
sl@0
|
142 |
time_type operator+=(const date_duration_type& dd)
|
sl@0
|
143 |
{
|
sl@0
|
144 |
time_ = (time_system::get_time_rep(date() + dd, time_of_day()));
|
sl@0
|
145 |
return time_type(time_);
|
sl@0
|
146 |
}
|
sl@0
|
147 |
//! subtract date durations
|
sl@0
|
148 |
time_type operator-(const date_duration_type& dd) const
|
sl@0
|
149 |
{
|
sl@0
|
150 |
return time_system::subtract_days(time_, dd);
|
sl@0
|
151 |
}
|
sl@0
|
152 |
time_type operator-=(const date_duration_type& dd)
|
sl@0
|
153 |
{
|
sl@0
|
154 |
time_ = (time_system::get_time_rep(date() - dd, time_of_day()));
|
sl@0
|
155 |
return time_type(time_);
|
sl@0
|
156 |
}
|
sl@0
|
157 |
//! add time durations
|
sl@0
|
158 |
time_type operator+(const time_duration_type& td) const
|
sl@0
|
159 |
{
|
sl@0
|
160 |
return time_type(time_system::add_time_duration(time_, td));
|
sl@0
|
161 |
}
|
sl@0
|
162 |
time_type operator+=(const time_duration_type& td)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
time_ = (time_system::get_time_rep(date(), time_of_day() + td));
|
sl@0
|
165 |
return time_type(time_);
|
sl@0
|
166 |
}
|
sl@0
|
167 |
//! subtract time durations
|
sl@0
|
168 |
time_type operator-(const time_duration_type& rhs) const
|
sl@0
|
169 |
{
|
sl@0
|
170 |
return time_system::subtract_time_duration(time_, rhs);
|
sl@0
|
171 |
}
|
sl@0
|
172 |
time_type operator-=(const time_duration_type& td)
|
sl@0
|
173 |
{
|
sl@0
|
174 |
time_ = (time_system::get_time_rep(date(), time_of_day() - td));
|
sl@0
|
175 |
return time_type(time_);
|
sl@0
|
176 |
}
|
sl@0
|
177 |
|
sl@0
|
178 |
protected:
|
sl@0
|
179 |
time_rep_type time_;
|
sl@0
|
180 |
};
|
sl@0
|
181 |
|
sl@0
|
182 |
|
sl@0
|
183 |
|
sl@0
|
184 |
|
sl@0
|
185 |
|
sl@0
|
186 |
} } //namespace date_time::boost
|
sl@0
|
187 |
|
sl@0
|
188 |
|
sl@0
|
189 |
#endif
|
sl@0
|
190 |
|