798
#ifdef NOTYETIMPLEMENTED
799
Date& Date::operator+=(const TemporalIntervalYear &rhs)
801
/* Simple one...add the years and adjust for any leaps */
802
int64_t new_years= _years;
803
new_years+= rhs._years;
804
if (new_years > DRIZZLE_MAX_YEARS_SQL)
807
* Set everything to zero. We got an overflow.
808
* @TODO Exceptions would be great here...
814
_years= (uint32_t) new_years;
815
if (_months == 2 && _days == 29 && days_in_gregorian_year_month(_years, _months) != 366)
820
Date& Date::operator-=(const TemporalIntervalYear &rhs)
822
/* Simple one...subtract the years and adjust for any leaps */
823
int64_t new_years= _years;
824
new_years-= rhs._years;
828
* Set everything to zero. We got an overflow.
829
* @TODO Exceptions would be great here...
835
_years= (uint32_t) new_years;
836
if (_months == 2 && _days == 29 && days_in_gregorian_year_month(_years, _months) != 366)
841
Date& Date::operator+=(const TemporalIntervalDayOrWeek &rhs)
843
/* Simple one...add the days */
844
int64_t julian_day= julian_day_number_from_gregorian_date(_years, _months, _days) + rhs._days;
845
gregorian_date_from_julian_day_number(julian_day, &_years, &_months, &_days);
849
Date& Date::operator-=(const TemporalIntervalDayOrWeek &rhs)
851
/* Simple one...subtract the days */
852
int64_t julian_day= julian_day_number_from_gregorian_date(_years, _months, _days) - rhs._days;
853
gregorian_date_from_julian_day_number(julian_day, &_years, &_months, &_days);
857
Date& Date::operator+=(const TemporalIntervalYearMonth &rhs)
859
/* Simple one...add the months in the period adjust */
860
int64_t period= (_years * 12) + (rhs._years * 12) + (_months - 1) + rhs._months;
861
int64_t new_years= (period / 12);
862
if (new_years > DRIZZLE_MAX_YEARS_SQL)
865
* Set everything to zero. We got an overflow.
866
* @TODO Exceptions would be great here...
872
_years= (uint32_t) new_years;
873
_months= (uint32_t) (period % 12) + 1;
875
/* Adjust day if the new month doesn't have enough days */
876
uint32_t days_in_new_month= days_in_gregorian_year_month(_years, _months);
877
if (_days > days_in_new_month)
878
_days= days_in_new_month;
882
Date& Date::operator-=(const TemporalIntervalYearMonth &rhs)
884
/* Simple one...subtract the months in the period and adjust */
885
int64_t period= (_years * 12) - (rhs._years * 12) + (_months - 1) - rhs._months;
886
int64_t new_years= (period / 12);
890
* Set everything to zero. We got an overflow.
891
* @TODO Exceptions would be great here...
897
_years= (uint32_t) (period / 12);
898
_months= (uint32_t) (period % 12) + 1;
900
/* Adjust day if the new month doesn't have enough days */
901
uint32_t days_in_new_month= days_in_gregorian_year_month(_years, _months);
902
if (_days > days_in_new_month)
903
_days= days_in_new_month;
907
Date& Date::operator+=(const TemporalIntervalDayOrLess &rhs)
910
* Convert the temporal and the interval into a number of
911
* microseconds, then add them together and convert the
912
* resulting microseconds back into a broken-down temporal
916
int64_t new_microseconds;
919
new_microseconds= _useconds + rhs._useconds;
920
extra_sec= new_microseconds / INT64_C(1000000);
921
new_microseconds= new_microseconds % INT64_C(1000000);
923
new_seconds= ((_days - 1) * 3600 * 24) + (_hours * 3600) + (_minutes * 60) + _seconds;
924
new_seconds+= (rhs._days * 3600 * 24) + (rhs._hours * 3600) + (rhs._minutes * 60) + rhs._seconds;
925
new_seconds+= extra_sec;
927
if (new_microseconds < 0)
929
new_microseconds+= INT64_C(1000000);
933
new_days= new_seconds / (3600 * 24L);
934
new_seconds-= new_days * 3600 * 24L;
938
new_seconds+= 3600 * 24L;
940
_useconds= (uint32_t) new_microseconds;
941
_seconds= (uint32_t) (new_seconds % 60);
942
_minutes= (uint32_t) ((new_seconds / 60) % 60);
943
_hours= (uint32_t) (new_seconds / 3600);
944
int64_t julian_day= julian_day_number_from_gregorian_date(_years, _months, 1) + new_days;
945
gregorian_date_from_julian_day_number(julian_day, &_years, &_months, &_days);
949
Date& Date::operator-=(const TemporalIntervalDayOrLess &rhs)
952
* Convert the temporal and the interval into a number of
953
* microseconds, then subtract them from each other and convert
954
* the resulting microseconds back into a broken-down temporal
958
int64_t new_microseconds;
961
new_microseconds= _useconds - rhs._useconds;
962
extra_sec= new_microseconds / INT64_C(1000000);
963
new_microseconds= new_microseconds % INT64_C(1000000);
965
new_seconds= ((_days - 1) * 3600 * 24) + (_hours * 3600) + (_minutes * 60) + _seconds;
966
new_seconds-= (rhs._days * 3600 * 24) + (rhs._hours * 3600) + (rhs._minutes * 60) + rhs._seconds;
967
new_seconds+= extra_sec;
969
if (new_microseconds < 0)
971
new_microseconds+= INT64_C(1000000);
975
new_days= new_seconds / (3600 * 24L);
976
new_seconds-= new_days * 3600 * 24L;
980
new_seconds+= 3600 * 24L;
982
_useconds= (uint32_t) new_microseconds;
983
_seconds= (uint32_t) (new_seconds % 60);
984
_minutes= (uint32_t) ((new_seconds / 60) % 60);
985
_hours= (uint32_t) (new_seconds / 3600);
986
int64_t julian_day= julian_day_number_from_gregorian_date(_years, _months, 1) + new_days;
987
gregorian_date_from_julian_day_number(julian_day, &_years, &_months, &_days);
990
#endif /* NOTYETIMPLEMENTED */
992
838
* Comparison operators between a Date and a Timestamp
1225
1071
int MicroTimestamp::to_string(char *to, size_t to_len) const
1227
1073
return snprintf(to, to_len,
1228
"%04" PRIu32 "-%02" PRIu32 "-%02" PRIu32
1229
" %02" PRIu32 ":%02" PRIu32 ":%02" PRIu32 ".%06" PRIu32,
1230
_years, _months, _days,
1231
_hours, _minutes, _seconds, _useconds);
1074
"%04" PRIu32 "-%02" PRIu32 "-%02" PRIu32
1075
" %02" PRIu32 ":%02" PRIu32 ":%02" PRIu32 ".%06" PRIu32,
1076
_years, _months, _days,
1077
_hours, _minutes, _seconds, _useconds);
1234
void Time::to_decimal(my_decimal *to) const
1080
void Time::to_decimal(type::Decimal *to) const
1236
1082
int64_t time_portion= (((_hours * 100L) + _minutes) * 100L) + _seconds;
1237
(void) int2my_decimal(E_DEC_FATAL_ERROR, time_portion, false, to);
1083
(void) int2_class_decimal(E_DEC_FATAL_ERROR, time_portion, false, to);
1238
1084
if (_useconds > 0)
1240
1086
to->buf[(to->intg-1) / 9 + 1]= _useconds * 1000;
1245
void Date::to_decimal(my_decimal *to) const
1091
void Date::to_decimal(type::Decimal *to) const
1247
1093
int64_t date_portion= (((_years * 100L) + _months) * 100L) + _days;
1248
(void) int2my_decimal(E_DEC_FATAL_ERROR, date_portion, false, to);
1094
(void) int2_class_decimal(E_DEC_FATAL_ERROR, date_portion, false, to);
1251
void DateTime::to_decimal(my_decimal *to) const
1097
void DateTime::to_decimal(type::Decimal *to) const
1253
1099
int64_t date_portion= (((_years * 100L) + _months) * 100L) + _days;
1254
1100
int64_t time_portion= (((((date_portion * 100L) + _hours) * 100L) + _minutes) * 100L) + _seconds;
1255
(void) int2my_decimal(E_DEC_FATAL_ERROR, time_portion, false, to);
1101
(void) int2_class_decimal(E_DEC_FATAL_ERROR, time_portion, false, to);
1256
1102
if (_useconds > 0)
1258
1104
to->buf[(to->intg-1) / 9 + 1]= _useconds * 1000;