123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- #ifndef DATE_TIME_TIME_SYSTEM_COUNTED_HPP
- #define DATE_TIME_TIME_SYSTEM_COUNTED_HPP
- #include <boost/date_time/compiler_config.hpp>
- #include <boost/date_time/time_defs.hpp>
- #include <boost/date_time/special_defs.hpp>
- #include <string>
- namespace boost {
- namespace date_time {
-
- template<class config>
- struct counted_time_rep
- {
- typedef typename config::int_type int_type;
- typedef typename config::date_type date_type;
- typedef typename config::impl_type impl_type;
- typedef typename date_type::duration_type date_duration_type;
- typedef typename date_type::calendar_type calendar_type;
- typedef typename date_type::ymd_type ymd_type;
- typedef typename config::time_duration_type time_duration_type;
- typedef typename config::resolution_traits resolution_traits;
- BOOST_CXX14_CONSTEXPR
- counted_time_rep(const date_type& d, const time_duration_type& time_of_day)
- : time_count_(1)
- {
- if(d.is_infinity() || d.is_not_a_date() || time_of_day.is_special()) {
- time_count_ = time_of_day.get_rep() + d.day_count();
-
- }
- else {
- time_count_ = (d.day_number() * frac_sec_per_day()) + time_of_day.ticks();
- }
- }
- BOOST_CXX14_CONSTEXPR
- explicit counted_time_rep(int_type count) :
- time_count_(count)
- {}
- BOOST_CXX14_CONSTEXPR
- explicit counted_time_rep(impl_type count) :
- time_count_(count)
- {}
- BOOST_CXX14_CONSTEXPR
- date_type date() const
- {
- if(time_count_.is_special()) {
- return date_type(time_count_.as_special());
- }
- else {
- typename calendar_type::date_int_type dc = static_cast<typename calendar_type::date_int_type>(day_count());
-
- ymd_type ymd = calendar_type::from_day_number(dc);
- return date_type(ymd);
- }
- }
-
- BOOST_CXX14_CONSTEXPR
- unsigned long day_count() const
- {
-
- return static_cast<unsigned long>(resolution_traits::as_number(time_count_) / frac_sec_per_day());
- }
- BOOST_CXX14_CONSTEXPR int_type time_count() const
- {
- return resolution_traits::as_number(time_count_);
- }
- BOOST_CXX14_CONSTEXPR int_type tod() const
- {
- return resolution_traits::as_number(time_count_) % frac_sec_per_day();
- }
- static BOOST_CXX14_CONSTEXPR int_type frac_sec_per_day()
- {
- int_type seconds_per_day = 60*60*24;
- int_type fractional_sec_per_sec(resolution_traits::res_adjust());
- return seconds_per_day*fractional_sec_per_sec;
- }
- BOOST_CXX14_CONSTEXPR bool is_pos_infinity()const
- {
- return impl_type::is_pos_inf(time_count_.as_number());
- }
- BOOST_CXX14_CONSTEXPR bool is_neg_infinity()const
- {
- return impl_type::is_neg_inf(time_count_.as_number());
- }
- BOOST_CXX14_CONSTEXPR bool is_not_a_date_time()const
- {
- return impl_type::is_not_a_number(time_count_.as_number());
- }
- BOOST_CXX14_CONSTEXPR bool is_special()const
- {
- return time_count_.is_special();
- }
- BOOST_CXX14_CONSTEXPR impl_type get_rep()const
- {
- return time_count_;
- }
- private:
- impl_type time_count_;
- };
-
- template<class time_rep>
- class counted_time_system
- {
- public:
- typedef time_rep time_rep_type;
- typedef typename time_rep_type::impl_type impl_type;
- typedef typename time_rep_type::time_duration_type time_duration_type;
- typedef typename time_duration_type::fractional_seconds_type fractional_seconds_type;
- typedef typename time_rep_type::date_type date_type;
- typedef typename time_rep_type::date_duration_type date_duration_type;
- template<class T> static BOOST_CXX14_CONSTEXPR void unused_var(const T&) {}
- static BOOST_CXX14_CONSTEXPR
- time_rep_type get_time_rep(const date_type& day,
- const time_duration_type& tod,
- date_time::dst_flags dst=not_dst)
- {
- unused_var(dst);
- return time_rep_type(day, tod);
- }
- static BOOST_CXX14_CONSTEXPR time_rep_type get_time_rep(special_values sv)
- {
- switch (sv) {
- case not_a_date_time:
- return time_rep_type(date_type(not_a_date_time),
- time_duration_type(not_a_date_time));
- case pos_infin:
- return time_rep_type(date_type(pos_infin),
- time_duration_type(pos_infin));
- case neg_infin:
- return time_rep_type(date_type(neg_infin),
- time_duration_type(neg_infin));
- case max_date_time: {
- time_duration_type td = time_duration_type(24,0,0,0) - time_duration_type(0,0,0,1);
- return time_rep_type(date_type(max_date_time), td);
- }
- case min_date_time:
- return time_rep_type(date_type(min_date_time), time_duration_type(0,0,0,0));
- default:
- return time_rep_type(date_type(not_a_date_time),
- time_duration_type(not_a_date_time));
- }
- }
- static BOOST_CXX14_CONSTEXPR date_type
- get_date(const time_rep_type& val)
- {
- return val.date();
- }
- static BOOST_CXX14_CONSTEXPR
- time_duration_type get_time_of_day(const time_rep_type& val)
- {
- if(val.is_special()) {
- return time_duration_type(val.get_rep().as_special());
- }
- else{
- return time_duration_type(0,0,0,val.tod());
- }
- }
- static std::string zone_name(const time_rep_type&)
- {
- return "";
- }
- static BOOST_CXX14_CONSTEXPR bool is_equal(const time_rep_type& lhs, const time_rep_type& rhs)
- {
- return (lhs.time_count() == rhs.time_count());
- }
- static BOOST_CXX14_CONSTEXPR
- bool is_less(const time_rep_type& lhs, const time_rep_type& rhs)
- {
- return (lhs.time_count() < rhs.time_count());
- }
- static BOOST_CXX14_CONSTEXPR
- time_rep_type add_days(const time_rep_type& base,
- const date_duration_type& dd)
- {
- if(base.is_special() || dd.is_special()) {
- return(time_rep_type(base.get_rep() + dd.get_rep()));
- }
- else {
- return time_rep_type(base.time_count() + (dd.days() * time_rep_type::frac_sec_per_day()));
- }
- }
- static BOOST_CXX14_CONSTEXPR
- time_rep_type subtract_days(const time_rep_type& base,
- const date_duration_type& dd)
- {
- if(base.is_special() || dd.is_special()) {
- return(time_rep_type(base.get_rep() - dd.get_rep()));
- }
- else{
- return time_rep_type(base.time_count() - (dd.days() * time_rep_type::frac_sec_per_day()));
- }
- }
- static BOOST_CXX14_CONSTEXPR
- time_rep_type subtract_time_duration(const time_rep_type& base,
- const time_duration_type& td)
- {
- if(base.is_special() || td.is_special()) {
- return(time_rep_type(base.get_rep() - td.get_rep()));
- }
- else {
- return time_rep_type(base.time_count() - td.ticks());
- }
- }
- static BOOST_CXX14_CONSTEXPR
- time_rep_type add_time_duration(const time_rep_type& base,
- time_duration_type td)
- {
- if(base.is_special() || td.is_special()) {
- return(time_rep_type(base.get_rep() + td.get_rep()));
- }
- else {
- return time_rep_type(base.time_count() + td.ticks());
- }
- }
- static BOOST_CXX14_CONSTEXPR
- time_duration_type subtract_times(const time_rep_type& lhs,
- const time_rep_type& rhs)
- {
- if(lhs.is_special() || rhs.is_special()) {
- return(time_duration_type(
- impl_type::to_special((lhs.get_rep() - rhs.get_rep()).as_number())));
- }
- else {
- fractional_seconds_type fs = lhs.time_count() - rhs.time_count();
- return time_duration_type(0,0,0,fs);
- }
- }
- };
- } }
- #endif
|