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/numeric.h"
40#include "internal/rational.h"
41#include "internal/string.h"
42#include "internal/time.h"
43#include "internal/variable.h"
49# include "timezoneapi.h"
54static ID id_submicro, id_nano_num, id_nano_den, id_offset, id_zone;
55static ID id_nanosecond, id_microsecond, id_millisecond, id_nsec, id_usec;
56static ID id_local_to_utc, id_utc_to_local, id_find_timezone;
57static ID id_year, id_mon, id_mday, id_hour, id_min, id_sec, id_isdst;
58static VALUE str_utc, str_empty;
61static VALUE sym_year, sym_month, sym_day, sym_yday, sym_wday;
62static VALUE sym_hour, sym_min, sym_sec, sym_subsec, sym_dst, sym_zone;
66#define id_divmod idDivmod
68#define UTC_ZONE Qundef
70#define NDIV(x,y) (-(-((x)+1)/(y))-1)
71#define NMOD(x,y) ((y)-(-((x)+1)%(y))-1)
72#define DIV(n,d) ((n)<0 ? NDIV((n),(d)) : (n)/(d))
73#define MOD(n,d) ((n)<0 ? NMOD((n),(d)) : (n)%(d))
74#define VTM_WDAY_INITVAL (7)
75#define VTM_ISDST_INITVAL (3)
90 if ((
long)x < (
long)y)
92 if ((
long)x > (
long)y)
96 if (RB_BIGNUM_TYPE_P(x))
return FIX2INT(rb_big_cmp(x, y));
97 return rb_cmpint(
rb_funcall(x, idCmp, 1, y), x, y);
100#define ne(x,y) (!eq((x),(y)))
101#define lt(x,y) (cmp((x),(y)) < 0)
102#define gt(x,y) (cmp((x),(y)) > 0)
103#define le(x,y) (cmp((x),(y)) <= 0)
104#define ge(x,y) (cmp((x),(y)) >= 0)
112 if (RB_BIGNUM_TYPE_P(x))
return rb_big_plus(x, y);
122 if (RB_BIGNUM_TYPE_P(x))
return rb_big_minus(x, y);
130 return rb_fix_mul_fix(x, y);
132 if (RB_BIGNUM_TYPE_P(x))
133 return rb_big_mul(x, y);
141 return rb_fix_div_fix(x, y);
143 if (RB_BIGNUM_TYPE_P(x))
144 return rb_big_div(x, y);
153 if (
FIXNUM_P(x))
return rb_fix_mod_fix(x, y);
155 if (RB_BIGNUM_TYPE_P(x))
return rb_big_modulo(x, y);
159#define neg(x) (subv(INT2FIX(0), (x)))
175 return rb_numeric_quo(x, y);
181 VALUE ret = quor(x, y);
183 RRATIONAL(ret)->den ==
INT2FIX(1)) {
184 ret = RRATIONAL(ret)->num;
189#define mulquov(x,y,z) (((y) == (z)) ? (x) : quov(mulv((x),(y)),(z)))
198 rb_fix_divmod_fix(n, d, q, r);
203 ary = rb_check_array_type(tmp);
205 rb_raise(
rb_eTypeError,
"unexpected divmod result: into %"PRIsVALUE,
208 *q = rb_ary_entry(ary, 0);
209 *r = rb_ary_entry(ary, 1);
213# define INT64toNUM(x) LONG2NUM(x)
214#elif defined(HAVE_LONG_LONG) && SIZEOF_LONG_LONG == 8
215# define INT64toNUM(x) LL2NUM(x)
218#if defined(HAVE_UINT64_T) && SIZEOF_LONG*2 <= SIZEOF_UINT64_T
219 typedef uint64_t uwideint_t;
220 typedef int64_t wideint_t;
221 typedef uint64_t WIDEVALUE;
222 typedef int64_t SIGNED_WIDEVALUE;
223# define WIDEVALUE_IS_WIDER 1
224# define UWIDEINT_MAX UINT64_MAX
225# define WIDEINT_MAX INT64_MAX
226# define WIDEINT_MIN INT64_MIN
227# define FIXWINT_P(tv) ((tv) & 1)
228# define FIXWVtoINT64(tv) RSHIFT((SIGNED_WIDEVALUE)(tv), 1)
229# define INT64toFIXWV(wi) ((WIDEVALUE)((SIGNED_WIDEVALUE)(wi) << 1 | FIXNUM_FLAG))
230# define FIXWV_MAX (((int64_t)1 << 62) - 1)
231# define FIXWV_MIN (-((int64_t)1 << 62))
232# define FIXWVABLE(wi) (POSFIXWVABLE(wi) && NEGFIXWVABLE(wi))
233# define WINT2FIXWV(i) WIDEVAL_WRAP(INT64toFIXWV(i))
234# define FIXWV2WINT(w) FIXWVtoINT64(WIDEVAL_GET(w))
236 typedef unsigned long uwideint_t;
237 typedef long wideint_t;
238 typedef VALUE WIDEVALUE;
240# define WIDEVALUE_IS_WIDER 0
241# define UWIDEINT_MAX ULONG_MAX
242# define WIDEINT_MAX LONG_MAX
243# define WIDEINT_MIN LONG_MIN
244# define FIXWINT_P(v) FIXNUM_P(v)
245# define FIXWV_MAX FIXNUM_MAX
246# define FIXWV_MIN FIXNUM_MIN
247# define FIXWVABLE(i) FIXABLE(i)
248# define WINT2FIXWV(i) WIDEVAL_WRAP(LONG2FIX(i))
249# define FIXWV2WINT(w) FIX2LONG(WIDEVAL_GET(w))
252#define POSFIXWVABLE(wi) ((wi) < FIXWV_MAX+1)
253#define NEGFIXWVABLE(wi) ((wi) >= FIXWV_MIN)
254#define FIXWV_P(w) FIXWINT_P(WIDEVAL_GET(w))
255#define MUL_OVERFLOW_FIXWV_P(a, b) MUL_OVERFLOW_SIGNED_INTEGER_P(a, b, FIXWV_MIN, FIXWV_MAX)
263 static inline wideval_t WIDEVAL_WRAP(WIDEVALUE v) { wideval_t w = { v };
return w; }
264# define WIDEVAL_GET(w) ((w).value)
266 typedef WIDEVALUE wideval_t;
267# define WIDEVAL_WRAP(v) (v)
268# define WIDEVAL_GET(w) (w)
271#if WIDEVALUE_IS_WIDER
272 static inline wideval_t
273 wint2wv(wideint_t wi)
276 return WINT2FIXWV(wi);
278 return WIDEVAL_WRAP(INT64toNUM(wi));
280# define WINT2WV(wi) wint2wv(wi)
282# define WINT2WV(wi) WIDEVAL_WRAP(LONG2NUM(wi))
288#if WIDEVALUE_IS_WIDER
290 return INT64toNUM(FIXWV2WINT(w));
291 return (
VALUE)WIDEVAL_GET(w);
293 return WIDEVAL_GET(w);
297#if WIDEVALUE_IS_WIDER
303 sign = rb_integer_pack(v, &u, 1,
sizeof(u), 0,
306 return WINT2FIXWV(0);
307 else if (sign == -1) {
309 return WINT2FIXWV(-(wideint_t)u);
311 else if (sign == +1) {
313 return WINT2FIXWV((wideint_t)u);
315 return WIDEVAL_WRAP(v);
319static inline wideval_t
323 if (RRATIONAL(v)->den !=
LONG2FIX(1))
324 return WIDEVAL_WRAP(v);
325 v = RRATIONAL(v)->num;
327#if WIDEVALUE_IS_WIDER
329 return WIDEVAL_WRAP((WIDEVALUE)(SIGNED_WIDEVALUE)(
long)v);
331 else if (RB_BIGNUM_TYPE_P(v) &&
332 rb_absint_size(v, NULL) <=
sizeof(WIDEVALUE)) {
333 return v2w_bignum(v);
336 return WIDEVAL_WRAP(v);
339#define NUM2WV(v) v2w(rb_Integer(v))
342weq(wideval_t wx, wideval_t wy)
344#if WIDEVALUE_IS_WIDER
345 if (FIXWV_P(wx) && FIXWV_P(wy)) {
346 return WIDEVAL_GET(wx) == WIDEVAL_GET(wy);
350 return eq(WIDEVAL_GET(wx), WIDEVAL_GET(wy));
355wcmp(wideval_t wx, wideval_t wy)
358#if WIDEVALUE_IS_WIDER
359 if (FIXWV_P(wx) && FIXWV_P(wy)) {
375#define wne(x,y) (!weq((x),(y)))
376#define wlt(x,y) (wcmp((x),(y)) < 0)
377#define wgt(x,y) (wcmp((x),(y)) > 0)
378#define wle(x,y) (wcmp((x),(y)) <= 0)
379#define wge(x,y) (wcmp((x),(y)) >= 0)
382wadd(wideval_t wx, wideval_t wy)
384#if WIDEVALUE_IS_WIDER
385 if (FIXWV_P(wx) && FIXWV_P(wy)) {
386 wideint_t r = FIXWV2WINT(wx) + FIXWV2WINT(wy);
390 return v2w(addv(w2v(wx), w2v(wy)));
394wsub(wideval_t wx, wideval_t wy)
396#if WIDEVALUE_IS_WIDER
397 if (FIXWV_P(wx) && FIXWV_P(wy)) {
398 wideint_t r = FIXWV2WINT(wx) - FIXWV2WINT(wy);
402 return v2w(subv(w2v(wx), w2v(wy)));
406wmul(wideval_t wx, wideval_t wy)
408#if WIDEVALUE_IS_WIDER
409 if (FIXWV_P(wx) && FIXWV_P(wy)) {
410 if (!MUL_OVERFLOW_FIXWV_P(FIXWV2WINT(wx), FIXWV2WINT(wy)))
411 return WINT2WV(FIXWV2WINT(wx) * FIXWV2WINT(wy));
414 return v2w(mulv(w2v(wx), w2v(wy)));
418wquo(wideval_t wx, wideval_t wy)
420#if WIDEVALUE_IS_WIDER
421 if (FIXWV_P(wx) && FIXWV_P(wy)) {
432 return v2w(quov(w2v(wx), w2v(wy)));
435#define wmulquo(x,y,z) ((WIDEVAL_GET(y) == WIDEVAL_GET(z)) ? (x) : wquo(wmul((x),(y)),(z)))
436#define wmulquoll(x,y,z) (((y) == (z)) ? (x) : wquo(wmul((x),WINT2WV(y)),WINT2WV(z)))
438#if WIDEVALUE_IS_WIDER
440wdivmod0(wideval_t wn, wideval_t wd, wideval_t *wq, wideval_t *wr)
442 if (FIXWV_P(wn) && FIXWV_P(wd)) {
443 wideint_t n, d, q, r;
452 wideint_t xneg = -FIXWV2WINT(wn);
465 if (d > 0 ? r < 0 : r > 0) {
478wdivmod(wideval_t wn, wideval_t wd, wideval_t *wq, wideval_t *wr)
481#if WIDEVALUE_IS_WIDER
482 if (wdivmod0(wn, wd, wq, wr))
return;
484 divmodv(w2v(wn), w2v(wd), &vq, &vr);
490wmuldivmod(wideval_t wx, wideval_t wy, wideval_t wz, wideval_t *wq, wideval_t *wr)
492 if (WIDEVAL_GET(wy) == WIDEVAL_GET(wz)) {
497 wdivmod(wmul(wx,wy), wz, wq, wr);
501wdiv(wideval_t wx, wideval_t wy)
503#if WIDEVALUE_IS_WIDER
505 if (wdivmod0(wx, wy, &q, &dmy))
return q;
507 return v2w(divv(w2v(wx), w2v(wy)));
511wmod(wideval_t wx, wideval_t wy)
513#if WIDEVALUE_IS_WIDER
515 if (wdivmod0(wx, wy, &dmy, &r))
return r;
517 return v2w(modv(w2v(wx), w2v(wy)));
521num_exact_check(
VALUE v)
532 tmp = rb_rational_canonicalize(v);
546 tmp = rb_rational_canonicalize(tmp);
562NORETURN(
static void num_exact_fail(
VALUE v));
564num_exact_fail(
VALUE v)
566 rb_raise(
rb_eTypeError,
"can't convert %"PRIsVALUE
" into an exact number",
573 VALUE num = num_exact_check(v);
574 if (
NIL_P(num)) num_exact_fail(v);
581static const int TIME_SCALE_NUMDIGITS =
rb_strlen_lit(STRINGIZE(TIME_SCALE)) - 1;
584rb_time_magnify(wideval_t w)
586 return wmul(w, WINT2FIXWV(TIME_SCALE));
590rb_time_unmagnify_to_rational(wideval_t w)
592 return quor(w2v(w),
INT2FIX(TIME_SCALE));
596rb_time_unmagnify(wideval_t w)
598 return v2w(rb_time_unmagnify_to_rational(w));
602rb_time_unmagnify_to_float(wideval_t w)
605#if WIDEVALUE_IS_WIDER
614 v =
DBL2NUM((
double)FIXWV2WINT(w));
615 return quov(v,
DBL2NUM(TIME_SCALE));
622 return quov(v,
DBL2NUM(TIME_SCALE));
626split_second(wideval_t timew, wideval_t *timew_p,
VALUE *subsecx_p)
629 wdivmod(timew, WINT2FIXWV(TIME_SCALE), &q, &r);
637#if WIDEVALUE_IS_WIDER
638 if (TIMET_MIN == 0) {
639 uwideint_t wi = (uwideint_t)t;
640 if (wi <= FIXWV_MAX) {
641 return WINT2FIXWV(wi);
645 wideint_t wi = (wideint_t)t;
646 if (FIXWV_MIN <= wi && wi <= FIXWV_MAX) {
647 return WINT2FIXWV(wi);
651 return v2w(TIMET2NUM(t));
653#define TIMET2WV(t) timet2wv(t)
658#if WIDEVALUE_IS_WIDER
660 wideint_t wi = FIXWV2WINT(w);
661 if (TIMET_MIN == 0) {
663 rb_raise(
rb_eRangeError,
"negative value to convert into 'time_t'");
664 if (TIMET_MAX < (uwideint_t)wi)
668 if (wi < TIMET_MIN || TIMET_MAX < wi)
674 return NUM2TIMET(w2v(w));
676#define WV2TIMET(t) wv2timet(t)
679static VALUE rb_cTimeTM;
681static int obj2int(
VALUE obj);
682static uint32_t obj2ubits(
VALUE obj,
unsigned int bits);
684static uint32_t month_arg(
VALUE arg);
685static VALUE validate_utc_offset(
VALUE utc_offset);
686static VALUE validate_zone_name(
VALUE zone_name);
687static void validate_vtm(
struct vtm *
vtm);
688static void vtm_add_day(
struct vtm *
vtm,
int day);
689static uint32_t obj2subsecx(
VALUE obj,
VALUE *subsecx);
696static time_t timegm_noleapsecond(
struct tm *tm);
697static int tmcmp(
struct tm *a,
struct tm *b);
698static int vtmcmp(
struct vtm *a,
struct vtm *b);
699static const char *find_time_t(
struct tm *tptr,
int utc_p, time_t *tp);
701static struct vtm *localtimew(wideval_t timew,
struct vtm *result);
703static int leap_year_p(
long y);
704#define leap_year_v_p(y) leap_year_p(NUM2LONG(modv((y), INT2FIX(400))))
708bool ruby_tz_uptodate_p;
711enum {tzkey_max = numberof(((DYNAMIC_TIME_ZONE_INFORMATION *)NULL)->TimeZoneKeyName)};
714 char name[tzkey_max * 4 + 1];
720 if (w32_tz.use_tzkey) {
721 if (w32_tz.name[0]) {
731 DYNAMIC_TIME_ZONE_INFORMATION tzi;
732 WCHAR *
const wtzkey = tzi.TimeZoneKeyName;
733 DWORD tzret = GetDynamicTimeZoneInformation(&tzi);
734 if (tzret != TIME_ZONE_ID_INVALID && *wtzkey) {
735 int wlen = (int)wcsnlen(wtzkey, tzkey_max);
736 int clen = WideCharToMultiByte(CP_UTF8, 0, wtzkey, wlen,
737 w32_tz.name,
sizeof(w32_tz.name) - 1,
739 w32_tz.name[clen] =
'\0';
744 return _tzname[_daylight && dst];
749ruby_reset_timezone(
const char *val)
751 ruby_tz_uptodate_p =
false;
753 w32_tz.use_tzkey = !val || !*val;
755 ruby_reset_leap_second_info();
761 if (ruby_tz_uptodate_p)
return;
762 ruby_tz_uptodate_p =
true;
767rb_localtime_r(
const time_t *t,
struct tm *result)
769#if defined __APPLE__ && defined __LP64__
770 if (*t != (time_t)(
int)*t)
return NULL;
774 result = localtime_r(t, result);
777 struct tm *tmp = localtime(t);
778 if (tmp) *result = *tmp;
781#if defined(HAVE_MKTIME) && defined(LOCALTIME_OVERFLOW_PROBLEM)
785 struct tm tmp = *result;
788# if defined(HAVE_STRUCT_TM_TM_GMTOFF)
789 gmtoff1 = result->tm_gmtoff;
790 gmtoff2 = tmp.tm_gmtoff;
792 if (*t + gmtoff1 != t2 + gmtoff2)
798#define LOCALTIME(tm, result) rb_localtime_r((tm), &(result))
800#ifndef HAVE_STRUCT_TM_TM_GMTOFF
802rb_gmtime_r(
const time_t *t,
struct tm *result)
805 result = gmtime_r(t, result);
807 struct tm *tmp = gmtime(t);
808 if (tmp) *result = *tmp;
810#if defined(HAVE_TIMEGM) && defined(LOCALTIME_OVERFLOW_PROBLEM)
811 if (result && *t != timegm(result)) {
817# define GMTIME(tm, result) rb_gmtime_r((tm), &(result))
820static const int16_t common_year_yday_offset[] = {
825 -1 + 31 + 28 + 31 + 30,
826 -1 + 31 + 28 + 31 + 30 + 31,
827 -1 + 31 + 28 + 31 + 30 + 31 + 30,
828 -1 + 31 + 28 + 31 + 30 + 31 + 30 + 31,
829 -1 + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31,
830 -1 + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30,
831 -1 + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31,
832 -1 + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30
835static const int16_t leap_year_yday_offset[] = {
840 -1 + 31 + 29 + 31 + 30,
841 -1 + 31 + 29 + 31 + 30 + 31,
842 -1 + 31 + 29 + 31 + 30 + 31 + 30,
843 -1 + 31 + 29 + 31 + 30 + 31 + 30 + 31,
844 -1 + 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31,
845 -1 + 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30,
846 -1 + 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31,
847 -1 + 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30
851static const int8_t common_year_days_in_month[] = {
852 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
854static const int8_t leap_year_days_in_month[] = {
855 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
858#define days_in_month_of(leap) ((leap) ? leap_year_days_in_month : common_year_days_in_month)
859#define days_in_month_in(y) days_in_month_of(leap_year_p(y))
860#define days_in_month_in_v(y) days_in_month_of(leap_year_v_p(y))
863 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
864 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
865 (m),(m),(m),(m),(m),(m),(m),(m)
867 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
868 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
869 (m),(m),(m),(m),(m),(m),(m),(m),(m)
871 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
872 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
873 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m)
875 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
876 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
877 (m),(m),(m),(m),(m),(m),(m),(m),(m),(m), (m)
879static const uint8_t common_year_mon_of_yday[] = {
880 M31(1), M28(2), M31(3), M30(4), M31(5), M30(6),
881 M31(7), M31(8), M30(9), M31(10), M30(11), M31(12)
883static const uint8_t leap_year_mon_of_yday[] = {
884 M31(1), M29(2), M31(3), M30(4), M31(5), M30(6),
885 M31(7), M31(8), M30(9), M31(10), M30(11), M31(12)
895 10,11,12,13,14,15,16,17,18,19, \
896 20,21,22,23,24,25,26,27,28
899 10,11,12,13,14,15,16,17,18,19, \
900 20,21,22,23,24,25,26,27,28,29
903 10,11,12,13,14,15,16,17,18,19, \
904 20,21,22,23,24,25,26,27,28,29,30
907 10,11,12,13,14,15,16,17,18,19, \
908 20,21,22,23,24,25,26,27,28,29,30,31
910static const uint8_t common_year_mday_of_yday[] = {
912 D31, D28, D31, D30, D31, D30, D31, D31, D30, D31, D30, D31
914static const uint8_t leap_year_mday_of_yday[] = {
915 D31, D29, D31, D30, D31, D30, D31, D31, D30, D31, D30, D31
924calc_tm_yday(
long tm_year,
int tm_mon,
int tm_mday)
926 int tm_year_mod400 = (int)MOD(tm_year, 400);
927 int tm_yday = tm_mday;
929 if (leap_year_p(tm_year_mod400 + 1900))
930 tm_yday += leap_year_yday_offset[tm_mon];
932 tm_yday += common_year_yday_offset[tm_mon];
938timegmw_noleapsecond(
struct vtm *
vtm)
950 divmodv(year1900,
INT2FIX(400), &q400, &r400);
953 yday = calc_tm_yday(year_mod400,
vtm->mon-1,
vtm->mday);
966 + DIV(year_mod400 - 69, 4)
967 - DIV(year_mod400 - 1, 100)
968 + (year_mod400 + 299) / 400;
970 vdays = addv(vdays, mulv(q400,
INT2FIX(97)));
971 vdays = addv(vdays, mulv(year1900,
INT2FIX(365)));
972 wret = wadd(rb_time_magnify(v2w(ret)), wmul(rb_time_magnify(v2w(vdays)), WINT2FIXWV(86400)));
973 wret = wadd(wret, v2w(
vtm->subsecx));
979zone_str(
const char *zone)
987 return rb_fstring_lit(
"(NO-TIMEZONE-ABBREVIATION)");
990 for (p = zone; *p; p++) {
1007 str = rb_enc_str_new(zone,
len, rb_locale_encoding());
1010 return rb_fstring(str);
1014gmtimew_noleapsecond(wideval_t timew,
struct vtm *
vtm)
1020 wideval_t timew2, w, w2;
1025 split_second(timew, &timew2, &subsecx);
1026 vtm->subsecx = subsecx;
1028 wdivmod(timew2, WINT2FIXWV(86400), &w2, &w);
1033 vtm->wday = (wday + 4) % 7;
1036 vtm->sec = n % 60; n = n / 60;
1037 vtm->min = n % 60; n = n / 60;
1041 divmodv(timev,
INT2FIX(400*365 + 97), &timev, &v);
1054 if (30*365+7+31+29-1 <= n) {
1068 x = n / (365*100 + 24);
1069 n = n % (365*100 + 24);
1071 if (30*365+7+31+29-1 <= n) {
1081 x = n / (365*4 + 1);
1082 n = n % (365*4 + 1);
1084 if (365*2+31+29-1 <= n) {
1085 if (n < 365*2+366) {
1102 if (leap_year_p(y)) {
1103 vtm->mon = leap_year_mon_of_yday[n];
1104 vtm->mday = leap_year_mday_of_yday[n];
1107 vtm->mon = common_year_mon_of_yday[n];
1108 vtm->mday = common_year_mday_of_yday[n];
1112 vtm->zone = str_utc;
1116gmtime_with_leapsecond(
const time_t *timep,
struct tm *result)
1118#if defined(HAVE_STRUCT_TM_TM_GMTOFF)
1122 int gmtoff_sec, gmtoff_min, gmtoff_hour, gmtoff_day;
1124 t = LOCALTIME(timep, *result);
1129 if (t->tm_gmtoff < 0) {
1131 gmtoff = -t->tm_gmtoff;
1135 gmtoff = t->tm_gmtoff;
1137 gmtoff_sec = (int)(gmtoff % 60);
1138 gmtoff = gmtoff / 60;
1139 gmtoff_min = (int)(gmtoff % 60);
1140 gmtoff = gmtoff / 60;
1141 gmtoff_hour = (int)gmtoff;
1145 gmtoff_hour *= sign;
1152 result->tm_sec += gmtoff_sec;
1153 if (result->tm_sec < 0) {
1154 result->tm_sec += 60;
1157 if (60 <= result->tm_sec) {
1158 result->tm_sec -= 60;
1163 result->tm_min += gmtoff_min;
1164 if (result->tm_min < 0) {
1165 result->tm_min += 60;
1168 if (60 <= result->tm_min) {
1169 result->tm_min -= 60;
1174 result->tm_hour += gmtoff_hour;
1175 if (result->tm_hour < 0) {
1176 result->tm_hour += 24;
1179 if (24 <= result->tm_hour) {
1180 result->tm_hour -= 24;
1186 if (gmtoff_day < 0) {
1187 if (result->tm_yday == 0) {
1188 result->tm_mday = 31;
1189 result->tm_mon = 11;
1191 result->tm_yday = leap_year_p(result->tm_year + 1900) ? 365 : 364;
1193 else if (result->tm_mday == 1) {
1194 const int8_t *days_in_month = days_in_month_in(result->tm_year + 1900);
1196 result->tm_mday = days_in_month[result->tm_mon];
1203 result->tm_wday = (result->tm_wday + 6) % 7;
1206 int leap = leap_year_p(result->tm_year + 1900);
1207 if (result->tm_yday == (leap ? 365 : 364)) {
1210 result->tm_mday = 1;
1211 result->tm_yday = 0;
1213 else if (result->tm_mday == days_in_month_of(leap)[result->tm_mon]) {
1215 result->tm_mday = 1;
1222 result->tm_wday = (result->tm_wday + 1) % 7;
1225 result->tm_isdst = 0;
1226 result->tm_gmtoff = 0;
1227#if defined(HAVE_TM_ZONE)
1228 result->tm_zone = (
char *)
"UTC";
1232 return GMTIME(timep, *result);
1236static long this_year = 0;
1237static time_t known_leap_seconds_limit;
1238static int number_of_leap_seconds_known;
1241init_leap_second_info(
void)
1248 if (this_year == 0) {
1250 struct tm *tm, result;
1255 gmtime_r(&now, &result);
1259 tm = gmtime_with_leapsecond(&now, &result);
1261 this_year = tm->tm_year;
1263 if (TIMET_MAX - now < (time_t)(366*86400))
1264 known_leap_seconds_limit = TIMET_MAX;
1266 known_leap_seconds_limit = now + (time_t)(366*86400);
1268 if (!gmtime_with_leapsecond(&known_leap_seconds_limit, &result))
1272 vtm.mon = result.tm_mon + 1;
1273 vtm.mday = result.tm_mday;
1274 vtm.hour = result.tm_hour;
1275 vtm.min = result.tm_min;
1276 vtm.sec = result.tm_sec;
1280 timew = timegmw_noleapsecond(&
vtm);
1282 number_of_leap_seconds_known =
NUM2INT(w2v(wsub(TIMET2WV(known_leap_seconds_limit), rb_time_unmagnify(timew))));
1288ruby_reset_leap_second_info(
void)
1304 return timegmw_noleapsecond(
vtm);
1306 init_leap_second_info();
1308 timew = timegmw_noleapsecond(
vtm);
1311 if (number_of_leap_seconds_known == 0) {
1317 else if (wlt(rb_time_magnify(TIMET2WV(known_leap_seconds_limit)), timew)) {
1318 return wadd(timew, rb_time_magnify(WINT2WV(number_of_leap_seconds_known)));
1322 tm.tm_mon =
vtm->mon - 1;
1323 tm.tm_mday =
vtm->mday;
1324 tm.tm_hour =
vtm->hour;
1325 tm.tm_min =
vtm->min;
1326 tm.tm_sec =
vtm->sec;
1329 errmsg = find_time_t(&tm, 1, &t);
1331 rb_raise(rb_eArgError,
"%s", errmsg);
1332 return wadd(rb_time_magnify(TIMET2WV(t)), v2w(
vtm->subsecx));
1336gmtimew(wideval_t timew,
struct vtm *result)
1343 if (wlt(timew, WINT2FIXWV(0))) {
1344 gmtimew_noleapsecond(timew, result);
1348 init_leap_second_info();
1350 if (number_of_leap_seconds_known == 0) {
1354 gmtimew_noleapsecond(timew, result);
1357 else if (wlt(rb_time_magnify(TIMET2WV(known_leap_seconds_limit)), timew)) {
1358 timew = wsub(timew, rb_time_magnify(WINT2WV(number_of_leap_seconds_known)));
1359 gmtimew_noleapsecond(timew, result);
1363 split_second(timew, &timew2, &subsecx);
1365 t = WV2TIMET(timew2);
1366 if (!gmtime_with_leapsecond(&t, &tm))
1369 result->year =
LONG2NUM((
long)tm.tm_year + 1900);
1370 result->mon = tm.tm_mon + 1;
1371 result->mday = tm.tm_mday;
1372 result->hour = tm.tm_hour;
1373 result->min = tm.tm_min;
1374 result->sec = tm.tm_sec;
1375 result->subsecx = subsecx;
1376 result->utc_offset =
INT2FIX(0);
1377 result->wday = tm.tm_wday;
1378 result->yday = tm.tm_yday+1;
1379 result->isdst = tm.tm_isdst;
1384#define GMTIMEW(w, v) \
1385 (gmtimew(w, v) ? (void)0 : rb_raise(rb_eArgError, "gmtime error"))
1387static struct tm *localtime_with_gmtoff_zone(
const time_t *t,
struct tm *result,
long *gmtoff,
VALUE *zone);
1422static const int compat_common_month_table[12][7] = {
1424 { 2034, 2035, 2036, 2031, 2032, 2027, 2033 },
1425 { 2026, 2027, 2033, 2034, 2035, 2030, 2031 },
1426 { 2026, 2032, 2033, 2034, 2035, 2030, 2036 },
1427 { 2035, 2030, 2036, 2026, 2032, 2033, 2034 },
1428 { 2033, 2034, 2035, 2030, 2036, 2026, 2032 },
1429 { 2036, 2026, 2032, 2033, 2034, 2035, 2030 },
1430 { 2035, 2030, 2036, 2026, 2032, 2033, 2034 },
1431 { 2032, 2033, 2034, 2035, 2030, 2036, 2026 },
1432 { 2030, 2036, 2026, 2032, 2033, 2034, 2035 },
1433 { 2034, 2035, 2030, 2036, 2026, 2032, 2033 },
1434 { 2026, 2032, 2033, 2034, 2035, 2030, 2036 },
1435 { 2030, 2036, 2026, 2032, 2033, 2034, 2035 },
1463static const int compat_leap_month_table[7] = {
1465 2032, 2016, 2028, 2012, 2024, 2036, 2020,
1469calc_wday(
int year_mod400,
int month,
int day)
1474 a = (14 - month) / 12;
1475 y = year_mod400 + 4800 - a;
1476 m = month + 12 * a - 3;
1477 wday = day + (153*m+2)/5 + 365*y + y/4 - y/100 + y/400 + 2;
1483guess_local_offset(
struct vtm *vtm_utc,
int *isdst_ret,
VALUE *zone_ret)
1491 int year_mod400, wday;
1495 if (lt(vtm_utc->year,
INT2FIX(1916))) {
1500# if defined(NEGATIVE_TIME_T)
1501# if SIZEOF_TIME_T <= 4
1503# define THE_TIME_OLD_ENOUGH ((time_t)0x80000000)
1507# define THE_TIME_OLD_ENOUGH ((time_t)(1600-1970)*366*24*60*60)
1509 if (localtime_with_gmtoff_zone((t = THE_TIME_OLD_ENOUGH, &t), &tm, &gmtoff, &zone)) {
1511 isdst = tm.tm_isdst;
1516 if (localtime_with_gmtoff_zone((t = 0, &t), &tm, &gmtoff, &zone)) {
1518 isdst = tm.tm_isdst;
1534 wday = calc_wday(year_mod400, vtm_utc->mon, 1);
1535 if (vtm_utc->mon == 2 && leap_year_p(year_mod400))
1536 vtm2.year =
INT2FIX(compat_leap_month_table[wday]);
1538 vtm2.year =
INT2FIX(compat_common_month_table[vtm_utc->mon-1][wday]);
1540 timev = w2v(rb_time_unmagnify(timegmw(&vtm2)));
1541 t = NUM2TIMET(timev);
1543 if (localtime_with_gmtoff_zone(&t, &tm, &gmtoff, &zone)) {
1545 *isdst_ret = tm.tm_isdst;
1553 static time_t now = 0;
1554 static long now_gmtoff = 0;
1555 static int now_isdst = 0;
1556 static VALUE now_zone;
1560 localtime_with_gmtoff_zone(&now, &tm, &now_gmtoff, &zone);
1561 now_isdst = tm.tm_isdst;
1562 zone = rb_fstring(zone);
1563 rb_vm_register_global_object(zone);
1567 *isdst_ret = now_isdst;
1569 *zone_ret = now_zone;
1575small_vtm_sub(
struct vtm *vtm1,
struct vtm *vtm2)
1579 off = vtm1->sec - vtm2->sec;
1580 off += (vtm1->min - vtm2->min) * 60;
1581 off += (vtm1->hour - vtm2->hour) * 3600;
1582 if (ne(vtm1->year, vtm2->year))
1583 off += lt(vtm1->year, vtm2->year) ? -24*3600 : 24*3600;
1584 else if (vtm1->mon != vtm2->mon)
1585 off += vtm1->mon < vtm2->mon ? -24*3600 : 24*3600;
1586 else if (vtm1->mday != vtm2->mday)
1587 off += vtm1->mday < vtm2->mday ? -24*3600 : 24*3600;
1593timelocalw(
struct vtm *
vtm)
1598 wideval_t timew1, timew2;
1599 struct vtm vtm1, vtm2;
1604 if (l < INT_MIN || INT_MAX < l)
1606 tm.tm_year = (int)l;
1615 tm.tm_mon =
vtm->mon-1;
1616 tm.tm_mday =
vtm->mday;
1617 tm.tm_hour =
vtm->hour;
1618 tm.tm_min =
vtm->min;
1619 tm.tm_sec =
vtm->sec;
1620 tm.tm_isdst =
vtm->isdst == VTM_ISDST_INITVAL ? -1 :
vtm->isdst;
1622 if (find_time_t(&tm, 0, &t))
1624 return wadd(rb_time_magnify(TIMET2WV(t)), v2w(
vtm->subsecx));
1627 timew1 = timegmw(
vtm);
1629 if (!localtimew(timew1, &vtm1))
1630 rb_raise(rb_eArgError,
"localtimew error");
1632 n = vtmcmp(
vtm, &vtm1);
1634 timew1 = wsub(timew1, rb_time_magnify(WINT2FIXWV(12*3600)));
1635 if (!localtimew(timew1, &vtm1))
1636 rb_raise(rb_eArgError,
"localtimew error");
1643 timew1 = wsub(timew1, rb_time_magnify(WINT2FIXWV(24*3600)));
1644 if (!localtimew(timew1, &vtm1))
1645 rb_raise(rb_eArgError,
"localtimew error");
1648 timew2 = wadd(timew1, rb_time_magnify(WINT2FIXWV(24*3600)));
1649 if (!localtimew(timew2, &vtm2))
1650 rb_raise(rb_eArgError,
"localtimew error");
1652 timew1 = wadd(timew1, rb_time_magnify(v2w(small_vtm_sub(
vtm, &vtm1))));
1653 timew2 = wadd(timew2, rb_time_magnify(v2w(small_vtm_sub(
vtm, &vtm2))));
1655 if (weq(timew1, timew2))
1658 if (!localtimew(timew1, &vtm1))
1659 rb_raise(rb_eArgError,
"localtimew error");
1660 if (
vtm->hour != vtm1.hour ||
vtm->min != vtm1.min ||
vtm->sec != vtm1.sec)
1663 if (!localtimew(timew2, &vtm2))
1664 rb_raise(rb_eArgError,
"localtimew error");
1665 if (
vtm->hour != vtm2.hour ||
vtm->min != vtm2.min ||
vtm->sec != vtm2.sec)
1669 return lt(vtm1.utc_offset, vtm2.utc_offset) ? timew2 : timew1;
1671 return lt(vtm1.utc_offset, vtm2.utc_offset) ? timew1 : timew2;
1675localtime_with_gmtoff_zone(
const time_t *t,
struct tm *result,
long *gmtoff,
VALUE *zone)
1679 if (LOCALTIME(t, tm)) {
1680#if defined(HAVE_STRUCT_TM_TM_GMTOFF)
1681 *gmtoff = tm.tm_gmtoff;
1687 u = GMTIME(t, tmbuf);
1690 if (l->tm_year != u->tm_year)
1691 off = l->tm_year < u->tm_year ? -1 : 1;
1692 else if (l->tm_mon != u->tm_mon)
1693 off = l->tm_mon < u->tm_mon ? -1 : 1;
1694 else if (l->tm_mday != u->tm_mday)
1695 off = l->tm_mday < u->tm_mday ? -1 : 1;
1698 off =
off * 24 + l->tm_hour - u->tm_hour;
1699 off =
off * 60 + l->tm_min - u->tm_min;
1700 off =
off * 60 + l->tm_sec - u->tm_sec;
1705#if defined(HAVE_TM_ZONE)
1706 *zone = zone_str(tm.tm_zone);
1707#elif defined(_WIN32)
1708 *zone = zone_str(get_tzname(tm.tm_isdst));
1709#elif defined(HAVE_TZNAME) && defined(HAVE_DAYLIGHT)
1711 *zone = zone_str(tzname[daylight && tm.tm_isdst]);
1715 strftime(buf,
sizeof(buf),
"%Z", &tm);
1716 *zone = zone_str(buf);
1728timew_out_of_timet_range(wideval_t timew)
1731#if WIDEVALUE_IS_WIDER && SIZEOF_TIME_T < SIZEOF_INT64_T
1732 if (FIXWV_P(timew)) {
1733 wideint_t t = FIXWV2WINT(timew);
1734 if (t < TIME_SCALE * (wideint_t)TIMET_MIN ||
1735 TIME_SCALE * (1 + (wideint_t)TIMET_MAX) <= t)
1740#if SIZEOF_TIME_T == SIZEOF_INT64_T
1741 if (FIXWV_P(timew)) {
1742 wideint_t t = FIXWV2WINT(timew);
1743 if (~(time_t)0 <= 0) {
1753 timexv = w2v(timew);
1754 if (lt(timexv, mulv(
INT2FIX(TIME_SCALE), TIMET2NUM(TIMET_MIN))) ||
1755 le(mulv(
INT2FIX(TIME_SCALE), addv(TIMET2NUM(TIMET_MAX),
INT2FIX(1))), timexv))
1761localtimew(wideval_t timew,
struct vtm *result)
1763 VALUE subsecx, offset;
1767 if (!timew_out_of_timet_range(timew)) {
1773 split_second(timew, &timew2, &subsecx);
1775 t = WV2TIMET(timew2);
1777 if (localtime_with_gmtoff_zone(&t, &tm, &gmtoff, &zone)) {
1778 result->year =
LONG2NUM((
long)tm.tm_year + 1900);
1779 result->mon = tm.tm_mon + 1;
1780 result->mday = tm.tm_mday;
1781 result->hour = tm.tm_hour;
1782 result->min = tm.tm_min;
1783 result->sec = tm.tm_sec;
1784 result->subsecx = subsecx;
1785 result->wday = tm.tm_wday;
1786 result->yday = tm.tm_yday+1;
1787 result->isdst = tm.tm_isdst;
1788 result->utc_offset =
LONG2NUM(gmtoff);
1789 result->zone = zone;
1794 if (!gmtimew(timew, result))
1797 offset = guess_local_offset(result, &isdst, &zone);
1799 if (!gmtimew(wadd(timew, rb_time_magnify(v2w(offset))), result))
1802 result->utc_offset = offset;
1803 result->isdst = isdst;
1804 result->zone = zone;
1809#define TIME_TZMODE_LOCALTIME 0
1810#define TIME_TZMODE_UTC 1
1811#define TIME_TZMODE_FIXOFF 2
1812#define TIME_TZMODE_UNINITIALIZED 3
1819#define GetTimeval(obj, tobj) ((tobj) = get_timeval(obj))
1820#define GetNewTimeval(obj, tobj) ((tobj) = get_new_timeval(obj))
1822#define IsTimeval(obj) rb_typeddata_is_kind_of((obj), &time_data_type)
1823#define TIME_INIT_P(tobj) ((tobj)->vtm.tzmode != TIME_TZMODE_UNINITIALIZED)
1825#define TZMODE_UTC_P(tobj) ((tobj)->vtm.tzmode == TIME_TZMODE_UTC)
1826#define TZMODE_SET_UTC(tobj) ((tobj)->vtm.tzmode = TIME_TZMODE_UTC)
1828#define TZMODE_LOCALTIME_P(tobj) ((tobj)->vtm.tzmode == TIME_TZMODE_LOCALTIME)
1829#define TZMODE_SET_LOCALTIME(tobj) ((tobj)->vtm.tzmode = TIME_TZMODE_LOCALTIME)
1831#define TZMODE_FIXOFF_P(tobj) ((tobj)->vtm.tzmode == TIME_TZMODE_FIXOFF)
1832#define TZMODE_SET_FIXOFF(time, tobj, off) do { \
1833 (tobj)->vtm.tzmode = TIME_TZMODE_FIXOFF; \
1834 RB_OBJ_WRITE_UNALIGNED(time, &(tobj)->vtm.utc_offset, off); \
1837#define TZMODE_COPY(tobj1, tobj2) \
1838 ((tobj1)->vtm.tzmode = (tobj2)->vtm.tzmode, \
1839 (tobj1)->vtm.utc_offset = (tobj2)->vtm.utc_offset, \
1840 (tobj1)->vtm.zone = (tobj2)->vtm.zone)
1842static int zone_localtime(
VALUE zone,
VALUE time);
1844#define MAKE_TM(time, tobj) \
1846 if ((tobj)->vtm.tm_got == 0) { \
1847 time_get_tm((time), (tobj)); \
1850#define MAKE_TM_ENSURE(time, tobj, cond) \
1852 MAKE_TM(time, tobj); \
1854 force_make_tm(time, tobj); \
1861 tobj->timew = timew;
1862 if (!FIXWV_P(timew)) {
1881 VALUE zone = tobj->vtm.zone;
1882 if (!
NIL_P(zone) && zone != str_empty && zone != str_utc) {
1883 if (zone_localtime(zone, time))
return;
1885 tobj->vtm.tm_got = 0;
1886 time_get_tm(time, tobj);
1893 if (!FIXWV_P(tobj->timew)) {
1894 rb_gc_mark_movable(WIDEVAL_GET(tobj->timew));
1896 rb_gc_mark_movable(tobj->vtm.year);
1897 rb_gc_mark_movable(tobj->vtm.subsecx);
1898 rb_gc_mark_movable(tobj->vtm.utc_offset);
1899 rb_gc_mark_movable(tobj->vtm.zone);
1903time_compact(
void *ptr)
1906 if (!FIXWV_P(tobj->timew)) {
1907 WIDEVAL_GET(tobj->timew) = rb_gc_location(WIDEVAL_GET(tobj->timew));
1910 tobj->vtm.year = rb_gc_location(tobj->vtm.year);
1911 tobj->vtm.subsecx = rb_gc_location(tobj->vtm.subsecx);
1912 tobj->vtm.utc_offset = rb_gc_location(tobj->vtm.utc_offset);
1913 tobj->vtm.zone = rb_gc_location(tobj->vtm.zone);
1922 .dcompact = time_compact,
1924 .flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_FROZEN_SHAREABLE | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_EMBEDDABLE,
1928time_s_alloc(
VALUE klass)
1934 tobj->vtm.tzmode = TIME_TZMODE_UNINITIALIZED;
1935 tobj->vtm.tm_got = 0;
1936 time_set_timew(obj, tobj, WINT2FIXWV(0));
1937 tobj->vtm.zone =
Qnil;
1943get_timeval(
VALUE obj)
1947 if (!TIME_INIT_P(tobj)) {
1954get_new_timeval(
VALUE obj)
1958 if (TIME_INIT_P(tobj)) {
1965time_modify(
VALUE time)
1967 rb_check_frozen(time);
1971timenano2timew(time_t sec,
long nsec)
1975 timew = rb_time_magnify(TIMET2WV(sec));
1977 timew = wadd(timew, wmulquoll(WINT2WV(nsec), TIME_SCALE, 1000000000));
1982timew2timespec(wideval_t timew)
1988 if (timew_out_of_timet_range(timew))
1989 rb_raise(rb_eArgError,
"time out of system range");
1990 split_second(timew, &timew2, &subsecx);
1991 ts.tv_sec = WV2TIMET(timew2);
1997timew2timespec_exact(wideval_t timew,
struct timespec *ts)
2003 if (timew_out_of_timet_range(timew))
2005 split_second(timew, &timew2, &subsecx);
2006 ts->tv_sec = WV2TIMET(timew2);
2007 nsecv = mulquov(subsecx,
INT2FIX(1000000000),
INT2FIX(TIME_SCALE));
2017#ifdef HAVE_CLOCK_GETTIME
2018 if (clock_gettime(CLOCK_REALTIME, ts) == -1) {
2019 rb_sys_fail(
"clock_gettime");
2024 if (gettimeofday(&tv, 0) < 0) {
2025 rb_sys_fail(
"gettimeofday");
2027 ts->tv_sec = tv.tv_sec;
2028 ts->tv_nsec = tv.tv_usec * 1000;
2044 GetNewTimeval(time, tobj);
2045 TZMODE_SET_LOCALTIME(tobj);
2048 time_set_timew(time, tobj, timenano2timew(ts.tv_sec, ts.tv_nsec));
2051 time_zonelocal(time, zone);
2059 VALUE t = time_s_alloc(klass);
2060 return time_init_now(ec, t, zone);
2070 GetTimeval(time, tobj);
2072 tobj->vtm.tm_got = 0;
2073 tobj->vtm.zone =
Qnil;
2074 TZMODE_SET_FIXOFF(time, tobj,
off);
2099 subsec = neg(subsec);
2108 vtm->subsecx = addv(
vtm->subsecx, w2v(rb_time_magnify(v2w(subsec))));
2157 vtm_add_day(
vtm, day);
2161vtm_add_day(
struct vtm *
vtm,
int day)
2165 if (
vtm->mon == 1 &&
vtm->mday == 1) {
2170 vtm->yday = leap_year_v_p(
vtm->year) ? 366 : 365;
2172 else if (
vtm->mday == 1) {
2173 const int8_t *days_in_month = days_in_month_in_v(
vtm->year);
2175 vtm->mday = days_in_month[
vtm->mon-1];
2176 if (
vtm->yday != 0)
vtm->yday--;
2180 if (
vtm->yday != 0)
vtm->yday--;
2182 if (
vtm->wday != VTM_WDAY_INITVAL)
vtm->wday = (
vtm->wday + 6) % 7;
2185 int leap = leap_year_v_p(
vtm->year);
2186 if (
vtm->mon == 12 &&
vtm->mday == 31) {
2192 else if (
vtm->mday == days_in_month_of(leap)[
vtm->mon-1]) {
2195 if (
vtm->yday != 0)
vtm->yday++;
2199 if (
vtm->yday != 0)
vtm->yday++;
2201 if (
vtm->wday != VTM_WDAY_INITVAL)
vtm->wday = (
vtm->wday + 1) % 7;
2207maybe_tzobj_p(
VALUE obj)
2209 if (
NIL_P(obj))
return FALSE;
2215NORETURN(
static void invalid_utc_offset(
VALUE));
2217invalid_utc_offset(
VALUE zone)
2219 rb_raise(rb_eArgError,
"\"+HH:MM\", \"-HH:MM\", \"UTC\" or "
2220 "\"A\"..\"I\",\"K\"..\"Z\" expected for utc_offset: %"PRIsVALUE,
2224#define have_2digits(ptr) (ISDIGIT((ptr)[0]) && ISDIGIT((ptr)[1]))
2225#define num_from_2digits(ptr) ((ptr)[0] * 10 + (ptr)[1] - '0' * 11)
2228utc_offset_arg(
VALUE arg)
2233 const char *s = RSTRING_PTR(tmp), *min = NULL, *sec = NULL;
2235 goto invalid_utc_offset;
2237 switch (RSTRING_LEN(tmp)) {
2243 if (s[0] >=
'A' && s[0] <=
'I') {
2244 n = (int)s[0] -
'A' + 1;
2247 else if (s[0] >=
'K' && s[0] <=
'M') {
2248 n = (int)s[0] -
'A';
2250 else if (s[0] >=
'N' && s[0] <=
'Y') {
2251 n =
'M' - (int)s[0];
2254 goto invalid_utc_offset;
2270 if (s[6] !=
':')
goto invalid_utc_offset;
2274 if (s[3] !=
':')
goto invalid_utc_offset;
2278 goto invalid_utc_offset;
2281 if (!have_2digits(sec))
goto invalid_utc_offset;
2282 if (sec[0] >
'5')
goto invalid_utc_offset;
2283 n += num_from_2digits(sec);
2287 if (!have_2digits(min))
goto invalid_utc_offset;
2288 if (min[0] >
'5')
goto invalid_utc_offset;
2289 n += num_from_2digits(min) * 60;
2291 if (s[0] !=
'+' && s[0] !=
'-')
goto invalid_utc_offset;
2292 if (!have_2digits(s+1))
goto invalid_utc_offset;
2293 n += num_from_2digits(s+1) * 3600;
2295 if (n == 0)
return UTC_ZONE;
2301 return num_exact(arg);
2309 wideval_t tlocal, wideval_t tutc)
2312 wideval_t w = wsub(tlocal, tutc);
2314 validate_utc_offset(
off);
2315 tobj->vtm.utc_offset =
off;
2316 tobj->vtm.zone = zone;
2317 TZMODE_SET_LOCALTIME(tobj);
2321extract_time(
VALUE time)
2324 const ID id_to_i = idTo_i;
2326#define EXTRACT_TIME() do { \
2327 t = NUM2WV(AREF(to_i)); \
2331 struct time_object *tobj = RTYPEDDATA_GET_DATA(time);
2334 t = rb_time_unmagnify(tobj->timew);
2339#define AREF(x) rb_struct_aref(time, ID2SYM(id_##x))
2344#define AREF(x) rb_funcallv(time, id_##x, 0, 0)
2357 const ID id_to_i = idTo_i;
2358 struct vtm *
vtm = &orig_tobj->vtm;
2360#define EXTRACT_VTM() do { \
2362 vtm->year = obj2vint(AREF(year)); \
2363 vtm->mon = month_arg(AREF(mon)); \
2364 vtm->mday = obj2ubits(AREF(mday), 5); \
2365 vtm->hour = obj2ubits(AREF(hour), 5); \
2366 vtm->min = obj2ubits(AREF(min), 6); \
2367 vtm->sec = obj2subsecx(AREF(sec), &subsecx); \
2368 vtm->isdst = RTEST(AREF(isdst)); \
2369 vtm->utc_offset = Qnil; \
2370 t = NUM2WV(AREF(to_i)); \
2374 struct time_object *tobj = RTYPEDDATA_GET_DATA(time);
2376 time_get_tm(time, tobj);
2377 time_set_vtm(orig_time, orig_tobj, tobj->vtm);
2378 t = rb_time_unmagnify(tobj->timew);
2379 if (TZMODE_FIXOFF_P(tobj) &&
vtm->utc_offset !=
INT2FIX(0))
2380 t = wadd(t, v2w(
vtm->utc_offset));
2385#define AREF(x) rb_struct_aref(time, ID2SYM(id_##x))
2391 struct vtm temp_vtm = *
vtm;
2392 GMTIMEW(rb_time_magnify(t), &temp_vtm);
2393 time_set_vtm(orig_time, orig_tobj, temp_vtm);
2396#define AREF(x) rb_funcallv(time, id_##x, 0, 0)
2402 RB_OBJ_WRITE_UNALIGNED(orig_time, &
vtm->subsecx, subsecx);
2415 tobj->vtm.isdst = (!UNDEF_P(dst) &&
RTEST(dst));
2422 struct time_object *tobj = RTYPEDDATA_GET_DATA(time);
2425 wdivmod(tobj->timew, WINT2FIXWV(TIME_SCALE), &t, &s);
2426 tm = tm_from_time(rb_cTimeTM, time);
2428 if (UNDEF_P(utc))
return 0;
2430 s = extract_time(utc);
2431 zone_set_offset(zone, tobj, t, s);
2432 s = rb_time_magnify(s);
2433 if (tobj->vtm.subsecx !=
INT2FIX(0)) {
2434 s = wadd(s, v2w(tobj->vtm.subsecx));
2436 time_set_timew(time, tobj, s);
2438 zone_set_dst(zone, tobj, tm);
2448 VALUE local, tm, subsecx;
2449 struct time_object *tobj = RTYPEDDATA_GET_DATA(time);
2452 split_second(tobj->timew, &t, &subsecx);
2453 tm = tm_from_time(rb_cTimeTM, time);
2456 if (UNDEF_P(local))
return 0;
2458 s = extract_vtm(local, time, tobj, subsecx);
2459 tobj->vtm.tm_got = 1;
2460 zone_set_offset(zone, tobj, s, t);
2461 zone_set_dst(zone, tobj, tm);
2473 return rb_check_funcall_default(klass, id_find_timezone, 1, &zone,
Qnil);
2479vtm_day_wraparound(
struct vtm *
vtm)
2481 if (
vtm->hour < 24)
return;
2486 vtm_add_day(
vtm, 1);
2501 vtm.wday = VTM_WDAY_INITVAL;
2503 vtm.zone = str_empty;
2505 vtm.year = obj2vint(year);
2507 vtm.mon =
NIL_P(mon) ? 1 : month_arg(mon);
2509 vtm.mday =
NIL_P(mday) ? 1 : obj2ubits(mday, 5);
2511 vtm.hour =
NIL_P(hour) ? 0 : obj2ubits(hour, 5);
2513 vtm.min =
NIL_P(min) ? 0 : obj2ubits(min, 6);
2521 vtm.sec = obj2subsecx(sec, &subsecx);
2522 vtm.subsecx = subsecx;
2525 return time_init_vtm(time,
vtm, zone);
2534 vtm.isdst = VTM_ISDST_INITVAL;
2536 const VALUE arg = zone;
2539 if (arg ==
ID2SYM(rb_intern(
"dst")))
2541 else if (arg ==
ID2SYM(rb_intern(
"std")))
2543 else if (maybe_tzobj_p(arg))
2545 else if (!
NIL_P(utc = utc_offset_arg(arg)))
2546 vtm.utc_offset = utc == UTC_ZONE ?
INT2FIX(0) : utc;
2547 else if (
NIL_P(zone = find_timezone(time, arg)))
2548 invalid_utc_offset(arg);
2554 GetNewTimeval(time, tobj);
2557 time_set_timew(time, tobj, timegmw(&
vtm));
2558 vtm_day_wraparound(&
vtm);
2559 time_set_vtm(time, tobj,
vtm);
2560 tobj->vtm.tm_got = 1;
2561 TZMODE_SET_LOCALTIME(tobj);
2562 if (zone_timelocal(zone, time)) {
2565 else if (
NIL_P(
vtm.utc_offset = utc_offset_arg(zone))) {
2566 if (
NIL_P(zone = find_timezone(time, zone)) || !zone_timelocal(zone, time))
2567 invalid_utc_offset(arg);
2571 if (utc == UTC_ZONE) {
2572 time_set_timew(time, tobj, timegmw(&
vtm));
2574 vtm_day_wraparound(&
vtm);
2575 time_set_vtm(time, tobj,
vtm);
2576 tobj->vtm.tm_got = 1;
2577 TZMODE_SET_UTC(tobj);
2581 TZMODE_SET_LOCALTIME(tobj);
2586 vtm_add_offset(&
vtm,
off, -1);
2588 time_set_timew(time, tobj, timegmw(&
vtm));
2590 return time_set_utc_offset(time,
off);
2593 time_set_timew(time, tobj, timelocalw(&
vtm));
2595 return time_localtime(time);
2600two_digits(
const char *ptr,
const char *end,
const char **endp,
const char *name)
2602 ssize_t
len = end - ptr;
2603 if (
len < 2 || !have_2digits(ptr) || ((
len > 2) &&
ISDIGIT(ptr[2]))) {
2604 VALUE mesg = rb_sprintf(
"two digits %s is expected", name);
2605 if (ptr[-1] ==
'-' || ptr[-1] ==
':') {
2606 rb_str_catf(mesg,
" after '%c'", ptr[-1]);
2608 rb_str_catf(mesg,
": %.*s", ((
len > 10) ? 10 : (int)(end - ptr)) + 1, ptr - 1);
2612 return num_from_2digits(ptr);
2616parse_int(
const char *ptr,
const char *end,
const char **endp,
size_t *ndigits,
bool sign)
2618 ssize_t
len = (end - ptr);
2619 int flags = sign ? RB_INT_PARSE_SIGN : 0;
2620 return rb_int_parse_cstr(ptr,
len, (
char **)endp, ndigits, 10, flags);
2632 rb_raise(rb_eArgError,
"time string should have ASCII compatible encoding");
2635 const char *
const begin = RSTRING_PTR(str);
2637 const char *ptr = begin;
2639 int mon = -1, mday = -1, hour = -1, min = -1, sec = -1;
2641 size_t prec =
NIL_P(precision) ? SIZE_MAX :
NUM2SIZET(precision);
2644 rb_raise(rb_eArgError,
"can't parse: %+"PRIsVALUE, str);
2646 year = parse_int(ptr, end, &ptr, &ndigits,
true);
2648 rb_raise(rb_eArgError,
"can't parse: %+"PRIsVALUE, str);
2650 else if (ndigits < 4) {
2651 rb_raise(rb_eArgError,
"year must be 4 or more digits: %.*s", (
int)ndigits, ptr - ndigits);
2653 else if (ptr == end) {
2657#define peekable_p(n) ((ptrdiff_t)(n) < (end - ptr))
2658#define peek_n(c, n) (peekable_p(n) && ((unsigned char)ptr[n] == (c)))
2659#define peek(c) peek_n(c, 0)
2660#define peekc_n(n) (peekable_p(n) ? (int)(unsigned char)ptr[n] : -1)
2661#define peekc() peekc_n(0)
2662#define expect_two_digits(x, bits) \
2663 (((unsigned int)(x = two_digits(ptr + 1, end, &ptr, #x)) > (1U << bits) - 1) ? \
2664 rb_raise(rb_eArgError, #x" out of range") : (void)0)
2665 if (!peek(
'-'))
break;
2666 expect_two_digits(mon, 4);
2667 if (!peek(
'-'))
break;
2668 expect_two_digits(mday, 5);
2669 if (!peek(
' ') && !peek(
'T'))
break;
2670 const char *
const time_part = ptr + 1;
2671 if (!
ISDIGIT(peekc_n(1)))
break;
2672#define nofraction(x) \
2674 rb_raise(rb_eArgError, "fraction " #x " is not supported: %.*s", \
2675 (int)(ptr + 1 - time_part), time_part); \
2677#define need_colon(x) \
2679 rb_raise(rb_eArgError, "missing " #x " part: %.*s", \
2680 (int)(ptr + 1 - time_part), time_part); \
2682 expect_two_digits(hour, 5);
2685 expect_two_digits(min, 6);
2688 expect_two_digits(sec, 6);
2691 for (ndigits = 0; ndigits < prec &&
ISDIGIT(peekc_n(ndigits)); ++ndigits);
2693 int clen = rb_enc_precise_mbclen(ptr, end, rb_enc_get(str));
2694 if (clen < 0) clen = 0;
2695 rb_raise(rb_eArgError,
"subsecond expected after dot: %.*s",
2696 (
int)(ptr - time_part) + clen, time_part);
2698 subsec = parse_int(ptr, ptr + ndigits, &ptr, &ndigits,
false);
2699 if (
NIL_P(subsec))
break;
2700 while (ptr < end &&
ISDIGIT(*ptr)) ptr++;
2703 while (ptr < end &&
ISSPACE(*ptr)) ptr++;
2704 const char *
const zstr = ptr;
2705 while (ptr < end && !
ISSPACE(*ptr)) ptr++;
2706 const char *
const zend = ptr;
2707 while (ptr < end &&
ISSPACE(*ptr)) ptr++;
2716 else if (hour == -1) {
2717 rb_raise(rb_eArgError,
"no time information");
2719 if (!
NIL_P(subsec)) {
2721 if (ndigits < (
size_t)TIME_SCALE_NUMDIGITS) {
2723 subsec = rb_int_mul(subsec, mul);
2725 else if (ndigits > (
size_t)TIME_SCALE_NUMDIGITS) {
2735 .wday = VTM_WDAY_INITVAL,
2739 .mon = (mon < 0) ? 1 : mon,
2740 .mday = (mday < 0) ? 1 : mday,
2741 .hour = (hour < 0) ? 0 : hour,
2742 .min = (min < 0) ? 0 : min,
2743 .sec = (sec < 0) ? 0 : sec,
2746 return time_init_vtm(time,
vtm, zone);
2750subsec_normalize(time_t *secp,
long *subsecp,
const long maxsubsec)
2753 long subsec = *subsecp;
2756 if (UNLIKELY(subsec >= maxsubsec)) {
2757 sec2 = subsec / maxsubsec;
2758 if (TIMET_MAX - sec2 < sec) {
2761 subsec -= sec2 * maxsubsec;
2764 else if (UNLIKELY(subsec < 0)) {
2765 sec2 = NDIV(subsec, maxsubsec);
2766 if (sec < TIMET_MIN - sec2) {
2769 subsec -= sec2 * maxsubsec;
2772#ifndef NEGATIVE_TIME_T
2774 rb_raise(rb_eArgError,
"time must be positive");
2780#define time_usec_normalize(secp, usecp) subsec_normalize(secp, usecp, 1000000)
2781#define time_nsec_normalize(secp, nsecp) subsec_normalize(secp, nsecp, 1000000000)
2784nsec2timew(time_t sec,
long nsec)
2786 time_nsec_normalize(&sec, &nsec);
2787 return timenano2timew(sec, nsec);
2791time_new_timew(
VALUE klass, wideval_t timew)
2793 VALUE time = time_s_alloc(klass);
2796 tobj = RTYPEDDATA_GET_DATA(time);
2797 TZMODE_SET_LOCALTIME(tobj);
2798 time_set_timew(time, tobj, timew);
2806 time_usec_normalize(&sec, &usec);
2807 return time_new_timew(
rb_cTime, timenano2timew(sec, usec * 1000));
2814 return time_new_timew(
rb_cTime, nsec2timew(sec, nsec));
2821 VALUE time = time_new_timew(
rb_cTime, nsec2timew(ts->tv_sec, ts->tv_nsec));
2823 if (-86400 < offset && offset < 86400) {
2824 GetTimeval(time, tobj);
2825 TZMODE_SET_FIXOFF(time, tobj,
INT2FIX(offset));
2827 else if (offset == INT_MAX) {
2829 else if (offset == INT_MAX-1) {
2830 GetTimeval(time, tobj);
2831 TZMODE_SET_UTC(tobj);
2834 rb_raise(rb_eArgError,
"utc_offset out of range");
2843 VALUE time = time_new_timew(
rb_cTime, rb_time_magnify(v2w(timev)));
2848 if (maybe_tzobj_p(zone)) {
2850 if (zone_timelocal(zone, time))
return time;
2854 if (
NIL_P(zone = find_timezone(time,
off))) invalid_utc_offset(
off);
2856 if (!zone_timelocal(zone, time)) invalid_utc_offset(
off);
2859 else if (
off == UTC_ZONE) {
2860 return time_gmtime(time);
2863 validate_utc_offset(
off);
2864 time_set_utc_offset(time,
off);
2872time_timespec(
VALUE num, int interval)
2875 const char *
const tstr = interval ?
"time interval" :
"time";
2878#ifndef NEGATIVE_TIME_T
2879# define arg_range_check(v) \
2881 rb_raise(rb_eArgError, "%s must not be negative", tstr) : \
2884# define arg_range_check(v) \
2885 ((interval && (v) < 0) ? \
2886 rb_raise(rb_eArgError, "time interval must not be negative") : \
2891 t.tv_sec = NUM2TIMET(num);
2892 arg_range_check(t.tv_sec);
2903 t.tv_nsec = (int)(d*1e9+0.5);
2904 if (t.tv_nsec >= 1000000000) {
2905 t.tv_nsec -= 1000000000;
2909 else if ((t.tv_nsec = (
int)(-d*1e9+0.5)) > 0) {
2910 t.tv_nsec = 1000000000 - t.tv_nsec;
2913 t.tv_sec = (time_t)f;
2914 if (f != t.tv_sec) {
2919 else if (RB_BIGNUM_TYPE_P(num)) {
2920 t.tv_sec = NUM2TIMET(num);
2921 arg_range_check(t.tv_sec);
2927 if (!UNDEF_P(ary) && !
NIL_P(ary = rb_check_array_type(ary))) {
2928 i = rb_ary_entry(ary, 0);
2929 f = rb_ary_entry(ary, 1);
2930 t.tv_sec = NUM2TIMET(i);
2931 arg_range_check(t.tv_sec);
2936 rb_raise(
rb_eTypeError,
"can't convert %"PRIsVALUE
" into %s",
2941#undef arg_range_check
2945time_timeval(
VALUE num, int interval)
2950 ts = time_timespec(num, interval);
2951 tv.tv_sec = (TYPEOF_TIMEVAL_TV_SEC)ts.tv_sec;
2952 tv.tv_usec = (TYPEOF_TIMEVAL_TV_USEC)(ts.tv_nsec / 1000);
2960 return time_timeval(num, TRUE);
2970 if (IsTimeval(time)) {
2971 GetTimeval(time, tobj);
2972 ts = timew2timespec(tobj->timew);
2973 t.tv_sec = (TYPEOF_TIMEVAL_TV_SEC)ts.tv_sec;
2974 t.tv_usec = (TYPEOF_TIMEVAL_TV_USEC)(ts.tv_nsec / 1000);
2977 return time_timeval(time, FALSE);
2986 if (IsTimeval(time)) {
2987 GetTimeval(time, tobj);
2988 t = timew2timespec(tobj->timew);
2991 return time_timespec(time, FALSE);
2997 return time_timespec(num, TRUE);
3001get_scale(
VALUE unit)
3003 if (unit ==
ID2SYM(id_nanosecond) || unit ==
ID2SYM(id_nsec)) {
3006 else if (unit ==
ID2SYM(id_microsecond) || unit ==
ID2SYM(id_usec)) {
3009 else if (unit ==
ID2SYM(id_millisecond)) {
3013 rb_raise(rb_eArgError,
"unexpected unit: %"PRIsVALUE, unit);
3024 int scale = get_scale(unit);
3025 time = num_exact(time);
3026 t = num_exact(subsec);
3027 timew = wadd(rb_time_magnify(v2w(time)), wmulquoll(v2w(t), TIME_SCALE, scale));
3028 t = time_new_timew(klass, timew);
3030 else if (IsTimeval(time)) {
3032 GetTimeval(time, tobj);
3033 t = time_new_timew(klass, tobj->timew);
3034 GetTimeval(t, tobj2);
3035 TZMODE_COPY(tobj2, tobj);
3038 timew = rb_time_magnify(v2w(num_exact(time)));
3039 t = time_new_timew(klass, timew);
3042 time_zonelocal(t, zone);
3054static const char months[][4] = {
3055 "jan",
"feb",
"mar",
"apr",
"may",
"jun",
3056 "jul",
"aug",
"sep",
"oct",
"nov",
"dec",
3063 obj = rb_str_to_inum(obj, 10, TRUE);
3071obj2ubits(
VALUE obj,
unsigned int bits)
3073 const unsigned int usable_mask = (1U << bits) - 1;
3074 unsigned int rv = (
unsigned int)obj2int(obj);
3076 if ((rv & usable_mask) != rv)
3077 rb_raise(rb_eArgError,
"argument out of range");
3078 return (uint32_t)rv;
3085 obj = rb_str_to_inum(obj, 10, TRUE);
3100 obj = rb_str_to_inum(obj, 10, TRUE);
3104 divmodv(num_exact(obj),
INT2FIX(1), &obj, &subsec);
3105 *subsecx = w2v(rb_time_magnify(v2w(subsec)));
3107 return obj2ubits(obj, 6);
3111usec2subsecx(
VALUE obj)
3114 obj = rb_str_to_inum(obj, 10, TRUE);
3117 return mulquov(num_exact(obj),
INT2FIX(TIME_SCALE),
INT2FIX(1000000));
3126 return obj2ubits(arg, 4);
3131 if (!
NIL_P(s) && RSTRING_LEN(s) > 0) {
3133 for (i=0; i<12; i++) {
3134 if (RSTRING_LEN(s) == 3 &&
3142 mon = obj2ubits(arg, 4);
3148validate_utc_offset(
VALUE utc_offset)
3150 if (le(utc_offset,
INT2FIX(-86400)) || ge(utc_offset,
INT2FIX(86400)))
3151 rb_raise(rb_eArgError,
"utc_offset out of range");
3156validate_zone_name(
VALUE zone_name)
3163validate_vtm(
struct vtm *
vtm)
3165#define validate_vtm_range(mem, b, e) \
3166 ((vtm->mem < b || vtm->mem > e) ? \
3167 rb_raise(rb_eArgError, #mem" out of range") : (void)0)
3168 validate_vtm_range(mon, 1, 12);
3169 validate_vtm_range(mday, 1, 31);
3170 validate_vtm_range(hour, 0, 24);
3171 validate_vtm_range(min, 0, (
vtm->hour == 24 ? 0 : 59));
3172 validate_vtm_range(sec, 0, (
vtm->hour == 24 ? 0 : 60));
3174 rb_raise(rb_eArgError,
"subsecx out of range");
3175 if (!
NIL_P(
vtm->utc_offset)) validate_utc_offset(
vtm->utc_offset);
3176#undef validate_vtm_range
3180time_arg(
int argc,
const VALUE *argv,
struct vtm *
vtm)
3196 vtm->zone = str_empty;
3206 vtm->isdst =
RTEST(argv[8]) ? 1 : 0;
3209 rb_scan_args(argc, argv,
"17", &v[0],&v[1],&v[2],&v[3],&v[4],&v[5],&v[6],&v[7]);
3212 vtm->wday = VTM_WDAY_INITVAL;
3213 vtm->isdst = VTM_ISDST_INITVAL;
3216 vtm->year = obj2vint(v[0]);
3222 vtm->mon = month_arg(v[1]);
3229 vtm->mday = obj2ubits(v[2], 5);
3237 unsigned int mday2 = leap_year_v_p(
vtm->year) ? 29 : 28;
3238 if (
vtm->mday > mday2) {
3248 if (
vtm->mday == 31) {
3255 vtm->hour =
NIL_P(v[3])?0:obj2ubits(v[3], 5);
3257 vtm->min =
NIL_P(v[4])?0:obj2ubits(v[4], 6);
3259 if (!
NIL_P(v[6]) && argc == 7) {
3260 vtm->sec =
NIL_P(v[5])?0:obj2ubits(v[5],6);
3261 subsecx = usec2subsecx(v[6]);
3269 vtm->sec = obj2subsecx(v[5], &subsecx);
3272 vtm->subsecx = subsecx;
3284 unsigned long uy = (
unsigned long)(LIKELY(y >= 0) ? y : -y);
3286 if (LIKELY(uy % 4 != 0))
return 0;
3288 unsigned long century = uy / 100;
3289 if (LIKELY(uy != century * 100))
return 1;
3290 return century % 4 == 0;
3294timegm_noleapsecond(
struct tm *tm)
3296 long tm_year = tm->tm_year;
3297 int tm_yday = calc_tm_yday(tm->tm_year, tm->tm_mon, tm->tm_mday);
3305 return tm->tm_sec + tm->tm_min*60 + tm->tm_hour*3600 +
3309 DIV(tm_year-1,100) +
3310 DIV(tm_year+299,400))*86400;
3314#define DEBUG_FIND_TIME_NUMGUESS
3315#define DEBUG_GUESSRANGE
3318static const bool debug_guessrange =
3319#ifdef DEBUG_GUESSRANGE
3325#define DEBUG_REPORT_GUESSRANGE \
3326 (debug_guessrange ? debug_report_guessrange(guess_lo, guess_hi) : (void)0)
3329debug_report_guessrange(time_t guess_lo, time_t guess_hi)
3331 time_t guess_diff = guess_hi - guess_lo;
3332 fprintf(stderr,
"find time guess range: %"PRI_TIMET_PREFIX
"d - "
3333 "%"PRI_TIMET_PREFIX
"d : %"PRI_TIMET_PREFIX
"u\n",
3334 guess_lo, guess_hi, guess_diff);
3337static const bool debug_find_time_numguess =
3338#ifdef DEBUG_FIND_TIME_NUMGUESS
3344#define DEBUG_FIND_TIME_NUMGUESS_INC \
3345 (void)(debug_find_time_numguess && find_time_numguess++),
3346static unsigned long long find_time_numguess;
3349find_time_numguess_getter(
ID name,
VALUE *data)
3351 unsigned long long *numguess = (
void *)data;
3356find_time_t(
struct tm *tptr,
int utc_p, time_t *tp)
3358 time_t guess, guess0, guess_lo, guess_hi;
3359 struct tm *tm, tm0, tm_lo, tm_hi;
3366#define GUESS(p) (DEBUG_FIND_TIME_NUMGUESS_INC (utc_p ? gmtime_with_leapsecond((p), &result) : LOCALTIME((p), result)))
3368 guess_lo = TIMET_MIN;
3369 guess_hi = TIMET_MAX;
3371 find_dst = 0 < tptr->tm_isdst;
3377 if (tm0.tm_mon < 0) {
3384 else if (11 < tm0.tm_mon) {
3391 else if (tm0.tm_mday < 1) {
3397 else if ((d = days_in_month_in(1900 + tm0.tm_year)[tm0.tm_mon]) < tm0.tm_mday) {
3403 else if (tm0.tm_hour < 0) {
3408 else if (23 < tm0.tm_hour) {
3413 else if (tm0.tm_min < 0) {
3417 else if (59 < tm0.tm_min) {
3421 else if (tm0.tm_sec < 0) {
3424 else if (60 < tm0.tm_sec) {
3428 DEBUG_REPORT_GUESSRANGE;
3429 guess0 = guess = timegm_noleapsecond(&tm0);
3432 d = tmcmp(tptr, tm);
3433 if (d == 0) {
goto found; }
3436 guess -= 24 * 60 * 60;
3440 guess += 24 * 60 * 60;
3442 DEBUG_REPORT_GUESSRANGE;
3443 if (guess_lo < guess && guess < guess_hi && (tm = GUESS(&guess)) != NULL) {
3444 d = tmcmp(tptr, tm);
3445 if (d == 0) {
goto found; }
3450 DEBUG_REPORT_GUESSRANGE;
3454 tm = GUESS(&guess_lo);
3455 if (!tm)
goto error;
3456 d = tmcmp(tptr, tm);
3457 if (d < 0)
goto out_of_range;
3458 if (d == 0) { guess = guess_lo;
goto found; }
3461 tm = GUESS(&guess_hi);
3462 if (!tm)
goto error;
3463 d = tmcmp(tptr, tm);
3464 if (d > 0)
goto out_of_range;
3465 if (d == 0) { guess = guess_hi;
goto found; }
3468 DEBUG_REPORT_GUESSRANGE;
3472 while (guess_lo + 1 < guess_hi) {
3475 guess = guess_lo / 2 + guess_hi / 2;
3476 if (guess <= guess_lo)
3477 guess = guess_lo + 1;
3478 else if (guess >= guess_hi)
3479 guess = guess_hi - 1;
3484 time_t guess0_hi = timegm_noleapsecond(&tm_hi);
3485 guess = guess_hi - (guess0_hi - guess0);
3486 if (guess == guess_hi)
3490 else if (status == 2) {
3491 time_t guess0_lo = timegm_noleapsecond(&tm_lo);
3492 guess = guess_lo + (guess0 - guess0_lo);
3493 if (guess == guess_lo)
3497 if (guess <= guess_lo || guess_hi <= guess) {
3499 if (debug_guessrange) {
3500 if (guess <= guess_lo) {
3501 fprintf(stderr,
"too small guess: %"PRI_TIMET_PREFIX
"d"\
3502 " <= %"PRI_TIMET_PREFIX
"d\n", guess, guess_lo);
3504 if (guess_hi <= guess) {
3505 fprintf(stderr,
"too big guess: %"PRI_TIMET_PREFIX
"d"\
3506 " <= %"PRI_TIMET_PREFIX
"d\n", guess_hi, guess);
3515 if (!tm)
goto error;
3517 d = tmcmp(tptr, tm);
3522 DEBUG_REPORT_GUESSRANGE;
3527 DEBUG_REPORT_GUESSRANGE;
3542 tptr_tm_yday = calc_tm_yday(tptr->tm_year, tptr->tm_mon, tptr->tm_mday);
3545 ((tptr->tm_year - tm_lo.tm_year) * 365 +
3546 DIV((tptr->tm_year-69), 4) -
3547 DIV((tptr->tm_year-1), 100) +
3548 DIV((tptr->tm_year+299), 400) -
3549 DIV((tm_lo.tm_year-69), 4) +
3550 DIV((tm_lo.tm_year-1), 100) -
3551 DIV((tm_lo.tm_year+299), 400) +
3553 tm_lo.tm_yday) * 86400 +
3554 (tptr->tm_hour - tm_lo.tm_hour) * 3600 +
3555 (tptr->tm_min - tm_lo.tm_min) * 60 +
3556 (tptr->tm_sec - (tm_lo.tm_sec == 60 ? 59 : tm_lo.tm_sec));
3565 guess2 = guess - 2 * 60 * 60;
3566 tm = LOCALTIME(&guess2, result);
3568 if (tptr->tm_hour != (tm->tm_hour + 2) % 24 ||
3569 tptr->tm_min != tm->tm_min ||
3570 tptr->tm_sec != tm->tm_sec) {
3571 guess2 -= (tm->tm_hour - tptr->tm_hour) * 60 * 60 +
3572 (tm->tm_min - tptr->tm_min) * 60 +
3573 (tm->tm_sec - tptr->tm_sec);
3574 if (tptr->tm_mday != tm->tm_mday)
3575 guess2 += 24 * 60 * 60;
3576 if (guess != guess2) {
3577 tm = LOCALTIME(&guess2, result);
3578 if (tm && tmcmp(tptr, tm) == 0) {
3590 guess2 = guess + 2 * 60 * 60;
3591 tm = LOCALTIME(&guess2, result);
3593 if ((tptr->tm_hour + 2) % 24 != tm->tm_hour ||
3594 tptr->tm_min != tm->tm_min ||
3595 tptr->tm_sec != tm->tm_sec) {
3596 guess2 -= (tm->tm_hour - tptr->tm_hour) * 60 * 60 +
3597 (tm->tm_min - tptr->tm_min) * 60 +
3598 (tm->tm_sec - tptr->tm_sec);
3599 if (tptr->tm_mday != tm->tm_mday)
3600 guess2 -= 24 * 60 * 60;
3601 if (guess != guess2) {
3602 tm = LOCALTIME(&guess2, result);
3603 if (tm && tmcmp(tptr, tm) == 0) {
3619 return "time out of range";
3622 return "gmtime/localtime error";
3626vtmcmp(
struct vtm *a,
struct vtm *b)
3628 if (ne(a->year, b->year))
3629 return lt(a->year, b->year) ? -1 : 1;
3630 else if (a->mon != b->mon)
3631 return a->mon < b->mon ? -1 : 1;
3632 else if (a->mday != b->mday)
3633 return a->mday < b->mday ? -1 : 1;
3634 else if (a->hour != b->hour)
3635 return a->hour < b->hour ? -1 : 1;
3636 else if (a->min != b->min)
3637 return a->min < b->min ? -1 : 1;
3638 else if (a->sec != b->sec)
3639 return a->sec < b->sec ? -1 : 1;
3640 else if (ne(a->subsecx, b->subsecx))
3641 return lt(a->subsecx, b->subsecx) ? -1 : 1;
3647tmcmp(
struct tm *a,
struct tm *b)
3649 if (a->tm_year != b->tm_year)
3650 return a->tm_year < b->tm_year ? -1 : 1;
3651 else if (a->tm_mon != b->tm_mon)
3652 return a->tm_mon < b->tm_mon ? -1 : 1;
3653 else if (a->tm_mday != b->tm_mday)
3654 return a->tm_mday < b->tm_mday ? -1 : 1;
3655 else if (a->tm_hour != b->tm_hour)
3656 return a->tm_hour < b->tm_hour ? -1 : 1;
3657 else if (a->tm_min != b->tm_min)
3658 return a->tm_min < b->tm_min ? -1 : 1;
3659 else if (a->tm_sec != b->tm_sec)
3660 return a->tm_sec < b->tm_sec ? -1 : 1;
3766time_s_mkutc(
int argc,
VALUE *argv,
VALUE klass)
3770 time_arg(argc, argv, &
vtm);
3771 return time_gmtime(time_new_timew(klass, timegmw(&
vtm)));
3792time_s_mktime(
int argc,
VALUE *argv,
VALUE klass)
3796 time_arg(argc, argv, &
vtm);
3797 return time_localtime(time_new_timew(klass, timelocalw(&
vtm)));
3817time_to_i(
VALUE time)
3821 GetTimeval(time, tobj);
3822 return w2v(wdiv(tobj->timew, WINT2FIXWV(TIME_SCALE)));
3846time_to_f(
VALUE time)
3850 GetTimeval(time, tobj);
3851 return rb_Float(rb_time_unmagnify_to_float(tobj->timew));
3867time_to_r(
VALUE time)
3872 GetTimeval(time, tobj);
3873 v = rb_time_unmagnify_to_rational(tobj->timew);
3895time_usec(
VALUE time)
3900 GetTimeval(time, tobj);
3902 w = wmod(tobj->timew, WINT2WV(TIME_SCALE));
3903 wmuldivmod(w, WINT2FIXWV(1000000), WINT2FIXWV(TIME_SCALE), &q, &r);
3922time_nsec(
VALUE time)
3926 GetTimeval(time, tobj);
3927 return rb_to_int(w2v(wmulquoll(wmod(tobj->timew, WINT2WV(TIME_SCALE)), 1000000000, TIME_SCALE)));
3948time_subsec(
VALUE time)
3952 GetTimeval(time, tobj);
3953 return quov(w2v(wmod(tobj->timew, WINT2FIXWV(TIME_SCALE))),
INT2FIX(TIME_SCALE));
3990 GetTimeval(time1, tobj1);
3991 if (IsTimeval(time2)) {
3992 GetTimeval(time2, tobj2);
3993 n = wcmp(tobj1->timew, tobj2->timew);
3996 return rb_invcmp(time1, time2);
3998 if (n == 0)
return INT2FIX(0);
4016 GetTimeval(time1, tobj1);
4017 if (IsTimeval(time2)) {
4018 GetTimeval(time2, tobj2);
4019 return rb_equal(w2v(tobj1->timew), w2v(tobj2->timew));
4052time_utc_p(
VALUE time)
4056 GetTimeval(time, tobj);
4057 return RBOOL(TZMODE_UTC_P(tobj));
4070time_hash(
VALUE time)
4074 GetTimeval(time, tobj);
4075 return rb_hash(w2v(tobj->timew));
4085 GetTimeval(time, tobj);
4086 GetNewTimeval(copy, tcopy);
4096 time_init_copy(dup, time);
4101time_localtime(
VALUE time)
4107 GetTimeval(time, tobj);
4108 if (TZMODE_LOCALTIME_P(tobj)) {
4109 if (tobj->vtm.tm_got)
4116 zone = tobj->vtm.zone;
4117 if (maybe_tzobj_p(zone) && zone_localtime(zone, time)) {
4121 if (!localtimew(tobj->timew, &
vtm))
4122 rb_raise(rb_eArgError,
"localtime error");
4123 time_set_vtm(time, tobj,
vtm);
4125 tobj->vtm.tm_got = 1;
4126 TZMODE_SET_LOCALTIME(tobj);
4134 if (zone_localtime(zone, time))
return time;
4138 if (
NIL_P(zone = find_timezone(time,
off))) invalid_utc_offset(
off);
4139 if (!zone_localtime(zone, time)) invalid_utc_offset(
off);
4142 else if (
off == UTC_ZONE) {
4143 return time_gmtime(time);
4145 validate_utc_offset(
off);
4147 time_set_utc_offset(time,
off);
4148 return time_fixoff(time);
4177time_localtime_m(
int argc,
VALUE *argv,
VALUE time)
4182 return time_zonelocal(time,
off);
4185 return time_localtime(time);
4203time_gmtime(
VALUE time)
4208 GetTimeval(time, tobj);
4209 if (TZMODE_UTC_P(tobj)) {
4210 if (tobj->vtm.tm_got)
4218 GMTIMEW(tobj->timew, &
vtm);
4219 time_set_vtm(time, tobj,
vtm);
4221 tobj->vtm.tm_got = 1;
4222 TZMODE_SET_UTC(tobj);
4227time_fixoff(
VALUE time)
4233 GetTimeval(time, tobj);
4234 if (TZMODE_FIXOFF_P(tobj)) {
4235 if (tobj->vtm.tm_got)
4242 if (TZMODE_FIXOFF_P(tobj))
4243 off = tobj->vtm.utc_offset;
4247 GMTIMEW(tobj->timew, &
vtm);
4249 zone = tobj->vtm.zone;
4250 vtm_add_offset(&
vtm,
off, +1);
4252 time_set_vtm(time, tobj,
vtm);
4253 RB_OBJ_WRITE_UNALIGNED(time, &tobj->vtm.zone, zone);
4255 tobj->vtm.tm_got = 1;
4256 TZMODE_SET_FIXOFF(time, tobj,
off);
4278time_getlocaltime(
int argc,
VALUE *argv,
VALUE time)
4284 if (maybe_tzobj_p(zone)) {
4285 VALUE t = time_dup(time);
4286 if (zone_localtime(
off, t))
return t;
4291 if (
NIL_P(zone = find_timezone(time,
off))) invalid_utc_offset(
off);
4292 time = time_dup(time);
4293 if (!zone_localtime(zone, time)) invalid_utc_offset(
off);
4296 else if (
off == UTC_ZONE) {
4297 return time_gmtime(time_dup(time));
4299 validate_utc_offset(
off);
4301 time = time_dup(time);
4302 time_set_utc_offset(time,
off);
4303 return time_fixoff(time);
4306 return time_localtime(time_dup(time));
4325time_getgmtime(
VALUE time)
4327 return time_gmtime(time_dup(time));
4333 if (TZMODE_UTC_P(tobj))
return time_gmtime(time);
4334 if (TZMODE_FIXOFF_P(tobj))
return time_fixoff(time);
4335 return time_localtime(time);
4339#define strftimev(fmt, time, enc) strftime_cstr((fmt), rb_strlen_lit(fmt), (time), (enc))
4363time_asctime(
VALUE time)
4365 return strftimev(
"%a %b %e %T %Y", time, rb_usascii_encoding());
4385time_to_s(
VALUE time)
4389 GetTimeval(time, tobj);
4390 if (TZMODE_UTC_P(tobj))
4391 return strftimev(
"%Y-%m-%d %H:%M:%S UTC", time, rb_usascii_encoding());
4393 return strftimev(
"%Y-%m-%d %H:%M:%S %z", time, rb_usascii_encoding());
4413time_inspect(
VALUE time)
4418 GetTimeval(time, tobj);
4419 str = strftimev(
"%Y-%m-%d %H:%M:%S", time, rb_usascii_encoding());
4420 subsec = w2v(wmod(tobj->timew, WINT2FIXWV(TIME_SCALE)));
4425 rb_str_catf(str,
".%09ld",
FIX2LONG(subsec));
4426 for (
len=RSTRING_LEN(str); RSTRING_PTR(str)[
len-1] ==
'0' &&
len > 0;
len--)
4428 rb_str_resize(str,
len);
4432 subsec = quov(subsec,
INT2FIX(TIME_SCALE));
4435 if (TZMODE_UTC_P(tobj)) {
4441 char sign = (
off < 0) ? (
off = -
off,
'-') :
'+';
4443 int min = (
off /= 60) % 60;
4445 rb_str_catf(str,
" %c%.2d%.2d", sign, (
int)
off, min);
4446 if (sec) rb_str_catf(str,
"%.2d", sec);
4457 offset = num_exact(offset);
4459 result = time_new_timew(klass, wsub(tobj->timew, rb_time_magnify(v2w(offset))));
4461 result = time_new_timew(klass, wadd(tobj->timew, rb_time_magnify(v2w(offset))));
4462 GetTimeval(result, result_tobj);
4463 TZMODE_COPY(result_tobj, tobj);
4471 return time_add0(
rb_cTime, tobj, torig, offset, sign);
4492 GetTimeval(time1, tobj);
4494 if (IsTimeval(time2)) {
4497 return time_add(tobj, time1, time2, 1);
4527 GetTimeval(time1, tobj);
4528 if (IsTimeval(time2)) {
4531 GetTimeval(time2, tobj2);
4532 return rb_Float(rb_time_unmagnify_to_float(wsub(tobj->timew, tobj2->timew)));
4534 return time_add(tobj, time1, time2, -1);
4538ndigits_denominator(
VALUE ndigits)
4543 rb_raise(rb_eArgError,
"negative ndigits given");
4583 VALUE ndigits, v, den;
4589 den = ndigits_denominator(ndigits);
4591 GetTimeval(time, tobj);
4592 v = w2v(rb_time_unmagnify(tobj->timew));
4595 if (lt(v, quov(den,
INT2FIX(2))))
4596 return time_add(tobj, time, v, -1);
4598 return time_add(tobj, time, subv(den, v), 1);
4631 VALUE ndigits, v, den;
4637 den = ndigits_denominator(ndigits);
4639 GetTimeval(time, tobj);
4640 v = w2v(rb_time_unmagnify(tobj->timew));
4643 return time_add(tobj, time, v, -1);
4676 VALUE ndigits, v, den;
4682 den = ndigits_denominator(ndigits);
4684 GetTimeval(time, tobj);
4685 v = w2v(rb_time_unmagnify(tobj->timew));
4691 return time_add(tobj, time, v, 1);
4716 GetTimeval(time, tobj);
4717 MAKE_TM(time, tobj);
4718 return INT2FIX(tobj->vtm.sec);
4740 GetTimeval(time, tobj);
4741 MAKE_TM(time, tobj);
4742 return INT2FIX(tobj->vtm.min);
4760time_hour(
VALUE time)
4764 GetTimeval(time, tobj);
4765 MAKE_TM(time, tobj);
4766 return INT2FIX(tobj->vtm.hour);
4784time_mday(
VALUE time)
4788 GetTimeval(time, tobj);
4789 MAKE_TM(time, tobj);
4790 return INT2FIX(tobj->vtm.mday);
4812 GetTimeval(time, tobj);
4813 MAKE_TM(time, tobj);
4814 return INT2FIX(tobj->vtm.mon);
4831time_year(
VALUE time)
4835 GetTimeval(time, tobj);
4836 MAKE_TM(time, tobj);
4837 return tobj->vtm.year;
4856time_wday(
VALUE time)
4860 GetTimeval(time, tobj);
4861 MAKE_TM_ENSURE(time, tobj, tobj->vtm.wday != VTM_WDAY_INITVAL);
4862 return INT2FIX((
int)tobj->vtm.wday);
4866 return RBOOL(time_wday(time) == INT2FIX(n)); \
4882time_sunday(
VALUE time)
4900time_monday(
VALUE time)
4918time_tuesday(
VALUE time)
4936time_wednesday(
VALUE time)
4954time_thursday(
VALUE time)
4972time_friday(
VALUE time)
4990time_saturday(
VALUE time)
5006time_yday(
VALUE time)
5010 GetTimeval(time, tobj);
5011 MAKE_TM_ENSURE(time, tobj, tobj->vtm.yday != 0);
5012 return INT2FIX(tobj->vtm.yday);
5031time_isdst(
VALUE time)
5035 GetTimeval(time, tobj);
5036 MAKE_TM(time, tobj);
5037 if (tobj->vtm.isdst == VTM_ISDST_INITVAL) {
5040 return RBOOL(tobj->vtm.isdst);
5054time_zone(
VALUE time)
5059 GetTimeval(time, tobj);
5060 MAKE_TM(time, tobj);
5062 if (TZMODE_UTC_P(tobj)) {
5065 zone = tobj->vtm.zone;
5090 GetTimeval(time, tobj);
5092 if (TZMODE_UTC_P(tobj)) {
5096 MAKE_TM(time, tobj);
5097 return tobj->vtm.utc_offset;
5117time_to_a(
VALUE time)
5121 GetTimeval(time, tobj);
5122 MAKE_TM_ENSURE(time, tobj, tobj->vtm.yday != 0);
5132 RBOOL(tobj->vtm.isdst),
5178 GetTimeval(time, tobj);
5179 MAKE_TM_ENSURE(time, tobj, tobj->vtm.yday != 0);
5182 h = rb_hash_new_with_size(11);
5184 rb_hash_aset(h, sym_year, tobj->vtm.year);
5185 rb_hash_aset(h, sym_month,
INT2FIX(tobj->vtm.mon));
5186 rb_hash_aset(h, sym_day,
INT2FIX(tobj->vtm.mday));
5187 rb_hash_aset(h, sym_yday,
INT2FIX(tobj->vtm.yday));
5188 rb_hash_aset(h, sym_wday,
INT2FIX(tobj->vtm.wday));
5189 rb_hash_aset(h, sym_hour,
INT2FIX(tobj->vtm.hour));
5190 rb_hash_aset(h, sym_min,
INT2FIX(tobj->vtm.min));
5191 rb_hash_aset(h, sym_sec,
INT2FIX(tobj->vtm.sec));
5192 rb_hash_aset(h, sym_subsec,
5193 quov(w2v(wmod(tobj->timew, WINT2FIXWV(TIME_SCALE))),
INT2FIX(TIME_SCALE)));
5194 rb_hash_aset(h, sym_dst, RBOOL(tobj->vtm.isdst));
5195 rb_hash_aset(h, sym_zone, time_zone(time));
5201 "wrong argument type %"PRIsVALUE
" (expected Array or nil)",
5211 if (sym_year == key) rb_hash_aset(h, key, tobj->vtm.year);
5212 if (sym_month == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.mon));
5213 if (sym_day == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.mday));
5214 if (sym_yday == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.yday));
5215 if (sym_wday == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.wday));
5216 if (sym_hour == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.hour));
5217 if (sym_min == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.min));
5218 if (sym_sec == key) rb_hash_aset(h, key,
INT2FIX(tobj->vtm.sec));
5219 if (sym_subsec == key) {
5220 rb_hash_aset(h, key, quov(w2v(wmod(tobj->timew, WINT2FIXWV(TIME_SCALE))),
INT2FIX(TIME_SCALE)));
5222 if (sym_dst == key) rb_hash_aset(h, key, RBOOL(tobj->vtm.isdst));
5223 if (sym_zone == key) rb_hash_aset(h, key, time_zone(time));
5229rb_strftime_alloc(
const char *format,
size_t format_len,
rb_encoding *enc,
5230 VALUE time,
struct vtm *
vtm, wideval_t timew,
int gmt)
5235 if (!timew2timespec_exact(timew, &ts))
5236 timev = w2v(rb_time_unmagnify(timew));
5239 return rb_strftime_timespec(format, format_len, enc, time,
vtm, &ts, gmt);
5242 return rb_strftime(format, format_len, enc, time,
vtm, timev, gmt);
5252 GetTimeval(time, tobj);
5253 MAKE_TM(time, tobj);
5254 str = rb_strftime_alloc(fmt,
len, enc, time, &tobj->vtm, tobj->timew, TZMODE_UTC_P(tobj));
5255 if (!str) rb_raise(rb_eArgError,
"invalid format: %s", fmt);
5277 GetTimeval(time, tobj);
5278 MAKE_TM_ENSURE(time, tobj, tobj->vtm.yday != 0);
5281 rb_raise(rb_eArgError,
"format should have ASCII compatible encoding");
5283 tmp = rb_str_tmp_frozen_acquire(format);
5284 fmt = RSTRING_PTR(tmp);
5285 len = RSTRING_LEN(tmp);
5286 enc = rb_enc_get(format);
5288 rb_warning(
"strftime called with empty format string");
5289 return rb_enc_str_new(0, 0, enc);
5292 VALUE str = rb_strftime_alloc(fmt,
len, enc, time, &tobj->vtm, tobj->timew,
5293 TZMODE_UTC_P(tobj));
5294 rb_str_tmp_frozen_release(format, tmp);
5295 if (!str) rb_raise(rb_eArgError,
"invalid format: %"PRIsVALUE, format);
5322time_xmlschema(
int argc,
VALUE *argv,
VALUE time)
5324 long fraction_digits = 0;
5327 fraction_digits =
NUM2LONG(argv[0]);
5328 if (fraction_digits < 0) {
5329 fraction_digits = 0;
5335 GetTimeval(time, tobj);
5336 MAKE_TM(time, tobj);
5338 const long size_after_year =
sizeof(
"-MM-DDTHH:MM:SS+ZH:ZM") + fraction_digits
5339 + (fraction_digits > 0);
5343# define fill_digits_long(len, prec, n) \
5344 for (int fill_it = 1, written = snprintf(ptr, len, "%0*ld", prec, n); \
5345 fill_it; ptr += written, fill_it = 0)
5348 long year =
FIX2LONG(tobj->vtm.year);
5350 int w = (year >= -9999 && year <= 9999 ? year_width : (year < 0) + (
int)
DECIMAL_SIZE_OF(year));
5352 ptr = RSTRING_PTR(str);
5353 fill_digits_long(w + 1, year_width, year) {
5354 if (year >= -9999 && year <= 9999) {
5364 str = rb_int2str(tobj->vtm.year, 10);
5369# define fill_2(c, n) (*ptr++ = c, *ptr++ = '0' + (n) / 10, *ptr++ = '0' + (n) % 10)
5370 fill_2(
'-', tobj->vtm.mon);
5371 fill_2(
'-', tobj->vtm.mday);
5372 fill_2(
'T', tobj->vtm.hour);
5373 fill_2(
':', tobj->vtm.min);
5374 fill_2(
':', tobj->vtm.sec);
5376 if (fraction_digits > 0) {
5377 VALUE subsecx = tobj->vtm.subsecx;
5381 if (fraction_digits <= TIME_SCALE_NUMDIGITS) {
5382 digits = TIME_SCALE_NUMDIGITS - (int)fraction_digits;
5385 long w = fraction_digits - TIME_SCALE_NUMDIGITS;
5392 if (digits >= 0 && fraction_digits < INT_MAX) {
5394 if (digits > 0) subsec /= (long)pow(10, digits);
5395 fill_digits_long(fraction_digits + 1, (
int)fraction_digits, subsec) {
5400 subsecx = rb_int2str(subsecx, 10);
5401 long len = RSTRING_LEN(subsecx);
5402 if (fraction_digits >
len) {
5403 memset(ptr,
'0', fraction_digits -
len);
5406 len = fraction_digits;
5408 ptr += fraction_digits;
5409 memcpy(ptr -
len, RSTRING_PTR(subsecx),
len);
5413 if (TZMODE_UTC_P(tobj)) {
5419 char sign = offset < 0 ?
'-' :
'+';
5420 if (offset < 0) offset = -offset;
5422 fill_2(sign, offset / 60);
5423 fill_2(
':', offset % 60);
5425 const char *
const start = RSTRING_PTR(str);
5430int ruby_marshal_write_long(
long x,
char *buf);
5432enum {base_dump_size = 8};
5436time_mdump(
VALUE time)
5440 char buf[base_dump_size +
sizeof(long) + 1];
5447 VALUE subsecx, nano, subnano, v, zone;
5450 const int max_year = 1900+0xffff;
5452 GetTimeval(time, tobj);
5454 gmtimew(tobj->timew, &
vtm);
5458 if (year > max_year) {
5459 year_extend =
INT2FIX(year - max_year);
5462 else if (year < 1900) {
5463 year_extend =
LONG2NUM(1900 - year);
5468 if (rb_int_positive_p(
vtm.year)) {
5469 year_extend = rb_int_minus(
vtm.year,
INT2FIX(max_year));
5473 year_extend = rb_int_minus(
INT2FIX(1900),
vtm.year);
5478 subsecx =
vtm.subsecx;
5480 nano = mulquov(subsecx,
INT2FIX(1000000000),
INT2FIX(TIME_SCALE));
5481 divmodv(nano,
INT2FIX(1), &v, &subnano);
5486 nano = addv(
LONG2FIX(nsec), subnano);
5489 TZMODE_UTC_P(tobj) << 30 |
5494 s = (
unsigned long)
vtm.min << 26 |
5498 for (i=0; i<4; i++) {
5499 buf[i] = (
unsigned char)p;
5502 for (i=4; i<8; i++) {
5503 buf[i] = (
unsigned char)s;
5507 if (!
NIL_P(year_extend)) {
5514 size_t ysize = rb_absint_size(year_extend, NULL);
5515 char *p, *
const buf_year_extend = buf + base_dump_size;
5516 if (ysize > LONG_MAX ||
5517 (i = ruby_marshal_write_long((
long)ysize, buf_year_extend)) < 0) {
5518 rb_raise(rb_eArgError,
"year too %s to marshal: %"PRIsVALUE
" UTC",
5519 (year == 1900 ?
"small" :
"big"),
vtm.year);
5521 i += base_dump_size;
5523 p = RSTRING_PTR(str);
5534 rb_ivar_set(str, id_nano_num, RRATIONAL(nano)->num);
5535 rb_ivar_set(str, id_nano_den, RRATIONAL(nano)->den);
5551 int len = (int)
sizeof(buf);
5552 buf[1] = (char)((nsec % 10) << 4);
5554 buf[0] = (char)(nsec % 10);
5556 buf[0] |= (char)((nsec % 10) << 4);
5561 if (!TZMODE_UTC_P(tobj)) {
5568 zone = tobj->vtm.zone;
5569 if (maybe_tzobj_p(zone)) {
5570 zone = rb_funcallv(zone, id_name, 0, 0);
5583 str = time_mdump(time);
5589mload_findzone(
VALUE arg)
5592 VALUE time = argp[0], zone = argp[1];
5593 return find_timezone(time, zone);
5603 if (
NIL_P(z))
return rb_fstring(zone);
5608long ruby_marshal_read_long(
const char **buf,
long len);
5622 VALUE submicro, nano_num, nano_den, offset, zone, year;
5627#define get_attr(attr, iffound) \
5628 attr = rb_attr_delete(str, id_##attr); \
5629 if (!NIL_P(attr)) { \
5633 get_attr(nano_num, {});
5634 get_attr(nano_den, {});
5635 get_attr(submicro, {});
5636 get_attr(offset, (offset =
rb_rescue(validate_utc_offset, offset, 0,
Qnil)));
5637 get_attr(zone, (zone =
rb_rescue(validate_zone_name, zone, 0,
Qnil)));
5645 buf = (
unsigned char *)RSTRING_PTR(str);
5646 if (RSTRING_LEN(str) < base_dump_size) {
5647 goto invalid_format;
5651 for (i=0; i<4; i++) {
5652 p |= (
unsigned long)buf[i]<<(8*i);
5654 for (i=4; i<8; i++) {
5655 s |= (
unsigned long)buf[i]<<(8*(i-4));
5658 if ((p & (1UL<<31)) == 0) {
5664 timew = wadd(rb_time_magnify(TIMET2WV(sec)), wmulquoll(WINT2FIXWV(usec), TIME_SCALE, 1000000));
5668 gmt = (int)((p >> 30) & 0x1);
5671 year =
INT2FIX(((
int)(p >> 14) & 0xffff) + 1900);
5673 if (RSTRING_LEN(str) > base_dump_size) {
5674 long len = RSTRING_LEN(str) - base_dump_size;
5677 const char *ybuf = (
const char *)(buf += base_dump_size);
5678 ysize = ruby_marshal_read_long(&ybuf,
len);
5679 len -= ybuf - (
const char *)buf;
5680 if (ysize < 0 || ysize >
len)
goto invalid_format;
5683 year = rb_int_minus(year, year_extend);
5686 year = rb_int_plus(year, year_extend);
5689 unsigned int mon = ((int)(p >> 10) & 0xf);
5696 vtm.mday = (int)(p >> 5) & 0x1f;
5697 vtm.hour = (int) p & 0x1f;
5698 vtm.min = (int)(s >> 26) & 0x3f;
5699 vtm.sec = (int)(s >> 20) & 0x3f;
5703 vtm.zone = str_empty;
5705 usec = (long)(s & 0xfffff);
5710 if (nano_num !=
Qnil) {
5711 VALUE nano = quov(num_exact(nano_num), num_exact(nano_den));
5714 else if (submicro !=
Qnil) {
5719 len = RSTRING_LEN(submicro);
5722 if (10 <= (digit = ptr[0] >> 4))
goto end_submicro;
5723 nsec += digit * 100;
5724 if (10 <= (digit = ptr[0] & 0xf))
goto end_submicro;
5728 if (10 <= (digit = ptr[1] >> 4))
goto end_submicro;
5734 timew = timegmw(&
vtm);
5737 GetNewTimeval(time, tobj);
5738 TZMODE_SET_LOCALTIME(tobj);
5739 tobj->vtm.tm_got = 0;
5740 time_set_timew(time, tobj, timew);
5743 TZMODE_SET_UTC(tobj);
5745 else if (!
NIL_P(offset)) {
5746 time_set_utc_offset(time, offset);
5750 zone = mload_zone(time, zone);
5751 tobj->vtm.zone = zone;
5752 zone_localtime(zone, time);
5766 VALUE time = time_s_alloc(klass);
5768 time_mload(time, str);
5793 GetTimeval(time, tobj);
5794 tm = time_s_alloc(klass);
5795 ttm = RTYPEDDATA_GET_DATA(tm);
5797 GMTIMEW(ttm->timew = tobj->timew, v);
5798 ttm->timew = wsub(ttm->timew, v->subsecx);
5801 time_set_vtm(tm, ttm, *v);
5803 ttm->vtm.tm_got = 1;
5804 TZMODE_SET_UTC(ttm);
5816tm_initialize(
int argc,
VALUE *argv,
VALUE time)
5822 time_arg(argc, argv, &
vtm);
5824 struct time_object *tobj = RTYPEDDATA_GET_DATA(time);
5825 TZMODE_SET_UTC(tobj);
5826 time_set_timew(time, tobj, t);
5827 time_set_vtm(time, tobj,
vtm);
5843 struct time_object *tobj = RTYPEDDATA_GET_DATA(dup);
5851 return time_add0(
rb_obj_class(tm), get_timeval(tm), tm, offset, +1);
5857 return time_add0(
rb_obj_class(tm), get_timeval(tm), tm, offset, -1);
5861Init_tm(
VALUE outer,
const char *name)
5907rb_time_zone_abbreviation(
VALUE zone,
VALUE time)
5909 VALUE tm, abbr, strftime_args[2];
5912 if (!
NIL_P(abbr))
return abbr;
5914 tm = tm_from_time(rb_cTimeTM, time);
5916 if (!UNDEF_P(abbr)) {
5919#ifdef SUPPORT_TZINFO_ZONE_ABBREVIATION
5921 if (!UNDEF_P(abbr)) {
5922 abbr = rb_funcallv(abbr, rb_intern(
"abbreviation"), 0, 0);
5926 strftime_args[0] = rb_fstring_lit(
"%Z");
5927 strftime_args[1] = tm;
5929 if (!UNDEF_P(abbr)) {
5932 abbr = rb_check_funcall_default(zone, idName, 0, 0,
Qnil);
5942 ruby_reset_timezone(getenv(
"TZ"));
5978 str_utc = rb_fstring_lit(
"UTC");
5979 rb_vm_register_global_object(str_utc);
5980 str_empty = rb_fstring_lit(
"");
5981 rb_vm_register_global_object(str_empty);
6065 if (debug_find_time_numguess) {
6067 find_time_numguess_getter, 0);
6070 rb_cTimeTM = Init_tm(
rb_cTime,
"tm");
6073#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_define_class(const char *name, VALUE super)
Defines a top-level class.
VALUE rb_singleton_class(VALUE obj)
Finds or creates the singleton class of the passed object.
VALUE rb_define_class_under(VALUE outer, const char *name, VALUE super)
Defines a class under the namespace of outer.
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.
int rb_typeddata_is_kind_of(VALUE obj, const rb_data_type_t *data_type)
Checks if the given object is of given kind.
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_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.
static bool rb_enc_str_asciicompat_p(VALUE str)
Queries if the passed string is in an ASCII-compatible encoding.
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
Defines RBIMPL_HAS_BUILTIN.
#define INTEGER_PACK_NATIVE_BYTE_ORDER
Means either INTEGER_PACK_MSBYTE_FIRST or INTEGER_PACK_LSBYTE_FIRST, depending on the host processor'...
#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 MEMCPY(p1, p2, type, n)
Handy macro to call memcpy.
#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.