12#define _DEFAULT_SOURCE
14#include "ruby/internal/config.h"
30#if defined(HAVE_SYS_TIME_H)
36#include "internal/array.h"
37#include "internal/hash.h"
38#include "internal/compar.h"
39#include "internal/error.h"
40#include "internal/numeric.h"
41#include "internal/rational.h"
42#include "internal/string.h"
43#include "internal/time.h"
44#include "internal/variable.h"
50# include <timezoneapi.h>
55static ID id_submicro, id_nano_num, id_nano_den, id_offset, id_zone;
56static ID id_nanosecond, id_microsecond, id_millisecond, id_nsec, id_usec;
57static ID id_local_to_utc, id_utc_to_local, id_find_timezone;
58static ID id_year, id_mon, id_mday, id_hour, id_min, id_sec, id_isdst;
59static VALUE str_utc, str_empty;
62static VALUE sym_year, sym_month, sym_day, sym_yday, sym_wday;
63static VALUE sym_hour, sym_min, sym_sec, sym_subsec, sym_dst, sym_zone;
67#define id_divmod idDivmod
69#define UTC_ZONE Qundef
71#define NDIV(x,y) (-(-((x)+1)/(y))-1)
72#define NMOD(x,y) ((y)-(-((x)+1)%(y))-1)
73#define DIV(n,d) ((n)<0 ? NDIV((n),(d)) : (n)/(d))
74#define MOD(n,d) ((n)<0 ? NMOD((n),(d)) : (n)%(d))
75#define VTM_WDAY_INITVAL (7)
76#define VTM_ISDST_INITVAL (3)
91 if ((
long)x < (
long)y)
93 if ((
long)x > (
long)y)
97 if (RB_BIGNUM_TYPE_P(x))
return FIX2INT(rb_big_cmp(x, y));
98 return rb_cmpint(
rb_funcall(x, idCmp, 1, y), x, y);
101#define ne(x,y) (!eq((x),(y)))
102#define lt(x,y) (cmp((x),(y)) < 0)
103#define gt(x,y) (cmp((x),(y)) > 0)
104#define le(x,y) (cmp((x),(y)) <= 0)
105#define ge(x,y) (cmp((x),(y)) >= 0)
113 if (RB_BIGNUM_TYPE_P(x))
return rb_big_plus(x, y);
123 if (RB_BIGNUM_TYPE_P(x))
return rb_big_minus(x, y);
131 return rb_fix_mul_fix(x, y);
133 if (RB_BIGNUM_TYPE_P(x))
134 return rb_big_mul(x, y);
142 return rb_fix_div_fix(x, y);
144 if (RB_BIGNUM_TYPE_P(x))
145 return rb_big_div(x, y);
154 if (
FIXNUM_P(x))
return rb_fix_mod_fix(x, y);
156 if (RB_BIGNUM_TYPE_P(x))
return rb_big_modulo(x, y);
160#define neg(x) (subv(INT2FIX(0), (x)))
176 return rb_numeric_quo(x, y);
182 VALUE ret = quor(x, y);
184 RRATIONAL(ret)->den ==
INT2FIX(1)) {
185 ret = RRATIONAL(ret)->num;
190#define mulquov(x,y,z) (((y) == (z)) ? (x) : quov(mulv((x),(y)),(z)))
199 rb_fix_divmod_fix(n, d, q, r);
206 rb_raise(
rb_eTypeError,
"unexpected divmod result: into %"PRIsVALUE,
214# define INT64toNUM(x) LONG2NUM(x)
215#elif defined(HAVE_LONG_LONG) && SIZEOF_LONG_LONG == 8
216# define INT64toNUM(x) LL2NUM(x)
219#if defined(HAVE_UINT64_T) && SIZEOF_LONG*2 <= SIZEOF_UINT64_T
220 typedef uint64_t uwideint_t;
221 typedef int64_t wideint_t;
222 typedef uint64_t WIDEVALUE;
223 typedef int64_t SIGNED_WIDEVALUE;
224# define WIDEVALUE_IS_WIDER 1
225# define UWIDEINT_MAX UINT64_MAX
226# define WIDEINT_MAX INT64_MAX
227# define WIDEINT_MIN INT64_MIN
228# define FIXWINT_P(tv) ((tv) & 1)
229# define FIXWVtoINT64(tv) RSHIFT((SIGNED_WIDEVALUE)(tv), 1)
230# define INT64toFIXWV(wi) ((WIDEVALUE)((SIGNED_WIDEVALUE)(wi) << 1 | FIXNUM_FLAG))
231# define FIXWV_MAX (((int64_t)1 << 62) - 1)
232# define FIXWV_MIN (-((int64_t)1 << 62))
233# define FIXWVABLE(wi) (POSFIXWVABLE(wi) && NEGFIXWVABLE(wi))
234# define WINT2FIXWV(i) WIDEVAL_WRAP(INT64toFIXWV(i))
235# define FIXWV2WINT(w) FIXWVtoINT64(WIDEVAL_GET(w))
237 typedef unsigned long uwideint_t;
238 typedef long wideint_t;
239 typedef VALUE WIDEVALUE;
241# define WIDEVALUE_IS_WIDER 0
242# define UWIDEINT_MAX ULONG_MAX
243# define WIDEINT_MAX LONG_MAX
244# define WIDEINT_MIN LONG_MIN
245# define FIXWINT_P(v) FIXNUM_P(v)
246# define FIXWV_MAX FIXNUM_MAX
247# define FIXWV_MIN FIXNUM_MIN
248# define FIXWVABLE(i) FIXABLE(i)
249# define WINT2FIXWV(i) WIDEVAL_WRAP(LONG2FIX(i))
250# define FIXWV2WINT(w) FIX2LONG(WIDEVAL_GET(w))
253#define SIZEOF_WIDEINT SIZEOF_INT64_T
254#define POSFIXWVABLE(wi) ((wi) < FIXWV_MAX+1)
255#define NEGFIXWVABLE(wi) ((wi) >= FIXWV_MIN)
256#define FIXWV_P(w) FIXWINT_P(WIDEVAL_GET(w))
257#define MUL_OVERFLOW_FIXWV_P(a, b) MUL_OVERFLOW_SIGNED_INTEGER_P(a, b, FIXWV_MIN, FIXWV_MAX)
260#if WIDEVALUE_IS_WIDER && SIZEOF_VALUE < SIZEOF_INT64_T
266 WIDEVAL_WRAP(WIDEVALUE v)
269 w.value = (
VALUE)(uint32_t)v;
270 w.hi = (uint32_t)(v >> 32);
273 static inline WIDEVALUE
276 return ((WIDEVALUE)w.hi << 32) | (uint32_t)w.value;
283 WIDEVAL_WRAP(WIDEVALUE v)
289 static inline WIDEVALUE
292 return (WIDEVALUE)w.value;
296#if WIDEVALUE_IS_WIDER
298 wint2wv(wideint_t wi)
301 return WINT2FIXWV(wi);
303 return WIDEVAL_WRAP(INT64toNUM(wi));
305# define WINT2WV(wi) wint2wv(wi)
307# define WINT2WV(wi) WIDEVAL_WRAP(LONG2NUM(wi))
313#if WIDEVALUE_IS_WIDER
315 return INT64toNUM(FIXWV2WINT(w));
316 return (
VALUE)WIDEVAL_GET(w);
318 return WIDEVAL_GET(w);
322#if WIDEVALUE_IS_WIDER
328 sign = rb_integer_pack(v, &u, 1,
sizeof(u), 0,
331 return WINT2FIXWV(0);
332 else if (sign == -1) {
334 return WINT2FIXWV(-(wideint_t)u);
336 else if (sign == +1) {
338 return WINT2FIXWV((wideint_t)u);
340 return WIDEVAL_WRAP(v);
348 if (RRATIONAL(v)->den !=
LONG2FIX(1))
349 return WIDEVAL_WRAP(v);
350 v = RRATIONAL(v)->num;
352#if WIDEVALUE_IS_WIDER
354 return WIDEVAL_WRAP((WIDEVALUE)(SIGNED_WIDEVALUE)(
long)v);
356 else if (RB_BIGNUM_TYPE_P(v) &&
357 rb_absint_size(v, NULL) <=
sizeof(WIDEVALUE)) {
358 return v2w_bignum(v);
361 return WIDEVAL_WRAP(v);
364#define NUM2WV(v) v2w(rb_Integer(v))
369#if WIDEVALUE_IS_WIDER
370 if (FIXWV_P(wx) && FIXWV_P(wy)) {
371 return WIDEVAL_GET(wx) == WIDEVAL_GET(wy);
375 return eq(WIDEVAL_GET(wx), WIDEVAL_GET(wy));
383#if WIDEVALUE_IS_WIDER
384 if (FIXWV_P(wx) && FIXWV_P(wy)) {
400#define wne(x,y) (!weq((x),(y)))
401#define wlt(x,y) (wcmp((x),(y)) < 0)
402#define wgt(x,y) (wcmp((x),(y)) > 0)
403#define wle(x,y) (wcmp((x),(y)) <= 0)
404#define wge(x,y) (wcmp((x),(y)) >= 0)
409#if WIDEVALUE_IS_WIDER
410 if (FIXWV_P(wx) && FIXWV_P(wy)) {
411 wideint_t r = FIXWV2WINT(wx) + FIXWV2WINT(wy);
415 return v2w(addv(w2v(wx), w2v(wy)));
421#if WIDEVALUE_IS_WIDER
422 if (FIXWV_P(wx) && FIXWV_P(wy)) {
423 wideint_t r = FIXWV2WINT(wx) - FIXWV2WINT(wy);
427 return v2w(subv(w2v(wx), w2v(wy)));
433#if WIDEVALUE_IS_WIDER
434 if (FIXWV_P(wx) && FIXWV_P(wy)) {
435 if (!MUL_OVERFLOW_FIXWV_P(FIXWV2WINT(wx), FIXWV2WINT(wy)))
436 return WINT2WV(FIXWV2WINT(wx) * FIXWV2WINT(wy));
439 return v2w(mulv(w2v(wx), w2v(wy)));
445#if WIDEVALUE_IS_WIDER
446 if (FIXWV_P(wx) && FIXWV_P(wy)) {
457 return v2w(quov(w2v(wx), w2v(wy)));
460#define wmulquo(x,y,z) ((WIDEVAL_GET(y) == WIDEVAL_GET(z)) ? (x) : wquo(wmul((x),(y)),(z)))
461#define wmulquoll(x,y,z) (((y) == (z)) ? (x) : wquo(wmul((x),WINT2WV(y)),WINT2WV(z)))
463#if WIDEVALUE_IS_WIDER
467 if (FIXWV_P(wn) && FIXWV_P(wd)) {
468 wideint_t n, d, q, r;
477 wideint_t xneg = -FIXWV2WINT(wn);
490 if (d > 0 ? r < 0 : r > 0) {
506#if WIDEVALUE_IS_WIDER
507 if (wdivmod0(wn, wd, wq, wr))
return;
509 divmodv(w2v(wn), w2v(wd), &vq, &vr);
517 if (WIDEVAL_GET(wy) == WIDEVAL_GET(wz)) {
522 wdivmod(wmul(wx,wy), wz, wq, wr);
528#if WIDEVALUE_IS_WIDER
530 if (wdivmod0(wx, wy, &q, &dmy))
return q;
532 return v2w(divv(w2v(wx), w2v(wy)));
538#if WIDEVALUE_IS_WIDER
540 if (wdivmod0(wx, wy, &dmy, &r))
return r;
542 return v2w(modv(w2v(wx), w2v(wy)));
546num_exact_check(
VALUE v)
557 tmp = rb_rational_canonicalize(v);
571 tmp = rb_rational_canonicalize(tmp);
587NORETURN(
static void num_exact_fail(
VALUE v));
589num_exact_fail(
VALUE v)
591 rb_cant_convert(v,
"an exact number");
597 VALUE num = num_exact_check(v);
598 if (
NIL_P(num)) num_exact_fail(v);
605static const int TIME_SCALE_NUMDIGITS =
rb_strlen_lit(STRINGIZE(TIME_SCALE)) - 1;
610 return wmul(w, WINT2FIXWV(TIME_SCALE));
614rb_time_unmagnify_to_rational(
wideval_t w)
616 return quor(w2v(w),
INT2FIX(TIME_SCALE));
622 return v2w(rb_time_unmagnify_to_rational(w));
629#if WIDEVALUE_IS_WIDER
638 v =
DBL2NUM((
double)FIXWV2WINT(w));
639 return quov(v,
DBL2NUM(TIME_SCALE));
646 return quov(v,
DBL2NUM(TIME_SCALE));
653 wdivmod(timew, WINT2FIXWV(TIME_SCALE), &q, &r);
661#if WIDEVALUE_IS_WIDER
662 if (TIMET_MIN == 0) {
663 uwideint_t wi = (uwideint_t)t;
664 if (wi <= FIXWV_MAX) {
665 return WINT2FIXWV(wi);
669 wideint_t wi = (wideint_t)t;
670 if (FIXWV_MIN <= wi && wi <= FIXWV_MAX) {
671 return WINT2FIXWV(wi);
675 return v2w(TIMET2NUM(t));
677#define TIMET2WV(t) timet2wv(t)
682#if WIDEVALUE_IS_WIDER
684 wideint_t wi = FIXWV2WINT(w);
685 if (TIMET_MIN == 0) {
687 rb_raise(
rb_eRangeError,
"negative value to convert into 'time_t'");
688 if (TIMET_MAX < (uwideint_t)wi)
692 if (wi < TIMET_MIN || TIMET_MAX < wi)
698 return NUM2TIMET(w2v(w));
700#define WV2TIMET(t) wv2timet(t)
703static VALUE rb_cTimeTM;
705static int obj2int(
VALUE obj);
706static uint32_t obj2ubits(
VALUE obj,
unsigned int bits);
708static uint32_t month_arg(
VALUE arg);
709static VALUE validate_utc_offset(
VALUE utc_offset);
710static VALUE validate_zone_name(
VALUE zone_name);
711static void validate_vtm(
struct vtm *
vtm);
712static void vtm_add_day(
struct vtm *
vtm,
int day);
713static uint32_t obj2subsecx(
VALUE obj,
VALUE *subsecx);
720static time_t timegm_noleapsecond(
struct tm *tm);
721static int tmcmp(
struct tm *a,
struct tm *b);
722static int vtmcmp(
struct vtm *a,
struct vtm *b);
723static const char *find_time_t(
struct tm *tptr,
int utc_p, time_t *tp);
727static int leap_year_p(
long y);
728#define leap_year_v_p(y) leap_year_p(NUM2LONG(modv((y), INT2FIX(400))))
732bool ruby_tz_uptodate_p;
735enum {tzkey_max = numberof(((DYNAMIC_TIME_ZONE_INFORMATION *)NULL)->TimeZoneKeyName)};
738 char name[tzkey_max * 4 + 1];
744 if (w32_tz.use_tzkey) {
745 if (w32_tz.name[0]) {
755 DYNAMIC_TIME_ZONE_INFORMATION tzi;
756 WCHAR *
const wtzkey = tzi.TimeZoneKeyName;
757 DWORD tzret = GetDynamicTimeZoneInformation(&tzi);
758 if (tzret != TIME_ZONE_ID_INVALID && *wtzkey) {
759 int wlen = (int)wcsnlen(wtzkey, tzkey_max);
760 int clen = WideCharToMultiByte(CP_UTF8, 0, wtzkey, wlen,
761 w32_tz.name,
sizeof(w32_tz.name) - 1,
763 w32_tz.name[clen] =
'\0';
768 return _tzname[_daylight && dst];
772static void ruby_reset_leap_second_info(
void);
775ruby_reset_timezone(
const char *val)
777 ruby_tz_uptodate_p =
false;
779 w32_tz.use_tzkey = !val || !*val;
781 ruby_reset_leap_second_info();
787 if (ruby_tz_uptodate_p)
return;
788 ruby_tz_uptodate_p =
true;
793rb_localtime_r(
const time_t *t,
struct tm *result)
795#if defined __APPLE__ && defined __LP64__
796 if (*t != (time_t)(
int)*t)
return NULL;
800 result = localtime_r(t, result);
803 struct tm *tmp = localtime(t);
804 if (tmp) *result = *tmp;
807#if defined(HAVE_MKTIME) && defined(LOCALTIME_OVERFLOW_PROBLEM)
811 struct tm tmp = *result;
814# if defined(HAVE_STRUCT_TM_TM_GMTOFF)
815 gmtoff1 = result->tm_gmtoff;
816 gmtoff2 = tmp.tm_gmtoff;
818 if (*t + gmtoff1 != t2 + gmtoff2)
824#define LOCALTIME(tm, result) rb_localtime_r((tm), &(result))
826#ifndef HAVE_STRUCT_TM_TM_GMTOFF
828rb_gmtime_r(
const time_t *t,
struct tm *result)
831 result = gmtime_r(t, result);
833 struct tm *tmp = gmtime(t);
834 if (tmp) *result = *tmp;
836#if defined(HAVE_TIMEGM) && defined(LOCALTIME_OVERFLOW_PROBLEM)
837 if (result && *t != timegm(result)) {
843# define GMTIME(tm, result) rb_gmtime_r((tm), &(result))
846static const int16_t common_year_yday_offset[] = {
851 -1 + 31 + 28 + 31 + 30,
852 -1 + 31 + 28 + 31 + 30 + 31,
853 -1 + 31 + 28 + 31 + 30 + 31 + 30,
854 -1 + 31 + 28 + 31 + 30 + 31 + 30 + 31,
855 -1 + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31,
856 -1 + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30,
857 -1 + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31,
858 -1 + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30
861static const int16_t leap_year_yday_offset[] = {
866 -1 + 31 + 29 + 31 + 30,
867 -1 + 31 + 29 + 31 + 30 + 31,
868 -1 + 31 + 29 + 31 + 30 + 31 + 30,
869 -1 + 31 + 29 + 31 + 30 + 31 + 30 + 31,
870 -1 + 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31,
871 -1 + 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30,
872 -1 + 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31,
873 -1 + 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30
877static const int8_t common_year_days_in_month[] = {
878 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
880static const int8_t leap_year_days_in_month[] = {
881 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
884#define days_in_month_of(leap) ((leap) ? leap_year_days_in_month : common_year_days_in_month)
885#define days_in_month_in(y) days_in_month_of(leap_year_p(y))
886#define days_in_month_in_v(y) days_in_month_of(leap_year_v_p(y))
889 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
890 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
891 (m),(m),(m),(m),(m),(m),(m),(m)
893 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
894 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
895 (m),(m),(m),(m),(m),(m),(m),(m),(m)
897 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
898 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
899 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m)
901 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
902 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
903 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), (m)
905static const uint8_t common_year_mon_of_yday[] = {
906 M31(1), M28(2), M31(3), M30(4), M31(5), M30(6),
907 M31(7), M31(8), M30(9), M31(10), M30(11), M31(12)
909static const uint8_t leap_year_mon_of_yday[] = {
910 M31(1), M29(2), M31(3), M30(4), M31(5), M30(6),
911 M31(7), M31(8), M30(9), M31(10), M30(11), M31(12)
921 10,11,12,13,14,15,16,17,18,19, \
922 20,21,22,23,24,25,26,27,28
925 10,11,12,13,14,15,16,17,18,19, \
926 20,21,22,23,24,25,26,27,28,29
929 10,11,12,13,14,15,16,17,18,19, \
930 20,21,22,23,24,25,26,27,28,29,30
933 10,11,12,13,14,15,16,17,18,19, \
934 20,21,22,23,24,25,26,27,28,29,30,31
936static const uint8_t common_year_mday_of_yday[] = {
938 D31, D28, D31, D30, D31, D30, D31, D31, D30, D31, D30, D31
940static const uint8_t leap_year_mday_of_yday[] = {
941 D31, D29, D31, D30, D31, D30, D31, D31, D30, D31, D30, D31
950calc_tm_yday(
long tm_year,
int tm_mon,
int tm_mday)
952 int tm_year_mod400 = (int)MOD(tm_year, 400);
953 int tm_yday = tm_mday;
955 if (leap_year_p(tm_year_mod400 + 1900))
956 tm_yday += leap_year_yday_offset[tm_mon];
958 tm_yday += common_year_yday_offset[tm_mon];
964timegmw_noleapsecond(
struct vtm *
vtm)
976 divmodv(year1900,
INT2FIX(400), &q400, &r400);
979 yday = calc_tm_yday(year_mod400,
vtm->mon-1,
vtm->mday);
992 + DIV(year_mod400 - 69, 4)
993 - DIV(year_mod400 - 1, 100)
994 + (year_mod400 + 299) / 400;
996 vdays = addv(vdays, mulv(q400,
INT2FIX(97)));
997 vdays = addv(vdays, mulv(year1900,
INT2FIX(365)));
998 wret = wadd(rb_time_magnify(v2w(ret)), wmul(rb_time_magnify(v2w(vdays)), WINT2FIXWV(86400)));
999 wret = wadd(wret, v2w(
vtm->subsecx));
1005zone_str(
const char *zone)
1012 return rb_fstring_lit(
"(NO-TIMEZONE-ABBREVIATION)");
1015 for (p = zone; *p; p++) {
1031 return rb_fstring(str);
1050 split_second(timew, &timew2, &subsecx);
1051 vtm->subsecx = subsecx;
1053 wdivmod(timew2, WINT2FIXWV(86400), &w2, &w);
1058 vtm->wday = (wday + 4) % 7;
1061 vtm->sec = n % 60; n = n / 60;
1062 vtm->min = n % 60; n = n / 60;
1066 divmodv(timev,
INT2FIX(400*365 + 97), &timev, &v);
1079 if (30*365+7+31+29-1 <= n) {
1093 x = n / (365*100 + 24);
1094 n = n % (365*100 + 24);
1096 if (30*365+7+31+29-1 <= n) {
1106 x = n / (365*4 + 1);
1107 n = n % (365*4 + 1);
1109 if (365*2+31+29-1 <= n) {
1110 if (n < 365*2+366) {
1127 if (leap_year_p(y)) {
1128 vtm->mon = leap_year_mon_of_yday[n];
1129 vtm->mday = leap_year_mday_of_yday[n];
1132 vtm->mon = common_year_mon_of_yday[n];
1133 vtm->mday = common_year_mday_of_yday[n];
1137 vtm->zone = str_utc;
1141gmtime_with_leapsecond(
const time_t *timep,
struct tm *result)
1143#if defined(HAVE_STRUCT_TM_TM_GMTOFF)
1147 int gmtoff_sec, gmtoff_min, gmtoff_hour, gmtoff_day;
1149 t = LOCALTIME(timep, *result);
1154 if (t->tm_gmtoff < 0) {
1156 gmtoff = -t->tm_gmtoff;
1160 gmtoff = t->tm_gmtoff;
1162 gmtoff_sec = (int)(gmtoff % 60);
1163 gmtoff = gmtoff / 60;
1164 gmtoff_min = (int)(gmtoff % 60);
1165 gmtoff = gmtoff / 60;
1166 gmtoff_hour = (int)gmtoff;
1170 gmtoff_hour *= sign;
1177 result->tm_sec += gmtoff_sec;
1178 if (result->tm_sec < 0) {
1179 result->tm_sec += 60;
1182 if (60 <= result->tm_sec) {
1183 result->tm_sec -= 60;
1188 result->tm_min += gmtoff_min;
1189 if (result->tm_min < 0) {
1190 result->tm_min += 60;
1193 if (60 <= result->tm_min) {
1194 result->tm_min -= 60;
1199 result->tm_hour += gmtoff_hour;
1200 if (result->tm_hour < 0) {
1201 result->tm_hour += 24;
1204 if (24 <= result->tm_hour) {
1205 result->tm_hour -= 24;
1211 if (gmtoff_day < 0) {
1212 if (result->tm_yday == 0) {
1213 result->tm_mday = 31;
1214 result->tm_mon = 11;
1216 result->tm_yday = leap_year_p(result->tm_year + 1900) ? 365 : 364;
1218 else if (result->tm_mday == 1) {
1219 const int8_t *days_in_month = days_in_month_in(result->tm_year + 1900);
1221 result->tm_mday = days_in_month[result->tm_mon];
1228 result->tm_wday = (result->tm_wday + 6) % 7;
1231 int leap = leap_year_p(result->tm_year + 1900);
1232 if (result->tm_yday == (leap ? 365 : 364)) {
1235 result->tm_mday = 1;
1236 result->tm_yday = 0;
1238 else if (result->tm_mday == days_in_month_of(leap)[result->tm_mon]) {
1240 result->tm_mday = 1;
1247 result->tm_wday = (result->tm_wday + 1) % 7;
1250 result->tm_isdst = 0;
1251 result->tm_gmtoff = 0;
1252#if defined(HAVE_TM_ZONE)
1253 result->tm_zone = (
char *)
"UTC";
1257 return GMTIME(timep, *result);
1261static long this_year = 0;
1262static time_t known_leap_seconds_limit;
1263static int number_of_leap_seconds_known;
1266init_leap_second_info(
void)
1273 if (this_year == 0) {
1275 struct tm *tm, result;
1280 gmtime_r(&now, &result);
1284 tm = gmtime_with_leapsecond(&now, &result);
1286 this_year = tm->tm_year;
1288 if (TIMET_MAX - now < (time_t)(366*86400))
1289 known_leap_seconds_limit = TIMET_MAX;
1291 known_leap_seconds_limit = now + (time_t)(366*86400);
1293 if (!gmtime_with_leapsecond(&known_leap_seconds_limit, &result))
1297 vtm.mon = result.tm_mon + 1;
1298 vtm.mday = result.tm_mday;
1299 vtm.hour = result.tm_hour;
1300 vtm.min = result.tm_min;
1301 vtm.sec = result.tm_sec;
1305 timew = timegmw_noleapsecond(&
vtm);
1307 number_of_leap_seconds_known =
NUM2INT(w2v(wsub(TIMET2WV(known_leap_seconds_limit), rb_time_unmagnify(timew))));
1313ruby_reset_leap_second_info(
void)
1329 return timegmw_noleapsecond(
vtm);
1331 init_leap_second_info();
1333 timew = timegmw_noleapsecond(
vtm);
1336 if (number_of_leap_seconds_known == 0) {
1342 else if (wlt(rb_time_magnify(TIMET2WV(known_leap_seconds_limit)), timew)) {
1343 return wadd(timew, rb_time_magnify(WINT2WV(number_of_leap_seconds_known)));
1347 tm.tm_mon =
vtm->mon - 1;
1348 tm.tm_mday =
vtm->mday;
1349 tm.tm_hour =
vtm->hour;
1350 tm.tm_min =
vtm->min;
1351 tm.tm_sec =
vtm->sec;
1354 errmsg = find_time_t(&tm, 1, &t);
1356 rb_raise(rb_eArgError,
"%s", errmsg);
1357 return wadd(rb_time_magnify(TIMET2WV(t)), v2w(
vtm->subsecx));
1368 if (wlt(timew, WINT2FIXWV(0))) {
1369 gmtimew_noleapsecond(timew, result);
1373 init_leap_second_info();
1375 if (number_of_leap_seconds_known == 0) {
1379 gmtimew_noleapsecond(timew, result);
1382 else if (wlt(rb_time_magnify(TIMET2WV(known_leap_seconds_limit)), timew)) {
1383 timew = wsub(timew, rb_time_magnify(WINT2WV(number_of_leap_seconds_known)));
1384 gmtimew_noleapsecond(timew, result);
1388 split_second(timew, &timew2, &subsecx);
1390 t = WV2TIMET(timew2);
1391 if (!gmtime_with_leapsecond(&t, &tm))
1394 result->year =
LONG2NUM((
long)tm.tm_year + 1900);
1395 result->mon = tm.tm_mon + 1;
1396 result->mday = tm.tm_mday;
1397 result->hour = tm.tm_hour;
1398 result->min = tm.tm_min;
1399 result->sec = tm.tm_sec;
1400 result->subsecx = subsecx;
1401 result->utc_offset =
INT2FIX(0);
1402 result->wday = tm.tm_wday;
1403 result->yday = tm.tm_yday+1;
1404 result->isdst = tm.tm_isdst;
1409#define GMTIMEW(w, v) \
1410 (gmtimew(w, v) ? (void)0 : rb_raise(rb_eArgError, "gmtime error"))
1412static struct tm *localtime_with_gmtoff_zone(
const time_t *t,
struct tm *result,
long *gmtoff,
VALUE *zone);
1447static const int compat_common_month_table[12][7] = {
1449 { 2034, 2035, 2036, 2031, 2032, 2027, 2033 },
1450 { 2026, 2027, 2033, 2034, 2035, 2030, 2031 },
1451 { 2026, 2032, 2033, 2034, 2035, 2030, 2036 },
1452 { 2035, 2030, 2036, 2026, 2032, 2033, 2034 },
1453 { 2033, 2034, 2035, 2030, 2036, 2026, 2032 },
1454 { 2036, 2026, 2032, 2033, 2034, 2035, 2030 },
1455 { 2035, 2030, 2036, 2026, 2032, 2033, 2034 },
1456 { 2032, 2033, 2034, 2035, 2030, 2036, 2026 },
1457 { 2030, 2036, 2026, 2032, 2033, 2034, 2035 },
1458 { 2034, 2035, 2030, 2036, 2026, 2032, 2033 },
1459 { 2026, 2032, 2033, 2034, 2035, 2030, 2036 },
1460 { 2030, 2036, 2026, 2032, 2033, 2034, 2035 },
1488static const int compat_leap_month_table[7] = {
1490 2032, 2016, 2028, 2012, 2024, 2036, 2020,
1494calc_wday(
int year_mod400,
int month,
int day)
1499 a = (14 - month) / 12;
1500 y = year_mod400 + 4800 - a;
1501 m = month + 12 * a - 3;
1502 wday = day + (153*m+2)/5 + 365*y + y/4 - y/100 + y/400 + 2;
1508guess_local_offset(
struct vtm *vtm_utc,
int *isdst_ret,
VALUE *zone_ret)
1516 int year_mod400, wday;
1520 if (lt(vtm_utc->year,
INT2FIX(1916))) {
1525# if defined(NEGATIVE_TIME_T)
1526# if SIZEOF_TIME_T <= 4
1528# define THE_TIME_OLD_ENOUGH ((time_t)0x80000000)
1532# define THE_TIME_OLD_ENOUGH ((time_t)(1600-1970)*366*24*60*60)
1534 if (localtime_with_gmtoff_zone((t = THE_TIME_OLD_ENOUGH, &t), &tm, &gmtoff, &zone)) {
1536 isdst = tm.tm_isdst;
1541 if (localtime_with_gmtoff_zone((t = 0, &t), &tm, &gmtoff, &zone)) {
1543 isdst = tm.tm_isdst;
1559 wday = calc_wday(year_mod400, vtm_utc->mon, 1);
1560 if (vtm_utc->mon == 2 && leap_year_p(year_mod400))
1561 vtm2.year =
INT2FIX(compat_leap_month_table[wday]);
1563 vtm2.year =
INT2FIX(compat_common_month_table[vtm_utc->mon-1][wday]);
1565 timev = w2v(rb_time_unmagnify(timegmw(&vtm2)));
1566 t = NUM2TIMET(timev);
1568 if (localtime_with_gmtoff_zone(&t, &tm, &gmtoff, &zone)) {
1570 *isdst_ret = tm.tm_isdst;
1578 static time_t now = 0;
1579 static long now_gmtoff = 0;
1580 static int now_isdst = 0;
1581 static VALUE now_zone;
1585 localtime_with_gmtoff_zone(&now, &tm, &now_gmtoff, &zone);
1586 now_isdst = tm.tm_isdst;
1587 zone = rb_fstring(zone);
1588 rb_vm_register_global_object(zone);
1592 *isdst_ret = now_isdst;
1594 *zone_ret = now_zone;
1600small_vtm_sub(
struct vtm *vtm1,
struct vtm *vtm2)
1604 off = vtm1->sec - vtm2->sec;
1605 off += (vtm1->min - vtm2->min) * 60;
1606 off += (vtm1->hour - vtm2->hour) * 3600;
1607 if (ne(vtm1->year, vtm2->year))
1608 off += lt(vtm1->year, vtm2->year) ? -24*3600 : 24*3600;
1609 else if (vtm1->mon != vtm2->mon)
1610 off += vtm1->mon < vtm2->mon ? -24*3600 : 24*3600;
1611 else if (vtm1->mday != vtm2->mday)
1612 off += vtm1->mday < vtm2->mday ? -24*3600 : 24*3600;
1618timelocalw(
struct vtm *
vtm)
1624 struct vtm vtm1, vtm2;
1629 if (l < INT_MIN || INT_MAX < l)
1631 tm.tm_year = (int)l;
1640 tm.tm_mon =
vtm->mon-1;
1641 tm.tm_mday =
vtm->mday;
1642 tm.tm_hour =
vtm->hour;
1643 tm.tm_min =
vtm->min;
1644 tm.tm_sec =
vtm->sec;
1645 tm.tm_isdst =
vtm->isdst == VTM_ISDST_INITVAL ? -1 :
vtm->isdst;
1647 if (find_time_t(&tm, 0, &t))
1649 return wadd(rb_time_magnify(TIMET2WV(t)), v2w(
vtm->subsecx));
1652 timew1 = timegmw(
vtm);
1654 if (!localtimew(timew1, &vtm1))
1655 rb_raise(rb_eArgError,
"localtimew error");
1657 n = vtmcmp(
vtm, &vtm1);
1659 timew1 = wsub(timew1, rb_time_magnify(WINT2FIXWV(12*3600)));
1660 if (!localtimew(timew1, &vtm1))
1661 rb_raise(rb_eArgError,
"localtimew error");
1668 timew1 = wsub(timew1, rb_time_magnify(WINT2FIXWV(24*3600)));
1669 if (!localtimew(timew1, &vtm1))
1670 rb_raise(rb_eArgError,
"localtimew error");
1673 timew2 = wadd(timew1, rb_time_magnify(WINT2FIXWV(24*3600)));
1674 if (!localtimew(timew2, &vtm2))
1675 rb_raise(rb_eArgError,
"localtimew error");
1677 timew1 = wadd(timew1, rb_time_magnify(v2w(small_vtm_sub(
vtm, &vtm1))));
1678 timew2 = wadd(timew2, rb_time_magnify(v2w(small_vtm_sub(
vtm, &vtm2))));
1680 if (weq(timew1, timew2))
1683 if (!localtimew(timew1, &vtm1))
1684 rb_raise(rb_eArgError,
"localtimew error");
1685 if (
vtm->hour != vtm1.hour ||
vtm->min != vtm1.min ||
vtm->sec != vtm1.sec)
1688 if (!localtimew(timew2, &vtm2))
1689 rb_raise(rb_eArgError,
"localtimew error");
1690 if (
vtm->hour != vtm2.hour ||
vtm->min != vtm2.min ||
vtm->sec != vtm2.sec)
1694 return lt(vtm1.utc_offset, vtm2.utc_offset) ? timew2 : timew1;
1696 return lt(vtm1.utc_offset, vtm2.utc_offset) ? timew1 : timew2;
1700localtime_with_gmtoff_zone(
const time_t *t,
struct tm *result,
long *gmtoff,
VALUE *zone)
1704 if (LOCALTIME(t, tm)) {
1705#if defined(HAVE_STRUCT_TM_TM_GMTOFF)
1706 *gmtoff = tm.tm_gmtoff;
1712 u = GMTIME(t, tmbuf);
1715 if (l->tm_year != u->tm_year)
1716 off = l->tm_year < u->tm_year ? -1 : 1;
1717 else if (l->tm_mon != u->tm_mon)
1718 off = l->tm_mon < u->tm_mon ? -1 : 1;
1719 else if (l->tm_mday != u->tm_mday)
1720 off = l->tm_mday < u->tm_mday ? -1 : 1;
1723 off =
off * 24 + l->tm_hour - u->tm_hour;
1724 off =
off * 60 + l->tm_min - u->tm_min;
1725 off =
off * 60 + l->tm_sec - u->tm_sec;
1730#if defined(HAVE_TM_ZONE)
1731 *zone = zone_str(tm.tm_zone);
1732#elif defined(_WIN32)
1733 *zone = zone_str(get_tzname(tm.tm_isdst));
1734#elif defined(HAVE_TZNAME) && defined(HAVE_DAYLIGHT)
1736 *zone = zone_str(tzname[daylight && tm.tm_isdst]);
1740 strftime(buf,
sizeof(buf),
"%Z", &tm);
1741 *zone = zone_str(buf);
1753timew_out_of_timet_range(
wideval_t timew)
1756#if WIDEVALUE_IS_WIDER && SIZEOF_TIME_T < SIZEOF_INT64_T
1757 if (FIXWV_P(timew)) {
1758 wideint_t t = FIXWV2WINT(timew);
1759 if (t < TIME_SCALE * (wideint_t)TIMET_MIN ||
1760 TIME_SCALE * (1 + (wideint_t)TIMET_MAX) <= t)
1765#if SIZEOF_TIME_T == SIZEOF_INT64_T
1766 if (FIXWV_P(timew)) {
1767 wideint_t t = FIXWV2WINT(timew);
1768 if (~(time_t)0 <= 0) {
1778 timexv = w2v(timew);
1779 if (lt(timexv, mulv(
INT2FIX(TIME_SCALE), TIMET2NUM(TIMET_MIN))) ||
1780 le(mulv(
INT2FIX(TIME_SCALE), addv(TIMET2NUM(TIMET_MAX),
INT2FIX(1))), timexv))
1788 VALUE subsecx, offset;
1792 if (!timew_out_of_timet_range(timew)) {
1798 split_second(timew, &timew2, &subsecx);
1800 t = WV2TIMET(timew2);
1802 if (localtime_with_gmtoff_zone(&t, &tm, &gmtoff, &zone)) {
1803 result->year =
LONG2NUM((
long)tm.tm_year + 1900);
1804 result->mon = tm.tm_mon + 1;
1805 result->mday = tm.tm_mday;
1806 result->hour = tm.tm_hour;
1807 result->min = tm.tm_min;
1808 result->sec = tm.tm_sec;
1809 result->subsecx = subsecx;
1810 result->wday = tm.tm_wday;
1811 result->yday = tm.tm_yday+1;
1812 result->isdst = tm.tm_isdst;
1813 result->utc_offset =
LONG2NUM(gmtoff);
1814 result->zone = zone;
1819 if (!gmtimew(timew, result))
1822 offset = guess_local_offset(result, &isdst, &zone);
1824 if (!gmtimew(wadd(timew, rb_time_magnify(v2w(offset))), result))
1827 result->utc_offset = offset;
1828 result->isdst = isdst;
1829 result->zone = zone;
1834#define TIME_TZMODE_LOCALTIME 0
1835#define TIME_TZMODE_UTC 1
1836#define TIME_TZMODE_FIXOFF 2
1837#define TIME_TZMODE_UNINITIALIZED 3
1844#define GetTimeval(obj, tobj) ((tobj) = get_timeval(obj))
1845#define GetNewTimeval(obj, tobj) ((tobj) = get_new_timeval(obj))
1847#define IsTimeval(obj) rb_typeddata_is_kind_of((obj), &time_data_type)
1848#define TIME_INIT_P(tobj) ((tobj)->vtm.tzmode != TIME_TZMODE_UNINITIALIZED)
1850#define TZMODE_UTC_P(tobj) ((tobj)->vtm.tzmode == TIME_TZMODE_UTC)
1851#define TZMODE_SET_UTC(tobj) ((tobj)->vtm.tzmode = TIME_TZMODE_UTC)
1853#define TZMODE_LOCALTIME_P(tobj) ((tobj)->vtm.tzmode == TIME_TZMODE_LOCALTIME)
1854#define TZMODE_SET_LOCALTIME(tobj) ((tobj)->vtm.tzmode = TIME_TZMODE_LOCALTIME)
1856#define TZMODE_FIXOFF_P(tobj) ((tobj)->vtm.tzmode == TIME_TZMODE_FIXOFF)
1857#define TZMODE_SET_FIXOFF(time, tobj, off) do { \
1858 (tobj)->vtm.tzmode = TIME_TZMODE_FIXOFF; \
1859 RB_OBJ_WRITE_UNALIGNED(time, &(tobj)->vtm.utc_offset, off); \
1862#define TZMODE_COPY(tobj1, tobj2) \
1863 ((tobj1)->vtm.tzmode = (tobj2)->vtm.tzmode, \
1864 (tobj1)->vtm.utc_offset = (tobj2)->vtm.utc_offset, \
1865 (tobj1)->vtm.zone = (tobj2)->vtm.zone)
1867static int zone_localtime(
VALUE zone,
VALUE time);
1869#define MAKE_TM(time, tobj) \
1871 if ((tobj)->vtm.tm_got == 0) { \
1872 time_get_tm((time), (tobj)); \
1875#define MAKE_TM_ENSURE(time, tobj, cond) \
1877 MAKE_TM(time, tobj); \
1879 force_make_tm(time, tobj); \
1886 tobj->timew = timew;
1887 if (!FIXWV_P(timew)) {
1906 VALUE zone = tobj->vtm.zone;
1907 if (!
NIL_P(zone) && zone != str_empty && zone != str_utc) {
1908 if (zone_localtime(zone, time))
return;
1910 tobj->vtm.tm_got = 0;
1911 time_get_tm(time, tobj);
1914RUBY_REFERENCES(time_refs) = {
1926 RUBY_REFS_LIST_PTR(time_refs),
1930 .flags = RUBY_TYPED_THREAD_SAFE_FREE | RUBY_TYPED_FROZEN_SHAREABLE | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_EMBEDDABLE | RUBY_TYPED_DECL_MARKING,
1934time_s_alloc(
VALUE klass)
1940 tobj->vtm.tzmode = TIME_TZMODE_UNINITIALIZED;
1941 tobj->vtm.tm_got = 0;
1942 time_set_timew(obj, tobj, WINT2FIXWV(0));
1943 tobj->vtm.zone =
Qnil;
1949get_timeval(
VALUE obj)
1953 if (!TIME_INIT_P(tobj)) {
1960get_new_timeval(
VALUE obj)
1964 if (TIME_INIT_P(tobj)) {
1971time_modify(
VALUE time)
1973 rb_check_frozen(time);
1977timenano2timew(wideint_t sec,
long nsec)
1981 timew = rb_time_magnify(WINT2WV(sec));
1983 timew = wadd(timew, wmulquoll(WINT2WV(nsec), TIME_SCALE, 1000000000));
1994 if (timew_out_of_timet_range(timew))
1995 rb_raise(rb_eArgError,
"time out of system range");
1996 split_second(timew, &timew2, &subsecx);
1997 ts.tv_sec = WV2TIMET(timew2);
2009 if (timew_out_of_timet_range(timew))
2011 split_second(timew, &timew2, &subsecx);
2012 ts->tv_sec = WV2TIMET(timew2);
2013 nsecv = mulquov(subsecx,
INT2FIX(1000000000),
INT2FIX(TIME_SCALE));
2023#ifdef HAVE_CLOCK_GETTIME
2024 if (clock_gettime(CLOCK_REALTIME, ts) == -1) {
2025 rb_sys_fail(
"clock_gettime");
2030 if (gettimeofday(&tv, 0) < 0) {
2031 rb_sys_fail(
"gettimeofday");
2033 ts->tv_sec = tv.tv_sec;
2034 ts->tv_nsec = tv.tv_usec * 1000;
2050 GetNewTimeval(time, tobj);
2051 TZMODE_SET_LOCALTIME(tobj);
2054 time_set_timew(time, tobj, timenano2timew(ts.tv_sec, ts.tv_nsec));
2057 time_zonelocal(time, zone);
2065 VALUE t = time_s_alloc(klass);
2066 return time_init_now(ec, t, zone);
2076 GetTimeval(time, tobj);
2078 tobj->vtm.tm_got = 0;
2079 tobj->vtm.zone =
Qnil;
2080 TZMODE_SET_FIXOFF(time, tobj,
off);
2105 subsec = neg(subsec);
2114 vtm->subsecx = addv(
vtm->subsecx, w2v(rb_time_magnify(v2w(subsec))));
2163 vtm_add_day(
vtm, day);
2167vtm_add_day(
struct vtm *
vtm,
int day)
2171 if (
vtm->mon == 1 &&
vtm->mday == 1) {
2176 vtm->yday = leap_year_v_p(
vtm->year) ? 366 : 365;
2178 else if (
vtm->mday == 1) {
2179 const int8_t *days_in_month = days_in_month_in_v(
vtm->year);
2181 vtm->mday = days_in_month[
vtm->mon-1];
2182 if (
vtm->yday != 0)
vtm->yday--;
2186 if (
vtm->yday != 0)
vtm->yday--;
2188 if (
vtm->wday != VTM_WDAY_INITVAL)
vtm->wday = (
vtm->wday + 6) % 7;
2191 int leap = leap_year_v_p(
vtm->year);
2192 if (
vtm->mon == 12 &&
vtm->mday == 31) {
2198 else if (
vtm->mday == days_in_month_of(leap)[
vtm->mon-1]) {
2201 if (
vtm->yday != 0)
vtm->yday++;
2205 if (
vtm->yday != 0)
vtm->yday++;
2207 if (
vtm->wday != VTM_WDAY_INITVAL)
vtm->wday = (
vtm->wday + 1) % 7;
2213maybe_tzobj_p(
VALUE obj)
2215 if (
NIL_P(obj))
return FALSE;
2221NORETURN(
static void invalid_utc_offset(
VALUE));
2223invalid_utc_offset(
VALUE zone)
2225 rb_raise(rb_eArgError,
"\"+HH:MM\", \"-HH:MM\", \"UTC\" or "
2226 "\"A\"..\"I\",\"K\"..\"Z\" expected for utc_offset: %"PRIsVALUE,
2230#define have_2digits(ptr) (ISDIGIT((ptr)[0]) && ISDIGIT((ptr)[1]))
2231#define num_from_2digits(ptr) ((ptr)[0] * 10 + (ptr)[1] - '0' * 11)
2234utc_offset_arg(
VALUE arg)
2243 const char *s = RSTRING_PTR(tmp), *min = NULL, *sec = NULL;
2245 goto invalid_utc_offset;
2247 switch (RSTRING_LEN(tmp)) {
2253 if (s[0] >=
'A' && s[0] <=
'I') {
2254 n = (int)s[0] -
'A' + 1;
2257 else if (s[0] >=
'K' && s[0] <=
'M') {
2258 n = (int)s[0] -
'A';
2260 else if (s[0] >=
'N' && s[0] <=
'Y') {
2261 n =
'M' - (int)s[0];
2264 goto invalid_utc_offset;
2280 if (s[6] !=
':')
goto invalid_utc_offset;
2284 if (s[3] !=
':')
goto invalid_utc_offset;
2288 goto invalid_utc_offset;
2291 if (!have_2digits(sec))
goto invalid_utc_offset;
2292 if (sec[0] >
'5')
goto invalid_utc_offset;
2293 n += num_from_2digits(sec);
2297 if (!have_2digits(min))
goto invalid_utc_offset;
2298 if (min[0] >
'5')
goto invalid_utc_offset;
2299 n += num_from_2digits(min) * 60;
2301 if (s[0] !=
'+' && s[0] !=
'-')
goto invalid_utc_offset;
2302 if (!have_2digits(s+1))
goto invalid_utc_offset;
2303 n += num_from_2digits(s+1) * 3600;
2305 if (n == 0)
return UTC_ZONE;
2311 return num_exact(arg);
2324 validate_utc_offset(
off);
2327 TZMODE_SET_LOCALTIME(tobj);
2331extract_time(
VALUE time)
2334 const ID id_to_i = idTo_i;
2336#define EXTRACT_TIME() do { \
2337 t = NUM2WV(AREF(to_i)); \
2340 if (rb_typeddata_is_kind_of(time, &time_data_type)) {
2341 struct time_object *tobj = RTYPEDDATA_GET_DATA(time);
2344 t = rb_time_unmagnify(tobj->timew);
2349#define AREF(x) rb_struct_aref(time, ID2SYM(id_##x))
2354#define AREF(x) rb_funcallv(time, id_##x, 0, 0)
2367 const ID id_to_i = idTo_i;
2368 struct vtm *
vtm = &orig_tobj->vtm;
2370#define EXTRACT_VTM() do { \
2372 vtm->year = obj2vint(AREF(year)); \
2373 vtm->mon = month_arg(AREF(mon)); \
2374 vtm->mday = obj2ubits(AREF(mday), 5); \
2375 vtm->hour = obj2ubits(AREF(hour), 5); \
2376 vtm->min = obj2ubits(AREF(min), 6); \
2377 vtm->sec = obj2subsecx(AREF(sec), &subsecx); \
2378 vtm->isdst = RTEST(AREF(isdst)); \
2379 vtm->utc_offset = Qnil; \
2380 t = NUM2WV(AREF(to_i)); \
2383 if (rb_typeddata_is_kind_of(time, &time_data_type)) {
2384 struct time_object *tobj = RTYPEDDATA_GET_DATA(time);
2386 time_get_tm(time, tobj);
2387 time_set_vtm(orig_time, orig_tobj, tobj->vtm);
2388 t = rb_time_unmagnify(tobj->timew);
2389 if (TZMODE_FIXOFF_P(tobj) &&
vtm->utc_offset !=
INT2FIX(0))
2390 t = wadd(t, v2w(
vtm->utc_offset));
2395#define AREF(x) rb_struct_aref(time, ID2SYM(id_##x))
2401 struct vtm temp_vtm = *
vtm;
2402 GMTIMEW(rb_time_magnify(t), &temp_vtm);
2403 time_set_vtm(orig_time, orig_tobj, temp_vtm);
2406#define AREF(x) rb_funcallv(time, id_##x, 0, 0)
2412 RB_OBJ_WRITE_UNALIGNED(orig_time, &
vtm->subsecx, subsecx);
2425 tobj->vtm.isdst = (!UNDEF_P(dst) &&
RTEST(dst));
2432 struct time_object *tobj = RTYPEDDATA_GET_DATA(time);
2435 wdivmod(tobj->timew, WINT2FIXWV(TIME_SCALE), &t, &s);
2436 tm = tm_from_time(rb_cTimeTM, time);
2438 if (UNDEF_P(utc))
return 0;
2440 s = extract_time(utc);
2441 zone_set_offset(zone, tobj, t, s, time);
2442 s = rb_time_magnify(s);
2443 if (tobj->vtm.subsecx !=
INT2FIX(0)) {
2444 s = wadd(s, v2w(tobj->vtm.subsecx));
2446 time_set_timew(time, tobj, s);
2448 zone_set_dst(zone, tobj, tm);
2458 VALUE local, tm, subsecx;
2459 struct time_object *tobj = RTYPEDDATA_GET_DATA(time);
2462 split_second(tobj->timew, &t, &subsecx);
2463 tm = tm_from_time(rb_cTimeTM, time);
2466 if (UNDEF_P(local))
return 0;
2468 s = extract_vtm(local, time, tobj, subsecx);
2469 tobj->vtm.tm_got = 1;
2470 zone_set_offset(zone, tobj, s, t, time);
2471 zone_set_dst(zone, tobj, tm);
2483 return rb_check_funcall_default(klass, id_find_timezone, 1, &zone,
Qnil);
2489vtm_day_wraparound(
struct vtm *
vtm)
2491 if (
vtm->hour < 24)
return;
2496 vtm_add_day(
vtm, 1);
2511 vtm.wday = VTM_WDAY_INITVAL;
2513 vtm.zone = str_empty;
2515 vtm.year = obj2vint(year);
2517 vtm.mon =
NIL_P(mon) ? 1 : month_arg(mon);
2519 vtm.mday =
NIL_P(mday) ? 1 : obj2ubits(mday, 5);
2521 vtm.hour =
NIL_P(hour) ? 0 : obj2ubits(hour, 5);
2523 vtm.min =
NIL_P(min) ? 0 : obj2ubits(min, 6);
2531 vtm.sec = obj2subsecx(sec, &subsecx);
2532 vtm.subsecx = subsecx;
2535 return time_init_vtm(time,
vtm, zone);
2544 vtm.isdst = VTM_ISDST_INITVAL;
2546 const VALUE arg = zone;
2549 if (arg ==
ID2SYM(rb_intern(
"dst")))
2551 else if (arg ==
ID2SYM(rb_intern(
"std")))
2553 else if (maybe_tzobj_p(arg))
2555 else if (!
NIL_P(utc = utc_offset_arg(arg)))
2556 vtm.utc_offset = utc == UTC_ZONE ?
INT2FIX(0) : utc;
2557 else if (
NIL_P(zone = find_timezone(time, arg)))
2558 invalid_utc_offset(arg);
2564 GetNewTimeval(time, tobj);
2567 time_set_timew(time, tobj, timegmw(&
vtm));
2568 vtm_day_wraparound(&
vtm);
2569 time_set_vtm(time, tobj,
vtm);
2570 tobj->vtm.tm_got = 1;
2571 TZMODE_SET_LOCALTIME(tobj);
2572 if (zone_timelocal(zone, time)) {
2575 else if (
NIL_P(
vtm.utc_offset = utc_offset_arg(zone))) {
2576 if (
NIL_P(zone = find_timezone(time, zone)) || !zone_timelocal(zone, time))
2577 invalid_utc_offset(arg);
2581 if (utc == UTC_ZONE) {
2582 time_set_timew(time, tobj, timegmw(&
vtm));
2584 vtm_day_wraparound(&
vtm);
2585 time_set_vtm(time, tobj,
vtm);
2586 tobj->vtm.tm_got = 1;
2587 TZMODE_SET_UTC(tobj);
2591 TZMODE_SET_LOCALTIME(tobj);
2596 vtm_add_offset(&
vtm,
off, -1);
2598 time_set_timew(time, tobj, timegmw(&
vtm));
2600 return time_set_utc_offset(time,
off);
2603 time_set_timew(time, tobj, timelocalw(&
vtm));
2605 return time_localtime(time);
2610two_digits(
const char *ptr,
const char *end,
const char **endp,
const char *name)
2612 ssize_t
len = end - ptr;
2613 if (
len < 2 || !have_2digits(ptr) || ((
len > 2) &&
ISDIGIT(ptr[2]))) {
2614 VALUE mesg = rb_sprintf(
"two digits %s is expected", name);
2615 if (ptr[-1] ==
'-' || ptr[-1] ==
':') {
2616 rb_str_catf(mesg,
" after '%c'", ptr[-1]);
2618 rb_str_catf(mesg,
": %.*s", ((
len > 10) ? 10 : (int)(end - ptr)) + 1, ptr - 1);
2622 return num_from_2digits(ptr);
2626parse_int(
const char *ptr,
const char *end,
const char **endp,
size_t *ndigits,
bool sign)
2628 ssize_t
len = (end - ptr);
2630 return rb_int_parse_cstr(ptr,
len, (
char **)endp, ndigits, 10, flags);
2642 rb_raise(rb_eArgError,
"time string should have ASCII compatible encoding");
2645 const char *
const begin = RSTRING_PTR(str);
2647 const char *ptr = begin;
2649 int mon = -1, mday = -1, hour = -1, min = -1, sec = -1;
2651 size_t prec =
NIL_P(precision) ? SIZE_MAX :
NUM2SIZET(precision);
2654 rb_raise(rb_eArgError,
"can't parse: %+"PRIsVALUE, str);
2656 year = parse_int(ptr, end, &ptr, &ndigits,
true);
2658 rb_raise(rb_eArgError,
"can't parse: %+"PRIsVALUE, str);
2660 else if (ndigits < 4) {
2661 rb_raise(rb_eArgError,
"year must be 4 or more digits: %.*s", (
int)ndigits, ptr - ndigits);
2663 else if (ptr == end) {
2667#define peekable_p(n) ((ptrdiff_t)(n) < (end - ptr))
2668#define peek_n(c, n) (peekable_p(n) && ((unsigned char)ptr[n] == (c)))
2669#define peek(c) peek_n(c, 0)
2670#define peekc_n(n) (peekable_p(n) ? (int)(unsigned char)ptr[n] : -1)
2671#define peekc() peekc_n(0)
2672#define expect_two_digits(x, bits) \
2673 (((unsigned int)(x = two_digits(ptr + 1, end, &ptr, #x)) > (1U << bits) - 1) ? \
2674 rb_raise(rb_eArgError, #x" out of range") : (void)0)
2675 if (!peek(
'-'))
break;
2676 expect_two_digits(mon, 4);
2677 if (!peek(
'-'))
break;
2678 expect_two_digits(mday, 5);
2679 if (!peek(
' ') && !peek(
'T'))
break;
2680 const char *
const time_part = ptr + 1;
2681 if (!
ISDIGIT(peekc_n(1)))
break;
2682#define nofraction(x) \
2684 rb_raise(rb_eArgError, "fraction " #x " is not supported: %.*s", \
2685 (int)(ptr + 1 - time_part), time_part); \
2687#define need_colon(x) \
2689 rb_raise(rb_eArgError, "missing " #x " part: %.*s", \
2690 (int)(ptr + 1 - time_part), time_part); \
2692 expect_two_digits(hour, 5);
2695 expect_two_digits(min, 6);
2698 expect_two_digits(sec, 6);
2701 for (ndigits = 0; ndigits < prec &&
ISDIGIT(peekc_n(ndigits)); ++ndigits);
2703 int clen = rb_enc_precise_mbclen(ptr, end, rb_enc_get(str));
2704 if (clen < 0) clen = 0;
2705 rb_raise(rb_eArgError,
"subsecond expected after dot: %.*s",
2706 (
int)(ptr - time_part) + clen, time_part);
2708 subsec = parse_int(ptr, ptr + ndigits, &ptr, &ndigits,
false);
2709 if (
NIL_P(subsec))
break;
2710 while (ptr < end &&
ISDIGIT(*ptr)) ptr++;
2713 while (ptr < end &&
ISSPACE(*ptr)) ptr++;
2714 const char *
const zstr = ptr;
2715 while (ptr < end && !
ISSPACE(*ptr)) ptr++;
2716 const char *
const zend = ptr;
2717 while (ptr < end &&
ISSPACE(*ptr)) ptr++;
2726 else if (hour == -1) {
2727 rb_raise(rb_eArgError,
"no time information");
2729 if (!
NIL_P(subsec)) {
2731 if (ndigits < (
size_t)TIME_SCALE_NUMDIGITS) {
2733 subsec = rb_int_mul(subsec, mul);
2735 else if (ndigits > (
size_t)TIME_SCALE_NUMDIGITS) {
2745 .wday = VTM_WDAY_INITVAL,
2749 .mon = (mon < 0) ? 1 : mon,
2750 .mday = (mday < 0) ? 1 : mday,
2751 .hour = (hour < 0) ? 0 : hour,
2752 .min = (min < 0) ? 0 : min,
2753 .sec = (sec < 0) ? 0 : sec,
2756 return time_init_vtm(time,
vtm, zone);
2760subsec_normalize(wideint_t *secp,
long *subsecp,
const long maxsubsec)
2762 wideint_t sec = *secp;
2763 long subsec = *subsecp;
2766 if (UNLIKELY(subsec >= maxsubsec)) {
2767 sec2 = subsec / maxsubsec;
2768 if (WIDEINT_MAX - sec2 < sec) {
2771 subsec -= sec2 * maxsubsec;
2774 else if (UNLIKELY(subsec < 0)) {
2775 sec2 = NDIV(subsec, maxsubsec);
2776 if (sec < WIDEINT_MIN - sec2) {
2779 subsec -= sec2 * maxsubsec;
2786#define time_usec_normalize(secp, usecp) subsec_normalize(secp, usecp, 1000000)
2787#define time_nsec_normalize(secp, nsecp) subsec_normalize(secp, nsecp, 1000000000)
2792 VALUE time = time_s_alloc(klass);
2795 tobj = RTYPEDDATA_GET_DATA(time);
2796 TZMODE_SET_LOCALTIME(tobj);
2797 time_set_timew(time, tobj, timew);
2803TIMETtoWIDEINT(time_t t)
2805#if SIZEOF_TIME_T * CHAR_BIT - (SIGNEDNESS_OF_TIME_T < 0) > \
2806 SIZEOF_WIDEINT * CHAR_BIT - 1
2808 if (t > WIDEINT_MAX) rb_raise(rb_eArgError,
"out of Time range");
2810 return (wideint_t)t;
2816 wideint_t isec = TIMETtoWIDEINT(sec);
2817 time_usec_normalize(&isec, &usec);
2818 return time_new_timew(
rb_cTime, timenano2timew(isec, usec * 1000));
2825 wideint_t isec = TIMETtoWIDEINT(sec);
2826 time_nsec_normalize(&isec, &nsec);
2827 return time_new_timew(
rb_cTime, timenano2timew(isec, nsec));
2836 if (-86400 < offset && offset < 86400) {
2837 GetTimeval(time, tobj);
2838 TZMODE_SET_FIXOFF(time, tobj,
INT2FIX(offset));
2840 else if (offset == INT_MAX) {
2842 else if (offset == INT_MAX-1) {
2843 GetTimeval(time, tobj);
2844 TZMODE_SET_UTC(tobj);
2847 rb_raise(rb_eArgError,
"utc_offset out of range");
2856 VALUE time = time_new_timew(
rb_cTime, rb_time_magnify(v2w(timev)));
2861 if (maybe_tzobj_p(zone)) {
2863 if (zone_timelocal(zone, time))
return time;
2867 if (
NIL_P(zone = find_timezone(time,
off))) invalid_utc_offset(
off);
2869 if (!zone_timelocal(zone, time)) invalid_utc_offset(
off);
2872 else if (
off == UTC_ZONE) {
2873 return time_gmtime(time);
2876 validate_utc_offset(
off);
2877 time_set_utc_offset(time,
off);
2885time_timespec(
VALUE num, int interval)
2888 const char *
const tstr = interval ?
"time interval" :
"time";
2891#ifndef NEGATIVE_TIME_T
2892# define arg_range_check(v) \
2894 rb_raise(rb_eArgError, "%s must not be negative", tstr) : \
2897# define arg_range_check(v) \
2898 ((interval && (v) < 0) ? \
2899 rb_raise(rb_eArgError, "time interval must not be negative") : \
2904 t.tv_sec = NUM2TIMET(num);
2905 arg_range_check(t.tv_sec);
2916 t.tv_nsec = (int)(d*1e9+0.5);
2917 if (t.tv_nsec >= 1000000000) {
2918 t.tv_nsec -= 1000000000;
2922 else if ((t.tv_nsec = (
int)(-d*1e9+0.5)) > 0) {
2923 t.tv_nsec = 1000000000 - t.tv_nsec;
2926 t.tv_sec = (time_t)f;
2927 if (f != t.tv_sec) {
2932 else if (RB_BIGNUM_TYPE_P(num)) {
2933 t.tv_sec = NUM2TIMET(num);
2934 arg_range_check(t.tv_sec);
2943 t.tv_sec = NUM2TIMET(i);
2944 arg_range_check(t.tv_sec);
2949 rb_cant_convert(num, tstr);
2953#undef arg_range_check
2957time_timeval(
VALUE num, int interval)
2962 ts = time_timespec(num, interval);
2963 tv.tv_sec = (TYPEOF_TIMEVAL_TV_SEC)ts.tv_sec;
2964 tv.tv_usec = (TYPEOF_TIMEVAL_TV_USEC)(ts.tv_nsec / 1000);
2972 return time_timeval(num, TRUE);
2982 if (IsTimeval(time)) {
2983 GetTimeval(time, tobj);
2984 ts = timew2timespec(tobj->timew);
2985 t.tv_sec = (TYPEOF_TIMEVAL_TV_SEC)ts.tv_sec;
2986 t.tv_usec = (TYPEOF_TIMEVAL_TV_USEC)(ts.tv_nsec / 1000);
2989 return time_timeval(time, FALSE);
2998 if (IsTimeval(time)) {
2999 GetTimeval(time, tobj);
3000 t = timew2timespec(tobj->timew);
3003 return time_timespec(time, FALSE);
3009 return time_timespec(num, TRUE);
3013get_scale(
VALUE unit)
3015 if (unit ==
ID2SYM(id_nanosecond) || unit ==
ID2SYM(id_nsec)) {
3018 else if (unit ==
ID2SYM(id_microsecond) || unit ==
ID2SYM(id_usec)) {
3021 else if (unit ==
ID2SYM(id_millisecond)) {
3025 rb_raise(rb_eArgError,
"unexpected unit: %"PRIsVALUE, unit);
3036 int scale = get_scale(unit);
3037 time = num_exact(time);
3038 t = num_exact(subsec);
3039 timew = wadd(rb_time_magnify(v2w(time)), wmulquoll(v2w(t), TIME_SCALE, scale));
3040 t = time_new_timew(klass, timew);
3042 else if (IsTimeval(time)) {
3044 GetTimeval(time, tobj);
3045 t = time_new_timew(klass, tobj->timew);
3046 GetTimeval(t, tobj2);
3047 TZMODE_COPY(tobj2, tobj);
3050 timew = rb_time_magnify(v2w(num_exact(time)));
3051 t = time_new_timew(klass, timew);
3054 time_zonelocal(t, zone);
3066static const char months[][4] = {
3067 "jan",
"feb",
"mar",
"apr",
"may",
"jun",
3068 "jul",
"aug",
"sep",
"oct",
"nov",
"dec",
3075 obj = rb_str_to_inum(obj, 10, TRUE);
3083obj2ubits(
VALUE obj,
unsigned int bits)
3085 const unsigned int usable_mask = (1U << bits) - 1;
3086 unsigned int rv = (
unsigned int)obj2int(obj);
3088 if ((rv & usable_mask) != rv)
3089 rb_raise(rb_eArgError,
"argument out of range");
3090 return (uint32_t)rv;
3097 obj = rb_str_to_inum(obj, 10, TRUE);
3112 obj = rb_str_to_inum(obj, 10, TRUE);
3116 divmodv(num_exact(obj),
INT2FIX(1), &obj, &subsec);
3117 *subsecx = w2v(rb_time_magnify(v2w(subsec)));
3119 return obj2ubits(obj, 6);
3123usec2subsecx(
VALUE obj)
3126 obj = rb_str_to_inum(obj, 10, TRUE);
3129 return mulquov(num_exact(obj),
INT2FIX(TIME_SCALE),
INT2FIX(1000000));
3138 return obj2ubits(arg, 4);
3143 if (!
NIL_P(s) && RSTRING_LEN(s) > 0) {
3145 for (i=0; i<12; i++) {
3146 if (RSTRING_LEN(s) == 3 &&
3154 mon = obj2ubits(arg, 4);
3160validate_utc_offset(
VALUE utc_offset)
3162 if (le(utc_offset,
INT2FIX(-86400)) || ge(utc_offset,
INT2FIX(86400)))
3163 rb_raise(rb_eArgError,
"utc_offset out of range");
3168validate_zone_name(
VALUE zone_name)
3175validate_vtm(
struct vtm *
vtm)
3177#define validate_vtm_range(mem, b, e) \
3178 ((vtm->mem < b || vtm->mem > e) ? \
3179 rb_raise(rb_eArgError, #mem" out of range") : (void)0)
3180 validate_vtm_range(mon, 1, 12);
3181 validate_vtm_range(mday, 1, 31);
3182 validate_vtm_range(hour, 0, 24);
3183 validate_vtm_range(min, 0, (
vtm->hour == 24 ? 0 : 59));
3184 validate_vtm_range(sec, 0, (
vtm->hour == 24 ? 0 : 60));
3186 rb_raise(rb_eArgError,
"subsecx out of range");
3187 if (!
NIL_P(
vtm->utc_offset)) validate_utc_offset(
vtm->utc_offset);
3188#undef validate_vtm_range
3192time_arg(
int argc,
const VALUE *argv,
struct vtm *
vtm)
3208 vtm->zone = str_empty;
3218 vtm->isdst =
RTEST(argv[8]) ? 1 : 0;
3221 rb_scan_args(argc, argv,
"17", &v[0],&v[1],&v[2],&v[3],&v[4],&v[5],&v[6],&v[7]);
3224 vtm->wday = VTM_WDAY_INITVAL;
3225 vtm->isdst = VTM_ISDST_INITVAL;
3228 vtm->year = obj2vint(v[0]);
3234 vtm->mon = month_arg(v[1]);
3241 vtm->mday = obj2ubits(v[2], 5);
3249 unsigned int mday2 = leap_year_v_p(
vtm->year) ? 29 : 28;
3250 if (
vtm->mday > mday2) {
3260 if (
vtm->mday == 31) {
3267 vtm->hour =
NIL_P(v[3])?0:obj2ubits(v[3], 5);
3269 vtm->min =
NIL_P(v[4])?0:obj2ubits(v[4], 6);
3271 if (!
NIL_P(v[6]) && argc == 7) {
3272 vtm->sec =
NIL_P(v[5])?0:obj2ubits(v[5],6);
3273 subsecx = usec2subsecx(v[6]);
3281 vtm->sec = obj2subsecx(v[5], &subsecx);
3284 vtm->subsecx = subsecx;
3296 unsigned long uy = (
unsigned long)(LIKELY(y >= 0) ? y : -y);
3298 if (LIKELY(uy % 4 != 0))
return 0;
3300 unsigned long century = uy / 100;
3301 if (LIKELY(uy != century * 100))
return 1;
3302 return century % 4 == 0;
3306timegm_noleapsecond(
struct tm *tm)
3308 long tm_year = tm->tm_year;
3309 int tm_yday = calc_tm_yday(tm->tm_year, tm->tm_mon, tm->tm_mday);
3317 return tm->tm_sec + tm->tm_min*60 + tm->tm_hour*3600 +
3321 DIV(tm_year-1,100) +
3322 DIV(tm_year+299,400))*86400;
3326#define DEBUG_FIND_TIME_NUMGUESS
3327#define DEBUG_GUESSRANGE
3330static const bool debug_guessrange =
3331#ifdef DEBUG_GUESSRANGE
3337#define DEBUG_REPORT_GUESSRANGE \
3338 (debug_guessrange ? debug_report_guessrange(guess_lo, guess_hi) : (void)0)
3341debug_report_guessrange(time_t guess_lo, time_t guess_hi)
3343 time_t guess_diff = guess_hi - guess_lo;
3344 fprintf(stderr,
"find time guess range: %"PRI_TIMET_PREFIX
"d - "
3345 "%"PRI_TIMET_PREFIX
"d : %"PRI_TIMET_PREFIX
"u\n",
3346 guess_lo, guess_hi, guess_diff);
3349static const bool debug_find_time_numguess =
3350#ifdef DEBUG_FIND_TIME_NUMGUESS
3356#define DEBUG_FIND_TIME_NUMGUESS_INC \
3357 (void)(debug_find_time_numguess && find_time_numguess++),
3358static unsigned long long find_time_numguess;
3361find_time_numguess_getter(
ID name,
VALUE *data)
3363 unsigned long long *numguess = (
void *)data;
3368find_time_t(
struct tm *tptr,
int utc_p, time_t *tp)
3370 time_t guess, guess0, guess_lo, guess_hi;
3371 struct tm *tm, tm0, tm_lo, tm_hi;
3378#define GUESS(p) (DEBUG_FIND_TIME_NUMGUESS_INC (utc_p ? gmtime_with_leapsecond((p), &result) : LOCALTIME((p), result)))
3380 guess_lo = TIMET_MIN;
3381 guess_hi = TIMET_MAX;
3383 find_dst = 0 < tptr->tm_isdst;
3389 if (tm0.tm_mon < 0) {
3396 else if (11 < tm0.tm_mon) {
3403 else if (tm0.tm_mday < 1) {
3409 else if ((d = days_in_month_in(1900 + tm0.tm_year)[tm0.tm_mon]) < tm0.tm_mday) {
3415 else if (tm0.tm_hour < 0) {
3420 else if (23 < tm0.tm_hour) {
3425 else if (tm0.tm_min < 0) {
3429 else if (59 < tm0.tm_min) {
3433 else if (tm0.tm_sec < 0) {
3436 else if (60 < tm0.tm_sec) {
3440 DEBUG_REPORT_GUESSRANGE;
3441 guess0 = guess = timegm_noleapsecond(&tm0);
3444 d = tmcmp(tptr, tm);
3445 if (d == 0) {
goto found; }
3448 guess -= 24 * 60 * 60;
3452 guess += 24 * 60 * 60;
3454 DEBUG_REPORT_GUESSRANGE;
3455 if (guess_lo < guess && guess < guess_hi && (tm = GUESS(&guess)) != NULL) {
3456 d = tmcmp(tptr, tm);
3457 if (d == 0) {
goto found; }
3462 DEBUG_REPORT_GUESSRANGE;
3466 tm = GUESS(&guess_lo);
3467 if (!tm)
goto error;
3468 d = tmcmp(tptr, tm);
3469 if (d < 0)
goto out_of_range;
3470 if (d == 0) { guess = guess_lo;
goto found; }
3473 tm = GUESS(&guess_hi);
3474 if (!tm)
goto error;
3475 d = tmcmp(tptr, tm);
3476 if (d > 0)
goto out_of_range;
3477 if (d == 0) { guess = guess_hi;
goto found; }
3480 DEBUG_REPORT_GUESSRANGE;
3484 while (guess_lo + 1 < guess_hi) {
3487 guess = guess_lo / 2 + guess_hi / 2;
3488 if (guess <= guess_lo)
3489 guess = guess_lo + 1;
3490 else if (guess >= guess_hi)
3491 guess = guess_hi - 1;
3496 time_t guess0_hi = timegm_noleapsecond(&tm_hi);
3497 guess = guess_hi - (guess0_hi - guess0);
3498 if (guess == guess_hi)
3502 else if (status == 2) {
3503 time_t guess0_lo = timegm_noleapsecond(&tm_lo);
3504 guess = guess_lo + (guess0 - guess0_lo);
3505 if (guess == guess_lo)
3509 if (guess <= guess_lo || guess_hi <= guess) {
3511 if (debug_guessrange) {
3512 if (guess <= guess_lo) {
3513 fprintf(stderr,
"too small guess: %"PRI_TIMET_PREFIX
"d"\
3514 " <= %"PRI_TIMET_PREFIX
"d\n", guess, guess_lo);
3516 if (guess_hi <= guess) {
3517 fprintf(stderr,
"too big guess: %"PRI_TIMET_PREFIX
"d"\
3518 " <= %"PRI_TIMET_PREFIX
"d\n", guess_hi, guess);
3527 if (!tm)
goto error;
3529 d = tmcmp(tptr, tm);
3534 DEBUG_REPORT_GUESSRANGE;
3539 DEBUG_REPORT_GUESSRANGE;
3554 tptr_tm_yday = calc_tm_yday(tptr->tm_year, tptr->tm_mon, tptr->tm_mday);
3557 ((tptr->tm_year - tm_lo.tm_year) * 365 +
3558 DIV((tptr->tm_year-69), 4) -
3559 DIV((tptr->tm_year-1), 100) +
3560 DIV((tptr->tm_year+299), 400) -
3561 DIV((tm_lo.tm_year-69), 4) +
3562 DIV((tm_lo.tm_year-1), 100) -
3563 DIV((tm_lo.tm_year+299), 400) +
3565 tm_lo.tm_yday) * 86400 +
3566 (tptr->tm_hour - tm_lo.tm_hour) * 3600 +
3567 (tptr->tm_min - tm_lo.tm_min) * 60 +
3568 (tptr->tm_sec - (tm_lo.tm_sec == 60 ? 59 : tm_lo.tm_sec));
3577 guess2 = guess - 2 * 60 * 60;
3578 tm = LOCALTIME(&guess2, result);
3580 if (tptr->tm_hour != (tm->tm_hour + 2) % 24 ||
3581 tptr->tm_min != tm->tm_min ||
3582 tptr->tm_sec != tm->tm_sec) {
3583 guess2 -= (tm->tm_hour - tptr->tm_hour) * 60 * 60 +
3584 (tm->tm_min - tptr->tm_min) * 60 +
3585 (tm->tm_sec - tptr->tm_sec);
3586 if (tptr->tm_mday != tm->tm_mday)
3587 guess2 += 24 * 60 * 60;
3588 if (guess != guess2) {
3589 tm = LOCALTIME(&guess2, result);
3590 if (tm && tmcmp(tptr, tm) == 0) {
3602 guess2 = guess + 2 * 60 * 60;
3603 tm = LOCALTIME(&guess2, result);
3605 if ((tptr->tm_hour + 2) % 24 != tm->tm_hour ||
3606 tptr->tm_min != tm->tm_min ||
3607 tptr->tm_sec != tm->tm_sec) {
3608 guess2 -= (tm->tm_hour - tptr->tm_hour) * 60 * 60 +
3609 (tm->tm_min - tptr->tm_min) * 60 +
3610 (tm->tm_sec - tptr->tm_sec);
3611 if (tptr->tm_mday != tm->tm_mday)
3612 guess2 -= 24 * 60 * 60;
3613 if (guess != guess2) {
3614 tm = LOCALTIME(&guess2, result);
3615 if (tm && tmcmp(tptr, tm) == 0) {
3631 return "time out of range";
3634 return "gmtime/localtime error";
3638vtmcmp(
struct vtm *a,
struct vtm *b)
3640 if (ne(a->year, b->year))
3641 return lt(a->year, b->year) ? -1 : 1;
3642 else if (a->mon != b->mon)
3643 return a->mon < b->mon ? -1 : 1;
3644 else if (a->mday != b->mday)
3645 return a->mday < b->mday ? -1 : 1;
3646 else if (a->hour != b->hour)
3647 return a->hour < b->hour ? -1 : 1;
3648 else if (a->min != b->min)
3649 return a->min < b->min ? -1 : 1;
3650 else if (a->sec != b->sec)
3651 return a->sec < b->sec ? -1 : 1;
3652 else if (ne(a->subsecx, b->subsecx))
3653 return lt(a->subsecx, b->subsecx) ? -1 : 1;
3659tmcmp(
struct tm *a,
struct tm *b)
3661 if (a->tm_year != b->tm_year)
3662 return a->tm_year < b->tm_year ? -1 : 1;
3663 else if (a->tm_mon != b->tm_mon)
3664 return a->tm_mon < b->tm_mon ? -1 : 1;
3665 else if (a->tm_mday != b->tm_mday)
3666 return a->tm_mday < b->tm_mday ? -1 : 1;
3667 else if (a->tm_hour != b->tm_hour)
3668 return a->tm_hour < b->tm_hour ? -1 : 1;
3669 else if (a->tm_min != b->tm_min)
3670 return a->tm_min < b->tm_min ? -1 : 1;
3671 else if (a->tm_sec != b->tm_sec)
3672 return a->tm_sec < b->tm_sec ? -1 : 1;
3778time_s_mkutc(
int argc,
VALUE *argv,
VALUE klass)
3782 time_arg(argc, argv, &
vtm);
3783 return time_gmtime(time_new_timew(klass, timegmw(&
vtm)));
3804time_s_mktime(
int argc,
VALUE *argv,
VALUE klass)
3808 time_arg(argc, argv, &
vtm);
3809 return time_localtime(time_new_timew(klass, timelocalw(&
vtm)));
3829time_to_i(
VALUE time)
3833 GetTimeval(time, tobj);
3834 return w2v(wdiv(tobj->timew, WINT2FIXWV(TIME_SCALE)));
3857time_to_f(
VALUE time)
3861 GetTimeval(time, tobj);
3862 return rb_Float(rb_time_unmagnify_to_float(tobj->timew));
3878time_to_r(
VALUE time)
3883 GetTimeval(time, tobj);
3884 v = rb_time_unmagnify_to_rational(tobj->timew);
3906time_usec(
VALUE time)
3911 GetTimeval(time, tobj);
3913 w = wmod(tobj->timew, WINT2WV(TIME_SCALE));
3914 wmuldivmod(w, WINT2FIXWV(1000000), WINT2FIXWV(TIME_SCALE), &q, &r);
3933time_nsec(
VALUE time)
3937 GetTimeval(time, tobj);
3938 return rb_to_int(w2v(wmulquoll(wmod(tobj->timew, WINT2WV(TIME_SCALE)), 1000000000, TIME_SCALE)));
3959time_subsec(
VALUE time)
3963 GetTimeval(time, tobj);
3964 return quov(w2v(wmod(tobj->timew, WINT2FIXWV(TIME_SCALE))),
INT2FIX(TIME_SCALE));
4001 GetTimeval(time1, tobj1);
4002 if (IsTimeval(time2)) {
4003 GetTimeval(time2, tobj2);
4004 n = wcmp(tobj1->timew, tobj2->timew);
4007 return rb_invcmp(time1, time2);
4009 if (n == 0)
return INT2FIX(0);
4027 GetTimeval(time1, tobj1);
4028 if (IsTimeval(time2)) {
4029 GetTimeval(time2, tobj2);
4030 return rb_equal(w2v(tobj1->timew), w2v(tobj2->timew));
4063time_utc_p(
VALUE time)
4067 GetTimeval(time, tobj);
4068 return RBOOL(TZMODE_UTC_P(tobj));
4081time_hash(
VALUE time)
4085 GetTimeval(time, tobj);
4086 return rb_hash(w2v(tobj->timew));
4096 GetTimeval(time, tobj);
4097 GetNewTimeval(copy, tcopy);
4099 time_set_timew(copy, tcopy, tobj->timew);
4100 time_set_vtm(copy, tcopy, tobj->vtm);
4109 time_init_copy(dup, time);
4114time_localtime(
VALUE time)
4120 GetTimeval(time, tobj);
4121 if (TZMODE_LOCALTIME_P(tobj)) {
4122 if (tobj->vtm.tm_got)
4129 zone = tobj->vtm.zone;
4130 if (maybe_tzobj_p(zone) && zone_localtime(zone, time)) {
4134 if (!localtimew(tobj->timew, &
vtm))
4135 rb_raise(rb_eArgError,
"localtime error");
4136 time_set_vtm(time, tobj,
vtm);
4138 tobj->vtm.tm_got = 1;
4139 TZMODE_SET_LOCALTIME(tobj);
4147 if (maybe_tzobj_p(zone) && zone_localtime(zone, time))
return time;
4151 if (
NIL_P(zone = find_timezone(time,
off))) invalid_utc_offset(
off);
4152 if (!zone_localtime(zone, time)) invalid_utc_offset(
off);
4155 else if (
off == UTC_ZONE) {
4156 return time_gmtime(time);
4158 validate_utc_offset(
off);
4160 time_set_utc_offset(time,
off);
4161 return time_fixoff(time);
4189time_localtime_m(
int argc,
VALUE *argv,
VALUE time)
4194 return time_zonelocal(time,
off);
4197 return time_localtime(time);
4215time_gmtime(
VALUE time)
4220 GetTimeval(time, tobj);
4221 if (TZMODE_UTC_P(tobj)) {
4222 if (tobj->vtm.tm_got)
4230 GMTIMEW(tobj->timew, &
vtm);
4231 time_set_vtm(time, tobj,
vtm);
4233 tobj->vtm.tm_got = 1;
4234 TZMODE_SET_UTC(tobj);
4239time_fixoff(
VALUE time)
4245 GetTimeval(time, tobj);
4246 if (TZMODE_FIXOFF_P(tobj)) {
4247 if (tobj->vtm.tm_got)
4254 if (TZMODE_FIXOFF_P(tobj))
4255 off = tobj->vtm.utc_offset;
4259 GMTIMEW(tobj->timew, &
vtm);
4261 zone = tobj->vtm.zone;
4262 vtm_add_offset(&
vtm,
off, +1);
4264 time_set_vtm(time, tobj,
vtm);
4265 RB_OBJ_WRITE_UNALIGNED(time, &tobj->vtm.zone, zone);
4267 tobj->vtm.tm_got = 1;
4268 TZMODE_SET_FIXOFF(time, tobj,
off);
4290time_getlocaltime(
int argc,
VALUE *argv,
VALUE time)
4296 if (maybe_tzobj_p(zone)) {
4297 VALUE t = time_dup(time);
4298 if (zone_localtime(
off, t))
return t;
4303 if (
NIL_P(zone = find_timezone(time,
off))) invalid_utc_offset(
off);
4304 time = time_dup(time);
4305 if (!zone_localtime(zone, time)) invalid_utc_offset(
off);
4308 else if (
off == UTC_ZONE) {
4309 return time_gmtime(time_dup(time));
4311 validate_utc_offset(
off);
4313 time = time_dup(time);
4314 time_set_utc_offset(time,
off);
4315 return time_fixoff(time);
4318 return time_localtime(time_dup(time));
4337time_getgmtime(
VALUE time)
4339 return time_gmtime(time_dup(time));
4345 if (TZMODE_UTC_P(tobj))
return time_gmtime(time);
4346 if (TZMODE_FIXOFF_P(tobj))
return time_fixoff(time);
4347 return time_localtime(time);
4351#define strftimev(fmt, time, enc) strftime_cstr((fmt), rb_strlen_lit(fmt), (time), (enc))
4375time_asctime(
VALUE time)
4377 return strftimev(
"%a %b %e %T %Y", time, rb_usascii_encoding());
4397time_to_s(
VALUE time)
4401 GetTimeval(time, tobj);
4402 if (TZMODE_UTC_P(tobj))
4403 return strftimev(
"%Y-%m-%d %H:%M:%S UTC", time, rb_usascii_encoding());
4405 return strftimev(
"%Y-%m-%d %H:%M:%S %z", time, rb_usascii_encoding());
4425time_inspect(
VALUE time)
4430 GetTimeval(time, tobj);
4431 str = strftimev(
"%Y-%m-%d %H:%M:%S", time, rb_usascii_encoding());
4432 subsec = w2v(wmod(tobj->timew, WINT2FIXWV(TIME_SCALE)));
4437 rb_str_catf(str,
".%09ld",
FIX2LONG(subsec));
4438 for (
len=RSTRING_LEN(str); RSTRING_PTR(str)[
len-1] ==
'0' &&
len > 0;
len--)
4440 rb_str_resize(str,
len);
4444 subsec = quov(subsec,
INT2FIX(TIME_SCALE));
4447 if (TZMODE_UTC_P(tobj)) {
4453 char sign = (
off < 0) ? (
off = -
off,
'-') :
'+';
4455 int min = (
off /= 60) % 60;
4457 rb_str_catf(str,
" %c%.2d%.2d", sign, (
int)
off, min);
4458 if (sec) rb_str_catf(str,
"%.2d", sec);
4469 offset = num_exact(offset);
4471 result = time_new_timew(klass, wsub(tobj->timew, rb_time_magnify(v2w(offset))));
4473 result = time_new_timew(klass, wadd(tobj->timew, rb_time_magnify(v2w(offset))));
4474 GetTimeval(result, result_tobj);
4475 TZMODE_COPY(result_tobj, tobj);
4483 return time_add0(
rb_cTime, tobj, torig, offset, sign);
4504 GetTimeval(time1, tobj);
4506 if (IsTimeval(time2)) {
4509 return time_add(tobj, time1, time2, 1);
4539 GetTimeval(time1, tobj);
4540 if (IsTimeval(time2)) {
4543 GetTimeval(time2, tobj2);
4544 return rb_Float(rb_time_unmagnify_to_float(wsub(tobj->timew, tobj2->timew)));
4546 return time_add(tobj, time1, time2, -1);
4550ndigits_denominator(
VALUE ndigits)
4555 rb_raise(rb_eArgError,
"negative ndigits given");
4595 VALUE ndigits, v, den;
4601 den = ndigits_denominator(ndigits);
4603 GetTimeval(time, tobj);
4604 v = w2v(rb_time_unmagnify(tobj->timew));
4607 if (lt(v, quov(den,
INT2FIX(2))))
4608 return time_add(tobj, time, v, -1);
4610 return time_add(tobj, time, subv(den, v), 1);
4643 VALUE ndigits, v, den;
4649 den = ndigits_denominator(ndigits);
4651 GetTimeval(time, tobj);
4652 v = w2v(rb_time_unmagnify(tobj->timew));
4655 return time_add(tobj, time, v, -1);
4688 VALUE ndigits, v, den;
4694 den = ndigits_denominator(ndigits);
4696 GetTimeval(time, tobj);
4697 v = w2v(rb_time_unmagnify(tobj->timew));
4703 return time_add(tobj, time, v, 1);
4728 GetTimeval(time, tobj);
4729 MAKE_TM(time, tobj);
4730 return INT2FIX(tobj->vtm.sec);
4752 GetTimeval(time, tobj);
4753 MAKE_TM(time, tobj);
4754 return INT2FIX(tobj->vtm.min);
4772time_hour(
VALUE time)
4776 GetTimeval(time, tobj);
4777 MAKE_TM(time, tobj);
4778 return INT2FIX(tobj->vtm.hour);
4796time_mday(
VALUE time)
4800 GetTimeval(time, tobj);
4801 MAKE_TM(time, tobj);
4802 return INT2FIX(tobj->vtm.mday);
4824 GetTimeval(time, tobj);
4825 MAKE_TM(time, tobj);
4826 return INT2FIX(tobj->vtm.mon);
4843time_year(
VALUE time)
4847 GetTimeval(time, tobj);
4848 MAKE_TM(time, tobj);
4849 return tobj->vtm.year;
4868time_wday(
VALUE time)
4872 GetTimeval(time, tobj);
4873 MAKE_TM_ENSURE(time, tobj, tobj->vtm.wday != VTM_WDAY_INITVAL);
4874 return INT2FIX((
int)tobj->vtm.wday);
4878 return RBOOL(time_wday(time) == INT2FIX(n)); \
4894time_sunday(
VALUE time)
4912time_monday(
VALUE time)
4930time_tuesday(
VALUE time)
4948time_wednesday(
VALUE time)
4966time_thursday(
VALUE time)
4984time_friday(
VALUE time)
5002time_saturday(
VALUE time)
5018time_yday(
VALUE time)
5022 GetTimeval(time, tobj);
5023 MAKE_TM_ENSURE(time, tobj, tobj->vtm.yday != 0);
5024 return INT2FIX(tobj->vtm.yday);
5043time_isdst(
VALUE time)
5047 GetTimeval(time, tobj);
5048 MAKE_TM(time, tobj);
5049 if (tobj->vtm.isdst == VTM_ISDST_INITVAL) {
5052 return RBOOL(tobj->vtm.isdst);
5066time_zone(
VALUE time)
5071 GetTimeval(time, tobj);
5072 MAKE_TM(time, tobj);
5074 if (TZMODE_UTC_P(tobj)) {
5077 zone = tobj->vtm.zone;
5102 GetTimeval(time, tobj);
5104 if (TZMODE_UTC_P(tobj)) {
5108 MAKE_TM(time, tobj);
5109 return tobj->vtm.utc_offset;
5129time_to_a(
VALUE time)
5133 GetTimeval(time, tobj);
5134 MAKE_TM_ENSURE(time, tobj, tobj->vtm.yday != 0);
5144 RBOOL(tobj->vtm.isdst),
5190 GetTimeval(time, tobj);
5191 MAKE_TM_ENSURE(time, tobj, tobj->vtm.yday != 0);
5194 h = rb_hash_new_with_size(11);
5196 rb_hash_aset(h, sym_year, tobj->vtm.year);
5197 rb_hash_aset(h, sym_month,
INT2FIX(tobj->vtm.mon));
5198 rb_hash_aset(h, sym_day,
INT2FIX(tobj->vtm.mday));
5199 rb_hash_aset(h, sym_yday,
INT2FIX(tobj->vtm.yday));
5200 rb_hash_aset(h, sym_wday,
INT2FIX(tobj->vtm.wday));
5201 rb_hash_aset(h, sym_hour,
INT2FIX(tobj->vtm.hour));
5202 rb_hash_aset(h, sym_min,
INT2FIX(tobj->vtm.min));
5203 rb_hash_aset(h, sym_sec,
INT2FIX(tobj->vtm.sec));
5204 rb_hash_aset(h, sym_subsec,
5205 quov(w2v(wmod(tobj->timew, WINT2FIXWV(TIME_SCALE))),
INT2FIX(TIME_SCALE)));
5206 rb_hash_aset(h, sym_dst, RBOOL(tobj->vtm.isdst));
5207 rb_hash_aset(h, sym_zone, time_zone(time));
5213 "wrong argument type %"PRIsVALUE
" (expected Array or nil)",
5223 if (sym_year == key) rb_hash_aset(h, key, tobj->vtm.year);
5224 if (sym_month == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.mon));
5225 if (sym_day == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.mday));
5226 if (sym_yday == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.yday));
5227 if (sym_wday == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.wday));
5228 if (sym_hour == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.hour));
5229 if (sym_min == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.min));
5230 if (sym_sec == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.sec));
5231 if (sym_subsec == key) {
5232 rb_hash_aset(h, key, quov(w2v(wmod(tobj->timew, WINT2FIXWV(TIME_SCALE))),
INT2FIX(TIME_SCALE)));
5234 if (sym_dst == key) rb_hash_aset(h, key, RBOOL(tobj->vtm.isdst));
5235 if (sym_zone == key) rb_hash_aset(h, key, time_zone(time));
5241rb_strftime_alloc(
const char *format,
size_t format_len,
rb_encoding *enc,
5247 if (!timew2timespec_exact(timew, &ts))
5248 timev = w2v(rb_time_unmagnify(timew));
5251 return rb_strftime_timespec(format, format_len, enc, time,
vtm, &ts, gmt);
5254 return rb_strftime(format, format_len, enc, time,
vtm, timev, gmt);
5264 GetTimeval(time, tobj);
5265 MAKE_TM(time, tobj);
5266 str = rb_strftime_alloc(fmt,
len, enc, time, &tobj->vtm, tobj->timew, TZMODE_UTC_P(tobj));
5267 if (!str) rb_raise(rb_eArgError,
"invalid format: %s", fmt);
5289 GetTimeval(time, tobj);
5290 MAKE_TM_ENSURE(time, tobj, tobj->vtm.yday != 0);
5293 rb_raise(rb_eArgError,
"format should have ASCII compatible encoding");
5295 tmp = rb_str_tmp_frozen_acquire(format);
5296 fmt = RSTRING_PTR(tmp);
5297 len = RSTRING_LEN(tmp);
5298 enc = rb_enc_get(format);
5300 rb_warning(
"strftime called with empty format string");
5301 return rb_enc_str_new(0, 0, enc);
5304 VALUE str = rb_strftime_alloc(fmt,
len, enc, time, &tobj->vtm, tobj->timew,
5305 TZMODE_UTC_P(tobj));
5306 rb_str_tmp_frozen_release(format, tmp);
5307 if (!str) rb_raise(rb_eArgError,
"invalid format: %"PRIsVALUE, format);
5334time_xmlschema(
int argc,
VALUE *argv,
VALUE time)
5336 long fraction_digits = 0;
5339 fraction_digits =
NUM2LONG(argv[0]);
5340 if (fraction_digits < 0) {
5341 fraction_digits = 0;
5347 GetTimeval(time, tobj);
5348 MAKE_TM(time, tobj);
5350 const long size_after_year =
sizeof(
"-MM-DDTHH:MM:SS+ZH:ZM") + fraction_digits
5351 + (fraction_digits > 0);
5355# define fill_digits_long(len, prec, n) \
5356 for (int fill_it = 1, written = snprintf(ptr, len, "%0*ld", prec, n); \
5357 fill_it; ptr += written, fill_it = 0)
5360 long year =
FIX2LONG(tobj->vtm.year);
5362 int w = (year >= -9999 && year <= 9999 ? year_width : (year < 0) + (
int)
DECIMAL_SIZE_OF(year));
5364 ptr = RSTRING_PTR(str);
5365 fill_digits_long(w + 1, year_width, year) {
5366 if (year >= -9999 && year <= 9999) {
5376 str = rb_int2str(tobj->vtm.year, 10);
5381# define fill_2(c, n) (*ptr++ = c, *ptr++ = '0' + (n) / 10, *ptr++ = '0' + (n) % 10)
5382 fill_2(
'-', tobj->vtm.mon);
5383 fill_2(
'-', tobj->vtm.mday);
5384 fill_2(
'T', tobj->vtm.hour);
5385 fill_2(
':', tobj->vtm.min);
5386 fill_2(
':', tobj->vtm.sec);
5388 if (fraction_digits > 0) {
5389 VALUE subsecx = tobj->vtm.subsecx;
5393 if (fraction_digits <= TIME_SCALE_NUMDIGITS) {
5394 digits = TIME_SCALE_NUMDIGITS - (int)fraction_digits;
5397 long w = fraction_digits - TIME_SCALE_NUMDIGITS;
5404 if (digits >= 0 && fraction_digits < INT_MAX) {
5406 if (digits > 0) subsec /= (long)pow(10, digits);
5407 fill_digits_long(fraction_digits + 1, (
int)fraction_digits, subsec) {
5412 subsecx = rb_int2str(subsecx, 10);
5413 long len = RSTRING_LEN(subsecx);
5414 if (fraction_digits >
len) {
5415 memset(ptr,
'0', fraction_digits -
len);
5418 len = fraction_digits;
5420 ptr += fraction_digits;
5421 memcpy(ptr -
len, RSTRING_PTR(subsecx),
len);
5425 if (TZMODE_UTC_P(tobj)) {
5431 char sign = offset < 0 ?
'-' :
'+';
5432 if (offset < 0) offset = -offset;
5434 fill_2(sign, offset / 60);
5435 fill_2(
':', offset % 60);
5437 const char *
const start = RSTRING_PTR(str);
5442int ruby_marshal_write_long(
long x,
char *buf);
5444enum {base_dump_size = 8};
5448time_mdump(
VALUE time)
5452 char buf[base_dump_size +
sizeof(long) + 1];
5459 VALUE subsecx, nano, subnano, v, zone;
5462 const int max_year = 1900+0xffff;
5464 GetTimeval(time, tobj);
5466 gmtimew(tobj->timew, &
vtm);
5470 if (year > max_year) {
5471 year_extend =
INT2FIX(year - max_year);
5474 else if (year < 1900) {
5475 year_extend =
LONG2NUM(1900 - year);
5480 if (rb_int_positive_p(
vtm.year)) {
5481 year_extend = rb_int_minus(
vtm.year,
INT2FIX(max_year));
5485 year_extend = rb_int_minus(
INT2FIX(1900),
vtm.year);
5490 subsecx =
vtm.subsecx;
5492 nano = mulquov(subsecx,
INT2FIX(1000000000),
INT2FIX(TIME_SCALE));
5493 divmodv(nano,
INT2FIX(1), &v, &subnano);
5498 nano = addv(
LONG2FIX(nsec), subnano);
5501 TZMODE_UTC_P(tobj) << 30 |
5506 s = (
unsigned long)
vtm.min << 26 |
5510 for (i=0; i<4; i++) {
5511 buf[i] = (
unsigned char)p;
5514 for (i=4; i<8; i++) {
5515 buf[i] = (
unsigned char)s;
5519 if (!
NIL_P(year_extend)) {
5526 size_t ysize = rb_absint_size(year_extend, NULL);
5527 char *p, *
const buf_year_extend = buf + base_dump_size;
5528 if (ysize > LONG_MAX ||
5529 (i = ruby_marshal_write_long((
long)ysize, buf_year_extend)) < 0) {
5530 rb_raise(rb_eArgError,
"year too %s to marshal: %"PRIsVALUE
" UTC",
5531 (year == 1900 ?
"small" :
"big"),
vtm.year);
5533 i += base_dump_size;
5535 p = RSTRING_PTR(str);
5546 rb_ivar_set(str, id_nano_num, RRATIONAL(nano)->num);
5547 rb_ivar_set(str, id_nano_den, RRATIONAL(nano)->den);
5563 int len = (int)
sizeof(buf);
5564 buf[1] = (char)((nsec % 10) << 4);
5566 buf[0] = (char)(nsec % 10);
5568 buf[0] |= (char)((nsec % 10) << 4);
5573 if (!TZMODE_UTC_P(tobj)) {
5580 zone = tobj->vtm.zone;
5581 if (maybe_tzobj_p(zone)) {
5595 str = time_mdump(time);
5601mload_findzone(
VALUE arg)
5604 VALUE time = argp[0], zone = argp[1];
5605 return find_timezone(time, zone);
5615 if (
NIL_P(z))
return rb_fstring(zone);
5620long ruby_marshal_read_long(
const char **buf,
long len);
5634 VALUE submicro, nano_num, nano_den, offset, zone, year;
5639#define get_attr(attr, iffound) \
5640 attr = rb_attr_delete(str, id_##attr); \
5641 if (!NIL_P(attr)) { \
5645 get_attr(nano_num, {});
5646 get_attr(nano_den, {});
5647 get_attr(submicro, {});
5648 get_attr(offset, (offset =
rb_rescue(validate_utc_offset, offset, 0,
Qnil)));
5649 get_attr(zone, (zone =
rb_rescue(validate_zone_name, zone, 0,
Qnil)));
5657 buf = (
unsigned char *)RSTRING_PTR(str);
5658 if (RSTRING_LEN(str) < base_dump_size) {
5659 goto invalid_format;
5663 for (i=0; i<4; i++) {
5664 p |= (
unsigned long)buf[i]<<(8*i);
5666 for (i=4; i<8; i++) {
5667 s |= (
unsigned long)buf[i]<<(8*(i-4));
5670 if ((p & (1UL<<31)) == 0) {
5676 timew = wadd(rb_time_magnify(TIMET2WV(sec)), wmulquoll(WINT2FIXWV(usec), TIME_SCALE, 1000000));
5680 gmt = (int)((p >> 30) & 0x1);
5683 year =
INT2FIX(((
int)(p >> 14) & 0xffff) + 1900);
5685 if (RSTRING_LEN(str) > base_dump_size) {
5686 long len = RSTRING_LEN(str) - base_dump_size;
5689 const char *ybuf = (
const char *)(buf += base_dump_size);
5690 ysize = ruby_marshal_read_long(&ybuf,
len);
5691 len -= ybuf - (
const char *)buf;
5692 if (ysize < 0 || ysize >
len)
goto invalid_format;
5695 year = rb_int_minus(year, year_extend);
5698 year = rb_int_plus(year, year_extend);
5701 unsigned int mon = ((int)(p >> 10) & 0xf);
5708 vtm.mday = (int)(p >> 5) & 0x1f;
5709 vtm.hour = (int) p & 0x1f;
5710 vtm.min = (int)(s >> 26) & 0x3f;
5711 vtm.sec = (int)(s >> 20) & 0x3f;
5715 vtm.zone = str_empty;
5717 usec = (long)(s & 0xfffff);
5722 if (nano_num !=
Qnil) {
5723 VALUE nano = quov(num_exact(nano_num), num_exact(nano_den));
5726 else if (submicro !=
Qnil) {
5731 len = RSTRING_LEN(submicro);
5734 if (10 <= (digit = ptr[0] >> 4))
goto end_submicro;
5735 nsec += digit * 100;
5736 if (10 <= (digit = ptr[0] & 0xf))
goto end_submicro;
5740 if (10 <= (digit = ptr[1] >> 4))
goto end_submicro;
5746 timew = timegmw(&
vtm);
5749 GetNewTimeval(time, tobj);
5750 TZMODE_SET_LOCALTIME(tobj);
5751 tobj->vtm.tm_got = 0;
5752 time_set_timew(time, tobj, timew);
5755 TZMODE_SET_UTC(tobj);
5757 else if (!
NIL_P(offset)) {
5758 time_set_utc_offset(time, offset);
5762 zone = mload_zone(time, zone);
5764 zone_localtime(zone, time);
5778 VALUE time = time_s_alloc(klass);
5780 time_mload(time, str);
5805 GetTimeval(time, tobj);
5806 tm = time_s_alloc(klass);
5807 ttm = RTYPEDDATA_GET_DATA(tm);
5812 time_set_timew(tm, ttm, wsub(timew, v2w(v->subsecx)));
5815 time_set_vtm(tm, ttm, *v);
5817 ttm->vtm.tm_got = 1;
5818 TZMODE_SET_UTC(ttm);
5830tm_initialize(
int argc,
VALUE *argv,
VALUE time)
5836 time_arg(argc, argv, &
vtm);
5838 struct time_object *tobj = RTYPEDDATA_GET_DATA(time);
5839 TZMODE_SET_UTC(tobj);
5840 time_set_timew(time, tobj, t);
5841 time_set_vtm(time, tobj,
vtm);
5857 struct time_object *tobj = RTYPEDDATA_GET_DATA(dup);
5865 return time_add0(
rb_obj_class(tm), get_timeval(tm), tm, offset, +1);
5871 return time_add0(
rb_obj_class(tm), get_timeval(tm), tm, offset, -1);
5875Init_tm(
VALUE outer,
const char *name)
5879 tm = rb_define_class_under(outer, name,
rb_cObject);
5921rb_time_zone_abbreviation(
VALUE zone,
VALUE time)
5923 VALUE tm, abbr, strftime_args[2];
5926 if (!
NIL_P(abbr))
return abbr;
5928 tm = tm_from_time(rb_cTimeTM, time);
5930 if (!UNDEF_P(abbr)) {
5933#ifdef SUPPORT_TZINFO_ZONE_ABBREVIATION
5935 if (!UNDEF_P(abbr)) {
5936 abbr =
rb_funcallv(abbr, rb_intern(
"abbreviation"), 0, 0);
5940 strftime_args[0] = rb_fstring_lit(
"%Z");
5941 strftime_args[1] = tm;
5943 if (!UNDEF_P(abbr)) {
5946 abbr = rb_check_funcall_default(zone, idName, 0, 0,
Qnil);
5956 ruby_reset_timezone(getenv(
"TZ"));
5992 str_utc = rb_fstring_lit(
"UTC");
5993 rb_vm_register_global_object(str_utc);
5994 str_empty = rb_fstring_lit(
"");
5995 rb_vm_register_global_object(str_empty);
6079 if (debug_find_time_numguess) {
6081 find_time_numguess_getter, 0);
6084 rb_cTimeTM = Init_tm(
rb_cTime,
"tm");
6087#include "timev.rbinc"
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
#define rb_define_method(klass, mid, func, arity)
Defines klass#mid.
#define rb_define_singleton_method(klass, mid, func, arity)
Defines klass.mid.
#define rb_define_private_method(klass, mid, func, arity)
Defines klass#mid and makes it private.
void rb_include_module(VALUE klass, VALUE module)
Includes a module to a class.
VALUE rb_singleton_class(VALUE obj)
Finds or creates the singleton class of the passed object.
void rb_define_alias(VALUE klass, const char *name1, const char *name2)
Defines an alias of a method.
int rb_scan_args(int argc, const VALUE *argv, const char *fmt,...)
Retrieves argument from argc and argv to given VALUE references according to the format string.
#define TYPE(_)
Old name of rb_type.
#define RB_INTEGER_TYPE_P
Old name of rb_integer_type_p.
#define OBJ_INIT_COPY(obj, orig)
Old name of RB_OBJ_INIT_COPY.
#define ISSPACE
Old name of rb_isspace.
#define RFLOAT_VALUE
Old name of rb_float_value.
#define T_STRING
Old name of RUBY_T_STRING.
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
#define T_NIL
Old name of RUBY_T_NIL.
#define ID2SYM
Old name of RB_ID2SYM.
#define T_BIGNUM
Old name of RUBY_T_BIGNUM.
#define T_STRUCT
Old name of RUBY_T_STRUCT.
#define T_FIXNUM
Old name of RUBY_T_FIXNUM.
#define UNREACHABLE_RETURN
Old name of RBIMPL_UNREACHABLE_RETURN.
#define CLASS_OF
Old name of rb_class_of.
#define LONG2FIX
Old name of RB_INT2FIX.
#define FIX2INT
Old name of RB_FIX2INT.
#define ISDIGIT
Old name of rb_isdigit.
#define ASSUME
Old name of RBIMPL_ASSUME.
#define T_RATIONAL
Old name of RUBY_T_RATIONAL.
#define rb_ary_new3
Old name of rb_ary_new_from_args.
#define LONG2NUM
Old name of RB_LONG2NUM.
#define STRNCASECMP
Old name of st_locale_insensitive_strncasecmp.
#define ISASCII
Old name of rb_isascii.
#define ULL2NUM
Old name of RB_ULL2NUM.
#define FIXNUM_MIN
Old name of RUBY_FIXNUM_MIN.
#define NUM2INT
Old name of RB_NUM2INT.
#define INT2NUM
Old name of RB_INT2NUM.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define FIX2LONG
Old name of RB_FIX2LONG.
#define T_ARRAY
Old name of RUBY_T_ARRAY.
#define NIL_P
Old name of RB_NIL_P.
#define DBL2NUM
Old name of rb_float_new.
#define NUM2LONG
Old name of RB_NUM2LONG.
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#define CONST_ID
Old name of RUBY_CONST_ID.
#define NUM2SIZET
Old name of RB_NUM2SIZE.
void rb_exc_raise(VALUE mesg)
Raises an exception in the current thread.
VALUE rb_eRangeError
RangeError exception.
VALUE rb_eTypeError
TypeError exception.
VALUE rb_eRuntimeError
RuntimeError exception.
VALUE rb_exc_new_str(VALUE etype, VALUE str)
Identical to rb_exc_new_cstr(), except it takes a Ruby's string instead of C's.
void rb_warning(const char *fmt,...)
Issues a warning.
VALUE rb_cTime
Time class.
VALUE rb_Float(VALUE val)
This is the logic behind Kernel#Float.
VALUE rb_check_to_int(VALUE val)
Identical to rb_check_to_integer(), except it uses #to_int for conversion.
VALUE rb_cObject
Object class.
VALUE rb_Integer(VALUE val)
This is the logic behind Kernel#Integer.
VALUE rb_obj_class(VALUE obj)
Queries the class of an object.
VALUE rb_equal(VALUE lhs, VALUE rhs)
This function is an optimised version of calling #==.
VALUE rb_mComparable
Comparable module.
VALUE rb_to_int(VALUE val)
Identical to rb_check_to_int(), except it raises in case of conversion mismatch.
#define RB_OBJ_WRITTEN(old, oldv, young)
Identical to RB_OBJ_WRITE(), except it doesn't write any values, but only a WB declaration.
#define RB_OBJ_WRITE(old, slot, young)
Declaration of a "back" pointer.
static bool rb_enc_str_asciicompat_p(VALUE str)
Queries if the passed string is in an ASCII-compatible encoding.
VALUE rb_enc_interned_str(const char *ptr, long len, rb_encoding *enc)
Identical to rb_enc_str_new(), except it returns a "f"string.
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
VALUE rb_funcallv(VALUE recv, ID mid, int argc, const VALUE *argv)
Identical to rb_funcall(), except it takes the method arguments as a C array.
Defines RBIMPL_HAS_BUILTIN.
VALUE rb_check_array_type(VALUE obj)
Try converting an object to its array representation using its to_ary method, if any.
VALUE rb_ary_entry(VALUE ary, long off)
Queries an element of an array.
#define INTEGER_PACK_NATIVE_BYTE_ORDER
Means either INTEGER_PACK_MSBYTE_FIRST or INTEGER_PACK_LSBYTE_FIRST, depending on the host processor'...
#define RB_INT_PARSE_SIGN
Allows a leading sign (+ or -).
#define INTEGER_PACK_LITTLE_ENDIAN
Little endian combination.
static int rb_check_arity(int argc, int min, int max)
Ensures that the passed integer is in the passed range.
void rb_num_zerodiv(void)
Just always raises an exception.
VALUE rb_int_positive_pow(long x, unsigned long y)
Raises the passed x to the power of y.
VALUE rb_rational_new(VALUE num, VALUE den)
Constructs a Rational, with reduction.
#define rb_Rational1(x)
Shorthand of (x/1)r.
VALUE rb_str_subseq(VALUE str, long beg, long len)
Identical to rb_str_substr(), except the numbers are interpreted as byte offsets instead of character...
#define rb_str_new(str, len)
Allocates an instance of rb_cString.
#define rb_usascii_str_new(str, len)
Identical to rb_str_new, except it generates a string of "US ASCII" encoding.
VALUE rb_str_dup(VALUE str)
Duplicates a string.
VALUE rb_str_cat(VALUE dst, const char *src, long srclen)
Destructively appends the passed contents to the string.
#define rb_usascii_str_new_cstr(str)
Identical to rb_str_new_cstr, except it generates a string of "US ASCII" encoding.
void rb_str_set_len(VALUE str, long len)
Overwrites the length of the string.
VALUE rb_str_concat(VALUE dst, VALUE src)
Identical to rb_str_append(), except it also accepts an integer as a codepoint.
#define rb_strlen_lit(str)
Length of a string literal.
VALUE rb_check_string_type(VALUE obj)
Try converting an object to its stringised representation using its to_str method,...
#define rb_str_cat_cstr(buf, str)
Identical to rb_str_cat(), except it assumes the passed pointer is a pointer to a C string.
#define rb_utf8_str_new(str, len)
Identical to rb_str_new, except it generates a string of "UTF-8" encoding.
void rb_str_modify_expand(VALUE str, long capa)
Identical to rb_str_modify(), except it additionally expands the capacity of the receiver.
#define rb_str_new_cstr(str)
Identical to rb_str_new, except it assumes the passed pointer is a pointer to a C string.
VALUE rb_obj_as_string(VALUE obj)
Try converting an object to its stringised representation using its to_s method, if any.
VALUE rb_time_nano_new(time_t sec, long nsec)
Identical to rb_time_new(), except it accepts the time in nanoseconds resolution.
void rb_timespec_now(struct timespec *ts)
Fills the current time into the given struct.
VALUE rb_time_timespec_new(const struct timespec *ts, int offset)
Creates an instance of rb_cTime, with given time and offset.
struct timespec rb_time_timespec(VALUE time)
Identical to rb_time_timeval(), except for return type.
VALUE rb_time_new(time_t sec, long usec)
Creates an instance of rb_cTime with the given time and the local timezone.
struct timeval rb_time_timeval(VALUE time)
Converts an instance of rb_cTime to a struct timeval that represents the identical point of time.
struct timeval rb_time_interval(VALUE num)
Creates a "time interval".
VALUE rb_time_num_new(VALUE timev, VALUE off)
Identical to rb_time_timespec_new(), except it takes Ruby values instead of C structs.
VALUE rb_time_utc_offset(VALUE time)
Queries the offset, in seconds between the time zone of the time and the UTC.
struct timespec rb_time_timespec_interval(VALUE num)
Identical to rb_time_interval(), except for return type.
VALUE rb_ivar_set(VALUE obj, ID name, VALUE val)
Identical to rb_iv_set(), except it accepts the name as an ID instead of a C string.
int rb_respond_to(VALUE obj, ID mid)
Queries if the object responds to the method.
void rb_alias(VALUE klass, ID dst, ID src)
Resembles alias.
VALUE rb_check_funcall(VALUE recv, ID mid, int argc, const VALUE *argv)
Identical to rb_funcallv(), except it returns RUBY_Qundef instead of raising rb_eNoMethodError.
void rb_define_alloc_func(VALUE klass, rb_alloc_func_t func)
Sets the allocator function of a class.
static ID rb_intern_const(const char *str)
This is a "tiny optimisation" over rb_intern().
int off
Offset inside of ptr.
int len
Length of the buffer.
#define DECIMAL_SIZE_OF(expr)
An approximation of decimal representation size.
#define rb_long2int
Just another name of rb_long2int_inline.
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
void rb_define_hooked_variable(const char *q, VALUE *w, type *e, void_type *r)
Define a function-backended global variable.
VALUE rb_rescue(type *q, VALUE w, type *e, VALUE r)
An equivalent of rescue clause.
void rb_copy_generic_ivar(VALUE clone, VALUE obj)
Copies the list of instance variables.
#define RARRAY_LEN
Just another name of rb_array_len.
#define RARRAY_AREF(a, i)
#define StringValue(v)
Ensures that the parameter object is a String.
#define StringValuePtr(v)
Identical to StringValue, except it returns a char*.
VALUE rb_str_export_locale(VALUE obj)
Identical to rb_str_export(), except it converts into the locale encoding instead.
static char * RSTRING_END(VALUE str)
Queries the end of the contents pointer of the string.
#define StringValueCStr(v)
Identical to StringValuePtr, except it additionally checks for the contents for viability as a C stri...
#define RUBY_TYPED_DEFAULT_FREE
This is a value you can set to rb_data_type_struct::dfree.
#define TypedData_Get_Struct(obj, type, data_type, sval)
Obtains a C struct from inside of a wrapper Ruby object.
#define TypedData_Make_Struct(klass, type, data_type, sval)
Identical to TypedData_Wrap_Struct, except it allocates a new data region internally instead of takin...
#define RTEST
This is an old name of RB_TEST.
This is the struct that holds necessary info for a struct.
const char * wrap_struct_name
Name of structs of this kind.
intptr_t SIGNED_VALUE
A signed integer type that has the same width with VALUE.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
uintptr_t VALUE
Type that represents a Ruby object.
static bool RB_FLOAT_TYPE_P(VALUE obj)
Queries if the object is an instance of rb_cFloat.
static bool rb_integer_type_p(VALUE obj)
Queries if the object is an instance of rb_cInteger.
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.