2015-09-29 19:21:02 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-16 05:40:17 +00:00
|
|
|
#include <common/Types.h>
|
2018-09-17 03:09:56 +00:00
|
|
|
#include <common/DayNum.h>
|
2015-09-29 19:21:02 +00:00
|
|
|
#include <common/likely.h>
|
|
|
|
#include <ctime>
|
2018-08-21 15:56:50 +00:00
|
|
|
#include <string>
|
2015-09-29 19:21:02 +00:00
|
|
|
|
2017-10-29 01:13:28 +00:00
|
|
|
#define DATE_LUT_MAX (0xFFFFFFFFU - 86400)
|
|
|
|
#define DATE_LUT_MAX_DAY_NUM (0xFFFFFFFFU / 86400)
|
2017-10-29 00:51:40 +00:00
|
|
|
/// Table size is bigger than DATE_LUT_MAX_DAY_NUM to fill all indices within UInt16 range: this allows to remove extra check.
|
|
|
|
#define DATE_LUT_SIZE 0x10000
|
2015-09-29 19:21:02 +00:00
|
|
|
#define DATE_LUT_MIN_YEAR 1970
|
2017-10-29 00:51:40 +00:00
|
|
|
#define DATE_LUT_MAX_YEAR 2105 /// Last supported year
|
2017-10-29 01:13:28 +00:00
|
|
|
#define DATE_LUT_YEARS (1 + DATE_LUT_MAX_YEAR - DATE_LUT_MIN_YEAR) /// Number of years in lookup table
|
2015-09-29 19:21:02 +00:00
|
|
|
|
|
|
|
|
2016-07-30 01:08:00 +00:00
|
|
|
/** Lookup table to conversion of time to date, and to month / year / day of week / day of month and so on.
|
|
|
|
* First time was implemented for OLAPServer, that needed to do billions of such transformations.
|
2015-09-29 19:21:02 +00:00
|
|
|
*/
|
|
|
|
class DateLUTImpl
|
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
DateLUTImpl(const std::string & time_zone);
|
2015-09-29 19:21:02 +00:00
|
|
|
|
|
|
|
public:
|
2018-12-11 19:13:22 +00:00
|
|
|
/// The order of fields matters for alignment and sizeof.
|
2017-04-01 07:20:54 +00:00
|
|
|
struct Values
|
|
|
|
{
|
|
|
|
/// Least significat 32 bits from time_t at beginning of the day.
|
2017-10-29 00:51:40 +00:00
|
|
|
/// If the unix timestamp of beginning of the day is negative (example: 1970-01-01 MSK, where time_t == -10800), then value is zero.
|
|
|
|
/// Change to time_t; change constants above; and recompile the sources if you need to support time after 2105 year.
|
|
|
|
UInt32 date;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
/// Properties of the day.
|
|
|
|
UInt16 year;
|
|
|
|
UInt8 month;
|
|
|
|
UInt8 day_of_month;
|
|
|
|
UInt8 day_of_week;
|
|
|
|
|
2017-10-29 04:18:48 +00:00
|
|
|
/// Total number of days in current month. Actually we can use separate table that is independent of time zone.
|
|
|
|
/// But due to alignment, this field is totally zero cost.
|
|
|
|
UInt8 days_in_month;
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// For days, when offset from UTC was changed due to daylight saving time or permanent change, following values could be non zero.
|
2017-07-10 19:30:10 +00:00
|
|
|
Int16 amount_of_offset_change; /// Usually -3600 or 3600, but look at Lord Howe Island.
|
2018-12-11 19:13:22 +00:00
|
|
|
UInt32 time_at_offset_change; /// In seconds from beginning of the day.
|
2017-04-01 07:20:54 +00:00
|
|
|
};
|
2015-09-29 19:21:02 +00:00
|
|
|
|
2018-12-11 19:13:22 +00:00
|
|
|
static_assert(sizeof(Values) == 16);
|
|
|
|
|
2015-09-29 19:21:02 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Lookup table is indexed by DayNum.
|
|
|
|
/// Day nums are the same in all time zones. 1970-01-01 is 0 and so on.
|
2017-10-29 06:32:21 +00:00
|
|
|
/// Table is relatively large, so better not to place the object on stack.
|
2017-04-01 07:20:54 +00:00
|
|
|
/// In comparison to std::vector, plain array is cheaper by one indirection.
|
2017-10-29 00:51:40 +00:00
|
|
|
Values lut[DATE_LUT_SIZE];
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
/// Year number after DATE_LUT_MIN_YEAR -> day num for start of year.
|
2018-05-25 13:29:15 +00:00
|
|
|
DayNum years_lut[DATE_LUT_YEARS];
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-11-15 22:58:50 +00:00
|
|
|
/// Year number after DATE_LUT_MIN_YEAR * month number starting at zero -> day num for first day of month
|
2018-05-25 13:29:15 +00:00
|
|
|
DayNum years_months_lut[DATE_LUT_YEARS * 12];
|
2017-11-15 22:58:50 +00:00
|
|
|
|
2017-10-29 00:51:40 +00:00
|
|
|
/// UTC offset at beginning of the Unix epoch. The same as unix timestamp of 1970-01-01 00:00:00 local time.
|
2017-04-01 07:20:54 +00:00
|
|
|
time_t offset_at_start_of_epoch;
|
2017-10-29 00:51:40 +00:00
|
|
|
bool offset_is_whole_number_of_hours_everytime;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
/// Time zone name.
|
|
|
|
std::string time_zone;
|
|
|
|
|
|
|
|
|
2018-03-14 16:19:22 +00:00
|
|
|
/// We can correctly process only timestamps that less DATE_LUT_MAX (i.e. up to 2105 year inclusively)
|
2017-04-01 07:20:54 +00:00
|
|
|
inline size_t findIndex(time_t t) const
|
|
|
|
{
|
|
|
|
/// First guess.
|
|
|
|
size_t guess = t / 86400;
|
|
|
|
if (guess >= DATE_LUT_MAX_DAY_NUM)
|
|
|
|
return 0;
|
|
|
|
if (t >= lut[guess].date && t < lut[guess + 1].date)
|
|
|
|
return guess;
|
|
|
|
|
|
|
|
for (size_t i = 1;; ++i)
|
|
|
|
{
|
|
|
|
if (guess + i >= DATE_LUT_MAX_DAY_NUM)
|
|
|
|
return 0;
|
|
|
|
if (t >= lut[guess + i].date && t < lut[guess + i + 1].date)
|
|
|
|
return guess + i;
|
|
|
|
if (guess < i)
|
|
|
|
return 0;
|
|
|
|
if (t >= lut[guess - i].date && t < lut[guess - i + 1].date)
|
|
|
|
return guess - i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const Values & find(time_t t) const
|
|
|
|
{
|
|
|
|
return lut[findIndex(t)];
|
|
|
|
}
|
|
|
|
|
2015-09-29 19:21:02 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
const std::string & getTimeZone() const { return time_zone; }
|
|
|
|
|
2017-10-29 00:51:40 +00:00
|
|
|
/// All functions below are thread-safe; arguments are not checked.
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-10 19:30:10 +00:00
|
|
|
inline time_t toDate(time_t t) const { return find(t).date; }
|
|
|
|
inline unsigned toMonth(time_t t) const { return find(t).month; }
|
2017-12-22 01:54:29 +00:00
|
|
|
inline unsigned toQuarter(time_t t) const { return (find(t).month - 1) / 3 + 1; }
|
2017-07-10 19:30:10 +00:00
|
|
|
inline unsigned toYear(time_t t) const { return find(t).year; }
|
|
|
|
inline unsigned toDayOfWeek(time_t t) const { return find(t).day_of_week; }
|
|
|
|
inline unsigned toDayOfMonth(time_t t) const { return find(t).day_of_month; }
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-10-29 01:13:28 +00:00
|
|
|
/// Round down to start of monday.
|
2017-07-10 19:30:10 +00:00
|
|
|
inline time_t toFirstDayOfWeek(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
size_t index = findIndex(t);
|
|
|
|
return lut[index - (lut[index].day_of_week - 1)].date;
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline DayNum toFirstDayNumOfWeek(DayNum d) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-05-25 13:29:15 +00:00
|
|
|
return DayNum(d - (lut[d].day_of_week - 1));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline DayNum toFirstDayNumOfWeek(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-12-22 01:54:29 +00:00
|
|
|
return toFirstDayNumOfWeek(toDayNum(t));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2017-10-29 01:13:28 +00:00
|
|
|
/// Round down to start of month.
|
2017-07-10 19:30:10 +00:00
|
|
|
inline time_t toFirstDayOfMonth(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
size_t index = findIndex(t);
|
|
|
|
return lut[index - (lut[index].day_of_month - 1)].date;
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline DayNum toFirstDayNumOfMonth(DayNum d) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-05-25 13:29:15 +00:00
|
|
|
return DayNum(d - (lut[d].day_of_month - 1));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline DayNum toFirstDayNumOfMonth(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-12-22 01:54:29 +00:00
|
|
|
return toFirstDayNumOfMonth(toDayNum(t));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2017-10-29 01:13:28 +00:00
|
|
|
/// Round down to start of quarter.
|
2018-05-25 13:29:15 +00:00
|
|
|
inline DayNum toFirstDayNumOfQuarter(DayNum d) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-10-29 00:51:40 +00:00
|
|
|
size_t index = d;
|
2017-10-29 22:55:27 +00:00
|
|
|
size_t month_inside_quarter = (lut[index].month - 1) % 3;
|
|
|
|
|
2017-10-30 05:55:22 +00:00
|
|
|
index = index - lut[index].day_of_month;
|
2017-10-29 22:55:27 +00:00
|
|
|
while (month_inside_quarter)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-10-29 22:55:27 +00:00
|
|
|
index = index - lut[index].day_of_month;
|
|
|
|
--month_inside_quarter;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2017-10-29 22:55:27 +00:00
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
return DayNum(index + 1);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline DayNum toFirstDayNumOfQuarter(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-10-29 22:51:00 +00:00
|
|
|
return toFirstDayNumOfQuarter(toDayNum(t));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline time_t toFirstDayOfQuarter(time_t t) const
|
|
|
|
{
|
|
|
|
return fromDayNum(toFirstDayNumOfQuarter(t));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2017-10-29 01:13:28 +00:00
|
|
|
/// Round down to start of year.
|
2017-07-10 19:30:10 +00:00
|
|
|
inline time_t toFirstDayOfYear(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
return lut[years_lut[lut[findIndex(t)].year - DATE_LUT_MIN_YEAR]].date;
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline DayNum toFirstDayNumOfYear(DayNum d) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-10-29 00:51:40 +00:00
|
|
|
return years_lut[lut[d].year - DATE_LUT_MIN_YEAR];
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline DayNum toFirstDayNumOfYear(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-12-22 01:54:29 +00:00
|
|
|
return toFirstDayNumOfYear(toDayNum(t));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 19:30:10 +00:00
|
|
|
inline time_t toFirstDayOfNextMonth(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
size_t index = findIndex(t);
|
|
|
|
index += 32 - lut[index].day_of_month;
|
|
|
|
return lut[index - (lut[index].day_of_month - 1)].date;
|
|
|
|
}
|
|
|
|
|
2017-07-10 19:30:10 +00:00
|
|
|
inline time_t toFirstDayOfPrevMonth(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
size_t index = findIndex(t);
|
|
|
|
index -= lut[index].day_of_month;
|
|
|
|
return lut[index - (lut[index].day_of_month - 1)].date;
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline UInt8 daysInMonth(DayNum d) const
|
2017-10-29 04:18:48 +00:00
|
|
|
{
|
|
|
|
return lut[d].days_in_month;
|
|
|
|
}
|
|
|
|
|
2017-10-29 22:38:06 +00:00
|
|
|
inline UInt8 daysInMonth(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-10-29 04:18:48 +00:00
|
|
|
return find(t).days_in_month;
|
|
|
|
}
|
|
|
|
|
2017-10-29 22:38:06 +00:00
|
|
|
inline UInt8 daysInMonth(UInt16 year, UInt8 month) const
|
2017-10-29 04:18:48 +00:00
|
|
|
{
|
2017-11-17 23:48:55 +00:00
|
|
|
/// 32 makes arithmetic more simple.
|
|
|
|
auto any_day_of_month = years_lut[year - DATE_LUT_MIN_YEAR] + 32 * (month - 1);
|
2017-10-29 04:18:48 +00:00
|
|
|
return lut[any_day_of_month].days_in_month;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2017-10-29 01:13:28 +00:00
|
|
|
/** Round to start of day, then shift for specified amount of days.
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
2017-10-29 22:38:06 +00:00
|
|
|
inline time_t toDateAndShift(time_t t, Int32 days) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
return lut[findIndex(t) + days].date;
|
|
|
|
}
|
|
|
|
|
2017-07-10 19:30:10 +00:00
|
|
|
inline time_t toTime(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
size_t index = findIndex(t);
|
2017-10-29 00:51:40 +00:00
|
|
|
|
|
|
|
if (unlikely(index == 0))
|
2017-10-29 06:32:21 +00:00
|
|
|
return t + offset_at_start_of_epoch;
|
2017-10-29 00:51:40 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
time_t res = t - lut[index].date;
|
|
|
|
|
|
|
|
if (res >= lut[index].time_at_offset_change)
|
|
|
|
res += lut[index].amount_of_offset_change;
|
|
|
|
|
2017-10-29 01:13:28 +00:00
|
|
|
return res - offset_at_start_of_epoch; /// Starting at 1970-01-01 00:00:00 local time.
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 19:30:10 +00:00
|
|
|
inline unsigned toHour(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
size_t index = findIndex(t);
|
2017-10-29 00:51:40 +00:00
|
|
|
|
2018-03-14 15:57:13 +00:00
|
|
|
/// If it is not 1970 year (findIndex found nothing appropriate),
|
|
|
|
/// than limit number of hours to avoid insane results like 1970-01-01 89:28:15
|
2017-10-29 00:51:40 +00:00
|
|
|
if (unlikely(index == 0))
|
2018-03-14 15:57:13 +00:00
|
|
|
return static_cast<unsigned>((t + offset_at_start_of_epoch) / 3600) % 24;
|
2017-10-29 00:51:40 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
time_t res = t - lut[index].date;
|
|
|
|
|
2018-12-12 10:08:53 +00:00
|
|
|
/// Data is cleaned to avoid possibility of underflow.
|
2017-04-01 07:20:54 +00:00
|
|
|
if (res >= lut[index].time_at_offset_change)
|
|
|
|
res += lut[index].amount_of_offset_change;
|
|
|
|
|
|
|
|
return res / 3600;
|
|
|
|
}
|
|
|
|
|
2017-10-29 00:51:40 +00:00
|
|
|
/** Only for time zones with/when offset from UTC is multiple of five minutes.
|
|
|
|
* This is true for all time zones: right now, all time zones have an offset that is multiple of 15 minutes.
|
|
|
|
*
|
|
|
|
* "By 1929, most major countries had adopted hourly time zones. Nepal was the last
|
|
|
|
* country to adopt a standard offset, shifting slightly to UTC+5:45 in 1986."
|
|
|
|
* - https://en.wikipedia.org/wiki/Time_zone#Offsets_from_UTC
|
|
|
|
*
|
|
|
|
* Also please note, that unix timestamp doesn't count "leap seconds":
|
|
|
|
* each minute, with added or subtracted leap second, spans exactly 60 unix timestamps.
|
|
|
|
*/
|
|
|
|
|
|
|
|
inline unsigned toSecond(time_t t) const { return t % 60; }
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-10-29 00:51:40 +00:00
|
|
|
inline unsigned toMinute(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-10-29 00:51:40 +00:00
|
|
|
if (offset_is_whole_number_of_hours_everytime)
|
|
|
|
return (t / 60) % 60;
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
time_t date = find(t).date;
|
2017-10-29 00:51:40 +00:00
|
|
|
return (t - date) / 60 % 60;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2017-10-29 00:51:40 +00:00
|
|
|
inline time_t toStartOfMinute(time_t t) const { return t / 60 * 60; }
|
|
|
|
inline time_t toStartOfFiveMinute(time_t t) const { return t / 300 * 300; }
|
2017-12-22 10:36:39 +00:00
|
|
|
inline time_t toStartOfFifteenMinutes(time_t t) const { return t / 900 * 900; }
|
2017-10-29 00:51:40 +00:00
|
|
|
|
|
|
|
inline time_t toStartOfHour(time_t t) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-10-29 00:51:40 +00:00
|
|
|
if (offset_is_whole_number_of_hours_everytime)
|
|
|
|
return t / 3600 * 3600;
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
time_t date = find(t).date;
|
2017-10-29 00:51:40 +00:00
|
|
|
/// Still can return wrong values for time at 1970-01-01 if the UTC offset was non-whole number of hours.
|
2017-04-01 07:20:54 +00:00
|
|
|
return date + (t - date) / 3600 * 3600;
|
|
|
|
}
|
|
|
|
|
2017-10-29 00:51:40 +00:00
|
|
|
/** Number of calendar day since the beginning of UNIX epoch (1970-01-01 is zero)
|
|
|
|
* We use just two bytes for it. It covers the range up to 2105 and slightly more.
|
|
|
|
*
|
|
|
|
* This is "calendar" day, it itself is independent of time zone
|
|
|
|
* (conversion from/to unix timestamp will depend on time zone,
|
|
|
|
* because the same calendar day starts/ends at different timestamps in different time zones)
|
|
|
|
*/
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline DayNum toDayNum(time_t t) const { return static_cast<DayNum>(findIndex(t)); }
|
|
|
|
inline time_t fromDayNum(DayNum d) const { return lut[d].date; }
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline time_t toDate(DayNum d) const { return lut[d].date; }
|
|
|
|
inline unsigned toMonth(DayNum d) const { return lut[d].month; }
|
|
|
|
inline unsigned toQuarter(DayNum d) const { return (lut[d].month - 1) / 3 + 1; }
|
|
|
|
inline unsigned toYear(DayNum d) const { return lut[d].year; }
|
|
|
|
inline unsigned toDayOfWeek(DayNum d) const { return lut[d].day_of_week; }
|
|
|
|
inline unsigned toDayOfMonth(DayNum d) const { return lut[d].day_of_month; }
|
2018-09-17 01:27:34 +00:00
|
|
|
inline unsigned toDayOfYear(DayNum d) const { return d + 1 - toFirstDayNumOfYear(d); }
|
|
|
|
|
|
|
|
inline unsigned toDayOfYear(time_t t) const { return toDayOfYear(toDayNum(t)); }
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-10-29 01:13:28 +00:00
|
|
|
/// Number of week from some fixed moment in the past. Week begins at monday.
|
|
|
|
/// (round down to monday and divide DayNum by 7; we made an assumption,
|
|
|
|
/// that in domain of the function there was no weeks with any other number of days than 7)
|
2018-05-25 13:29:15 +00:00
|
|
|
inline unsigned toRelativeWeekNum(DayNum d) const
|
2017-10-29 01:13:28 +00:00
|
|
|
{
|
|
|
|
/// We add 8 to avoid underflow at beginning of unix epoch.
|
2018-09-17 00:42:39 +00:00
|
|
|
return (d + 8 - toDayOfWeek(d)) / 7;
|
2017-10-29 01:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned toRelativeWeekNum(time_t t) const
|
|
|
|
{
|
2017-12-22 01:54:29 +00:00
|
|
|
return toRelativeWeekNum(toDayNum(t));
|
2017-10-29 01:13:28 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 00:42:39 +00:00
|
|
|
/// Get year that contains most of the current week. Week begins at monday.
|
|
|
|
inline unsigned toISOYear(DayNum d) const
|
|
|
|
{
|
|
|
|
/// That's effectively the year of thursday of current week.
|
2018-09-17 01:00:55 +00:00
|
|
|
return toYear(DayNum(d + 4 - toDayOfWeek(d)));
|
2018-09-17 00:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned toISOYear(time_t t) const
|
|
|
|
{
|
|
|
|
return toISOYear(toDayNum(t));
|
|
|
|
}
|
|
|
|
|
2018-09-17 03:09:56 +00:00
|
|
|
/// ISO year begins with a monday of the week that is contained more than by half in the corresponding calendar year.
|
|
|
|
/// Example: ISO year 2019 begins at 2018-12-31. And ISO year 2017 begins at 2017-01-02.
|
|
|
|
/// https://en.wikipedia.org/wiki/ISO_week_date
|
2018-09-17 00:42:39 +00:00
|
|
|
inline DayNum toFirstDayNumOfISOYear(DayNum d) const
|
|
|
|
{
|
2018-09-17 03:09:56 +00:00
|
|
|
auto iso_year = toISOYear(d);
|
|
|
|
|
|
|
|
DayNum first_day_of_year = years_lut[iso_year - DATE_LUT_MIN_YEAR];
|
2018-09-17 00:42:39 +00:00
|
|
|
auto first_day_of_week_of_year = lut[first_day_of_year].day_of_week;
|
|
|
|
|
|
|
|
return DayNum(first_day_of_week_of_year <= 4
|
|
|
|
? first_day_of_year + 1 - first_day_of_week_of_year
|
|
|
|
: first_day_of_year + 8 - first_day_of_week_of_year);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline DayNum toFirstDayNumOfISOYear(time_t t) const
|
|
|
|
{
|
|
|
|
return toFirstDayNumOfISOYear(toDayNum(t));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline time_t toFirstDayOfISOYear(time_t t) const
|
|
|
|
{
|
|
|
|
return fromDayNum(toFirstDayNumOfISOYear(t));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ISO 8601 week number. Week begins at monday.
|
|
|
|
/// The week number 1 is the first week in year that contains 4 or more days (that's more than half).
|
|
|
|
inline unsigned toISOWeek(DayNum d) const
|
|
|
|
{
|
2018-09-17 03:09:56 +00:00
|
|
|
return 1 + (toFirstDayNumOfWeek(d) - toFirstDayNumOfISOYear(d)) / 7;
|
2018-09-17 00:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned toISOWeek(time_t t) const
|
|
|
|
{
|
|
|
|
return toISOWeek(toDayNum(t));
|
|
|
|
}
|
|
|
|
|
2017-10-29 01:13:28 +00:00
|
|
|
/// Number of month from some fixed moment in the past (year * 12 + month)
|
2018-05-25 13:29:15 +00:00
|
|
|
inline unsigned toRelativeMonthNum(DayNum d) const
|
2017-10-29 01:13:28 +00:00
|
|
|
{
|
|
|
|
return lut[d].year * 12 + lut[d].month;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned toRelativeMonthNum(time_t t) const
|
|
|
|
{
|
2017-12-22 01:54:29 +00:00
|
|
|
return toRelativeMonthNum(toDayNum(t));
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline unsigned toRelativeQuarterNum(DayNum d) const
|
2017-12-22 01:54:29 +00:00
|
|
|
{
|
|
|
|
return lut[d].year * 4 + (lut[d].month - 1) / 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned toRelativeQuarterNum(time_t t) const
|
|
|
|
{
|
|
|
|
return toRelativeQuarterNum(toDayNum(t));
|
2017-10-29 01:13:28 +00:00
|
|
|
}
|
|
|
|
|
2017-12-13 18:42:13 +00:00
|
|
|
/// We count all hour-length intervals, unrelated to offset changes.
|
2017-10-29 01:13:28 +00:00
|
|
|
inline time_t toRelativeHourNum(time_t t) const
|
|
|
|
{
|
|
|
|
if (offset_is_whole_number_of_hours_everytime)
|
|
|
|
return t / 3600;
|
|
|
|
|
|
|
|
/// Assume that if offset was fractional, then the fraction is the same as at the beginning of epoch.
|
2017-10-30 06:27:21 +00:00
|
|
|
/// NOTE This assumption is false for "Pacific/Pitcairn" time zone.
|
2017-10-29 01:13:28 +00:00
|
|
|
return (t + 86400 - offset_at_start_of_epoch) / 3600;
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline time_t toRelativeHourNum(DayNum d) const
|
2017-12-22 01:54:29 +00:00
|
|
|
{
|
|
|
|
return toRelativeHourNum(lut[d].date);
|
|
|
|
}
|
|
|
|
|
2017-10-29 01:13:28 +00:00
|
|
|
inline time_t toRelativeMinuteNum(time_t t) const
|
|
|
|
{
|
|
|
|
return t / 60;
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline time_t toRelativeMinuteNum(DayNum d) const
|
2017-12-22 01:54:29 +00:00
|
|
|
{
|
|
|
|
return toRelativeMinuteNum(lut[d].date);
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
/// Create DayNum from year, month, day of month.
|
|
|
|
inline DayNum makeDayNum(UInt16 year, UInt8 month, UInt8 day_of_month) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
if (unlikely(year < DATE_LUT_MIN_YEAR || year > DATE_LUT_MAX_YEAR || month < 1 || month > 12 || day_of_month < 1 || day_of_month > 31))
|
2018-05-25 13:29:15 +00:00
|
|
|
return DayNum(0);
|
2017-11-15 22:58:50 +00:00
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
return DayNum(years_months_lut[(year - DATE_LUT_MIN_YEAR) * 12 + month - 1] + day_of_month - 1);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2017-10-29 22:38:06 +00:00
|
|
|
inline time_t makeDate(UInt16 year, UInt8 month, UInt8 day_of_month) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
return lut[makeDayNum(year, month, day_of_month)].date;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Does not accept daylight saving time as argument: in case of ambiguity, it choose greater timestamp.
|
|
|
|
*/
|
2017-10-29 22:38:06 +00:00
|
|
|
inline time_t makeDateTime(UInt16 year, UInt8 month, UInt8 day_of_month, UInt8 hour, UInt8 minute, UInt8 second) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
size_t index = makeDayNum(year, month, day_of_month);
|
|
|
|
time_t time_offset = hour * 3600 + minute * 60 + second;
|
|
|
|
|
|
|
|
if (time_offset >= lut[index].time_at_offset_change)
|
|
|
|
time_offset -= lut[index].amount_of_offset_change;
|
|
|
|
|
|
|
|
return lut[index].date + time_offset;
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline const Values & getValues(DayNum d) const { return lut[d]; }
|
2017-10-29 01:13:28 +00:00
|
|
|
inline const Values & getValues(time_t t) const { return lut[findIndex(t)]; }
|
|
|
|
|
2017-07-21 14:22:53 +00:00
|
|
|
inline UInt32 toNumYYYYMM(time_t t) const
|
|
|
|
{
|
|
|
|
const Values & values = find(t);
|
|
|
|
return values.year * 100 + values.month;
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline UInt32 toNumYYYYMM(DayNum d) const
|
2017-07-21 14:22:53 +00:00
|
|
|
{
|
2017-10-29 00:51:40 +00:00
|
|
|
const Values & values = lut[d];
|
2017-07-21 14:22:53 +00:00
|
|
|
return values.year * 100 + values.month;
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
inline UInt32 toNumYYYYMMDD(time_t t) const
|
|
|
|
{
|
|
|
|
const Values & values = find(t);
|
|
|
|
return values.year * 10000 + values.month * 100 + values.day_of_month;
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline UInt32 toNumYYYYMMDD(DayNum d) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-10-29 00:51:40 +00:00
|
|
|
const Values & values = lut[d];
|
2017-04-01 07:20:54 +00:00
|
|
|
return values.year * 10000 + values.month * 100 + values.day_of_month;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline time_t YYYYMMDDToDate(UInt32 num) const
|
|
|
|
{
|
|
|
|
return makeDate(num / 10000, num / 100 % 100, num % 100);
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline DayNum YYYYMMDDToDayNum(UInt32 num) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
return makeDayNum(num / 10000, num / 100 % 100, num % 100);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline UInt64 toNumYYYYMMDDhhmmss(time_t t) const
|
|
|
|
{
|
|
|
|
const Values & values = find(t);
|
|
|
|
return
|
2017-10-29 00:51:40 +00:00
|
|
|
toSecond(t)
|
|
|
|
+ toMinute(t) * 100
|
2017-07-10 19:30:10 +00:00
|
|
|
+ toHour(t) * 10000
|
|
|
|
+ UInt64(values.day_of_month) * 1000000
|
|
|
|
+ UInt64(values.month) * 100000000
|
|
|
|
+ UInt64(values.year) * 10000000000;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline time_t YYYYMMDDhhmmssToTime(UInt64 num) const
|
|
|
|
{
|
|
|
|
return makeDateTime(
|
|
|
|
num / 10000000000,
|
|
|
|
num / 100000000 % 100,
|
|
|
|
num / 1000000 % 100,
|
|
|
|
num / 10000 % 100,
|
|
|
|
num / 100 % 100,
|
|
|
|
num % 100);
|
|
|
|
}
|
|
|
|
|
2017-10-29 04:18:48 +00:00
|
|
|
/// Adding calendar intervals.
|
|
|
|
/// Implementation specific behaviour when delta is too big.
|
|
|
|
|
2017-10-29 22:38:06 +00:00
|
|
|
inline time_t addDays(time_t t, Int64 delta) const
|
2017-10-29 04:18:48 +00:00
|
|
|
{
|
2018-12-23 20:01:17 +00:00
|
|
|
UInt16 index = findIndex(t); /// Using UInt16 to possibly overflow within valid range.
|
2017-10-29 04:18:48 +00:00
|
|
|
time_t time_offset = toHour(t) * 3600 + toMinute(t) * 60 + toSecond(t);
|
|
|
|
|
|
|
|
index += delta;
|
|
|
|
|
|
|
|
if (time_offset >= lut[index].time_at_offset_change)
|
|
|
|
time_offset -= lut[index].amount_of_offset_change;
|
|
|
|
|
|
|
|
return lut[index].date + time_offset;
|
|
|
|
}
|
|
|
|
|
2017-10-29 22:38:06 +00:00
|
|
|
inline time_t addWeeks(time_t t, Int64 delta) const
|
2017-10-29 04:18:48 +00:00
|
|
|
{
|
|
|
|
return addDays(t, delta * 7);
|
|
|
|
}
|
|
|
|
|
2017-10-29 22:38:06 +00:00
|
|
|
inline UInt8 saturateDayOfMonth(UInt16 year, UInt8 month, UInt8 day_of_month) const
|
2017-10-29 04:18:48 +00:00
|
|
|
{
|
|
|
|
if (likely(day_of_month <= 28))
|
|
|
|
return day_of_month;
|
|
|
|
|
2017-10-29 22:38:06 +00:00
|
|
|
UInt8 days_in_month = daysInMonth(year, month);
|
2017-10-29 04:18:48 +00:00
|
|
|
|
|
|
|
if (day_of_month > days_in_month)
|
|
|
|
day_of_month = days_in_month;
|
|
|
|
|
|
|
|
return day_of_month;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// If resulting month has less deys than source month, then saturation can happen.
|
|
|
|
/// Example: 31 Aug + 1 month = 30 Sep.
|
2017-10-29 22:38:06 +00:00
|
|
|
inline time_t addMonths(time_t t, Int64 delta) const
|
2017-10-29 04:18:48 +00:00
|
|
|
{
|
2018-05-25 13:29:15 +00:00
|
|
|
DayNum result_day = addMonths(toDayNum(t), delta);
|
2017-10-29 04:18:48 +00:00
|
|
|
|
|
|
|
time_t time_offset = toHour(t) * 3600 + toMinute(t) * 60 + toSecond(t);
|
|
|
|
|
|
|
|
if (time_offset >= lut[result_day].time_at_offset_change)
|
|
|
|
time_offset -= lut[result_day].amount_of_offset_change;
|
|
|
|
|
|
|
|
return lut[result_day].date + time_offset;
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline DayNum addMonths(DayNum d, Int64 delta) const
|
2017-10-29 04:18:48 +00:00
|
|
|
{
|
|
|
|
const Values & values = lut[d];
|
|
|
|
|
2017-12-06 04:16:01 +00:00
|
|
|
Int64 month = static_cast<Int64>(values.month) + delta;
|
|
|
|
|
|
|
|
if (month > 0)
|
|
|
|
{
|
|
|
|
auto year = values.year + (month - 1) / 12;
|
|
|
|
month = ((month - 1) % 12) + 1;
|
|
|
|
auto day_of_month = saturateDayOfMonth(year, month, values.day_of_month);
|
2017-10-29 04:18:48 +00:00
|
|
|
|
2017-12-06 04:16:01 +00:00
|
|
|
return makeDayNum(year, month, day_of_month);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto year = values.year - (12 - month) / 12;
|
|
|
|
month = 12 - (-month % 12);
|
|
|
|
auto day_of_month = saturateDayOfMonth(year, month, values.day_of_month);
|
|
|
|
|
|
|
|
return makeDayNum(year, month, day_of_month);
|
|
|
|
}
|
2017-10-29 04:18:48 +00:00
|
|
|
}
|
|
|
|
|
2018-12-18 13:16:48 +00:00
|
|
|
inline time_t addQuarters(time_t t, Int64 delta) const
|
|
|
|
{
|
|
|
|
return addMonths(t, delta * 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline DayNum addQuarters(DayNum d, Int64 delta) const
|
|
|
|
{
|
|
|
|
return addMonths(d, delta * 3);
|
|
|
|
}
|
|
|
|
|
2017-10-29 04:18:48 +00:00
|
|
|
/// Saturation can occur if 29 Feb is mapped to non-leap year.
|
2017-10-29 22:38:06 +00:00
|
|
|
inline time_t addYears(time_t t, Int64 delta) const
|
2017-10-29 04:18:48 +00:00
|
|
|
{
|
2018-05-25 13:29:15 +00:00
|
|
|
DayNum result_day = addYears(toDayNum(t), delta);
|
2017-10-29 04:18:48 +00:00
|
|
|
|
|
|
|
time_t time_offset = toHour(t) * 3600 + toMinute(t) * 60 + toSecond(t);
|
|
|
|
|
|
|
|
if (time_offset >= lut[result_day].time_at_offset_change)
|
|
|
|
time_offset -= lut[result_day].amount_of_offset_change;
|
|
|
|
|
|
|
|
return lut[result_day].date + time_offset;
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline DayNum addYears(DayNum d, Int64 delta) const
|
2017-10-29 04:18:48 +00:00
|
|
|
{
|
|
|
|
const Values & values = lut[d];
|
|
|
|
|
|
|
|
auto year = values.year + delta;
|
|
|
|
auto month = values.month;
|
|
|
|
auto day_of_month = values.day_of_month;
|
|
|
|
|
|
|
|
/// Saturation to 28 Feb can happen.
|
|
|
|
if (unlikely(day_of_month == 29 && month == 2))
|
|
|
|
day_of_month = saturateDayOfMonth(year, month, day_of_month);
|
|
|
|
|
|
|
|
return makeDayNum(year, month, day_of_month);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
inline std::string timeToString(time_t t) const
|
|
|
|
{
|
|
|
|
const Values & values = find(t);
|
|
|
|
|
|
|
|
std::string s {"0000-00-00 00:00:00"};
|
|
|
|
|
|
|
|
s[0] += values.year / 1000;
|
|
|
|
s[1] += (values.year / 100) % 10;
|
|
|
|
s[2] += (values.year / 10) % 10;
|
|
|
|
s[3] += values.year % 10;
|
|
|
|
s[5] += values.month / 10;
|
|
|
|
s[6] += values.month % 10;
|
|
|
|
s[8] += values.day_of_month / 10;
|
|
|
|
s[9] += values.day_of_month % 10;
|
|
|
|
|
|
|
|
auto hour = toHour(t);
|
2017-10-29 00:51:40 +00:00
|
|
|
auto minute = toMinute(t);
|
|
|
|
auto second = toSecond(t);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
s[11] += hour / 10;
|
|
|
|
s[12] += hour % 10;
|
|
|
|
s[14] += minute / 10;
|
|
|
|
s[15] += minute % 10;
|
|
|
|
s[17] += second / 10;
|
|
|
|
s[18] += second % 10;
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline std::string dateToString(time_t t) const
|
|
|
|
{
|
|
|
|
const Values & values = find(t);
|
|
|
|
|
|
|
|
std::string s {"0000-00-00"};
|
|
|
|
|
|
|
|
s[0] += values.year / 1000;
|
|
|
|
s[1] += (values.year / 100) % 10;
|
|
|
|
s[2] += (values.year / 10) % 10;
|
|
|
|
s[3] += values.year % 10;
|
|
|
|
s[5] += values.month / 10;
|
|
|
|
s[6] += values.month % 10;
|
|
|
|
s[8] += values.day_of_month / 10;
|
|
|
|
s[9] += values.day_of_month % 10;
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2018-05-25 13:29:15 +00:00
|
|
|
inline std::string dateToString(DayNum d) const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-10-29 00:51:40 +00:00
|
|
|
const Values & values = lut[d];
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
std::string s {"0000-00-00"};
|
|
|
|
|
|
|
|
s[0] += values.year / 1000;
|
|
|
|
s[1] += (values.year / 100) % 10;
|
|
|
|
s[2] += (values.year / 10) % 10;
|
|
|
|
s[3] += values.year % 10;
|
|
|
|
s[5] += values.month / 10;
|
|
|
|
s[6] += values.month % 10;
|
|
|
|
s[8] += values.day_of_month / 10;
|
|
|
|
s[9] += values.day_of_month % 10;
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
2017-10-29 00:51:40 +00:00
|
|
|
|
|
|
|
inline bool isOffsetWholeNumberOfHoursEveryTime() const { return offset_is_whole_number_of_hours_everytime; }
|
2015-09-29 19:21:02 +00:00
|
|
|
};
|