2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
time.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Tue Dec 28 14:31:59 JST 1993
|
|
|
|
|
* encoding.c: provide basic features for M17N.
* parse.y: encoding aware parsing.
* parse.y (pragma_encoding): encoding specification pragma.
* parse.y (rb_intern3): encoding specified symbols.
* string.c (rb_str_length): length based on characters.
for older behavior, bytesize method added.
* string.c (rb_str_index_m): index based on characters. rindex as
well.
* string.c (succ_char): encoding aware succeeding string.
* string.c (rb_str_reverse): reverse based on characters.
* string.c (rb_str_inspect): encoding aware string description.
* string.c (rb_str_upcase_bang): encoding aware case conversion.
downcase, capitalize, swapcase as well.
* string.c (rb_str_tr_bang): tr based on characters. delete,
squeeze, tr_s, count as well.
* string.c (rb_str_split_m): split based on characters.
* string.c (rb_str_each_line): encoding aware each_line.
* string.c (rb_str_each_char): added. iteration based on
characters.
* string.c (rb_str_strip_bang): encoding aware whitespace
stripping. lstrip, rstrip as well.
* string.c (rb_str_justify): encoding aware justifying (ljust,
rjust, center).
* string.c (str_encoding): get encoding attribute from a string.
* re.c (rb_reg_initialize): encoding aware regular expression
* sprintf.c (rb_str_format): formatting (i.e. length count) based
on characters.
* io.c (rb_io_getc): getc to return one-character string.
for older behavior, getbyte method added.
* ext/stringio/stringio.c (strio_getc): ditto.
* io.c (rb_io_ungetc): allow pushing arbitrary string at the
current reading point.
* ext/stringio/stringio.c (strio_ungetc): ditto.
* ext/strscan/strscan.c: encoding support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-08-25 07:29:39 +04:00
|
|
|
Copyright (C) 1993-2007 Yukihiro Matsumoto
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-01 13:42:38 +04:00
|
|
|
**********************************************************************/
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2016-04-27 19:15:21 +03:00
|
|
|
#define _DEFAULT_SOURCE
|
2016-03-18 22:06:32 +03:00
|
|
|
#define _BSD_SOURCE
|
2018-01-09 09:24:11 +03:00
|
|
|
#include "ruby/encoding.h"
|
2014-11-15 14:49:06 +03:00
|
|
|
#include "internal.h"
|
1998-01-16 15:13:05 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
2008-04-21 05:07:00 +04:00
|
|
|
#include <errno.h>
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2002-09-17 17:52:45 +04:00
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
#include <float.h>
|
2001-12-21 12:23:28 +03:00
|
|
|
#include <math.h>
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2011-07-11 18:29:45 +04:00
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
#include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
2013-03-16 09:06:47 +04:00
|
|
|
#if defined(HAVE_SYS_TIME_H)
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
#include "timev.h"
|
2017-04-10 21:16:58 +03:00
|
|
|
#include "id.h"
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2017-04-10 21:16:58 +03:00
|
|
|
static ID id_divmod, id_submicro, id_nano_num, id_nano_den, id_offset, id_zone;
|
|
|
|
static ID id_quo, id_div;
|
2017-09-25 09:20:10 +03:00
|
|
|
static ID id_nanosecond, id_microsecond, id_millisecond, id_nsec, id_usec;
|
2018-10-08 05:35:31 +03:00
|
|
|
static ID id_local_to_utc, id_utc_to_local;
|
|
|
|
static ID id_year, id_mon, id_mday, id_hour, id_min, id_sec, id_isdst, id_name;
|
|
|
|
|
|
|
|
#define TM_IS_TIME 1
|
2009-03-10 22:47:46 +03:00
|
|
|
|
2010-03-30 17:07:48 +04:00
|
|
|
#define NDIV(x,y) (-(-((x)+1)/(y))-1)
|
|
|
|
#define NMOD(x,y) ((y)-(-((x)+1)%(y))-1)
|
|
|
|
#define DIV(n,d) ((n)<0 ? NDIV((n),(d)) : (n)/(d))
|
2010-06-09 17:13:44 +04:00
|
|
|
#define MOD(n,d) ((n)<0 ? NMOD((n),(d)) : (n)%(d))
|
2014-02-24 07:38:14 +04:00
|
|
|
#define VTM_WDAY_INITVAL (7)
|
|
|
|
#define VTM_ISDST_INITVAL (3)
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-29 14:47:00 +04:00
|
|
|
static int
|
|
|
|
eq(VALUE x, VALUE y)
|
|
|
|
{
|
|
|
|
if (FIXNUM_P(x) && FIXNUM_P(y)) {
|
|
|
|
return x == y;
|
|
|
|
}
|
2017-04-10 21:16:58 +03:00
|
|
|
return RTEST(rb_funcall(x, idEq, 1, y));
|
2010-03-29 14:47:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-04-04 17:20:29 +04:00
|
|
|
cmp(VALUE x, VALUE y)
|
2010-03-29 14:47:00 +04:00
|
|
|
{
|
|
|
|
if (FIXNUM_P(x) && FIXNUM_P(y)) {
|
2010-04-04 17:20:29 +04:00
|
|
|
if ((long)x < (long)y)
|
|
|
|
return -1;
|
|
|
|
if ((long)x > (long)y)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
2010-03-29 14:47:00 +04:00
|
|
|
}
|
2017-05-21 06:36:30 +03:00
|
|
|
if (RB_TYPE_P(x, T_BIGNUM)) return FIX2INT(rb_big_cmp(x, y));
|
2017-04-10 21:16:58 +03:00
|
|
|
return rb_cmpint(rb_funcall(x, idCmp, 1, y), x, y);
|
2010-03-29 14:47:00 +04:00
|
|
|
}
|
|
|
|
|
2010-04-04 17:20:29 +04:00
|
|
|
#define ne(x,y) (!eq((x),(y)))
|
|
|
|
#define lt(x,y) (cmp((x),(y)) < 0)
|
|
|
|
#define gt(x,y) (cmp((x),(y)) > 0)
|
|
|
|
#define le(x,y) (cmp((x),(y)) <= 0)
|
|
|
|
#define ge(x,y) (cmp((x),(y)) >= 0)
|
2009-08-30 05:26:56 +04:00
|
|
|
|
|
|
|
static VALUE
|
2017-04-11 05:40:14 +03:00
|
|
|
addv(VALUE x, VALUE y)
|
2009-08-30 05:26:56 +04:00
|
|
|
{
|
2009-08-30 08:01:42 +04:00
|
|
|
if (FIXNUM_P(x) && FIXNUM_P(y)) {
|
2016-03-20 12:47:20 +03:00
|
|
|
return LONG2NUM(FIX2LONG(x) + FIX2LONG(y));
|
2009-08-30 05:26:56 +04:00
|
|
|
}
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(x, T_BIGNUM)) return rb_big_plus(x, y);
|
2009-08-30 08:01:42 +04:00
|
|
|
return rb_funcall(x, '+', 1, y);
|
2009-08-30 05:26:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2017-04-11 05:40:14 +03:00
|
|
|
subv(VALUE x, VALUE y)
|
2009-08-30 05:26:56 +04:00
|
|
|
{
|
2009-08-30 08:01:42 +04:00
|
|
|
if (FIXNUM_P(x) && FIXNUM_P(y)) {
|
2016-03-20 12:47:20 +03:00
|
|
|
return LONG2NUM(FIX2LONG(x) - FIX2LONG(y));
|
2009-08-30 05:26:56 +04:00
|
|
|
}
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(x, T_BIGNUM)) return rb_big_minus(x, y);
|
2009-08-30 08:01:42 +04:00
|
|
|
return rb_funcall(x, '-', 1, y);
|
2009-08-30 05:26:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2017-04-11 05:40:14 +03:00
|
|
|
mulv(VALUE x, VALUE y)
|
2009-08-30 05:26:56 +04:00
|
|
|
{
|
2009-08-30 08:01:42 +04:00
|
|
|
if (FIXNUM_P(x) && FIXNUM_P(y)) {
|
2016-03-20 14:26:17 +03:00
|
|
|
return rb_fix_mul_fix(x, y);
|
2009-08-30 05:26:56 +04:00
|
|
|
}
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(x, T_BIGNUM))
|
2010-03-28 01:14:23 +03:00
|
|
|
return rb_big_mul(x, y);
|
2009-08-30 08:01:42 +04:00
|
|
|
return rb_funcall(x, '*', 1, y);
|
2009-08-30 05:26:56 +04:00
|
|
|
}
|
|
|
|
|
2017-04-10 21:08:16 +03:00
|
|
|
static VALUE
|
2017-04-11 05:40:14 +03:00
|
|
|
divv(VALUE x, VALUE y)
|
2017-04-10 21:08:16 +03:00
|
|
|
{
|
|
|
|
if (FIXNUM_P(x) && FIXNUM_P(y)) {
|
|
|
|
return rb_fix_div_fix(x, y);
|
|
|
|
}
|
|
|
|
if (RB_TYPE_P(x, T_BIGNUM))
|
|
|
|
return rb_big_div(x, y);
|
|
|
|
return rb_funcall(x, id_div, 1, y);
|
|
|
|
}
|
2009-08-30 05:26:56 +04:00
|
|
|
|
|
|
|
static VALUE
|
2017-04-11 05:40:14 +03:00
|
|
|
modv(VALUE x, VALUE y)
|
2009-08-30 05:26:56 +04:00
|
|
|
{
|
2016-03-21 16:17:45 +03:00
|
|
|
if (FIXNUM_P(y)) {
|
|
|
|
if (FIX2LONG(y) == 0) rb_num_zerodiv();
|
2016-03-21 16:36:03 +03:00
|
|
|
if (FIXNUM_P(x)) return rb_fix_mod_fix(x, y);
|
2009-08-30 05:26:56 +04:00
|
|
|
}
|
2016-03-21 16:17:45 +03:00
|
|
|
if (RB_TYPE_P(x, T_BIGNUM)) return rb_big_modulo(x, y);
|
|
|
|
return rb_funcall(x, '%', 1, y);
|
2009-08-30 05:26:56 +04:00
|
|
|
}
|
|
|
|
|
2017-04-11 05:40:14 +03:00
|
|
|
#define neg(x) (subv(INT2FIX(0), (x)))
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2009-07-02 00:17:00 +04:00
|
|
|
static VALUE
|
2017-04-11 05:40:14 +03:00
|
|
|
quov(VALUE x, VALUE y)
|
2009-07-02 00:17:00 +04:00
|
|
|
{
|
|
|
|
VALUE ret;
|
2010-03-27 17:18:08 +03:00
|
|
|
if (FIXNUM_P(x) && FIXNUM_P(y)) {
|
2010-04-04 17:20:29 +04:00
|
|
|
long a, b, c;
|
|
|
|
a = FIX2LONG(x);
|
|
|
|
b = FIX2LONG(y);
|
|
|
|
if (b == 0) rb_num_zerodiv();
|
2016-03-21 16:31:30 +03:00
|
|
|
if (a == FIXNUM_MIN && b == -1) return LONG2NUM(-a);
|
2010-04-04 17:20:29 +04:00
|
|
|
c = a / b;
|
2016-03-21 16:21:12 +03:00
|
|
|
if (c * b == a) {
|
2016-03-21 16:17:45 +03:00
|
|
|
return LONG2FIX(c);
|
2010-04-04 17:20:29 +04:00
|
|
|
}
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
2017-05-27 08:41:00 +03:00
|
|
|
ret = rb_numeric_quo(x, y);
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(ret, T_RATIONAL) &&
|
2010-02-03 18:29:15 +03:00
|
|
|
RRATIONAL(ret)->den == INT2FIX(1)) {
|
|
|
|
ret = RRATIONAL(ret)->num;
|
2009-07-02 00:17:00 +04:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-04-11 05:40:14 +03:00
|
|
|
#define mulquov(x,y,z) (((y) == (z)) ? (x) : quov(mulv((x),(y)),(z)))
|
2009-08-29 23:06:29 +04:00
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
static void
|
|
|
|
divmodv(VALUE n, VALUE d, VALUE *q, VALUE *r)
|
|
|
|
{
|
|
|
|
VALUE tmp, ary;
|
2016-03-21 21:19:15 +03:00
|
|
|
if (FIXNUM_P(d)) {
|
|
|
|
if (FIX2LONG(d) == 0) rb_num_zerodiv();
|
2016-03-22 04:24:55 +03:00
|
|
|
if (FIXNUM_P(n)) {
|
|
|
|
rb_fix_divmod_fix(n, d, q, r);
|
|
|
|
return;
|
|
|
|
}
|
2016-03-21 21:19:15 +03:00
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
tmp = rb_funcall(n, id_divmod, 1, d);
|
|
|
|
ary = rb_check_array_type(tmp);
|
|
|
|
if (NIL_P(ary)) {
|
2015-09-28 05:40:46 +03:00
|
|
|
rb_raise(rb_eTypeError, "unexpected divmod result: into %"PRIsVALUE,
|
|
|
|
rb_obj_class(tmp));
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
*q = rb_ary_entry(ary, 0);
|
|
|
|
*r = rb_ary_entry(ary, 1);
|
|
|
|
}
|
|
|
|
|
2010-03-31 16:34:31 +04:00
|
|
|
#if SIZEOF_LONG == 8
|
|
|
|
# define INT64toNUM(x) LONG2NUM(x)
|
|
|
|
#elif defined(HAVE_LONG_LONG) && SIZEOF_LONG_LONG == 8
|
|
|
|
# define INT64toNUM(x) LL2NUM(x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(HAVE_UINT64_T) && SIZEOF_LONG*2 <= SIZEOF_UINT64_T
|
|
|
|
typedef uint64_t uwideint_t;
|
|
|
|
typedef int64_t wideint_t;
|
|
|
|
typedef uint64_t WIDEVALUE;
|
|
|
|
typedef int64_t SIGNED_WIDEVALUE;
|
|
|
|
# define WIDEVALUE_IS_WIDER 1
|
2010-03-31 18:35:13 +04:00
|
|
|
# define UWIDEINT_MAX UINT64_MAX
|
|
|
|
# define WIDEINT_MAX INT64_MAX
|
|
|
|
# define WIDEINT_MIN INT64_MIN
|
2010-03-31 16:34:31 +04:00
|
|
|
# define FIXWINT_P(tv) ((tv) & 1)
|
|
|
|
# define FIXWVtoINT64(tv) RSHIFT((SIGNED_WIDEVALUE)(tv), 1)
|
|
|
|
# define INT64toFIXWV(wi) ((WIDEVALUE)((SIGNED_WIDEVALUE)(wi) << 1 | FIXNUM_FLAG))
|
|
|
|
# define FIXWV_MAX (((int64_t)1 << 62) - 1)
|
|
|
|
# define FIXWV_MIN (-((int64_t)1 << 62))
|
|
|
|
# define FIXWVABLE(wi) (POSFIXWVABLE(wi) && NEGFIXWVABLE(wi))
|
|
|
|
# define WINT2FIXWV(i) WIDEVAL_WRAP(INT64toFIXWV(i))
|
|
|
|
# define FIXWV2WINT(w) FIXWVtoINT64(WIDEVAL_GET(w))
|
|
|
|
#else
|
|
|
|
typedef unsigned long uwideint_t;
|
|
|
|
typedef long wideint_t;
|
|
|
|
typedef VALUE WIDEVALUE;
|
|
|
|
typedef SIGNED_VALUE SIGNED_WIDEVALUE;
|
|
|
|
# define WIDEVALUE_IS_WIDER 0
|
2010-03-31 18:35:13 +04:00
|
|
|
# define UWIDEINT_MAX ULONG_MAX
|
|
|
|
# define WIDEINT_MAX LONG_MAX
|
|
|
|
# define WIDEINT_MIN LONG_MIN
|
2010-03-31 16:34:31 +04:00
|
|
|
# define FIXWINT_P(v) FIXNUM_P(v)
|
2010-03-31 18:35:13 +04:00
|
|
|
# define FIXWV_MAX FIXNUM_MAX
|
|
|
|
# define FIXWV_MIN FIXNUM_MIN
|
2010-03-31 16:34:31 +04:00
|
|
|
# define FIXWVABLE(i) FIXABLE(i)
|
|
|
|
# define WINT2FIXWV(i) WIDEVAL_WRAP(LONG2FIX(i))
|
|
|
|
# define FIXWV2WINT(w) FIX2LONG(WIDEVAL_GET(w))
|
|
|
|
#endif
|
|
|
|
|
2010-03-31 18:35:13 +04:00
|
|
|
#define POSFIXWVABLE(wi) ((wi) < FIXWV_MAX+1)
|
|
|
|
#define NEGFIXWVABLE(wi) ((wi) >= FIXWV_MIN)
|
2010-03-31 16:34:31 +04:00
|
|
|
#define FIXWV_P(w) FIXWINT_P(WIDEVAL_GET(w))
|
2016-03-21 21:57:30 +03:00
|
|
|
#define MUL_OVERFLOW_FIXWV_P(a, b) MUL_OVERFLOW_SIGNED_INTEGER_P(a, b, FIXWV_MIN, FIXWV_MAX)
|
2010-03-31 16:34:31 +04:00
|
|
|
|
|
|
|
/* #define STRUCT_WIDEVAL */
|
|
|
|
#ifdef STRUCT_WIDEVAL
|
|
|
|
/* for type checking */
|
|
|
|
typedef struct {
|
|
|
|
WIDEVALUE value;
|
|
|
|
} wideval_t;
|
|
|
|
static inline wideval_t WIDEVAL_WRAP(WIDEVALUE v) { wideval_t w = { v }; return w; }
|
|
|
|
# define WIDEVAL_GET(w) ((w).value)
|
|
|
|
#else
|
|
|
|
typedef WIDEVALUE wideval_t;
|
|
|
|
# define WIDEVAL_WRAP(v) (v)
|
|
|
|
# define WIDEVAL_GET(w) (w)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if WIDEVALUE_IS_WIDER
|
|
|
|
static inline wideval_t
|
|
|
|
wint2wv(wideint_t wi)
|
|
|
|
{
|
|
|
|
if (FIXWVABLE(wi))
|
|
|
|
return WINT2FIXWV(wi);
|
|
|
|
else
|
|
|
|
return WIDEVAL_WRAP(INT64toNUM(wi));
|
|
|
|
}
|
|
|
|
# define WINT2WV(wi) wint2wv(wi)
|
|
|
|
#else
|
|
|
|
# define WINT2WV(wi) WIDEVAL_WRAP(LONG2NUM(wi))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline VALUE
|
|
|
|
w2v(wideval_t w)
|
|
|
|
{
|
|
|
|
#if WIDEVALUE_IS_WIDER
|
|
|
|
if (FIXWV_P(w))
|
|
|
|
return INT64toNUM(FIXWV2WINT(w));
|
|
|
|
return (VALUE)WIDEVAL_GET(w);
|
|
|
|
#else
|
|
|
|
return WIDEVAL_GET(w);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if WIDEVALUE_IS_WIDER
|
|
|
|
static wideval_t
|
|
|
|
v2w_bignum(VALUE v)
|
|
|
|
{
|
2013-06-08 16:48:39 +04:00
|
|
|
int sign;
|
|
|
|
uwideint_t u;
|
2013-06-11 18:40:16 +04:00
|
|
|
sign = rb_integer_pack(v, &u, 1, sizeof(u), 0,
|
|
|
|
INTEGER_PACK_NATIVE_BYTE_ORDER);
|
2013-06-08 16:48:39 +04:00
|
|
|
if (sign == 0)
|
2010-03-31 16:34:31 +04:00
|
|
|
return WINT2FIXWV(0);
|
2013-06-08 16:48:39 +04:00
|
|
|
else if (sign == -1) {
|
|
|
|
if (u <= -FIXWV_MIN)
|
|
|
|
return WINT2FIXWV(-(wideint_t)u);
|
|
|
|
}
|
|
|
|
else if (sign == +1) {
|
|
|
|
if (u <= FIXWV_MAX)
|
|
|
|
return WINT2FIXWV((wideint_t)u);
|
2010-03-31 16:34:31 +04:00
|
|
|
}
|
2013-06-08 16:48:39 +04:00
|
|
|
return WIDEVAL_WRAP(v);
|
2010-03-31 16:34:31 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline wideval_t
|
|
|
|
v2w(VALUE v)
|
|
|
|
{
|
2013-10-30 07:22:23 +04:00
|
|
|
if (RB_TYPE_P(v, T_RATIONAL)) {
|
|
|
|
if (RRATIONAL(v)->den != LONG2FIX(1))
|
|
|
|
return v;
|
|
|
|
v = RRATIONAL(v)->num;
|
|
|
|
}
|
2010-03-31 16:34:31 +04:00
|
|
|
#if WIDEVALUE_IS_WIDER
|
|
|
|
if (FIXNUM_P(v)) {
|
|
|
|
return WIDEVAL_WRAP((WIDEVALUE)(SIGNED_WIDEVALUE)(long)v);
|
|
|
|
}
|
2011-09-29 15:07:45 +04:00
|
|
|
else if (RB_TYPE_P(v, T_BIGNUM) &&
|
2013-06-08 17:31:35 +04:00
|
|
|
rb_absint_size(v, NULL) <= sizeof(WIDEVALUE)) {
|
2010-03-31 16:34:31 +04:00
|
|
|
return v2w_bignum(v);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return WIDEVAL_WRAP(v);
|
|
|
|
}
|
|
|
|
|
2010-04-04 17:20:29 +04:00
|
|
|
static int
|
2010-03-28 04:54:29 +04:00
|
|
|
weq(wideval_t wx, wideval_t wy)
|
2010-03-28 03:24:20 +04:00
|
|
|
{
|
2010-03-29 14:47:00 +04:00
|
|
|
#if WIDEVALUE_IS_WIDER
|
2010-03-30 16:58:34 +04:00
|
|
|
if (FIXWV_P(wx) && FIXWV_P(wy)) {
|
2010-03-29 14:47:00 +04:00
|
|
|
return WIDEVAL_GET(wx) == WIDEVAL_GET(wy);
|
2010-03-28 03:24:20 +04:00
|
|
|
}
|
2017-04-10 21:16:58 +03:00
|
|
|
return RTEST(rb_funcall(w2v(wx), idEq, 1, w2v(wy)));
|
2010-03-29 14:47:00 +04:00
|
|
|
#else
|
|
|
|
return eq(WIDEVAL_GET(wx), WIDEVAL_GET(wy));
|
|
|
|
#endif
|
2010-03-28 03:24:20 +04:00
|
|
|
}
|
|
|
|
|
2010-04-04 17:20:29 +04:00
|
|
|
static int
|
|
|
|
wcmp(wideval_t wx, wideval_t wy)
|
2010-03-28 03:24:20 +04:00
|
|
|
{
|
2010-04-04 17:20:29 +04:00
|
|
|
VALUE x, y;
|
2010-03-29 14:47:00 +04:00
|
|
|
#if WIDEVALUE_IS_WIDER
|
2010-03-30 16:58:34 +04:00
|
|
|
if (FIXWV_P(wx) && FIXWV_P(wy)) {
|
2010-04-04 17:20:29 +04:00
|
|
|
wideint_t a, b;
|
|
|
|
a = FIXWV2WINT(wx);
|
|
|
|
b = FIXWV2WINT(wy);
|
|
|
|
if (a < b)
|
|
|
|
return -1;
|
|
|
|
if (a > b)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
2010-03-28 03:24:20 +04:00
|
|
|
}
|
|
|
|
#endif
|
2010-04-04 17:20:29 +04:00
|
|
|
x = w2v(wx);
|
|
|
|
y = w2v(wy);
|
2017-05-21 06:36:30 +03:00
|
|
|
return cmp(x, y);
|
2010-03-28 03:24:20 +04:00
|
|
|
}
|
|
|
|
|
2010-04-04 17:20:29 +04:00
|
|
|
#define wne(x,y) (!weq((x),(y)))
|
|
|
|
#define wlt(x,y) (wcmp((x),(y)) < 0)
|
|
|
|
#define wgt(x,y) (wcmp((x),(y)) > 0)
|
|
|
|
#define wle(x,y) (wcmp((x),(y)) <= 0)
|
|
|
|
#define wge(x,y) (wcmp((x),(y)) >= 0)
|
2010-03-27 17:18:08 +03:00
|
|
|
|
2010-03-28 04:54:29 +04:00
|
|
|
static wideval_t
|
|
|
|
wadd(wideval_t wx, wideval_t wy)
|
2010-03-27 17:18:08 +03:00
|
|
|
{
|
2010-03-29 14:47:00 +04:00
|
|
|
#if WIDEVALUE_IS_WIDER
|
2010-03-30 16:58:34 +04:00
|
|
|
if (FIXWV_P(wx) && FIXWV_P(wy)) {
|
|
|
|
wideint_t r = FIXWV2WINT(wx) + FIXWV2WINT(wy);
|
2010-03-30 17:25:57 +04:00
|
|
|
return WINT2WV(r);
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
|
|
|
#endif
|
2017-05-21 06:36:31 +03:00
|
|
|
return v2w(addv(w2v(wx), w2v(wy)));
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
|
|
|
|
2010-03-28 04:54:29 +04:00
|
|
|
static wideval_t
|
|
|
|
wsub(wideval_t wx, wideval_t wy)
|
2010-03-27 17:18:08 +03:00
|
|
|
{
|
2010-03-29 14:47:00 +04:00
|
|
|
#if WIDEVALUE_IS_WIDER
|
2010-03-30 16:58:34 +04:00
|
|
|
if (FIXWV_P(wx) && FIXWV_P(wy)) {
|
|
|
|
wideint_t r = FIXWV2WINT(wx) - FIXWV2WINT(wy);
|
2010-03-30 17:25:57 +04:00
|
|
|
return WINT2WV(r);
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
|
|
|
#endif
|
2017-05-21 06:36:31 +03:00
|
|
|
return v2w(subv(w2v(wx), w2v(wy)));
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
|
|
|
|
2010-03-28 04:54:29 +04:00
|
|
|
static wideval_t
|
|
|
|
wmul(wideval_t wx, wideval_t wy)
|
2010-03-27 17:18:08 +03:00
|
|
|
{
|
2010-03-29 14:47:00 +04:00
|
|
|
#if WIDEVALUE_IS_WIDER
|
2010-03-30 16:58:34 +04:00
|
|
|
if (FIXWV_P(wx) && FIXWV_P(wy)) {
|
2016-03-22 05:41:24 +03:00
|
|
|
if (!MUL_OVERFLOW_FIXWV_P(FIXWV2WINT(wx), FIXWV2WINT(wy)))
|
2016-03-21 21:57:30 +03:00
|
|
|
return WINT2WV(FIXWV2WINT(wx) * FIXWV2WINT(wy));
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
|
|
|
#endif
|
2017-04-11 05:40:14 +03:00
|
|
|
return v2w(mulv(w2v(wx), w2v(wy)));
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
|
|
|
|
2010-03-28 04:54:29 +04:00
|
|
|
static wideval_t
|
|
|
|
wquo(wideval_t wx, wideval_t wy)
|
2010-03-27 17:18:08 +03:00
|
|
|
{
|
2010-03-29 14:47:00 +04:00
|
|
|
#if WIDEVALUE_IS_WIDER
|
2010-03-30 16:58:34 +04:00
|
|
|
if (FIXWV_P(wx) && FIXWV_P(wy)) {
|
|
|
|
wideint_t a, b, c;
|
|
|
|
a = FIXWV2WINT(wx);
|
|
|
|
b = FIXWV2WINT(wy);
|
2010-03-27 17:18:08 +03:00
|
|
|
if (b == 0) rb_num_zerodiv();
|
|
|
|
c = a / b;
|
|
|
|
if (c * b == a) {
|
2010-03-30 16:58:34 +04:00
|
|
|
return WINT2WV(c);
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2017-04-11 05:40:14 +03:00
|
|
|
return v2w(quov(w2v(wx), w2v(wy)));
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
|
|
|
|
2010-03-28 04:54:29 +04:00
|
|
|
#define wmulquo(x,y,z) ((WIDEVAL_GET(y) == WIDEVAL_GET(z)) ? (x) : wquo(wmul((x),(y)),(z)))
|
2010-03-30 17:25:57 +04:00
|
|
|
#define wmulquoll(x,y,z) (((y) == (z)) ? (x) : wquo(wmul((x),WINT2WV(y)),WINT2WV(z)))
|
2010-03-27 17:18:08 +03:00
|
|
|
|
2010-03-29 14:47:00 +04:00
|
|
|
#if WIDEVALUE_IS_WIDER
|
2016-03-21 21:19:15 +03:00
|
|
|
static int
|
|
|
|
wdivmod0(wideval_t wn, wideval_t wd, wideval_t *wq, wideval_t *wr)
|
|
|
|
{
|
2010-03-30 16:58:34 +04:00
|
|
|
if (FIXWV_P(wn) && FIXWV_P(wd)) {
|
|
|
|
wideint_t n, d, q, r;
|
|
|
|
d = FIXWV2WINT(wd);
|
2010-03-27 17:18:08 +03:00
|
|
|
if (d == 0) rb_num_zerodiv();
|
|
|
|
if (d == 1) {
|
|
|
|
*wq = wn;
|
2010-03-30 16:58:34 +04:00
|
|
|
*wr = WINT2FIXWV(0);
|
2016-03-21 21:19:15 +03:00
|
|
|
return 1;
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
|
|
|
if (d == -1) {
|
2010-03-30 16:58:34 +04:00
|
|
|
wideint_t xneg = -FIXWV2WINT(wn);
|
|
|
|
*wq = WINT2WV(xneg);
|
|
|
|
*wr = WINT2FIXWV(0);
|
2016-03-21 21:19:15 +03:00
|
|
|
return 1;
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
2010-03-30 16:58:34 +04:00
|
|
|
n = FIXWV2WINT(wn);
|
2010-03-27 17:18:08 +03:00
|
|
|
if (n == 0) {
|
2010-03-30 16:58:34 +04:00
|
|
|
*wq = WINT2FIXWV(0);
|
|
|
|
*wr = WINT2FIXWV(0);
|
2016-03-21 21:19:15 +03:00
|
|
|
return 1;
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
2016-03-21 21:19:15 +03:00
|
|
|
q = n / d;
|
|
|
|
r = n % d;
|
|
|
|
if (d > 0 ? r < 0 : r > 0) {
|
|
|
|
q -= 1;
|
|
|
|
r += d;
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
2010-03-30 16:58:34 +04:00
|
|
|
*wq = WINT2FIXWV(q);
|
|
|
|
*wr = WINT2FIXWV(r);
|
2016-03-21 21:19:15 +03:00
|
|
|
return 1;
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
2016-03-21 21:19:15 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2010-03-27 17:18:08 +03:00
|
|
|
#endif
|
2016-03-21 21:19:15 +03:00
|
|
|
|
|
|
|
static void
|
|
|
|
wdivmod(wideval_t wn, wideval_t wd, wideval_t *wq, wideval_t *wr)
|
|
|
|
{
|
|
|
|
VALUE vq, vr;
|
|
|
|
#if WIDEVALUE_IS_WIDER
|
|
|
|
if (wdivmod0(wn, wd, wq, wr)) return;
|
|
|
|
#endif
|
|
|
|
divmodv(w2v(wn), w2v(wd), &vq, &vr);
|
|
|
|
*wq = v2w(vq);
|
|
|
|
*wr = v2w(vr);
|
2010-03-27 17:18:08 +03:00
|
|
|
}
|
|
|
|
|
2010-03-31 16:34:31 +04:00
|
|
|
static void
|
|
|
|
wmuldivmod(wideval_t wx, wideval_t wy, wideval_t wz, wideval_t *wq, wideval_t *wr)
|
|
|
|
{
|
|
|
|
if (WIDEVAL_GET(wy) == WIDEVAL_GET(wz)) {
|
|
|
|
*wq = wx;
|
|
|
|
*wr = WINT2FIXWV(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wdivmod(wmul(wx,wy), wz, wq, wr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static wideval_t
|
|
|
|
wdiv(wideval_t wx, wideval_t wy)
|
|
|
|
{
|
2016-03-21 21:19:15 +03:00
|
|
|
#if WIDEVALUE_IS_WIDER
|
2016-03-22 04:37:01 +03:00
|
|
|
wideval_t q, dmy;
|
|
|
|
if (wdivmod0(wx, wy, &q, &dmy)) return q;
|
2016-03-21 21:19:15 +03:00
|
|
|
#endif
|
2017-04-11 05:40:14 +03:00
|
|
|
return v2w(divv(w2v(wx), w2v(wy)));
|
2010-03-31 16:34:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static wideval_t
|
|
|
|
wmod(wideval_t wx, wideval_t wy)
|
|
|
|
{
|
2016-03-21 21:19:15 +03:00
|
|
|
#if WIDEVALUE_IS_WIDER
|
2016-03-22 04:37:01 +03:00
|
|
|
wideval_t r, dmy;
|
|
|
|
if (wdivmod0(wx, wy, &dmy, &r)) return r;
|
2016-03-21 21:19:15 +03:00
|
|
|
#endif
|
2017-04-11 05:40:14 +03:00
|
|
|
return v2w(modv(w2v(wx), w2v(wy)));
|
2010-03-31 16:34:31 +04:00
|
|
|
}
|
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
static VALUE
|
|
|
|
num_exact(VALUE v)
|
|
|
|
{
|
2010-06-22 18:13:09 +04:00
|
|
|
VALUE tmp;
|
|
|
|
|
2016-12-21 15:06:40 +03:00
|
|
|
if (NIL_P(v)) {
|
|
|
|
rb_raise(rb_eTypeError, "can't convert nil into an exact number");
|
|
|
|
}
|
|
|
|
else if (RB_INTEGER_TYPE_P(v)) {
|
2010-06-22 18:13:09 +04:00
|
|
|
return v;
|
2016-12-21 15:06:40 +03:00
|
|
|
}
|
|
|
|
else if (RB_TYPE_P(v, T_RATIONAL)) {
|
|
|
|
goto rational;
|
|
|
|
}
|
|
|
|
else if (RB_TYPE_P(v, T_STRING)) {
|
2009-04-21 18:56:59 +04:00
|
|
|
goto typeerror;
|
2016-12-21 15:06:40 +03:00
|
|
|
}
|
|
|
|
else {
|
2018-01-22 06:04:26 +03:00
|
|
|
if ((tmp = rb_check_funcall(v, idTo_r, 0, NULL)) != Qundef) {
|
2013-03-27 15:37:59 +04:00
|
|
|
/* test to_int method availability to reject non-Numeric
|
|
|
|
* objects such as String, Time, etc which have to_r method. */
|
2018-01-22 06:04:26 +03:00
|
|
|
if (!rb_respond_to(v, idTo_int)) goto typeerror;
|
2010-06-22 18:13:09 +04:00
|
|
|
}
|
2016-12-21 15:06:40 +03:00
|
|
|
else if (!NIL_P(tmp = rb_check_to_int(v))) {
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
goto typeerror;
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
2010-06-22 18:13:09 +04:00
|
|
|
}
|
|
|
|
|
2016-12-21 15:06:40 +03:00
|
|
|
if (RB_INTEGER_TYPE_P(tmp)) {
|
|
|
|
v = tmp;
|
|
|
|
}
|
|
|
|
else if (RB_TYPE_P(tmp, T_RATIONAL)) {
|
|
|
|
v = tmp;
|
|
|
|
rational:
|
2010-06-22 18:13:09 +04:00
|
|
|
if (RRATIONAL(v)->den == INT2FIX(1))
|
|
|
|
v = RRATIONAL(v)->num;
|
2016-12-21 15:06:40 +03:00
|
|
|
}
|
|
|
|
else {
|
2010-06-22 18:13:09 +04:00
|
|
|
typeerror:
|
2015-09-28 05:40:46 +03:00
|
|
|
rb_raise(rb_eTypeError, "can't convert %"PRIsVALUE" into an exact number",
|
|
|
|
rb_obj_class(v));
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2010-03-30 17:07:48 +04:00
|
|
|
/* time_t */
|
|
|
|
|
2010-03-28 04:54:29 +04:00
|
|
|
static wideval_t
|
2010-03-30 15:57:03 +04:00
|
|
|
rb_time_magnify(wideval_t w)
|
2009-08-29 23:06:29 +04:00
|
|
|
{
|
2010-03-30 16:58:34 +04:00
|
|
|
return wmul(w, WINT2FIXWV(TIME_SCALE));
|
2009-08-29 23:06:29 +04:00
|
|
|
}
|
|
|
|
|
2010-03-30 15:57:03 +04:00
|
|
|
static wideval_t
|
2010-03-28 04:54:29 +04:00
|
|
|
rb_time_unmagnify(wideval_t w)
|
2009-08-29 23:06:29 +04:00
|
|
|
{
|
2010-03-30 16:58:34 +04:00
|
|
|
return wquo(w, WINT2FIXWV(TIME_SCALE));
|
2009-08-29 23:06:29 +04:00
|
|
|
}
|
|
|
|
|
2010-03-28 03:24:20 +04:00
|
|
|
static VALUE
|
2010-03-28 04:54:29 +04:00
|
|
|
rb_time_unmagnify_to_float(wideval_t w)
|
2010-03-28 03:24:20 +04:00
|
|
|
{
|
|
|
|
VALUE v;
|
2010-03-29 14:47:00 +04:00
|
|
|
#if WIDEVALUE_IS_WIDER
|
2010-03-30 16:58:34 +04:00
|
|
|
if (FIXWV_P(w)) {
|
|
|
|
wideint_t a, b, c;
|
|
|
|
a = FIXWV2WINT(w);
|
2010-03-28 03:24:20 +04:00
|
|
|
b = TIME_SCALE;
|
|
|
|
c = a / b;
|
|
|
|
if (c * b == a) {
|
|
|
|
return DBL2NUM((double)c);
|
|
|
|
}
|
2010-04-29 22:59:18 +04:00
|
|
|
v = DBL2NUM((double)FIXWV2WINT(w));
|
2017-04-11 05:40:14 +03:00
|
|
|
return quov(v, DBL2NUM(TIME_SCALE));
|
2010-03-28 03:24:20 +04:00
|
|
|
}
|
|
|
|
#endif
|
2010-03-30 15:57:03 +04:00
|
|
|
v = w2v(w);
|
2014-08-26 15:48:21 +04:00
|
|
|
if (RB_TYPE_P(v, T_RATIONAL))
|
2017-04-11 05:40:14 +03:00
|
|
|
return rb_Float(quov(v, INT2FIX(TIME_SCALE)));
|
2014-08-26 15:48:21 +04:00
|
|
|
else
|
2017-04-11 05:40:14 +03:00
|
|
|
return quov(v, DBL2NUM(TIME_SCALE));
|
2010-03-28 03:24:20 +04:00
|
|
|
}
|
|
|
|
|
2010-03-30 17:07:48 +04:00
|
|
|
static void
|
2010-03-30 19:34:33 +04:00
|
|
|
split_second(wideval_t timew, wideval_t *timew_p, VALUE *subsecx_p)
|
2010-03-30 17:07:48 +04:00
|
|
|
{
|
|
|
|
wideval_t q, r;
|
2010-03-30 19:34:33 +04:00
|
|
|
wdivmod(timew, WINT2FIXWV(TIME_SCALE), &q, &r);
|
|
|
|
*timew_p = q;
|
2010-03-30 17:07:48 +04:00
|
|
|
*subsecx_p = w2v(r);
|
|
|
|
}
|
|
|
|
|
|
|
|
static wideval_t
|
2010-03-30 19:34:33 +04:00
|
|
|
timet2wv(time_t t)
|
2010-03-30 17:07:48 +04:00
|
|
|
{
|
|
|
|
#if WIDEVALUE_IS_WIDER
|
2010-03-30 19:34:33 +04:00
|
|
|
if (TIMET_MIN == 0) {
|
|
|
|
uwideint_t wi = (uwideint_t)t;
|
|
|
|
if (wi <= FIXWV_MAX) {
|
|
|
|
return WINT2FIXWV(wi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
wideint_t wi = (wideint_t)t;
|
|
|
|
if (FIXWV_MIN <= wi && wi <= FIXWV_MAX) {
|
|
|
|
return WINT2FIXWV(wi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return v2w(TIMET2NUM(t));
|
|
|
|
}
|
|
|
|
#define TIMET2WV(t) timet2wv(t)
|
|
|
|
|
|
|
|
static time_t
|
|
|
|
wv2timet(wideval_t w)
|
|
|
|
{
|
|
|
|
#if WIDEVALUE_IS_WIDER
|
|
|
|
if (FIXWV_P(w)) {
|
|
|
|
wideint_t wi = FIXWV2WINT(w);
|
|
|
|
if (TIMET_MIN == 0) {
|
|
|
|
if (wi < 0)
|
|
|
|
rb_raise(rb_eRangeError, "negative value to convert into `time_t'");
|
|
|
|
if (TIMET_MAX < (uwideint_t)wi)
|
|
|
|
rb_raise(rb_eRangeError, "too big to convert into `time_t'");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (wi < TIMET_MIN || TIMET_MAX < wi)
|
|
|
|
rb_raise(rb_eRangeError, "too big to convert into `time_t'");
|
|
|
|
}
|
|
|
|
return (time_t)wi;
|
2010-03-30 17:07:48 +04:00
|
|
|
}
|
|
|
|
#endif
|
2010-03-30 19:34:33 +04:00
|
|
|
return NUM2TIMET(w2v(w));
|
2010-03-30 17:07:48 +04:00
|
|
|
}
|
2010-03-30 19:34:33 +04:00
|
|
|
#define WV2TIMET(t) wv2timet(t)
|
2010-03-30 17:07:48 +04:00
|
|
|
|
|
|
|
VALUE rb_cTime;
|
2018-10-08 05:35:31 +03:00
|
|
|
static VALUE rb_cTimeTM;
|
2010-03-30 17:07:48 +04:00
|
|
|
|
|
|
|
static int obj2int(VALUE obj);
|
2014-02-24 07:38:14 +04:00
|
|
|
static uint32_t obj2ubits(VALUE obj, size_t bits);
|
2010-03-30 17:07:48 +04:00
|
|
|
static VALUE obj2vint(VALUE obj);
|
2014-02-24 07:38:14 +04:00
|
|
|
static uint32_t month_arg(VALUE arg);
|
2013-08-17 17:20:50 +04:00
|
|
|
static VALUE validate_utc_offset(VALUE utc_offset);
|
|
|
|
static VALUE validate_zone_name(VALUE zone_name);
|
2010-03-30 17:07:48 +04:00
|
|
|
static void validate_vtm(struct vtm *vtm);
|
2014-02-24 07:38:14 +04:00
|
|
|
static uint32_t obj2subsecx(VALUE obj, VALUE *subsecx);
|
2010-03-30 17:07:48 +04:00
|
|
|
|
|
|
|
static VALUE time_gmtime(VALUE);
|
|
|
|
static VALUE time_localtime(VALUE);
|
|
|
|
static VALUE time_fixoff(VALUE);
|
|
|
|
|
|
|
|
static time_t timegm_noleapsecond(struct tm *tm);
|
|
|
|
static int tmcmp(struct tm *a, struct tm *b);
|
|
|
|
static int vtmcmp(struct vtm *a, struct vtm *b);
|
|
|
|
static const char *find_time_t(struct tm *tptr, int utc_p, time_t *tp);
|
|
|
|
|
|
|
|
static struct vtm *localtimew(wideval_t timew, struct vtm *result);
|
|
|
|
|
|
|
|
static int leap_year_p(long y);
|
2017-04-11 05:40:14 +03:00
|
|
|
#define leap_year_v_p(y) leap_year_p(NUM2LONG(modv((y), INT2FIX(400))))
|
2010-03-30 17:07:48 +04:00
|
|
|
|
2018-10-08 05:35:31 +03:00
|
|
|
static VALUE tm_from_time(VALUE klass, VALUE time);
|
|
|
|
|
2018-07-19 14:22:03 +03:00
|
|
|
bool ruby_tz_uptodate_p;
|
2018-07-18 13:30:41 +03:00
|
|
|
|
2010-04-06 17:03:43 +04:00
|
|
|
static struct tm *
|
2016-03-18 22:06:33 +03:00
|
|
|
rb_localtime_r(const time_t *t, struct tm *result)
|
2010-04-06 17:03:43 +04:00
|
|
|
{
|
2010-05-06 12:16:45 +04:00
|
|
|
#if defined __APPLE__ && defined __LP64__
|
|
|
|
if (*t != (time_t)(int)*t) return NULL;
|
|
|
|
#endif
|
2018-07-19 14:22:03 +03:00
|
|
|
if (!ruby_tz_uptodate_p) {
|
|
|
|
ruby_tz_uptodate_p = 1;
|
2018-07-18 13:30:41 +03:00
|
|
|
tzset();
|
|
|
|
}
|
2016-03-18 22:06:33 +03:00
|
|
|
#ifdef HAVE_GMTIME_R
|
|
|
|
result = localtime_r(t, result);
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
struct tm *tmp = localtime(t);
|
|
|
|
if (tmp) *result = *tmp;
|
|
|
|
}
|
|
|
|
#endif
|
2010-04-06 17:03:43 +04:00
|
|
|
#if defined(HAVE_MKTIME) && defined(LOCALTIME_OVERFLOW_PROBLEM)
|
|
|
|
if (result) {
|
2011-01-31 06:44:57 +03:00
|
|
|
long gmtoff1 = 0;
|
|
|
|
long gmtoff2 = 0;
|
2010-06-10 19:45:34 +04:00
|
|
|
struct tm tmp = *result;
|
2010-06-12 20:40:25 +04:00
|
|
|
time_t t2;
|
|
|
|
t2 = mktime(&tmp);
|
2010-06-10 18:10:25 +04:00
|
|
|
# if defined(HAVE_STRUCT_TM_TM_GMTOFF)
|
2016-03-18 22:06:33 +03:00
|
|
|
gmtoff1 = result->tm_gmtoff;
|
2010-06-10 19:45:34 +04:00
|
|
|
gmtoff2 = tmp.tm_gmtoff;
|
2010-06-10 18:10:25 +04:00
|
|
|
# endif
|
|
|
|
if (*t + gmtoff1 != t2 + gmtoff2)
|
|
|
|
result = NULL;
|
2010-04-06 17:03:43 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return result;
|
|
|
|
}
|
2018-07-18 13:30:41 +03:00
|
|
|
#define LOCALTIME(tm, result) rb_localtime_r((tm), &(result))
|
2010-04-06 17:03:43 +04:00
|
|
|
|
2016-03-18 22:06:33 +03:00
|
|
|
#ifndef HAVE_STRUCT_TM_TM_GMTOFF
|
2011-06-07 08:50:34 +04:00
|
|
|
static struct tm *
|
2016-03-18 22:06:33 +03:00
|
|
|
rb_gmtime_r(const time_t *t, struct tm *result)
|
2011-06-07 08:50:34 +04:00
|
|
|
{
|
2016-03-18 22:06:33 +03:00
|
|
|
#ifdef HAVE_GMTIME_R
|
|
|
|
result = gmtime_r(t, result);
|
|
|
|
#else
|
|
|
|
struct tm *tmp = gmtime(t);
|
|
|
|
if (tmp) *result = *tmp;
|
|
|
|
#endif
|
2010-04-06 17:03:43 +04:00
|
|
|
#if defined(HAVE_TIMEGM) && defined(LOCALTIME_OVERFLOW_PROBLEM)
|
2016-03-18 22:06:33 +03:00
|
|
|
if (result && *t != timegm(result)) {
|
|
|
|
return NULL;
|
2010-04-06 17:03:43 +04:00
|
|
|
}
|
2011-06-07 08:50:34 +04:00
|
|
|
#endif
|
|
|
|
return result;
|
|
|
|
}
|
2016-03-18 22:06:33 +03:00
|
|
|
# define GMTIME(tm, result) rb_gmtime_r((tm), &(result))
|
2010-04-06 17:03:43 +04:00
|
|
|
#endif
|
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
static const int common_year_yday_offset[] = {
|
|
|
|
-1,
|
|
|
|
-1 + 31,
|
|
|
|
-1 + 31 + 28,
|
|
|
|
-1 + 31 + 28 + 31,
|
|
|
|
-1 + 31 + 28 + 31 + 30,
|
|
|
|
-1 + 31 + 28 + 31 + 30 + 31,
|
|
|
|
-1 + 31 + 28 + 31 + 30 + 31 + 30,
|
|
|
|
-1 + 31 + 28 + 31 + 30 + 31 + 30 + 31,
|
|
|
|
-1 + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31,
|
|
|
|
-1 + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30,
|
|
|
|
-1 + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31,
|
|
|
|
-1 + 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30
|
|
|
|
/* 1 2 3 4 5 6 7 8 9 10 11 */
|
|
|
|
};
|
|
|
|
static const int leap_year_yday_offset[] = {
|
|
|
|
-1,
|
|
|
|
-1 + 31,
|
|
|
|
-1 + 31 + 29,
|
|
|
|
-1 + 31 + 29 + 31,
|
|
|
|
-1 + 31 + 29 + 31 + 30,
|
|
|
|
-1 + 31 + 29 + 31 + 30 + 31,
|
|
|
|
-1 + 31 + 29 + 31 + 30 + 31 + 30,
|
|
|
|
-1 + 31 + 29 + 31 + 30 + 31 + 30 + 31,
|
|
|
|
-1 + 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31,
|
|
|
|
-1 + 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30,
|
|
|
|
-1 + 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31,
|
|
|
|
-1 + 31 + 29 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30
|
|
|
|
/* 1 2 3 4 5 6 7 8 9 10 11 */
|
|
|
|
};
|
|
|
|
|
|
|
|
static const int common_year_days_in_month[] = {
|
|
|
|
31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
|
|
|
|
};
|
|
|
|
static const int leap_year_days_in_month[] = {
|
|
|
|
31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
|
|
|
|
};
|
|
|
|
|
2018-08-15 17:24:44 +03:00
|
|
|
#define M28(m) \
|
|
|
|
(m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
|
|
|
|
(m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
|
|
|
|
(m),(m),(m),(m),(m),(m),(m),(m)
|
|
|
|
#define M29(m) \
|
|
|
|
(m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
|
|
|
|
(m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
|
|
|
|
(m),(m),(m),(m),(m),(m),(m),(m),(m)
|
|
|
|
#define M30(m) \
|
|
|
|
(m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
|
|
|
|
(m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
|
|
|
|
(m),(m),(m),(m),(m),(m),(m),(m),(m),(m)
|
|
|
|
#define M31(m) \
|
|
|
|
(m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
|
|
|
|
(m),(m),(m),(m),(m),(m),(m),(m),(m),(m), \
|
|
|
|
(m),(m),(m),(m),(m),(m),(m),(m),(m),(m), (m)
|
|
|
|
|
|
|
|
static const uint8_t common_year_mon_of_yday[] = {
|
|
|
|
M31(1), M28(2), M31(3), M30(4), M31(5), M30(6),
|
|
|
|
M31(7), M31(8), M30(9), M31(10), M30(11), M31(12)
|
|
|
|
};
|
|
|
|
static const uint8_t leap_year_mon_of_yday[] = {
|
|
|
|
M31(1), M29(2), M31(3), M30(4), M31(5), M30(6),
|
|
|
|
M31(7), M31(8), M30(9), M31(10), M30(11), M31(12)
|
|
|
|
};
|
|
|
|
|
|
|
|
#undef M28
|
|
|
|
#undef M29
|
|
|
|
#undef M30
|
|
|
|
#undef M31
|
|
|
|
|
|
|
|
#define D28 \
|
|
|
|
1,2,3,4,5,6,7,8,9, \
|
|
|
|
10,11,12,13,14,15,16,17,18,19, \
|
|
|
|
20,21,22,23,24,25,26,27,28
|
|
|
|
#define D29 \
|
|
|
|
1,2,3,4,5,6,7,8,9, \
|
|
|
|
10,11,12,13,14,15,16,17,18,19, \
|
|
|
|
20,21,22,23,24,25,26,27,28,29
|
|
|
|
#define D30 \
|
|
|
|
1,2,3,4,5,6,7,8,9, \
|
|
|
|
10,11,12,13,14,15,16,17,18,19, \
|
|
|
|
20,21,22,23,24,25,26,27,28,29,30
|
|
|
|
#define D31 \
|
|
|
|
1,2,3,4,5,6,7,8,9, \
|
|
|
|
10,11,12,13,14,15,16,17,18,19, \
|
|
|
|
20,21,22,23,24,25,26,27,28,29,30,31
|
|
|
|
|
|
|
|
static const uint8_t common_year_mday_of_yday[] = {
|
|
|
|
/* 1 2 3 4 5 6 7 8 9 10 11 12 */
|
|
|
|
D31, D28, D31, D30, D31, D30, D31, D31, D30, D31, D30, D31
|
|
|
|
};
|
|
|
|
static const uint8_t leap_year_mday_of_yday[] = {
|
|
|
|
D31, D29, D31, D30, D31, D30, D31, D31, D30, D31, D30, D31
|
|
|
|
};
|
|
|
|
|
|
|
|
#undef D28
|
|
|
|
#undef D29
|
|
|
|
#undef D30
|
|
|
|
#undef D31
|
|
|
|
|
2010-06-09 17:13:44 +04:00
|
|
|
static int
|
|
|
|
calc_tm_yday(long tm_year, int tm_mon, int tm_mday)
|
|
|
|
{
|
2010-07-16 11:40:37 +04:00
|
|
|
int tm_year_mod400 = (int)MOD(tm_year, 400);
|
2010-06-09 17:13:44 +04:00
|
|
|
int tm_yday = tm_mday;
|
|
|
|
|
|
|
|
if (leap_year_p(tm_year_mod400 + 1900))
|
|
|
|
tm_yday += leap_year_yday_offset[tm_mon];
|
|
|
|
else
|
|
|
|
tm_yday += common_year_yday_offset[tm_mon];
|
|
|
|
|
|
|
|
return tm_yday;
|
|
|
|
}
|
|
|
|
|
2010-03-28 04:54:29 +04:00
|
|
|
static wideval_t
|
2010-03-27 17:18:08 +03:00
|
|
|
timegmw_noleapsecond(struct vtm *vtm)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
|
|
|
VALUE year1900;
|
|
|
|
VALUE q400, r400;
|
|
|
|
int year_mod400;
|
2010-06-09 17:13:44 +04:00
|
|
|
int yday;
|
2009-04-21 18:56:59 +04:00
|
|
|
long days_in400;
|
2010-03-27 20:14:13 +03:00
|
|
|
VALUE vdays, ret;
|
2010-03-28 04:54:29 +04:00
|
|
|
wideval_t wret;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2017-04-11 05:40:14 +03:00
|
|
|
year1900 = subv(vtm->year, INT2FIX(1900));
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
divmodv(year1900, INT2FIX(400), &q400, &r400);
|
|
|
|
year_mod400 = NUM2INT(r400);
|
|
|
|
|
2010-06-09 17:13:44 +04:00
|
|
|
yday = calc_tm_yday(year_mod400, vtm->mon-1, vtm->mday);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* `Seconds Since the Epoch' in SUSv3:
|
|
|
|
* tm_sec + tm_min*60 + tm_hour*3600 + tm_yday*86400 +
|
|
|
|
* (tm_year-70)*31536000 + ((tm_year-69)/4)*86400 -
|
|
|
|
* ((tm_year-1)/100)*86400 + ((tm_year+299)/400)*86400
|
|
|
|
*/
|
|
|
|
ret = LONG2NUM(vtm->sec
|
|
|
|
+ vtm->min*60
|
|
|
|
+ vtm->hour*3600);
|
|
|
|
days_in400 = yday
|
|
|
|
- 70*365
|
|
|
|
+ DIV(year_mod400 - 69, 4)
|
|
|
|
- DIV(year_mod400 - 1, 100)
|
|
|
|
+ (year_mod400 + 299) / 400;
|
2010-03-27 20:14:13 +03:00
|
|
|
vdays = LONG2NUM(days_in400);
|
2017-04-11 05:40:14 +03:00
|
|
|
vdays = addv(vdays, mulv(q400, INT2FIX(97)));
|
|
|
|
vdays = addv(vdays, mulv(year1900, INT2FIX(365)));
|
2010-03-30 17:25:57 +04:00
|
|
|
wret = wadd(rb_time_magnify(v2w(ret)), wmul(rb_time_magnify(v2w(vdays)), WINT2FIXWV(86400)));
|
2010-03-30 15:57:03 +04:00
|
|
|
wret = wadd(wret, v2w(vtm->subsecx));
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
return wret;
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
2018-08-08 13:00:43 +03:00
|
|
|
#define rb_fstring_usascii(str) rb_fstring_enc_cstr((str), rb_usascii_encoding())
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2018-08-08 13:00:43 +03:00
|
|
|
static VALUE
|
|
|
|
zone_str(const char *zone)
|
2012-12-12 13:27:12 +04:00
|
|
|
{
|
2018-08-08 13:00:43 +03:00
|
|
|
const char *p;
|
|
|
|
int ascii_only = 1;
|
2012-12-12 13:27:12 +04:00
|
|
|
|
2018-08-08 13:00:43 +03:00
|
|
|
if (zone == NULL) {
|
|
|
|
return rb_fstring_usascii("(NO-TIMEZONE-ABBREVIATION)");
|
2012-12-12 13:27:12 +04:00
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2018-08-08 13:00:43 +03:00
|
|
|
for (p = zone; *p; p++)
|
|
|
|
if (!ISASCII(*p)) {
|
|
|
|
ascii_only = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ascii_only) {
|
|
|
|
return rb_fstring_usascii(zone);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return rb_fstring_enc_cstr(zone, rb_locale_encoding());
|
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-03-28 04:54:29 +04:00
|
|
|
gmtimew_noleapsecond(wideval_t timew, struct vtm *vtm)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
|
|
|
VALUE v;
|
2018-08-15 17:24:44 +03:00
|
|
|
int n, x, y;
|
2009-04-21 18:56:59 +04:00
|
|
|
int wday;
|
2009-08-29 23:06:29 +04:00
|
|
|
VALUE timev;
|
2010-03-30 19:34:33 +04:00
|
|
|
wideval_t timew2, w, w2;
|
2017-05-04 16:42:47 +03:00
|
|
|
VALUE subsecx;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
vtm->isdst = 0;
|
|
|
|
|
2017-05-04 16:42:47 +03:00
|
|
|
split_second(timew, &timew2, &subsecx);
|
|
|
|
vtm->subsecx = subsecx;
|
2010-03-30 19:34:33 +04:00
|
|
|
|
|
|
|
wdivmod(timew2, WINT2FIXWV(86400), &w2, &w);
|
|
|
|
timev = w2v(w2);
|
|
|
|
v = w2v(w);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2017-04-11 05:40:14 +03:00
|
|
|
wday = NUM2INT(modv(timev, INT2FIX(7)));
|
2009-04-21 18:56:59 +04:00
|
|
|
vtm->wday = (wday + 4) % 7;
|
|
|
|
|
|
|
|
n = NUM2INT(v);
|
|
|
|
vtm->sec = n % 60; n = n / 60;
|
|
|
|
vtm->min = n % 60; n = n / 60;
|
|
|
|
vtm->hour = n;
|
|
|
|
|
|
|
|
/* 97 leap days in the 400 year cycle */
|
|
|
|
divmodv(timev, INT2FIX(400*365 + 97), &timev, &v);
|
2017-04-11 05:40:14 +03:00
|
|
|
vtm->year = mulv(timev, INT2FIX(400));
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
/* n is the days in the 400 year cycle.
|
|
|
|
* the start of the cycle is 1970-01-01. */
|
|
|
|
|
|
|
|
n = NUM2INT(v);
|
|
|
|
y = 1970;
|
|
|
|
|
|
|
|
/* 30 years including 7 leap days (1972, 1976, ... 1996),
|
|
|
|
* 31 days in January 2000 and
|
2009-11-03 20:46:28 +03:00
|
|
|
* 29 days in February 2000
|
2009-04-21 18:56:59 +04:00
|
|
|
* from 1970-01-01 to 2000-02-29 */
|
|
|
|
if (30*365+7+31+29-1 <= n) {
|
|
|
|
/* 2000-02-29 or after */
|
|
|
|
if (n < 31*365+8) {
|
|
|
|
/* 2000-02-29 to 2000-12-31 */
|
|
|
|
y += 30;
|
|
|
|
n -= 30*365+7;
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* 2001-01-01 or after */
|
|
|
|
n -= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
x = n / (365*100 + 24);
|
|
|
|
n = n % (365*100 + 24);
|
|
|
|
y += x * 100;
|
|
|
|
if (30*365+7+31+29-1 <= n) {
|
|
|
|
if (n < 31*365+7) {
|
|
|
|
y += 30;
|
|
|
|
n -= 30*365+7;
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
n += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
x = n / (365*4 + 1);
|
|
|
|
n = n % (365*4 + 1);
|
|
|
|
y += x * 4;
|
|
|
|
if (365*2+31+29-1 <= n) {
|
|
|
|
if (n < 365*2+366) {
|
|
|
|
y += 2;
|
|
|
|
n -= 365*2;
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
n -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
x = n / 365;
|
|
|
|
n = n % 365;
|
|
|
|
y += x;
|
|
|
|
|
|
|
|
found:
|
|
|
|
vtm->yday = n+1;
|
2017-04-11 05:40:14 +03:00
|
|
|
vtm->year = addv(vtm->year, INT2NUM(y));
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2018-08-15 17:24:44 +03:00
|
|
|
if (leap_year_p(y)) {
|
|
|
|
vtm->mon = leap_year_mon_of_yday[n];
|
|
|
|
vtm->mday = leap_year_mday_of_yday[n];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
vtm->mon = common_year_mon_of_yday[n];
|
|
|
|
vtm->mday = common_year_mday_of_yday[n];
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
vtm->utc_offset = INT2FIX(0);
|
2018-08-08 13:00:43 +03:00
|
|
|
vtm->zone = rb_fstring_usascii("UTC");
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct tm *
|
|
|
|
gmtime_with_leapsecond(const time_t *timep, struct tm *result)
|
|
|
|
{
|
|
|
|
#if defined(HAVE_STRUCT_TM_TM_GMTOFF)
|
|
|
|
/* 4.4BSD counts leap seconds only with localtime, not with gmtime. */
|
|
|
|
struct tm *t;
|
|
|
|
int sign;
|
2009-09-23 08:16:41 +04:00
|
|
|
int gmtoff_sec, gmtoff_min, gmtoff_hour, gmtoff_day;
|
|
|
|
long gmtoff;
|
2010-04-06 17:03:43 +04:00
|
|
|
t = LOCALTIME(timep, *result);
|
2009-04-21 18:56:59 +04:00
|
|
|
if (t == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* subtract gmtoff */
|
|
|
|
if (t->tm_gmtoff < 0) {
|
|
|
|
sign = 1;
|
|
|
|
gmtoff = -t->tm_gmtoff;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sign = -1;
|
|
|
|
gmtoff = t->tm_gmtoff;
|
|
|
|
}
|
2009-09-23 08:16:41 +04:00
|
|
|
gmtoff_sec = (int)(gmtoff % 60);
|
2009-04-21 18:56:59 +04:00
|
|
|
gmtoff = gmtoff / 60;
|
2009-09-23 08:16:41 +04:00
|
|
|
gmtoff_min = (int)(gmtoff % 60);
|
2009-04-21 18:56:59 +04:00
|
|
|
gmtoff = gmtoff / 60;
|
2009-09-23 08:16:41 +04:00
|
|
|
gmtoff_hour = (int)gmtoff; /* <= 12 */
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
gmtoff_sec *= sign;
|
|
|
|
gmtoff_min *= sign;
|
|
|
|
gmtoff_hour *= sign;
|
|
|
|
|
|
|
|
gmtoff_day = 0;
|
|
|
|
|
|
|
|
if (gmtoff_sec) {
|
|
|
|
/* If gmtoff_sec == 0, don't change result->tm_sec.
|
|
|
|
* It may be 60 which is a leap second. */
|
|
|
|
result->tm_sec += gmtoff_sec;
|
|
|
|
if (result->tm_sec < 0) {
|
|
|
|
result->tm_sec += 60;
|
|
|
|
gmtoff_min -= 1;
|
|
|
|
}
|
|
|
|
if (60 <= result->tm_sec) {
|
|
|
|
result->tm_sec -= 60;
|
|
|
|
gmtoff_min += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (gmtoff_min) {
|
|
|
|
result->tm_min += gmtoff_min;
|
|
|
|
if (result->tm_min < 0) {
|
|
|
|
result->tm_min += 60;
|
|
|
|
gmtoff_hour -= 1;
|
|
|
|
}
|
|
|
|
if (60 <= result->tm_min) {
|
|
|
|
result->tm_min -= 60;
|
|
|
|
gmtoff_hour += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (gmtoff_hour) {
|
|
|
|
result->tm_hour += gmtoff_hour;
|
|
|
|
if (result->tm_hour < 0) {
|
|
|
|
result->tm_hour += 24;
|
|
|
|
gmtoff_day = -1;
|
|
|
|
}
|
|
|
|
if (24 <= result->tm_hour) {
|
|
|
|
result->tm_hour -= 24;
|
|
|
|
gmtoff_day = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gmtoff_day) {
|
|
|
|
if (gmtoff_day < 0) {
|
|
|
|
if (result->tm_yday == 0) {
|
|
|
|
result->tm_mday = 31;
|
|
|
|
result->tm_mon = 11; /* December */
|
|
|
|
result->tm_year--;
|
|
|
|
result->tm_yday = leap_year_p(result->tm_year + 1900) ? 365 : 364;
|
|
|
|
}
|
|
|
|
else if (result->tm_mday == 1) {
|
|
|
|
const int *days_in_month = leap_year_p(result->tm_year + 1900) ?
|
|
|
|
leap_year_days_in_month :
|
|
|
|
common_year_days_in_month;
|
|
|
|
result->tm_mon--;
|
|
|
|
result->tm_mday = days_in_month[result->tm_mon];
|
|
|
|
result->tm_yday--;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result->tm_mday--;
|
|
|
|
result->tm_yday--;
|
|
|
|
}
|
|
|
|
result->tm_wday = (result->tm_wday + 6) % 7;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int leap = leap_year_p(result->tm_year + 1900);
|
|
|
|
if (result->tm_yday == (leap ? 365 : 364)) {
|
|
|
|
result->tm_year++;
|
|
|
|
result->tm_mon = 0; /* January */
|
|
|
|
result->tm_mday = 1;
|
|
|
|
result->tm_yday = 0;
|
|
|
|
}
|
|
|
|
else if (result->tm_mday == (leap ? leap_year_days_in_month :
|
|
|
|
common_year_days_in_month)[result->tm_mon]) {
|
|
|
|
result->tm_mon++;
|
|
|
|
result->tm_mday = 1;
|
|
|
|
result->tm_yday++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result->tm_mday++;
|
|
|
|
result->tm_yday++;
|
|
|
|
}
|
|
|
|
result->tm_wday = (result->tm_wday + 1) % 7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result->tm_isdst = 0;
|
|
|
|
result->tm_gmtoff = 0;
|
|
|
|
#if defined(HAVE_TM_ZONE)
|
2009-04-22 04:27:33 +04:00
|
|
|
result->tm_zone = (char *)"UTC";
|
2009-04-21 18:56:59 +04:00
|
|
|
#endif
|
|
|
|
return result;
|
|
|
|
#else
|
|
|
|
return GMTIME(timep, *result);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static long this_year = 0;
|
|
|
|
static time_t known_leap_seconds_limit;
|
|
|
|
static int number_of_leap_seconds_known;
|
|
|
|
|
|
|
|
static void
|
2012-06-20 01:50:32 +04:00
|
|
|
init_leap_second_info(void)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* leap seconds are determined by IERS.
|
|
|
|
* It is announced 6 months before the leap second.
|
|
|
|
* So no one knows leap seconds in the future after the next year.
|
|
|
|
*/
|
|
|
|
if (this_year == 0) {
|
2009-08-29 22:18:37 +04:00
|
|
|
time_t now;
|
2009-04-21 18:56:59 +04:00
|
|
|
struct tm *tm, result;
|
|
|
|
struct vtm vtm;
|
2010-03-28 04:54:29 +04:00
|
|
|
wideval_t timew;
|
2009-04-21 18:56:59 +04:00
|
|
|
now = time(NULL);
|
|
|
|
gmtime(&now);
|
|
|
|
tm = gmtime_with_leapsecond(&now, &result);
|
2009-07-22 19:09:50 +04:00
|
|
|
if (!tm) return;
|
2009-04-21 18:56:59 +04:00
|
|
|
this_year = tm->tm_year;
|
|
|
|
|
2009-08-29 22:18:37 +04:00
|
|
|
if (TIMET_MAX - now < (time_t)(366*86400))
|
|
|
|
known_leap_seconds_limit = TIMET_MAX;
|
2009-04-21 18:56:59 +04:00
|
|
|
else
|
|
|
|
known_leap_seconds_limit = now + (time_t)(366*86400);
|
|
|
|
|
2010-06-11 18:26:57 +04:00
|
|
|
if (!gmtime_with_leapsecond(&known_leap_seconds_limit, &result))
|
|
|
|
return;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
vtm.year = LONG2NUM(result.tm_year + 1900);
|
|
|
|
vtm.mon = result.tm_mon + 1;
|
|
|
|
vtm.mday = result.tm_mday;
|
|
|
|
vtm.hour = result.tm_hour;
|
|
|
|
vtm.min = result.tm_min;
|
|
|
|
vtm.sec = result.tm_sec;
|
2009-08-29 23:06:29 +04:00
|
|
|
vtm.subsecx = INT2FIX(0);
|
2009-04-21 18:56:59 +04:00
|
|
|
vtm.utc_offset = INT2FIX(0);
|
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
timew = timegmw_noleapsecond(&vtm);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-31 16:34:31 +04:00
|
|
|
number_of_leap_seconds_known = NUM2INT(w2v(wsub(TIMET2WV(known_leap_seconds_limit), rb_time_unmagnify(timew))));
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-05 14:43:42 +03:00
|
|
|
/* Use this if you want to re-run init_leap_second_info() */
|
2018-07-06 04:40:04 +03:00
|
|
|
void
|
|
|
|
ruby_reset_leap_second_info(void)
|
2018-07-05 14:43:42 +03:00
|
|
|
{
|
|
|
|
this_year = 0;
|
|
|
|
}
|
|
|
|
|
2010-03-28 04:54:29 +04:00
|
|
|
static wideval_t
|
2010-03-27 17:18:08 +03:00
|
|
|
timegmw(struct vtm *vtm)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
2010-03-28 04:54:29 +04:00
|
|
|
wideval_t timew;
|
2009-04-21 18:56:59 +04:00
|
|
|
struct tm tm;
|
|
|
|
time_t t;
|
2009-04-21 19:32:19 +04:00
|
|
|
const char *errmsg;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
/* The first leap second is 1972-06-30 23:59:60 UTC.
|
|
|
|
* No leap seconds before. */
|
2010-03-27 17:18:08 +03:00
|
|
|
if (gt(INT2FIX(1972), vtm->year))
|
|
|
|
return timegmw_noleapsecond(vtm);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
init_leap_second_info();
|
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
timew = timegmw_noleapsecond(vtm);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2018-07-05 14:43:42 +03:00
|
|
|
|
|
|
|
if (number_of_leap_seconds_known == 0) {
|
|
|
|
/* When init_leap_second_info() is executed, the timezone doesn't have
|
|
|
|
* leap second information. Disable leap second for calculating gmtime.
|
|
|
|
*/
|
|
|
|
return timew;
|
|
|
|
}
|
|
|
|
else if (wlt(rb_time_magnify(TIMET2WV(known_leap_seconds_limit)), timew)) {
|
2010-03-30 16:58:34 +04:00
|
|
|
return wadd(timew, rb_time_magnify(WINT2WV(number_of_leap_seconds_known)));
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
2009-09-23 08:16:41 +04:00
|
|
|
tm.tm_year = rb_long2int(NUM2LONG(vtm->year) - 1900);
|
2009-04-21 18:56:59 +04:00
|
|
|
tm.tm_mon = vtm->mon - 1;
|
|
|
|
tm.tm_mday = vtm->mday;
|
|
|
|
tm.tm_hour = vtm->hour;
|
|
|
|
tm.tm_min = vtm->min;
|
|
|
|
tm.tm_sec = vtm->sec;
|
|
|
|
tm.tm_isdst = 0;
|
|
|
|
|
|
|
|
errmsg = find_time_t(&tm, 1, &t);
|
|
|
|
if (errmsg)
|
|
|
|
rb_raise(rb_eArgError, "%s", errmsg);
|
2010-03-30 19:34:33 +04:00
|
|
|
return wadd(rb_time_magnify(TIMET2WV(t)), v2w(vtm->subsecx));
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct vtm *
|
2010-03-28 04:54:29 +04:00
|
|
|
gmtimew(wideval_t timew, struct vtm *result)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
|
|
|
time_t t;
|
|
|
|
struct tm tm;
|
2009-08-29 23:06:29 +04:00
|
|
|
VALUE subsecx;
|
2010-03-30 19:34:33 +04:00
|
|
|
wideval_t timew2;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-30 17:25:57 +04:00
|
|
|
if (wlt(timew, WINT2FIXWV(0))) {
|
2010-03-27 17:18:08 +03:00
|
|
|
gmtimew_noleapsecond(timew, result);
|
2009-04-21 18:56:59 +04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
init_leap_second_info();
|
|
|
|
|
2018-07-05 14:43:42 +03:00
|
|
|
if (number_of_leap_seconds_known == 0) {
|
|
|
|
/* When init_leap_second_info() is executed, the timezone doesn't have
|
|
|
|
* leap second information. Disable leap second for calculating gmtime.
|
|
|
|
*/
|
|
|
|
gmtimew_noleapsecond(timew, result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else if (wlt(rb_time_magnify(TIMET2WV(known_leap_seconds_limit)), timew)) {
|
2010-03-30 16:58:34 +04:00
|
|
|
timew = wsub(timew, rb_time_magnify(WINT2WV(number_of_leap_seconds_known)));
|
2010-03-27 17:18:08 +03:00
|
|
|
gmtimew_noleapsecond(timew, result);
|
2009-04-21 18:56:59 +04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-03-30 19:34:33 +04:00
|
|
|
split_second(timew, &timew2, &subsecx);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-30 19:34:33 +04:00
|
|
|
t = WV2TIMET(timew2);
|
2009-04-21 18:56:59 +04:00
|
|
|
if (!gmtime_with_leapsecond(&t, &tm))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
result->year = LONG2NUM((long)tm.tm_year + 1900);
|
|
|
|
result->mon = tm.tm_mon + 1;
|
|
|
|
result->mday = tm.tm_mday;
|
|
|
|
result->hour = tm.tm_hour;
|
|
|
|
result->min = tm.tm_min;
|
|
|
|
result->sec = tm.tm_sec;
|
2009-08-29 23:06:29 +04:00
|
|
|
result->subsecx = subsecx;
|
2009-04-21 18:56:59 +04:00
|
|
|
result->utc_offset = INT2FIX(0);
|
|
|
|
result->wday = tm.tm_wday;
|
|
|
|
result->yday = tm.tm_yday+1;
|
|
|
|
result->isdst = tm.tm_isdst;
|
2018-08-08 13:00:43 +03:00
|
|
|
result->zone = rb_fstring_usascii("UTC");
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-10-08 05:35:31 +03:00
|
|
|
#define GMTIMEW(w, v) \
|
|
|
|
(gmtimew(w, v) ? (void)0 : rb_raise(rb_eArgError, "gmtime error"))
|
|
|
|
|
2018-08-08 13:00:43 +03:00
|
|
|
static struct tm *localtime_with_gmtoff_zone(const time_t *t, struct tm *result, long *gmtoff, VALUE *zone);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
/*
|
2014-08-14 17:10:07 +04:00
|
|
|
* The idea is borrowed from Perl:
|
|
|
|
* http://web.archive.org/web/20080211114141/http://use.perl.org/articles/08/02/07/197204.shtml
|
2014-07-28 00:14:11 +04:00
|
|
|
*
|
2014-08-14 17:10:07 +04:00
|
|
|
* compat_common_month_table is generated by the following program.
|
|
|
|
* This table finds the last month which starts at the same day of a week.
|
|
|
|
* The year 2037 is not used because:
|
|
|
|
* http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522949
|
2009-04-21 18:56:59 +04:00
|
|
|
*
|
2010-05-29 22:51:39 +04:00
|
|
|
* #!/usr/bin/ruby
|
2009-04-21 18:56:59 +04:00
|
|
|
*
|
|
|
|
* require 'date'
|
|
|
|
*
|
|
|
|
* h = {}
|
|
|
|
* 2036.downto(2010) {|y|
|
|
|
|
* 1.upto(12) {|m|
|
|
|
|
* next if m == 2 && y % 4 == 0
|
|
|
|
* d = Date.new(y,m,1)
|
|
|
|
* h[m] ||= {}
|
|
|
|
* h[m][d.wday] ||= y
|
2010-05-29 22:51:39 +04:00
|
|
|
* }
|
|
|
|
* }
|
2009-04-21 18:56:59 +04:00
|
|
|
*
|
|
|
|
* 1.upto(12) {|m|
|
|
|
|
* print "{"
|
|
|
|
* 0.upto(6) {|w|
|
|
|
|
* y = h[m][w]
|
|
|
|
* print " #{y},"
|
|
|
|
* }
|
|
|
|
* puts "},"
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
*/
|
2018-01-22 03:40:11 +03:00
|
|
|
static const int compat_common_month_table[12][7] = {
|
2009-04-21 18:56:59 +04:00
|
|
|
/* Sun Mon Tue Wed Thu Fri Sat */
|
|
|
|
{ 2034, 2035, 2036, 2031, 2032, 2027, 2033 }, /* January */
|
|
|
|
{ 2026, 2027, 2033, 2034, 2035, 2030, 2031 }, /* February */
|
|
|
|
{ 2026, 2032, 2033, 2034, 2035, 2030, 2036 }, /* March */
|
|
|
|
{ 2035, 2030, 2036, 2026, 2032, 2033, 2034 }, /* April */
|
|
|
|
{ 2033, 2034, 2035, 2030, 2036, 2026, 2032 }, /* May */
|
|
|
|
{ 2036, 2026, 2032, 2033, 2034, 2035, 2030 }, /* June */
|
|
|
|
{ 2035, 2030, 2036, 2026, 2032, 2033, 2034 }, /* July */
|
|
|
|
{ 2032, 2033, 2034, 2035, 2030, 2036, 2026 }, /* August */
|
|
|
|
{ 2030, 2036, 2026, 2032, 2033, 2034, 2035 }, /* September */
|
|
|
|
{ 2034, 2035, 2030, 2036, 2026, 2032, 2033 }, /* October */
|
|
|
|
{ 2026, 2032, 2033, 2034, 2035, 2030, 2036 }, /* November */
|
|
|
|
{ 2030, 2036, 2026, 2032, 2033, 2034, 2035 }, /* December */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* compat_leap_month_table is generated by following program.
|
|
|
|
*
|
2010-05-29 22:51:39 +04:00
|
|
|
* #!/usr/bin/ruby
|
|
|
|
*
|
2009-04-21 18:56:59 +04:00
|
|
|
* require 'date'
|
2010-05-29 22:51:39 +04:00
|
|
|
*
|
2009-04-21 18:56:59 +04:00
|
|
|
* h = {}
|
|
|
|
* 2037.downto(2010) {|y|
|
|
|
|
* 1.upto(12) {|m|
|
|
|
|
* next unless m == 2 && y % 4 == 0
|
|
|
|
* d = Date.new(y,m,1)
|
|
|
|
* h[m] ||= {}
|
|
|
|
* h[m][d.wday] ||= y
|
|
|
|
* }
|
|
|
|
* }
|
2010-05-29 22:51:39 +04:00
|
|
|
*
|
2009-04-21 18:56:59 +04:00
|
|
|
* 2.upto(2) {|m|
|
|
|
|
* 0.upto(6) {|w|
|
|
|
|
* y = h[m][w]
|
|
|
|
* print " #{y},"
|
|
|
|
* }
|
|
|
|
* puts
|
|
|
|
* }
|
|
|
|
*/
|
2018-01-22 03:40:11 +03:00
|
|
|
static const int compat_leap_month_table[7] = {
|
2009-04-21 18:56:59 +04:00
|
|
|
/* Sun Mon Tue Wed Thu Fri Sat */
|
|
|
|
2032, 2016, 2028, 2012, 2024, 2036, 2020, /* February */
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
2018-08-21 17:40:18 +03:00
|
|
|
calc_wday(int year_mod400, int month, int day)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
|
|
|
int a, y, m;
|
|
|
|
int wday;
|
|
|
|
|
|
|
|
a = (14 - month) / 12;
|
2018-08-21 17:40:18 +03:00
|
|
|
y = year_mod400 + 4800 - a;
|
2009-04-21 18:56:59 +04:00
|
|
|
m = month + 12 * a - 3;
|
|
|
|
wday = day + (153*m+2)/5 + 365*y + y/4 - y/100 + y/400 + 2;
|
|
|
|
wday = wday % 7;
|
|
|
|
return wday;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2018-08-08 13:00:43 +03:00
|
|
|
guess_local_offset(struct vtm *vtm_utc, int *isdst_ret, VALUE *zone_ret)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
|
|
|
struct tm tm;
|
|
|
|
long gmtoff;
|
2018-08-08 13:00:43 +03:00
|
|
|
VALUE zone;
|
2009-04-21 18:56:59 +04:00
|
|
|
time_t t;
|
|
|
|
struct vtm vtm2;
|
|
|
|
VALUE timev;
|
2018-08-21 17:40:18 +03:00
|
|
|
int year_mod400, wday;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2012-11-30 08:53:09 +04:00
|
|
|
/* Daylight Saving Time was introduced in 1916.
|
|
|
|
* So we don't need to care about DST before that. */
|
2010-07-14 19:38:30 +04:00
|
|
|
if (lt(vtm_utc->year, INT2FIX(1916))) {
|
|
|
|
VALUE off = INT2FIX(0);
|
|
|
|
int isdst = 0;
|
2018-08-08 13:00:43 +03:00
|
|
|
zone = rb_fstring_usascii("UTC");
|
2010-07-14 19:38:30 +04:00
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
# if defined(NEGATIVE_TIME_T)
|
2010-07-15 01:05:00 +04:00
|
|
|
# if SIZEOF_TIME_T <= 4
|
|
|
|
/* 1901-12-13 20:45:52 UTC : The oldest time in 32-bit signed time_t. */
|
|
|
|
# define THE_TIME_OLD_ENOUGH ((time_t)0x80000000)
|
|
|
|
# else
|
|
|
|
/* Since the Royal Greenwich Observatory was commissioned in 1675,
|
|
|
|
no timezone defined using GMT at 1600. */
|
|
|
|
# define THE_TIME_OLD_ENOUGH ((time_t)(1600-1970)*366*24*60*60)
|
|
|
|
# endif
|
|
|
|
if (localtime_with_gmtoff_zone((t = THE_TIME_OLD_ENOUGH, &t), &tm, &gmtoff, &zone)) {
|
2010-07-14 19:38:30 +04:00
|
|
|
off = LONG2FIX(gmtoff);
|
|
|
|
isdst = tm.tm_isdst;
|
|
|
|
}
|
|
|
|
else
|
2009-04-21 18:56:59 +04:00
|
|
|
# endif
|
2010-07-14 19:38:30 +04:00
|
|
|
/* 1970-01-01 00:00:00 UTC : The Unix epoch - the oldest time in portable time_t. */
|
|
|
|
if (localtime_with_gmtoff_zone((t = 0, &t), &tm, &gmtoff, &zone)) {
|
|
|
|
off = LONG2FIX(gmtoff);
|
|
|
|
isdst = tm.tm_isdst;
|
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-07-14 19:38:30 +04:00
|
|
|
if (isdst_ret)
|
|
|
|
*isdst_ret = isdst;
|
|
|
|
if (zone_ret)
|
|
|
|
*zone_ret = zone;
|
2009-04-21 18:56:59 +04:00
|
|
|
return off;
|
2010-07-14 19:38:30 +04:00
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2012-11-30 08:53:09 +04:00
|
|
|
/* It is difficult to guess the future. */
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
vtm2 = *vtm_utc;
|
|
|
|
|
|
|
|
/* guess using a year before 2038. */
|
2018-08-21 17:40:18 +03:00
|
|
|
year_mod400 = NUM2INT(modv(vtm_utc->year, INT2FIX(400)));
|
|
|
|
wday = calc_wday(year_mod400, vtm_utc->mon, 1);
|
|
|
|
if (vtm_utc->mon == 2 && leap_year_p(year_mod400))
|
2009-04-21 18:56:59 +04:00
|
|
|
vtm2.year = INT2FIX(compat_leap_month_table[wday]);
|
|
|
|
else
|
|
|
|
vtm2.year = INT2FIX(compat_common_month_table[vtm_utc->mon-1][wday]);
|
|
|
|
|
2010-03-30 15:57:03 +04:00
|
|
|
timev = w2v(rb_time_unmagnify(timegmw(&vtm2)));
|
2009-04-21 18:56:59 +04:00
|
|
|
t = NUM2TIMET(timev);
|
2018-08-08 13:00:43 +03:00
|
|
|
zone = rb_fstring_usascii("UTC");
|
2010-07-14 19:38:30 +04:00
|
|
|
if (localtime_with_gmtoff_zone(&t, &tm, &gmtoff, &zone)) {
|
|
|
|
if (isdst_ret)
|
|
|
|
*isdst_ret = tm.tm_isdst;
|
|
|
|
if (zone_ret)
|
|
|
|
*zone_ret = zone;
|
2009-04-21 18:56:59 +04:00
|
|
|
return LONG2FIX(gmtoff);
|
2010-07-14 19:38:30 +04:00
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
{
|
|
|
|
/* Use the current time offset as a last resort. */
|
|
|
|
static time_t now = 0;
|
|
|
|
static long now_gmtoff = 0;
|
2018-08-08 13:00:43 +03:00
|
|
|
static int now_isdst = 0;
|
|
|
|
static VALUE now_zone;
|
2009-04-21 18:56:59 +04:00
|
|
|
if (now == 0) {
|
2018-08-08 13:00:43 +03:00
|
|
|
VALUE zone;
|
2009-04-21 18:56:59 +04:00
|
|
|
now = time(NULL);
|
2018-08-08 13:00:43 +03:00
|
|
|
localtime_with_gmtoff_zone(&now, &tm, &now_gmtoff, &zone);
|
|
|
|
now_isdst = tm.tm_isdst;
|
|
|
|
zone = rb_fstring(zone);
|
|
|
|
rb_gc_register_mark_object(zone);
|
|
|
|
now_zone = zone;
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
2010-07-14 19:38:30 +04:00
|
|
|
if (isdst_ret)
|
2018-08-08 13:00:43 +03:00
|
|
|
*isdst_ret = now_isdst;
|
2010-07-14 19:38:30 +04:00
|
|
|
if (zone_ret)
|
|
|
|
*zone_ret = now_zone;
|
2009-04-21 18:56:59 +04:00
|
|
|
return LONG2FIX(now_gmtoff);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
small_vtm_sub(struct vtm *vtm1, struct vtm *vtm2)
|
|
|
|
{
|
|
|
|
int off;
|
|
|
|
|
|
|
|
off = vtm1->sec - vtm2->sec;
|
|
|
|
off += (vtm1->min - vtm2->min) * 60;
|
|
|
|
off += (vtm1->hour - vtm2->hour) * 3600;
|
|
|
|
if (ne(vtm1->year, vtm2->year))
|
|
|
|
off += lt(vtm1->year, vtm2->year) ? -24*3600 : 24*3600;
|
|
|
|
else if (vtm1->mon != vtm2->mon)
|
|
|
|
off += vtm1->mon < vtm2->mon ? -24*3600 : 24*3600;
|
|
|
|
else if (vtm1->mday != vtm2->mday)
|
|
|
|
off += vtm1->mday < vtm2->mday ? -24*3600 : 24*3600;
|
|
|
|
|
|
|
|
return INT2FIX(off);
|
|
|
|
}
|
|
|
|
|
2010-03-28 04:54:29 +04:00
|
|
|
static wideval_t
|
2010-03-27 17:18:08 +03:00
|
|
|
timelocalw(struct vtm *vtm)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
|
|
|
time_t t;
|
1998-01-16 15:13:05 +03:00
|
|
|
struct tm tm;
|
2009-04-21 18:56:59 +04:00
|
|
|
VALUE v;
|
2010-03-28 04:54:29 +04:00
|
|
|
wideval_t timew1, timew2;
|
2009-04-21 18:56:59 +04:00
|
|
|
struct vtm vtm1, vtm2;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if (FIXNUM_P(vtm->year)) {
|
|
|
|
long l = FIX2LONG(vtm->year) - 1900;
|
|
|
|
if (l < INT_MIN || INT_MAX < l)
|
|
|
|
goto no_localtime;
|
2009-09-23 08:16:41 +04:00
|
|
|
tm.tm_year = (int)l;
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
else {
|
2017-04-11 05:40:14 +03:00
|
|
|
v = subv(vtm->year, INT2FIX(1900));
|
2009-04-21 18:56:59 +04:00
|
|
|
if (lt(v, INT2NUM(INT_MIN)) || lt(INT2NUM(INT_MAX), v))
|
|
|
|
goto no_localtime;
|
|
|
|
tm.tm_year = NUM2INT(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
tm.tm_mon = vtm->mon-1;
|
|
|
|
tm.tm_mday = vtm->mday;
|
|
|
|
tm.tm_hour = vtm->hour;
|
|
|
|
tm.tm_min = vtm->min;
|
|
|
|
tm.tm_sec = vtm->sec;
|
2015-01-06 15:41:20 +03:00
|
|
|
tm.tm_isdst = vtm->isdst == VTM_ISDST_INITVAL ? -1 : vtm->isdst;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
if (find_time_t(&tm, 0, &t))
|
|
|
|
goto no_localtime;
|
2010-03-30 19:34:33 +04:00
|
|
|
return wadd(rb_time_magnify(TIMET2WV(t)), v2w(vtm->subsecx));
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
no_localtime:
|
2010-03-27 17:18:08 +03:00
|
|
|
timew1 = timegmw(vtm);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
if (!localtimew(timew1, &vtm1))
|
|
|
|
rb_raise(rb_eArgError, "localtimew error");
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
n = vtmcmp(vtm, &vtm1);
|
|
|
|
if (n == 0) {
|
2010-03-30 17:25:57 +04:00
|
|
|
timew1 = wsub(timew1, rb_time_magnify(WINT2FIXWV(12*3600)));
|
2010-03-27 17:18:08 +03:00
|
|
|
if (!localtimew(timew1, &vtm1))
|
|
|
|
rb_raise(rb_eArgError, "localtimew error");
|
2009-04-21 18:56:59 +04:00
|
|
|
n = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n < 0) {
|
2010-03-27 17:18:08 +03:00
|
|
|
timew2 = timew1;
|
2009-04-21 18:56:59 +04:00
|
|
|
vtm2 = vtm1;
|
2010-03-30 17:25:57 +04:00
|
|
|
timew1 = wsub(timew1, rb_time_magnify(WINT2FIXWV(24*3600)));
|
2010-03-27 17:18:08 +03:00
|
|
|
if (!localtimew(timew1, &vtm1))
|
|
|
|
rb_raise(rb_eArgError, "localtimew error");
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
else {
|
2010-03-30 17:25:57 +04:00
|
|
|
timew2 = wadd(timew1, rb_time_magnify(WINT2FIXWV(24*3600)));
|
2010-03-27 17:18:08 +03:00
|
|
|
if (!localtimew(timew2, &vtm2))
|
|
|
|
rb_raise(rb_eArgError, "localtimew error");
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
2010-03-30 15:57:03 +04:00
|
|
|
timew1 = wadd(timew1, rb_time_magnify(v2w(small_vtm_sub(vtm, &vtm1))));
|
|
|
|
timew2 = wadd(timew2, rb_time_magnify(v2w(small_vtm_sub(vtm, &vtm2))));
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
if (weq(timew1, timew2))
|
|
|
|
return timew1;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
if (!localtimew(timew1, &vtm1))
|
|
|
|
rb_raise(rb_eArgError, "localtimew error");
|
2009-04-21 18:56:59 +04:00
|
|
|
if (vtm->hour != vtm1.hour || vtm->min != vtm1.min || vtm->sec != vtm1.sec)
|
2010-03-27 17:18:08 +03:00
|
|
|
return timew2;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
if (!localtimew(timew2, &vtm2))
|
|
|
|
rb_raise(rb_eArgError, "localtimew error");
|
2009-04-21 18:56:59 +04:00
|
|
|
if (vtm->hour != vtm2.hour || vtm->min != vtm2.min || vtm->sec != vtm2.sec)
|
2010-03-27 17:18:08 +03:00
|
|
|
return timew1;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
if (vtm->isdst)
|
2010-03-27 17:18:08 +03:00
|
|
|
return lt(vtm1.utc_offset, vtm2.utc_offset) ? timew2 : timew1;
|
2009-04-21 18:56:59 +04:00
|
|
|
else
|
2010-03-27 17:18:08 +03:00
|
|
|
return lt(vtm1.utc_offset, vtm2.utc_offset) ? timew1 : timew2;
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct tm *
|
2018-08-08 13:00:43 +03:00
|
|
|
localtime_with_gmtoff_zone(const time_t *t, struct tm *result, long *gmtoff, VALUE *zone)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
|
|
|
struct tm tm;
|
|
|
|
|
|
|
|
if (LOCALTIME(t, tm)) {
|
|
|
|
#if defined(HAVE_STRUCT_TM_TM_GMTOFF)
|
|
|
|
*gmtoff = tm.tm_gmtoff;
|
|
|
|
#else
|
|
|
|
struct tm *u, *l;
|
|
|
|
long off;
|
2009-04-22 06:13:44 +04:00
|
|
|
struct tm tmbuf;
|
2009-04-21 18:56:59 +04:00
|
|
|
l = &tm;
|
2009-04-22 04:27:33 +04:00
|
|
|
u = GMTIME(t, tmbuf);
|
2009-04-21 18:56:59 +04:00
|
|
|
if (!u)
|
2009-04-22 04:27:33 +04:00
|
|
|
return NULL;
|
2009-04-21 18:56:59 +04:00
|
|
|
if (l->tm_year != u->tm_year)
|
|
|
|
off = l->tm_year < u->tm_year ? -1 : 1;
|
|
|
|
else if (l->tm_mon != u->tm_mon)
|
|
|
|
off = l->tm_mon < u->tm_mon ? -1 : 1;
|
|
|
|
else if (l->tm_mday != u->tm_mday)
|
|
|
|
off = l->tm_mday < u->tm_mday ? -1 : 1;
|
|
|
|
else
|
|
|
|
off = 0;
|
|
|
|
off = off * 24 + l->tm_hour - u->tm_hour;
|
|
|
|
off = off * 60 + l->tm_min - u->tm_min;
|
|
|
|
off = off * 60 + l->tm_sec - u->tm_sec;
|
|
|
|
*gmtoff = off;
|
|
|
|
#endif
|
2010-07-14 19:38:30 +04:00
|
|
|
|
|
|
|
if (zone) {
|
|
|
|
#if defined(HAVE_TM_ZONE)
|
2018-08-08 13:00:43 +03:00
|
|
|
*zone = zone_str(tm.tm_zone);
|
2010-07-14 19:38:30 +04:00
|
|
|
#elif defined(HAVE_TZNAME) && defined(HAVE_DAYLIGHT)
|
2015-04-23 22:51:18 +03:00
|
|
|
# if RUBY_MSVCRT_VERSION >= 140
|
|
|
|
# define tzname _tzname
|
|
|
|
# define daylight _daylight
|
|
|
|
# endif
|
2010-07-14 19:38:30 +04:00
|
|
|
/* this needs tzset or localtime, instead of localtime_r */
|
|
|
|
*zone = zone_str(tzname[daylight && tm.tm_isdst]);
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
char buf[64];
|
|
|
|
strftime(buf, sizeof(buf), "%Z", &tm);
|
|
|
|
*zone = zone_str(buf);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
*result = tm;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
static int
|
2010-03-28 04:54:29 +04:00
|
|
|
timew_out_of_timet_range(wideval_t timew)
|
2010-03-27 17:18:08 +03:00
|
|
|
{
|
|
|
|
VALUE timexv;
|
2010-03-29 14:47:00 +04:00
|
|
|
#if WIDEVALUE_IS_WIDER && SIZEOF_TIME_T < SIZEOF_INT64_T
|
2010-03-30 16:58:34 +04:00
|
|
|
if (FIXWV_P(timew)) {
|
|
|
|
wideint_t t = FIXWV2WINT(timew);
|
|
|
|
if (t < TIME_SCALE * (wideint_t)TIMET_MIN ||
|
|
|
|
TIME_SCALE * (1 + (wideint_t)TIMET_MAX) <= t)
|
2010-03-27 17:18:08 +03:00
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
2012-07-02 16:26:50 +04:00
|
|
|
#endif
|
|
|
|
#if SIZEOF_TIME_T == SIZEOF_INT64_T
|
|
|
|
if (FIXWV_P(timew)) {
|
|
|
|
wideint_t t = FIXWV2WINT(timew);
|
|
|
|
if (~(time_t)0 <= 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (t < 0)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2010-03-27 17:18:08 +03:00
|
|
|
#endif
|
2010-03-30 15:57:03 +04:00
|
|
|
timexv = w2v(timew);
|
2017-04-11 05:40:14 +03:00
|
|
|
if (lt(timexv, mulv(INT2FIX(TIME_SCALE), TIMET2NUM(TIMET_MIN))) ||
|
|
|
|
le(mulv(INT2FIX(TIME_SCALE), addv(TIMET2NUM(TIMET_MAX), INT2FIX(1))), timexv))
|
2010-03-27 17:18:08 +03:00
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
static struct vtm *
|
2010-03-28 04:54:29 +04:00
|
|
|
localtimew(wideval_t timew, struct vtm *result)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
2010-03-30 19:34:33 +04:00
|
|
|
VALUE subsecx, offset;
|
2018-08-08 13:00:43 +03:00
|
|
|
VALUE zone;
|
2010-07-14 19:38:30 +04:00
|
|
|
int isdst;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
if (!timew_out_of_timet_range(timew)) {
|
2009-04-21 18:56:59 +04:00
|
|
|
time_t t;
|
|
|
|
struct tm tm;
|
|
|
|
long gmtoff;
|
2010-03-30 19:34:33 +04:00
|
|
|
wideval_t timew2;
|
2010-03-27 17:18:08 +03:00
|
|
|
|
2010-03-30 19:34:33 +04:00
|
|
|
split_second(timew, &timew2, &subsecx);
|
2010-03-27 17:18:08 +03:00
|
|
|
|
2010-03-30 19:34:33 +04:00
|
|
|
t = WV2TIMET(timew2);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-07-14 19:38:30 +04:00
|
|
|
if (localtime_with_gmtoff_zone(&t, &tm, &gmtoff, &zone)) {
|
2009-04-21 18:56:59 +04:00
|
|
|
result->year = LONG2NUM((long)tm.tm_year + 1900);
|
|
|
|
result->mon = tm.tm_mon + 1;
|
|
|
|
result->mday = tm.tm_mday;
|
|
|
|
result->hour = tm.tm_hour;
|
|
|
|
result->min = tm.tm_min;
|
|
|
|
result->sec = tm.tm_sec;
|
2009-08-29 23:06:29 +04:00
|
|
|
result->subsecx = subsecx;
|
2009-04-21 18:56:59 +04:00
|
|
|
result->wday = tm.tm_wday;
|
|
|
|
result->yday = tm.tm_yday+1;
|
|
|
|
result->isdst = tm.tm_isdst;
|
|
|
|
result->utc_offset = LONG2NUM(gmtoff);
|
2010-07-14 19:38:30 +04:00
|
|
|
result->zone = zone;
|
2009-04-21 18:56:59 +04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
if (!gmtimew(timew, result))
|
2009-04-21 18:56:59 +04:00
|
|
|
return NULL;
|
|
|
|
|
2010-07-14 19:38:30 +04:00
|
|
|
offset = guess_local_offset(result, &isdst, &zone);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-30 15:57:03 +04:00
|
|
|
if (!gmtimew(wadd(timew, rb_time_magnify(v2w(offset))), result))
|
2009-04-21 18:56:59 +04:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
result->utc_offset = offset;
|
2010-07-14 19:38:30 +04:00
|
|
|
result->isdst = isdst;
|
|
|
|
result->zone = zone;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-08-08 13:39:31 +03:00
|
|
|
#define TIME_TZMODE_LOCALTIME 0
|
|
|
|
#define TIME_TZMODE_UTC 1
|
|
|
|
#define TIME_TZMODE_FIXOFF 2
|
|
|
|
#define TIME_TZMODE_UNINITIALIZED 3
|
|
|
|
|
2014-02-25 11:00:10 +04:00
|
|
|
PACKED_STRUCT_UNALIGNED(struct time_object {
|
2010-03-28 04:54:29 +04:00
|
|
|
wideval_t timew; /* time_t value * TIME_SCALE. possibly Rational. */
|
2009-04-21 18:56:59 +04:00
|
|
|
struct vtm vtm;
|
2018-08-08 14:50:39 +03:00
|
|
|
unsigned int tzmode:3; /* 0:localtime 1:utc 2:fixoff 3:uninitialized */
|
2018-01-17 08:03:43 +03:00
|
|
|
unsigned int tm_got:1;
|
2014-02-25 11:00:10 +04:00
|
|
|
});
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2013-03-15 18:06:21 +04:00
|
|
|
#define GetTimeval(obj, tobj) ((tobj) = get_timeval(obj))
|
|
|
|
#define GetNewTimeval(obj, tobj) ((tobj) = get_new_timeval(obj))
|
2009-09-09 07:43:48 +04:00
|
|
|
|
2010-11-27 13:12:48 +03:00
|
|
|
#define IsTimeval(obj) rb_typeddata_is_kind_of((obj), &time_data_type)
|
2018-08-08 13:39:31 +03:00
|
|
|
#define TIME_INIT_P(tobj) ((tobj)->tzmode != TIME_TZMODE_UNINITIALIZED)
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2018-08-08 15:48:58 +03:00
|
|
|
#define TZMODE_UTC_P(tobj) ((tobj)->tzmode == TIME_TZMODE_UTC)
|
|
|
|
#define TZMODE_SET_UTC(tobj) ((tobj)->tzmode = TIME_TZMODE_UTC)
|
2009-04-25 10:25:06 +04:00
|
|
|
|
2018-08-08 15:48:58 +03:00
|
|
|
#define TZMODE_LOCALTIME_P(tobj) ((tobj)->tzmode == TIME_TZMODE_LOCALTIME)
|
|
|
|
#define TZMODE_SET_LOCALTIME(tobj) ((tobj)->tzmode = TIME_TZMODE_LOCALTIME)
|
2009-04-25 10:25:06 +04:00
|
|
|
|
2018-08-08 15:48:58 +03:00
|
|
|
#define TZMODE_FIXOFF_P(tobj) ((tobj)->tzmode == TIME_TZMODE_FIXOFF)
|
|
|
|
#define TZMODE_SET_FIXOFF(tobj, off) \
|
2018-08-08 13:39:31 +03:00
|
|
|
((tobj)->tzmode = TIME_TZMODE_FIXOFF, \
|
2009-05-12 16:07:49 +04:00
|
|
|
(tobj)->vtm.utc_offset = (off), \
|
2018-08-08 13:00:43 +03:00
|
|
|
(tobj)->vtm.zone = Qnil)
|
2009-05-12 16:07:49 +04:00
|
|
|
|
2018-08-08 15:48:58 +03:00
|
|
|
#define TZMODE_COPY(tobj1, tobj2) \
|
2018-08-08 13:39:31 +03:00
|
|
|
((tobj1)->tzmode = (tobj2)->tzmode, \
|
2011-11-19 14:47:03 +04:00
|
|
|
(tobj1)->vtm.utc_offset = (tobj2)->vtm.utc_offset, \
|
|
|
|
(tobj1)->vtm.zone = (tobj2)->vtm.zone)
|
2009-04-25 11:04:02 +04:00
|
|
|
|
2009-04-25 10:48:39 +04:00
|
|
|
static VALUE time_get_tm(VALUE, struct time_object *);
|
2009-04-25 10:25:06 +04:00
|
|
|
#define MAKE_TM(time, tobj) \
|
|
|
|
do { \
|
|
|
|
if ((tobj)->tm_got == 0) { \
|
2009-04-25 10:48:39 +04:00
|
|
|
time_get_tm((time), (tobj)); \
|
2009-04-25 10:25:06 +04:00
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
static void
|
|
|
|
time_mark(void *ptr)
|
|
|
|
{
|
|
|
|
struct time_object *tobj = ptr;
|
2010-03-30 16:58:34 +04:00
|
|
|
if (!FIXWV_P(tobj->timew))
|
2010-03-30 15:57:03 +04:00
|
|
|
rb_gc_mark(w2v(tobj->timew));
|
2009-04-21 18:56:59 +04:00
|
|
|
rb_gc_mark(tobj->vtm.year);
|
2009-08-29 23:06:29 +04:00
|
|
|
rb_gc_mark(tobj->vtm.subsecx);
|
2009-04-21 18:56:59 +04:00
|
|
|
rb_gc_mark(tobj->vtm.utc_offset);
|
2018-08-08 13:00:43 +03:00
|
|
|
rb_gc_mark(tobj->vtm.zone);
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
2009-09-09 07:43:48 +04:00
|
|
|
static size_t
|
|
|
|
time_memsize(const void *tobj)
|
|
|
|
{
|
2014-09-10 10:01:36 +04:00
|
|
|
return sizeof(struct time_object);
|
2009-09-09 07:43:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static const rb_data_type_t time_data_type = {
|
|
|
|
"time",
|
2014-09-10 10:01:36 +04:00
|
|
|
{time_mark, RUBY_TYPED_DEFAULT_FREE, time_memsize,},
|
2014-12-01 09:38:04 +03:00
|
|
|
0, 0, RUBY_TYPED_FREE_IMMEDIATELY
|
2009-09-09 07:43:48 +04:00
|
|
|
};
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_s_alloc(VALUE klass)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
VALUE obj;
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
2009-09-09 07:43:48 +04:00
|
|
|
obj = TypedData_Make_Struct(klass, struct time_object, &time_data_type, tobj);
|
2018-08-08 13:39:31 +03:00
|
|
|
tobj->tzmode = TIME_TZMODE_UNINITIALIZED;
|
1998-01-16 15:13:05 +03:00
|
|
|
tobj->tm_got=0;
|
2010-03-30 17:25:57 +04:00
|
|
|
tobj->timew = WINT2FIXWV(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2013-03-15 18:06:21 +04:00
|
|
|
static struct time_object *
|
|
|
|
get_timeval(VALUE obj)
|
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
TypedData_Get_Struct(obj, struct time_object, &time_data_type, tobj);
|
|
|
|
if (!TIME_INIT_P(tobj)) {
|
2013-08-09 05:56:51 +04:00
|
|
|
rb_raise(rb_eTypeError, "uninitialized %"PRIsVALUE, rb_obj_class(obj));
|
2013-03-15 18:06:21 +04:00
|
|
|
}
|
|
|
|
return tobj;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct time_object *
|
|
|
|
get_new_timeval(VALUE obj)
|
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
TypedData_Get_Struct(obj, struct time_object, &time_data_type, tobj);
|
|
|
|
if (TIME_INIT_P(tobj)) {
|
2013-08-09 05:56:51 +04:00
|
|
|
rb_raise(rb_eTypeError, "already initialized %"PRIsVALUE, rb_obj_class(obj));
|
2013-03-15 18:06:21 +04:00
|
|
|
}
|
|
|
|
return tobj;
|
|
|
|
}
|
|
|
|
|
2003-10-02 12:25:00 +04:00
|
|
|
static void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_modify(VALUE time)
|
2002-03-08 10:03:09 +03:00
|
|
|
{
|
2009-04-21 18:56:59 +04:00
|
|
|
rb_check_frozen(time);
|
2011-07-17 11:26:45 +04:00
|
|
|
rb_check_trusted(time);
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
2010-03-28 04:54:29 +04:00
|
|
|
static wideval_t
|
2010-03-27 17:18:08 +03:00
|
|
|
timespec2timew(struct timespec *ts)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
2010-03-28 04:54:29 +04:00
|
|
|
wideval_t timew;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-30 19:34:33 +04:00
|
|
|
timew = rb_time_magnify(TIMET2WV(ts->tv_sec));
|
2009-04-21 18:56:59 +04:00
|
|
|
if (ts->tv_nsec)
|
2010-03-30 16:58:34 +04:00
|
|
|
timew = wadd(timew, wmulquoll(WINT2WV(ts->tv_nsec), TIME_SCALE, 1000000000));
|
2010-03-27 17:18:08 +03:00
|
|
|
return timew;
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct timespec
|
2010-03-28 04:54:29 +04:00
|
|
|
timew2timespec(wideval_t timew)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
2010-03-30 19:34:33 +04:00
|
|
|
VALUE subsecx;
|
2009-04-21 18:56:59 +04:00
|
|
|
struct timespec ts;
|
2010-03-30 19:34:33 +04:00
|
|
|
wideval_t timew2;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
if (timew_out_of_timet_range(timew))
|
2010-03-31 16:34:31 +04:00
|
|
|
rb_raise(rb_eArgError, "time out of system range");
|
2010-03-31 01:57:53 +04:00
|
|
|
split_second(timew, &timew2, &subsecx);
|
2010-03-30 19:34:33 +04:00
|
|
|
ts.tv_sec = WV2TIMET(timew2);
|
2017-04-11 05:40:14 +03:00
|
|
|
ts.tv_nsec = NUM2LONG(mulquov(subsecx, INT2FIX(1000000000), INT2FIX(TIME_SCALE)));
|
2009-04-21 18:56:59 +04:00
|
|
|
return ts;
|
2002-03-08 10:03:09 +03:00
|
|
|
}
|
|
|
|
|
2010-03-31 16:34:31 +04:00
|
|
|
static struct timespec *
|
|
|
|
timew2timespec_exact(wideval_t timew, struct timespec *ts)
|
|
|
|
{
|
|
|
|
VALUE subsecx;
|
|
|
|
wideval_t timew2;
|
|
|
|
VALUE nsecv;
|
|
|
|
|
|
|
|
if (timew_out_of_timet_range(timew))
|
|
|
|
return NULL;
|
|
|
|
split_second(timew, &timew2, &subsecx);
|
|
|
|
ts->tv_sec = WV2TIMET(timew2);
|
2017-04-11 05:40:14 +03:00
|
|
|
nsecv = mulquov(subsecx, INT2FIX(1000000000), INT2FIX(TIME_SCALE));
|
2010-03-31 16:34:31 +04:00
|
|
|
if (!FIXNUM_P(nsecv))
|
|
|
|
return NULL;
|
|
|
|
ts->tv_nsec = NUM2LONG(nsecv);
|
|
|
|
return ts;
|
|
|
|
}
|
|
|
|
|
2015-11-10 05:59:47 +03:00
|
|
|
void
|
|
|
|
rb_timespec_now(struct timespec *ts)
|
2003-10-02 12:25:00 +04:00
|
|
|
{
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
#ifdef HAVE_CLOCK_GETTIME
|
2015-11-10 05:59:47 +03:00
|
|
|
if (clock_gettime(CLOCK_REALTIME, ts) == -1) {
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
rb_sys_fail("clock_gettime");
|
2003-10-02 12:25:00 +04:00
|
|
|
}
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
#else
|
|
|
|
{
|
2009-02-22 17:23:33 +03:00
|
|
|
struct timeval tv;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
if (gettimeofday(&tv, 0) < 0) {
|
|
|
|
rb_sys_fail("gettimeofday");
|
|
|
|
}
|
2015-11-10 05:59:47 +03:00
|
|
|
ts->tv_sec = tv.tv_sec;
|
|
|
|
ts->tv_nsec = tv.tv_usec * 1000;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
|
|
|
#endif
|
2015-11-10 05:59:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_init_0(VALUE time)
|
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
struct timespec ts;
|
|
|
|
|
|
|
|
time_modify(time);
|
|
|
|
GetNewTimeval(time, tobj);
|
2018-08-08 13:39:31 +03:00
|
|
|
tobj->tzmode = TIME_TZMODE_LOCALTIME;
|
2015-11-10 05:59:47 +03:00
|
|
|
tobj->tm_got=0;
|
|
|
|
tobj->timew = WINT2FIXWV(0);
|
|
|
|
rb_timespec_now(&ts);
|
2010-03-27 17:18:08 +03:00
|
|
|
tobj->timew = timespec2timew(&ts);
|
2003-10-02 12:25:00 +04:00
|
|
|
|
|
|
|
return time;
|
|
|
|
}
|
2002-03-08 10:03:09 +03:00
|
|
|
|
2009-05-12 16:07:49 +04:00
|
|
|
static VALUE
|
|
|
|
time_set_utc_offset(VALUE time, VALUE off)
|
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
off = num_exact(off);
|
|
|
|
|
|
|
|
time_modify(time);
|
|
|
|
GetTimeval(time, tobj);
|
|
|
|
|
|
|
|
tobj->tm_got = 0;
|
2018-08-08 15:48:58 +03:00
|
|
|
TZMODE_SET_FIXOFF(tobj, off);
|
2009-05-12 16:07:49 +04:00
|
|
|
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
vtm_add_offset(struct vtm *vtm, VALUE off)
|
|
|
|
{
|
|
|
|
int sign;
|
|
|
|
VALUE subsec, v;
|
|
|
|
int sec, min, hour;
|
|
|
|
int day;
|
|
|
|
|
2017-04-11 05:40:14 +03:00
|
|
|
vtm->utc_offset = subv(vtm->utc_offset, off);
|
2009-05-12 16:07:49 +04:00
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
if (lt(off, INT2FIX(0))) {
|
2009-05-12 16:07:49 +04:00
|
|
|
sign = -1;
|
|
|
|
off = neg(off);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sign = 1;
|
|
|
|
}
|
|
|
|
divmodv(off, INT2FIX(1), &off, &subsec);
|
|
|
|
divmodv(off, INT2FIX(60), &off, &v);
|
|
|
|
sec = NUM2INT(v);
|
|
|
|
divmodv(off, INT2FIX(60), &off, &v);
|
|
|
|
min = NUM2INT(v);
|
|
|
|
divmodv(off, INT2FIX(24), &off, &v);
|
|
|
|
hour = NUM2INT(v);
|
|
|
|
|
|
|
|
if (sign < 0) {
|
|
|
|
subsec = neg(subsec);
|
|
|
|
sec = -sec;
|
|
|
|
min = -min;
|
|
|
|
hour = -hour;
|
|
|
|
}
|
|
|
|
|
|
|
|
day = 0;
|
|
|
|
|
|
|
|
if (!rb_equal(subsec, INT2FIX(0))) {
|
2017-04-11 05:40:14 +03:00
|
|
|
vtm->subsecx = addv(vtm->subsecx, w2v(rb_time_magnify(v2w(subsec))));
|
2009-08-29 23:06:29 +04:00
|
|
|
if (lt(vtm->subsecx, INT2FIX(0))) {
|
2017-04-11 05:40:14 +03:00
|
|
|
vtm->subsecx = addv(vtm->subsecx, INT2FIX(TIME_SCALE));
|
2009-05-12 16:07:49 +04:00
|
|
|
sec -= 1;
|
|
|
|
}
|
2009-08-29 23:06:29 +04:00
|
|
|
if (le(INT2FIX(TIME_SCALE), vtm->subsecx)) {
|
2017-04-11 05:40:14 +03:00
|
|
|
vtm->subsecx = subv(vtm->subsecx, INT2FIX(TIME_SCALE));
|
2009-05-12 16:07:49 +04:00
|
|
|
sec += 1;
|
|
|
|
}
|
|
|
|
goto not_zero_sec;
|
|
|
|
}
|
|
|
|
if (sec) {
|
|
|
|
not_zero_sec:
|
|
|
|
/* If sec + subsec == 0, don't change vtm->sec.
|
|
|
|
* It may be 60 which is a leap second. */
|
2014-05-02 22:43:23 +04:00
|
|
|
sec += vtm->sec;
|
|
|
|
if (sec < 0) {
|
|
|
|
sec += 60;
|
2009-05-12 16:07:49 +04:00
|
|
|
min -= 1;
|
|
|
|
}
|
2014-05-02 22:43:23 +04:00
|
|
|
if (60 <= sec) {
|
|
|
|
sec -= 60;
|
2009-05-12 16:07:49 +04:00
|
|
|
min += 1;
|
|
|
|
}
|
2014-05-02 22:43:23 +04:00
|
|
|
vtm->sec = sec;
|
2009-05-12 16:07:49 +04:00
|
|
|
}
|
|
|
|
if (min) {
|
2014-05-02 22:43:23 +04:00
|
|
|
min += vtm->min;
|
|
|
|
if (min < 0) {
|
|
|
|
min += 60;
|
2009-05-12 16:07:49 +04:00
|
|
|
hour -= 1;
|
|
|
|
}
|
2014-05-02 22:43:23 +04:00
|
|
|
if (60 <= min) {
|
|
|
|
min -= 60;
|
2009-05-12 16:07:49 +04:00
|
|
|
hour += 1;
|
|
|
|
}
|
2014-05-02 22:43:23 +04:00
|
|
|
vtm->min = min;
|
2009-05-12 16:07:49 +04:00
|
|
|
}
|
|
|
|
if (hour) {
|
2014-05-02 22:43:23 +04:00
|
|
|
hour += vtm->hour;
|
|
|
|
if (hour < 0) {
|
|
|
|
hour += 24;
|
2009-05-12 16:07:49 +04:00
|
|
|
day = -1;
|
|
|
|
}
|
2014-05-02 22:43:23 +04:00
|
|
|
if (24 <= hour) {
|
|
|
|
hour -= 24;
|
2009-05-12 16:07:49 +04:00
|
|
|
day = 1;
|
|
|
|
}
|
2014-05-02 22:43:23 +04:00
|
|
|
vtm->hour = hour;
|
2009-05-12 16:07:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (day) {
|
|
|
|
if (day < 0) {
|
|
|
|
if (vtm->mon == 1 && vtm->mday == 1) {
|
|
|
|
vtm->mday = 31;
|
|
|
|
vtm->mon = 12; /* December */
|
2017-04-11 05:40:14 +03:00
|
|
|
vtm->year = subv(vtm->year, INT2FIX(1));
|
2016-11-05 17:59:51 +03:00
|
|
|
vtm->yday = leap_year_v_p(vtm->year) ? 366 : 365;
|
2009-05-12 16:07:49 +04:00
|
|
|
}
|
|
|
|
else if (vtm->mday == 1) {
|
|
|
|
const int *days_in_month = leap_year_v_p(vtm->year) ?
|
|
|
|
leap_year_days_in_month :
|
|
|
|
common_year_days_in_month;
|
|
|
|
vtm->mon--;
|
|
|
|
vtm->mday = days_in_month[vtm->mon-1];
|
|
|
|
vtm->yday--;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
vtm->mday--;
|
|
|
|
vtm->yday--;
|
|
|
|
}
|
|
|
|
vtm->wday = (vtm->wday + 6) % 7;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int leap = leap_year_v_p(vtm->year);
|
|
|
|
if (vtm->mon == 12 && vtm->mday == 31) {
|
2017-04-11 05:40:14 +03:00
|
|
|
vtm->year = addv(vtm->year, INT2FIX(1));
|
2009-05-12 16:07:49 +04:00
|
|
|
vtm->mon = 1; /* January */
|
|
|
|
vtm->mday = 1;
|
|
|
|
vtm->yday = 1;
|
|
|
|
}
|
|
|
|
else if (vtm->mday == (leap ? leap_year_days_in_month :
|
|
|
|
common_year_days_in_month)[vtm->mon-1]) {
|
|
|
|
vtm->mon++;
|
|
|
|
vtm->mday = 1;
|
|
|
|
vtm->yday++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
vtm->mday++;
|
|
|
|
vtm->yday++;
|
|
|
|
}
|
|
|
|
vtm->wday = (vtm->wday + 1) % 7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-08 05:35:31 +03:00
|
|
|
static int
|
|
|
|
maybe_tzobj_p(VALUE obj)
|
|
|
|
{
|
|
|
|
if (NIL_P(obj)) return FALSE;
|
|
|
|
if (RB_INTEGER_TYPE_P(obj)) return FALSE;
|
|
|
|
if (RB_TYPE_P(obj, T_STRING)) return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2009-05-12 16:07:49 +04:00
|
|
|
static VALUE
|
|
|
|
utc_offset_arg(VALUE arg)
|
|
|
|
{
|
|
|
|
VALUE tmp;
|
|
|
|
if (!NIL_P(tmp = rb_check_string_type(arg))) {
|
2012-05-30 05:58:34 +04:00
|
|
|
int n = 0;
|
2009-05-12 16:07:49 +04:00
|
|
|
char *s = RSTRING_PTR(tmp);
|
2012-05-30 05:58:34 +04:00
|
|
|
if (!rb_enc_str_asciicompat_p(tmp)) {
|
|
|
|
invalid_utc_offset:
|
2009-05-12 16:07:49 +04:00
|
|
|
rb_raise(rb_eArgError, "\"+HH:MM\" or \"-HH:MM\" expected for utc_offset");
|
2012-05-30 05:58:34 +04:00
|
|
|
}
|
|
|
|
switch (RSTRING_LEN(tmp)) {
|
|
|
|
case 9:
|
|
|
|
if (s[6] != ':') goto invalid_utc_offset;
|
|
|
|
if (!ISDIGIT(s[7]) || !ISDIGIT(s[8])) goto invalid_utc_offset;
|
|
|
|
n += (s[7] * 10 + s[8] - '0' * 11);
|
|
|
|
case 6:
|
|
|
|
if (s[0] != '+' && s[0] != '-') goto invalid_utc_offset;
|
|
|
|
if (!ISDIGIT(s[1]) || !ISDIGIT(s[2])) goto invalid_utc_offset;
|
|
|
|
if (s[3] != ':') goto invalid_utc_offset;
|
|
|
|
if (!ISDIGIT(s[4]) || !ISDIGIT(s[5])) goto invalid_utc_offset;
|
2014-09-21 20:58:47 +04:00
|
|
|
if (s[4] > '5') goto invalid_utc_offset;
|
2012-05-30 05:58:34 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto invalid_utc_offset;
|
|
|
|
}
|
|
|
|
n += (s[1] * 10 + s[2] - '0' * 11) * 3600;
|
2009-09-23 08:16:41 +04:00
|
|
|
n += (s[4] * 10 + s[5] - '0' * 11) * 60;
|
2009-05-12 16:07:49 +04:00
|
|
|
if (s[0] == '-')
|
|
|
|
n = -n;
|
|
|
|
return INT2FIX(n);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return num_exact(arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-08 05:35:31 +03:00
|
|
|
static void
|
|
|
|
zone_set_offset(VALUE zone, struct time_object *tobj,
|
|
|
|
wideval_t tlocal, wideval_t tutc)
|
|
|
|
{
|
|
|
|
/* tlocal and tutc must be unmagnified and in seconds */
|
|
|
|
wideval_t w = wsub(tlocal, tutc);
|
|
|
|
VALUE off = w2v(w);
|
|
|
|
validate_utc_offset(off);
|
|
|
|
tobj->vtm.utc_offset = off;
|
|
|
|
tobj->vtm.zone = zone;
|
|
|
|
tobj->tzmode = TIME_TZMODE_LOCALTIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
static wideval_t
|
|
|
|
extract_time(VALUE time)
|
|
|
|
{
|
|
|
|
wideval_t t;
|
|
|
|
const ID id_to_i = idTo_i;
|
|
|
|
|
|
|
|
#define EXTRACT_TIME() do { \
|
|
|
|
t = v2w(rb_Integer(AREF(to_i))); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
if (rb_typeddata_is_kind_of(time, &time_data_type)) {
|
|
|
|
struct time_object *tobj = DATA_PTR(time);
|
|
|
|
|
|
|
|
time_gmtime(time); /* ensure tm got */
|
|
|
|
t = rb_time_unmagnify(tobj->timew);
|
|
|
|
}
|
|
|
|
else if (RB_TYPE_P(time, T_STRUCT)) {
|
|
|
|
#define AREF(x) rb_struct_aref(time, ID2SYM(id_##x))
|
|
|
|
EXTRACT_TIME();
|
|
|
|
#undef AREF
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#define AREF(x) rb_funcallv(time, id_##x, 0, 0)
|
|
|
|
EXTRACT_TIME();
|
|
|
|
#undef AREF
|
|
|
|
}
|
|
|
|
#undef EXTRACT_TIME
|
|
|
|
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
static wideval_t
|
|
|
|
extract_vtm(VALUE time, struct vtm *vtm, VALUE subsecx)
|
|
|
|
{
|
|
|
|
wideval_t t;
|
|
|
|
const ID id_to_i = idTo_i;
|
|
|
|
|
|
|
|
#define EXTRACT_VTM() do { \
|
|
|
|
VALUE subsecx; \
|
|
|
|
vtm->year = obj2vint(AREF(year)); \
|
|
|
|
vtm->mon = month_arg(AREF(mon)); \
|
|
|
|
vtm->mday = obj2ubits(AREF(mday), 5); \
|
|
|
|
vtm->hour = obj2ubits(AREF(hour), 5); \
|
|
|
|
vtm->min = obj2ubits(AREF(min), 6); \
|
|
|
|
vtm->sec = obj2subsecx(AREF(sec), &subsecx); \
|
|
|
|
vtm->isdst = RTEST(AREF(isdst)); \
|
|
|
|
vtm->utc_offset = Qnil; \
|
|
|
|
t = v2w(rb_Integer(AREF(to_i))); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
if (rb_typeddata_is_kind_of(time, &time_data_type)) {
|
|
|
|
struct time_object *tobj = DATA_PTR(time);
|
|
|
|
|
|
|
|
time_get_tm(time, tobj);
|
|
|
|
*vtm = tobj->vtm;
|
|
|
|
t = rb_time_unmagnify(tobj->timew);
|
|
|
|
if (TZMODE_FIXOFF_P(tobj) && vtm->utc_offset != INT2FIX(0))
|
|
|
|
t = wadd(t, vtm->utc_offset);
|
|
|
|
}
|
|
|
|
else if (RB_TYPE_P(time, T_STRUCT)) {
|
|
|
|
#define AREF(x) rb_struct_aref(time, ID2SYM(id_##x))
|
|
|
|
EXTRACT_VTM();
|
|
|
|
#undef AREF
|
|
|
|
}
|
|
|
|
else if (rb_integer_type_p(time)) {
|
|
|
|
t = v2w(time);
|
|
|
|
GMTIMEW(rb_time_magnify(t), vtm);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#define AREF(x) rb_funcallv(time, id_##x, 0, 0)
|
|
|
|
EXTRACT_VTM();
|
|
|
|
#undef AREF
|
|
|
|
}
|
|
|
|
#undef EXTRACT_VTM
|
|
|
|
vtm->subsecx = subsecx;
|
|
|
|
validate_vtm(vtm);
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
zone_timelocal(VALUE zone, VALUE time)
|
|
|
|
{
|
|
|
|
VALUE utc, tm;
|
|
|
|
struct time_object *tobj = DATA_PTR(time);
|
|
|
|
wideval_t t, s;
|
|
|
|
|
|
|
|
t = rb_time_unmagnify(tobj->timew);
|
|
|
|
tm = tm_from_time(rb_cTimeTM, time);
|
|
|
|
utc = rb_check_funcall(zone, id_local_to_utc, 1, &tm);
|
|
|
|
if (utc == Qundef) return 0;
|
|
|
|
|
|
|
|
s = extract_time(utc);
|
|
|
|
zone_set_offset(zone, tobj, t, s);
|
|
|
|
s = rb_time_magnify(s);
|
|
|
|
if (tobj->vtm.subsecx != INT2FIX(0)) {
|
|
|
|
s = wadd(s, v2w(tobj->vtm.subsecx));
|
|
|
|
}
|
|
|
|
tobj->timew = s;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
zone_localtime(VALUE zone, VALUE time)
|
|
|
|
{
|
|
|
|
VALUE local, tm, subsecx;
|
|
|
|
struct time_object *tobj = DATA_PTR(time);
|
|
|
|
wideval_t t, s;
|
|
|
|
|
|
|
|
split_second(tobj->timew, &t, &subsecx);
|
|
|
|
tm = tm_from_time(rb_cTimeTM, time);
|
|
|
|
|
|
|
|
local = rb_check_funcall(zone, id_utc_to_local, 1, &tm);
|
|
|
|
if (local == Qundef) return 0;
|
|
|
|
|
|
|
|
s = extract_vtm(local, &tobj->vtm, subsecx);
|
|
|
|
tobj->tm_got = 1;
|
|
|
|
zone_set_offset(zone, tobj, s, t);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-05-12 16:07:49 +04:00
|
|
|
static VALUE
|
|
|
|
time_init_1(int argc, VALUE *argv, VALUE time)
|
|
|
|
{
|
|
|
|
struct vtm vtm;
|
2018-10-08 05:35:31 +03:00
|
|
|
VALUE zone = Qnil;
|
2009-05-12 16:07:49 +04:00
|
|
|
VALUE v[7];
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
2014-02-24 07:38:14 +04:00
|
|
|
vtm.wday = VTM_WDAY_INITVAL;
|
2009-05-12 16:07:49 +04:00
|
|
|
vtm.yday = 0;
|
2018-08-08 13:00:43 +03:00
|
|
|
vtm.zone = rb_fstring_usascii("");
|
2009-05-12 16:07:49 +04:00
|
|
|
|
|
|
|
/* year mon mday hour min sec off */
|
|
|
|
rb_scan_args(argc, argv, "16", &v[0],&v[1],&v[2],&v[3],&v[4],&v[5],&v[6]);
|
|
|
|
|
|
|
|
vtm.year = obj2vint(v[0]);
|
|
|
|
|
|
|
|
vtm.mon = NIL_P(v[1]) ? 1 : month_arg(v[1]);
|
|
|
|
|
2014-02-24 07:38:14 +04:00
|
|
|
vtm.mday = NIL_P(v[2]) ? 1 : obj2ubits(v[2], 5);
|
2009-05-12 16:07:49 +04:00
|
|
|
|
2014-02-24 07:38:14 +04:00
|
|
|
vtm.hour = NIL_P(v[3]) ? 0 : obj2ubits(v[3], 5);
|
2009-05-12 16:07:49 +04:00
|
|
|
|
2014-02-24 07:38:14 +04:00
|
|
|
vtm.min = NIL_P(v[4]) ? 0 : obj2ubits(v[4], 6);
|
2009-05-12 16:07:49 +04:00
|
|
|
|
2017-05-04 16:42:47 +03:00
|
|
|
if (NIL_P(v[5])) {
|
|
|
|
vtm.sec = 0;
|
|
|
|
vtm.subsecx = INT2FIX(0);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
VALUE subsecx;
|
|
|
|
vtm.sec = obj2subsecx(v[5], &subsecx);
|
|
|
|
vtm.subsecx = subsecx;
|
|
|
|
}
|
2009-05-12 16:07:49 +04:00
|
|
|
|
2014-02-24 07:38:14 +04:00
|
|
|
vtm.isdst = VTM_ISDST_INITVAL;
|
2009-05-12 16:07:49 +04:00
|
|
|
vtm.utc_offset = Qnil;
|
|
|
|
if (!NIL_P(v[6])) {
|
|
|
|
VALUE arg = v[6];
|
|
|
|
if (arg == ID2SYM(rb_intern("dst")))
|
|
|
|
vtm.isdst = 1;
|
|
|
|
else if (arg == ID2SYM(rb_intern("std")))
|
|
|
|
vtm.isdst = 0;
|
2018-10-08 05:35:31 +03:00
|
|
|
else if (maybe_tzobj_p(arg))
|
|
|
|
zone = arg;
|
2009-05-12 16:07:49 +04:00
|
|
|
else
|
|
|
|
vtm.utc_offset = utc_offset_arg(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
validate_vtm(&vtm);
|
|
|
|
|
|
|
|
time_modify(time);
|
2013-03-15 18:06:21 +04:00
|
|
|
GetNewTimeval(time, tobj);
|
2018-10-08 05:35:31 +03:00
|
|
|
|
|
|
|
if (!NIL_P(zone)) {
|
|
|
|
tobj->timew = timegmw(&vtm);
|
|
|
|
tobj->vtm = vtm;
|
|
|
|
tobj->tm_got = 1;
|
|
|
|
TZMODE_SET_LOCALTIME(tobj);
|
|
|
|
if (zone_timelocal(zone, time)) {
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
vtm.utc_offset = utc_offset_arg(zone);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-08 13:39:31 +03:00
|
|
|
tobj->tzmode = TIME_TZMODE_LOCALTIME;
|
2009-05-12 16:07:49 +04:00
|
|
|
tobj->tm_got=0;
|
2010-03-30 17:25:57 +04:00
|
|
|
tobj->timew = WINT2FIXWV(0);
|
2009-05-12 16:07:49 +04:00
|
|
|
|
|
|
|
if (!NIL_P(vtm.utc_offset)) {
|
|
|
|
VALUE off = vtm.utc_offset;
|
|
|
|
vtm_add_offset(&vtm, neg(off));
|
|
|
|
vtm.utc_offset = Qnil;
|
2010-03-27 17:18:08 +03:00
|
|
|
tobj->timew = timegmw(&vtm);
|
2009-05-12 16:07:49 +04:00
|
|
|
return time_set_utc_offset(time, off);
|
|
|
|
}
|
|
|
|
else {
|
2010-03-27 17:18:08 +03:00
|
|
|
tobj->timew = timelocalw(&vtm);
|
2009-05-12 16:07:49 +04:00
|
|
|
return time_localtime(time);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Time.new -> time
|
2010-05-18 01:07:46 +04:00
|
|
|
* Time.new(year, month=nil, day=nil, hour=nil, min=nil, sec=nil, utc_offset=nil) -> time
|
2009-05-12 16:07:49 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns a Time object.
|
2009-05-12 16:07:49 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* It is initialized to the current system time if no argument is given.
|
2009-05-12 16:07:49 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* *Note:* The new object will use the resolution available on your
|
|
|
|
* system clock, and may include fractional seconds.
|
2009-05-12 16:07:49 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* If one or more arguments specified, the time is initialized to the specified
|
|
|
|
* time.
|
|
|
|
*
|
|
|
|
* +sec+ may have fraction if it is a rational.
|
|
|
|
*
|
|
|
|
* +utc_offset+ is the offset from UTC.
|
|
|
|
* It can be a string such as "+09:00" or a number of seconds such as 32400.
|
2009-05-12 16:07:49 +04:00
|
|
|
*
|
|
|
|
* a = Time.new #=> 2007-11-19 07:50:02 -0600
|
|
|
|
* b = Time.new #=> 2007-11-19 07:50:02 -0600
|
|
|
|
* a == b #=> false
|
|
|
|
* "%.6f" % a.to_f #=> "1195480202.282373"
|
|
|
|
* "%.6f" % b.to_f #=> "1195480202.283415"
|
|
|
|
*
|
|
|
|
* Time.new(2008,6,21, 13,30,0, "+09:00") #=> 2008-06-21 13:30:00 +0900
|
|
|
|
*
|
2010-01-13 22:49:39 +03:00
|
|
|
* # A trip for RubyConf 2007
|
|
|
|
* t1 = Time.new(2007,11,1,15,25,0, "+09:00") # JST (Narita)
|
|
|
|
* t2 = Time.new(2007,11,1,12, 5,0, "-05:00") # CDT (Minneapolis)
|
|
|
|
* t3 = Time.new(2007,11,1,13,25,0, "-05:00") # CDT (Minneapolis)
|
2010-05-29 22:51:39 +04:00
|
|
|
* t4 = Time.new(2007,11,1,16,53,0, "-04:00") # EDT (Charlotte)
|
2010-01-13 22:49:39 +03:00
|
|
|
* t5 = Time.new(2007,11,5, 9,24,0, "-05:00") # EST (Charlotte)
|
|
|
|
* t6 = Time.new(2007,11,5,11,21,0, "-05:00") # EST (Detroit)
|
|
|
|
* t7 = Time.new(2007,11,5,13,45,0, "-05:00") # EST (Detroit)
|
|
|
|
* t8 = Time.new(2007,11,6,17,10,0, "+09:00") # JST (Narita)
|
|
|
|
* p((t2-t1)/3600.0) #=> 10.666666666666666
|
|
|
|
* p((t4-t3)/3600.0) #=> 2.466666666666667
|
|
|
|
* p((t6-t5)/3600.0) #=> 1.95
|
|
|
|
* p((t8-t7)/3600.0) #=> 13.416666666666666
|
|
|
|
*
|
2009-05-12 16:07:49 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_init(int argc, VALUE *argv, VALUE time)
|
|
|
|
{
|
|
|
|
if (argc == 0)
|
|
|
|
return time_init_0(time);
|
|
|
|
else
|
|
|
|
return time_init_1(argc, argv, time);
|
|
|
|
}
|
|
|
|
|
2005-10-18 21:35:18 +04:00
|
|
|
static void
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
time_overflow_p(time_t *secp, long *nsecp)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2013-08-08 16:13:04 +04:00
|
|
|
time_t sec = *secp;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
long nsec = *nsecp;
|
2013-08-08 16:13:04 +04:00
|
|
|
long sec2;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
if (nsec >= 1000000000) { /* nsec positive overflow */
|
2013-08-08 16:13:04 +04:00
|
|
|
sec2 = nsec / 1000000000;
|
|
|
|
if (TIMET_MAX - sec2 < sec) {
|
2001-12-21 12:23:28 +03:00
|
|
|
rb_raise(rb_eRangeError, "out of Time range");
|
|
|
|
}
|
2013-08-08 16:59:21 +04:00
|
|
|
nsec -= sec2 * 1000000000;
|
2013-08-08 16:13:04 +04:00
|
|
|
sec += sec2;
|
2001-12-03 13:07:48 +03:00
|
|
|
}
|
2013-08-08 16:59:21 +04:00
|
|
|
else if (nsec < 0) { /* nsec negative overflow */
|
2013-08-08 16:13:04 +04:00
|
|
|
sec2 = NDIV(nsec,1000000000); /* negative div */
|
2013-08-08 16:34:30 +04:00
|
|
|
if (sec < TIMET_MIN - sec2) {
|
2001-12-21 12:23:28 +03:00
|
|
|
rb_raise(rb_eRangeError, "out of Time range");
|
|
|
|
}
|
2013-08-08 16:59:21 +04:00
|
|
|
nsec -= sec2 * 1000000000;
|
|
|
|
sec += sec2;
|
2001-12-03 13:07:48 +03:00
|
|
|
}
|
2001-02-20 10:42:03 +03:00
|
|
|
#ifndef NEGATIVE_TIME_T
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
if (sec < 0)
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eArgError, "time must be positive");
|
2001-02-20 10:42:03 +03:00
|
|
|
#endif
|
2004-01-18 10:46:51 +03:00
|
|
|
*secp = sec;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
*nsecp = nsec;
|
2003-10-02 12:25:00 +04:00
|
|
|
}
|
2000-03-07 11:37:59 +03:00
|
|
|
|
2010-03-28 04:54:29 +04:00
|
|
|
static wideval_t
|
2010-03-27 17:18:08 +03:00
|
|
|
nsec2timew(time_t sec, long nsec)
|
2009-07-01 16:11:53 +04:00
|
|
|
{
|
|
|
|
struct timespec ts;
|
|
|
|
time_overflow_p(&sec, &nsec);
|
|
|
|
ts.tv_sec = sec;
|
|
|
|
ts.tv_nsec = nsec;
|
2010-03-27 17:18:08 +03:00
|
|
|
return timespec2timew(&ts);
|
2009-07-01 16:11:53 +04:00
|
|
|
}
|
|
|
|
|
2003-10-02 12:25:00 +04:00
|
|
|
static VALUE
|
2010-03-28 04:54:29 +04:00
|
|
|
time_new_timew(VALUE klass, wideval_t timew)
|
2003-10-02 12:25:00 +04:00
|
|
|
{
|
|
|
|
VALUE time = time_s_alloc(klass);
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
2013-03-15 18:06:21 +04:00
|
|
|
tobj = DATA_PTR(time); /* skip type check */
|
2018-08-08 13:39:31 +03:00
|
|
|
tobj->tzmode = TIME_TZMODE_LOCALTIME;
|
2010-03-27 17:18:08 +03:00
|
|
|
tobj->timew = timew;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-10-02 12:25:00 +04:00
|
|
|
return time;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
rb_time_new(time_t sec, long usec)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2011-06-16 23:46:08 +04:00
|
|
|
wideval_t timew;
|
|
|
|
|
|
|
|
if (usec >= 1000000) {
|
|
|
|
long sec2 = usec / 1000000;
|
|
|
|
if (sec > TIMET_MAX - sec2) {
|
|
|
|
rb_raise(rb_eRangeError, "out of Time range");
|
|
|
|
}
|
|
|
|
usec -= sec2 * 1000000;
|
|
|
|
sec += sec2;
|
|
|
|
}
|
2013-08-08 16:59:21 +04:00
|
|
|
else if (usec < 0) {
|
|
|
|
long sec2 = NDIV(usec,1000000); /* negative div */
|
|
|
|
if (sec < TIMET_MIN - sec2) {
|
2011-06-16 23:46:08 +04:00
|
|
|
rb_raise(rb_eRangeError, "out of Time range");
|
|
|
|
}
|
|
|
|
usec -= sec2 * 1000000;
|
|
|
|
sec += sec2;
|
|
|
|
}
|
|
|
|
|
|
|
|
timew = nsec2timew(sec, usec * 1000);
|
|
|
|
return time_new_timew(rb_cTime, timew);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2015-11-10 05:59:47 +03:00
|
|
|
/* returns localtime time object */
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
VALUE
|
|
|
|
rb_time_nano_new(time_t sec, long nsec)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2010-03-27 17:18:08 +03:00
|
|
|
return time_new_timew(rb_cTime, nsec2timew(sec, nsec));
|
2009-07-01 16:11:53 +04:00
|
|
|
}
|
|
|
|
|
2015-11-10 05:59:47 +03:00
|
|
|
/**
|
|
|
|
* Returns a time object with UTC/localtime/fixed offset
|
|
|
|
*
|
2015-11-10 08:36:47 +03:00
|
|
|
* offset is -86400 < fixoff < 86400 or INT_MAX (localtime) or INT_MAX-1 (utc)
|
2015-11-10 05:59:47 +03:00
|
|
|
*/
|
|
|
|
VALUE
|
|
|
|
rb_time_timespec_new(const struct timespec *ts, int offset)
|
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
VALUE time = time_new_timew(rb_cTime, nsec2timew(ts->tv_sec, ts->tv_nsec));
|
|
|
|
|
|
|
|
if (-86400 < offset && offset < 86400) { /* fixoff */
|
|
|
|
GetTimeval(time, tobj);
|
2018-08-08 15:48:58 +03:00
|
|
|
TZMODE_SET_FIXOFF(tobj, INT2FIX(offset));
|
2015-11-10 05:59:47 +03:00
|
|
|
}
|
2015-11-10 08:36:47 +03:00
|
|
|
else if (offset == INT_MAX) { /* localtime */
|
|
|
|
}
|
|
|
|
else if (offset == INT_MAX-1) { /* UTC */
|
2015-11-10 05:59:47 +03:00
|
|
|
GetTimeval(time, tobj);
|
2018-08-08 15:48:58 +03:00
|
|
|
TZMODE_SET_UTC(tobj);
|
2015-11-10 05:59:47 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_raise(rb_eArgError, "utc_offset out of range");
|
|
|
|
}
|
|
|
|
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
2009-07-01 16:11:53 +04:00
|
|
|
VALUE
|
|
|
|
rb_time_num_new(VALUE timev, VALUE off)
|
|
|
|
{
|
2010-03-30 15:57:03 +04:00
|
|
|
VALUE time = time_new_timew(rb_cTime, rb_time_magnify(v2w(timev)));
|
2009-07-01 16:11:53 +04:00
|
|
|
|
|
|
|
if (!NIL_P(off)) {
|
2018-10-08 05:35:31 +03:00
|
|
|
if (maybe_tzobj_p(off)) {
|
|
|
|
time_gmtime(time);
|
|
|
|
if (zone_timelocal(off, time)) return time;
|
|
|
|
}
|
2009-07-01 16:11:53 +04:00
|
|
|
off = utc_offset_arg(off);
|
|
|
|
validate_utc_offset(off);
|
|
|
|
time_set_utc_offset(time, off);
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
|
|
|
return time;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct timespec
|
|
|
|
time_timespec(VALUE num, int interval)
|
|
|
|
{
|
|
|
|
struct timespec t;
|
2015-09-28 05:40:46 +03:00
|
|
|
const char *const tstr = interval ? "time interval" : "time";
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
VALUE i, f, ary;
|
2001-02-27 10:52:11 +03:00
|
|
|
|
|
|
|
#ifndef NEGATIVE_TIME_T
|
|
|
|
interval = 1;
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2016-12-21 15:05:41 +03:00
|
|
|
if (FIXNUM_P(num)) {
|
2009-03-23 16:02:12 +03:00
|
|
|
t.tv_sec = NUM2TIMET(num);
|
2001-02-27 10:52:11 +03:00
|
|
|
if (interval && t.tv_sec < 0)
|
|
|
|
rb_raise(rb_eArgError, "%s must be positive", tstr);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
t.tv_nsec = 0;
|
2016-12-21 15:05:41 +03:00
|
|
|
}
|
|
|
|
else if (RB_FLOAT_TYPE_P(num)) {
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
if (interval && RFLOAT_VALUE(num) < 0.0)
|
2001-02-27 10:52:11 +03:00
|
|
|
rb_raise(rb_eArgError, "%s must be positive", tstr);
|
2001-12-21 12:23:28 +03:00
|
|
|
else {
|
|
|
|
double f, d;
|
|
|
|
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
d = modf(RFLOAT_VALUE(num), &f);
|
2009-07-12 20:18:18 +04:00
|
|
|
if (d >= 0) {
|
|
|
|
t.tv_nsec = (int)(d*1e9+0.5);
|
2014-08-16 05:27:19 +04:00
|
|
|
if (t.tv_nsec >= 1000000000) {
|
|
|
|
t.tv_nsec -= 1000000000;
|
|
|
|
f += 1;
|
|
|
|
}
|
2009-07-12 20:18:18 +04:00
|
|
|
}
|
|
|
|
else if ((t.tv_nsec = (int)(-d*1e9+0.5)) > 0) {
|
|
|
|
t.tv_nsec = 1000000000 - t.tv_nsec;
|
|
|
|
f -= 1;
|
|
|
|
}
|
2001-12-21 12:23:28 +03:00
|
|
|
t.tv_sec = (time_t)f;
|
|
|
|
if (f != t.tv_sec) {
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
rb_raise(rb_eRangeError, "%f out of Time range", RFLOAT_VALUE(num));
|
2001-12-21 12:23:28 +03:00
|
|
|
}
|
|
|
|
}
|
2016-12-21 15:05:41 +03:00
|
|
|
}
|
|
|
|
else if (RB_TYPE_P(num, T_BIGNUM)) {
|
2009-03-23 16:02:12 +03:00
|
|
|
t.tv_sec = NUM2TIMET(num);
|
2001-02-27 10:52:11 +03:00
|
|
|
if (interval && t.tv_sec < 0)
|
|
|
|
rb_raise(rb_eArgError, "%s must be positive", tstr);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
t.tv_nsec = 0;
|
2016-12-21 15:05:41 +03:00
|
|
|
}
|
|
|
|
else {
|
2010-04-28 13:04:51 +04:00
|
|
|
i = INT2FIX(1);
|
|
|
|
ary = rb_check_funcall(num, id_divmod, 1, &i);
|
|
|
|
if (ary != Qundef && !NIL_P(ary = rb_check_array_type(ary))) {
|
2008-05-03 13:12:13 +04:00
|
|
|
i = rb_ary_entry(ary, 0);
|
|
|
|
f = rb_ary_entry(ary, 1);
|
2009-03-23 16:02:12 +03:00
|
|
|
t.tv_sec = NUM2TIMET(i);
|
2008-05-03 13:12:13 +04:00
|
|
|
if (interval && t.tv_sec < 0)
|
|
|
|
rb_raise(rb_eArgError, "%s must be positive", tstr);
|
2017-04-10 21:16:58 +03:00
|
|
|
f = rb_funcall(f, '*', 1, INT2FIX(1000000000));
|
2008-05-03 13:12:13 +04:00
|
|
|
t.tv_nsec = NUM2LONG(f);
|
|
|
|
}
|
|
|
|
else {
|
2015-09-28 05:40:46 +03:00
|
|
|
rb_raise(rb_eTypeError, "can't convert %"PRIsVALUE" into %s",
|
|
|
|
rb_obj_class(num), tstr);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
static struct timeval
|
|
|
|
time_timeval(VALUE num, int interval)
|
|
|
|
{
|
|
|
|
struct timespec ts;
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
ts = time_timespec(num, interval);
|
2009-03-10 22:47:46 +03:00
|
|
|
tv.tv_sec = (TYPEOF_TIMEVAL_TV_SEC)ts.tv_sec;
|
2009-04-22 04:27:33 +04:00
|
|
|
tv.tv_usec = (TYPEOF_TIMEVAL_TV_USEC)(ts.tv_nsec / 1000);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
|
|
|
|
return tv;
|
|
|
|
}
|
|
|
|
|
2000-08-31 09:29:54 +04:00
|
|
|
struct timeval
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
rb_time_interval(VALUE num)
|
2000-08-31 09:29:54 +04:00
|
|
|
{
|
2009-09-23 08:16:41 +04:00
|
|
|
return time_timeval(num, TRUE);
|
2000-08-31 09:29:54 +04:00
|
|
|
}
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
struct timeval
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_time_timeval(VALUE time)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
struct timeval t;
|
2009-04-21 18:56:59 +04:00
|
|
|
struct timespec ts;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2009-09-09 08:06:37 +04:00
|
|
|
if (IsTimeval(time)) {
|
1999-08-13 09:45:20 +04:00
|
|
|
GetTimeval(time, tobj);
|
2010-03-27 17:18:08 +03:00
|
|
|
ts = timew2timespec(tobj->timew);
|
2009-04-21 18:56:59 +04:00
|
|
|
t.tv_sec = (TYPEOF_TIMEVAL_TV_SEC)ts.tv_sec;
|
2009-04-22 04:27:33 +04:00
|
|
|
t.tv_usec = (TYPEOF_TIMEVAL_TV_USEC)(ts.tv_nsec / 1000);
|
1999-08-13 09:45:20 +04:00
|
|
|
return t;
|
|
|
|
}
|
2009-09-23 08:16:41 +04:00
|
|
|
return time_timeval(time, FALSE);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
|
|
|
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
struct timespec
|
|
|
|
rb_time_timespec(VALUE time)
|
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
struct timespec t;
|
|
|
|
|
2009-09-09 08:06:37 +04:00
|
|
|
if (IsTimeval(time)) {
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
GetTimeval(time, tobj);
|
2010-03-27 17:18:08 +03:00
|
|
|
t = timew2timespec(tobj->timew);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
return t;
|
|
|
|
}
|
2009-09-23 08:16:41 +04:00
|
|
|
return time_timespec(time, FALSE);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
|
|
|
|
2009-06-24 15:19:58 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Time.now -> time
|
2009-06-24 15:19:58 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Creates a new Time object for the current time.
|
2014-11-04 17:20:56 +03:00
|
|
|
* This is same as Time.new without arguments.
|
2009-06-24 15:19:58 +04:00
|
|
|
*
|
|
|
|
* Time.now #=> 2009-06-24 12:39:54 +0900
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_s_now(VALUE klass)
|
|
|
|
{
|
|
|
|
return rb_class_new_instance(0, NULL, klass);
|
|
|
|
}
|
|
|
|
|
2017-09-25 09:20:10 +03:00
|
|
|
static int
|
2018-09-12 17:37:51 +03:00
|
|
|
get_scale(VALUE unit)
|
|
|
|
{
|
2017-09-25 09:20:10 +03:00
|
|
|
if (unit == ID2SYM(id_nanosecond) || unit == ID2SYM(id_nsec)) {
|
|
|
|
return 1000000000;
|
|
|
|
}
|
|
|
|
else if (unit == ID2SYM(id_microsecond) || unit == ID2SYM(id_usec)) {
|
|
|
|
return 1000000;
|
|
|
|
}
|
|
|
|
else if (unit == ID2SYM(id_millisecond)) {
|
|
|
|
return 1000;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_raise(rb_eArgError, "unexpected unit: %"PRIsVALUE, unit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Time.at(time) -> time
|
|
|
|
* Time.at(seconds_with_frac) -> time
|
|
|
|
* Time.at(seconds, microseconds_with_frac) -> time
|
2017-09-25 09:20:10 +03:00
|
|
|
* Time.at(seconds, milliseconds, :millisecond) -> time
|
|
|
|
* Time.at(seconds, microseconds, :usec) -> time
|
|
|
|
* Time.at(seconds, microseconds, :microsecond) -> time
|
|
|
|
* Time.at(seconds, nanoseconds, :nsec) -> time
|
|
|
|
* Time.at(seconds, nanoseconds, :nanosecond) -> time
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Creates a new Time object with the value given by +time+,
|
|
|
|
* the given number of +seconds_with_frac+, or
|
|
|
|
* +seconds+ and +microseconds_with_frac+ since the Epoch.
|
|
|
|
* +seconds_with_frac+ and +microseconds_with_frac+
|
|
|
|
* can be an Integer, Float, Rational, or other Numeric.
|
2007-11-19 17:40:15 +03:00
|
|
|
* non-portable feature allows the offset to be negative on some systems.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2011-11-19 14:48:22 +04:00
|
|
|
* If a numeric argument is given, the result is in local time.
|
|
|
|
*
|
2017-09-25 09:20:10 +03:00
|
|
|
* Time.at(0) #=> 1969-12-31 18:00:00 -0600
|
|
|
|
* Time.at(Time.at(0)) #=> 1969-12-31 18:00:00 -0600
|
|
|
|
* Time.at(946702800) #=> 1999-12-31 23:00:00 -0600
|
|
|
|
* Time.at(-284061600) #=> 1960-12-31 00:00:00 -0600
|
|
|
|
* Time.at(946684800.2).usec #=> 200000
|
|
|
|
* Time.at(946684800, 123456.789).nsec #=> 123456789
|
|
|
|
* Time.at(946684800, 123456789, :nsec).nsec #=> 123456789
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_s_at(int argc, VALUE *argv, VALUE klass)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2017-09-25 09:20:10 +03:00
|
|
|
VALUE time, t, unit = Qundef;
|
2010-03-28 04:54:29 +04:00
|
|
|
wideval_t timew;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2017-09-25 09:20:10 +03:00
|
|
|
if (rb_scan_args(argc, argv, "12", &time, &t, &unit) >= 2) {
|
|
|
|
int scale = argc == 3 ? get_scale(unit) : 1000000;
|
2009-04-21 18:56:59 +04:00
|
|
|
time = num_exact(time);
|
|
|
|
t = num_exact(t);
|
2017-09-25 09:20:10 +03:00
|
|
|
timew = wadd(rb_time_magnify(v2w(time)), wmulquoll(v2w(t), TIME_SCALE, scale));
|
2010-03-27 17:18:08 +03:00
|
|
|
t = time_new_timew(klass, timew);
|
1999-10-29 13:25:48 +04:00
|
|
|
}
|
2009-09-09 07:43:48 +04:00
|
|
|
else if (IsTimeval(time)) {
|
1999-08-13 09:45:20 +04:00
|
|
|
struct time_object *tobj, *tobj2;
|
2009-04-21 18:56:59 +04:00
|
|
|
GetTimeval(time, tobj);
|
2010-03-27 17:18:08 +03:00
|
|
|
t = time_new_timew(klass, tobj->timew);
|
1999-08-13 09:45:20 +04:00
|
|
|
GetTimeval(t, tobj2);
|
2018-08-08 15:48:58 +03:00
|
|
|
TZMODE_COPY(tobj2, tobj);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
else {
|
2010-03-30 15:57:03 +04:00
|
|
|
timew = rb_time_magnify(v2w(num_exact(time)));
|
2010-03-27 17:18:08 +03:00
|
|
|
t = time_new_timew(klass, timew);
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
return t;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2008-06-01 23:55:25 +04:00
|
|
|
static const char months[][4] = {
|
1998-01-16 15:13:05 +03:00
|
|
|
"jan", "feb", "mar", "apr", "may", "jun",
|
|
|
|
"jul", "aug", "sep", "oct", "nov", "dec",
|
|
|
|
};
|
|
|
|
|
2009-09-23 08:16:41 +04:00
|
|
|
static int
|
|
|
|
obj2int(VALUE obj)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(obj, T_STRING)) {
|
2009-09-23 08:16:41 +04:00
|
|
|
obj = rb_str_to_inum(obj, 10, FALSE);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
2009-09-23 08:16:41 +04:00
|
|
|
return NUM2INT(obj);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
2014-02-24 07:38:14 +04:00
|
|
|
static uint32_t
|
|
|
|
obj2ubits(VALUE obj, size_t bits)
|
|
|
|
{
|
|
|
|
static const uint32_t u32max = (uint32_t)-1;
|
|
|
|
const uint32_t usable_mask = ~(u32max << bits);
|
|
|
|
uint32_t rv;
|
|
|
|
int tmp = obj2int(obj);
|
|
|
|
|
|
|
|
if (tmp < 0)
|
|
|
|
rb_raise(rb_eArgError, "argument out of range");
|
|
|
|
rv = tmp;
|
|
|
|
if ((rv & usable_mask) != rv)
|
|
|
|
rb_raise(rb_eArgError, "argument out of range");
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
static VALUE
|
|
|
|
obj2vint(VALUE obj)
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
{
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(obj, T_STRING)) {
|
2009-09-23 08:16:41 +04:00
|
|
|
obj = rb_str_to_inum(obj, 10, FALSE);
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
obj = rb_to_int(obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
|
2014-02-24 07:38:14 +04:00
|
|
|
static uint32_t
|
2009-08-29 23:06:29 +04:00
|
|
|
obj2subsecx(VALUE obj, VALUE *subsecx)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
2009-08-29 23:06:29 +04:00
|
|
|
VALUE subsec;
|
|
|
|
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(obj, T_STRING)) {
|
2009-09-23 08:16:41 +04:00
|
|
|
obj = rb_str_to_inum(obj, 10, FALSE);
|
2009-08-29 23:06:29 +04:00
|
|
|
*subsecx = INT2FIX(0);
|
2014-02-27 11:10:14 +04:00
|
|
|
}
|
|
|
|
else {
|
2014-02-24 07:38:14 +04:00
|
|
|
divmodv(num_exact(obj), INT2FIX(1), &obj, &subsec);
|
|
|
|
*subsecx = w2v(rb_time_magnify(v2w(subsec)));
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
2014-02-24 07:38:14 +04:00
|
|
|
return obj2ubits(obj, 6); /* vtm->sec */
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
|
|
|
|
2016-12-24 15:21:52 +03:00
|
|
|
static VALUE
|
2009-08-29 23:06:29 +04:00
|
|
|
usec2subsecx(VALUE obj)
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
{
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(obj, T_STRING)) {
|
2009-09-23 08:16:41 +04:00
|
|
|
obj = rb_str_to_inum(obj, 10, FALSE);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
|
|
|
|
2017-04-11 05:40:14 +03:00
|
|
|
return mulquov(num_exact(obj), INT2FIX(TIME_SCALE), INT2FIX(1000000));
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
|
|
|
|
2014-02-24 07:38:14 +04:00
|
|
|
static uint32_t
|
2009-04-25 11:20:20 +04:00
|
|
|
month_arg(VALUE arg)
|
|
|
|
{
|
|
|
|
int i, mon;
|
|
|
|
|
|
|
|
VALUE s = rb_check_string_type(arg);
|
2014-04-18 19:09:49 +04:00
|
|
|
if (!NIL_P(s) && RSTRING_LEN(s) > 0) {
|
2009-04-25 11:20:20 +04:00
|
|
|
mon = 0;
|
|
|
|
for (i=0; i<12; i++) {
|
|
|
|
if (RSTRING_LEN(s) == 3 &&
|
2014-04-18 19:09:49 +04:00
|
|
|
STRNCASECMP(months[i], RSTRING_PTR(s), 3) == 0) {
|
2009-04-25 11:20:20 +04:00
|
|
|
mon = i+1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mon == 0) {
|
|
|
|
char c = RSTRING_PTR(s)[0];
|
|
|
|
|
|
|
|
if ('0' <= c && c <= '9') {
|
2014-02-24 07:38:14 +04:00
|
|
|
mon = obj2ubits(s, 4);
|
2009-04-25 11:20:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2014-02-24 07:38:14 +04:00
|
|
|
mon = obj2ubits(arg, 4);
|
2009-04-25 11:20:20 +04:00
|
|
|
}
|
|
|
|
return mon;
|
|
|
|
}
|
|
|
|
|
2013-08-17 17:20:50 +04:00
|
|
|
static VALUE
|
2009-05-12 16:07:49 +04:00
|
|
|
validate_utc_offset(VALUE utc_offset)
|
|
|
|
{
|
|
|
|
if (le(utc_offset, INT2FIX(-86400)) || ge(utc_offset, INT2FIX(86400)))
|
|
|
|
rb_raise(rb_eArgError, "utc_offset out of range");
|
2013-08-17 17:20:50 +04:00
|
|
|
return utc_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
validate_zone_name(VALUE zone_name)
|
|
|
|
{
|
|
|
|
StringValueCStr(zone_name);
|
|
|
|
return zone_name;
|
2009-05-12 16:07:49 +04:00
|
|
|
}
|
|
|
|
|
2009-04-25 11:20:20 +04:00
|
|
|
static void
|
|
|
|
validate_vtm(struct vtm *vtm)
|
|
|
|
{
|
2016-12-19 11:36:21 +03:00
|
|
|
#define validate_vtm_range(mem, b, e) \
|
|
|
|
((vtm->mem < b || vtm->mem > e) ? \
|
|
|
|
rb_raise(rb_eArgError, #mem" out of range") : (void)0)
|
|
|
|
validate_vtm_range(mon, 1, 12);
|
|
|
|
validate_vtm_range(mday, 1, 31);
|
|
|
|
validate_vtm_range(hour, 0, 24);
|
|
|
|
validate_vtm_range(min, 0, (vtm->hour == 24 ? 0 : 59));
|
|
|
|
validate_vtm_range(sec, 0, (vtm->hour == 24 ? 0 : 60));
|
|
|
|
if (lt(vtm->subsecx, INT2FIX(0)) || ge(vtm->subsecx, INT2FIX(TIME_SCALE)))
|
|
|
|
rb_raise(rb_eArgError, "subsecx out of range");
|
|
|
|
if (!NIL_P(vtm->utc_offset)) validate_utc_offset(vtm->utc_offset);
|
|
|
|
#undef validate_vtm_range
|
2009-04-25 11:20:20 +04:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static void
|
2018-10-08 05:35:31 +03:00
|
|
|
time_arg(int argc, const VALUE *argv, struct vtm *vtm)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2003-01-23 06:39:25 +03:00
|
|
|
VALUE v[8];
|
2017-05-04 16:42:47 +03:00
|
|
|
VALUE subsecx = INT2FIX(0);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
vtm->year = INT2FIX(0);
|
|
|
|
vtm->mon = 0;
|
|
|
|
vtm->mday = 0;
|
|
|
|
vtm->hour = 0;
|
|
|
|
vtm->min = 0;
|
|
|
|
vtm->sec = 0;
|
2009-08-29 23:06:29 +04:00
|
|
|
vtm->subsecx = INT2FIX(0);
|
2009-04-21 18:56:59 +04:00
|
|
|
vtm->utc_offset = Qnil;
|
|
|
|
vtm->wday = 0;
|
|
|
|
vtm->yday = 0;
|
|
|
|
vtm->isdst = 0;
|
2018-08-08 13:00:43 +03:00
|
|
|
vtm->zone = rb_fstring_usascii("");
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (argc == 10) {
|
|
|
|
v[0] = argv[5];
|
|
|
|
v[1] = argv[4];
|
|
|
|
v[2] = argv[3];
|
|
|
|
v[3] = argv[2];
|
|
|
|
v[4] = argv[1];
|
|
|
|
v[5] = argv[0];
|
2003-06-23 08:47:30 +04:00
|
|
|
v[6] = Qnil;
|
2009-04-21 18:56:59 +04:00
|
|
|
vtm->isdst = RTEST(argv[8]) ? 1 : 0;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
else {
|
2003-01-23 06:39:25 +03:00
|
|
|
rb_scan_args(argc, argv, "17", &v[0],&v[1],&v[2],&v[3],&v[4],&v[5],&v[6],&v[7]);
|
|
|
|
/* v[6] may be usec or zone (parsedate) */
|
|
|
|
/* v[7] is wday (parsedate; ignored) */
|
2014-02-24 07:38:14 +04:00
|
|
|
vtm->wday = VTM_WDAY_INITVAL;
|
|
|
|
vtm->isdst = VTM_ISDST_INITVAL;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2009-04-21 20:43:15 +04:00
|
|
|
vtm->year = obj2vint(v[0]);
|
2001-12-17 09:45:37 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (NIL_P(v[1])) {
|
2009-04-21 18:56:59 +04:00
|
|
|
vtm->mon = 1;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2003-01-23 06:39:25 +03:00
|
|
|
else {
|
2009-04-25 11:20:20 +04:00
|
|
|
vtm->mon = month_arg(v[1]);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (NIL_P(v[2])) {
|
2009-04-21 18:56:59 +04:00
|
|
|
vtm->mday = 1;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else {
|
2014-02-24 07:38:14 +04:00
|
|
|
vtm->mday = obj2ubits(v[2], 5);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2014-02-24 07:38:14 +04:00
|
|
|
vtm->hour = NIL_P(v[3])?0:obj2ubits(v[3], 5);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2014-02-24 07:38:14 +04:00
|
|
|
vtm->min = NIL_P(v[4])?0:obj2ubits(v[4], 6);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
if (!NIL_P(v[6]) && argc == 7) {
|
2017-05-04 16:42:47 +03:00
|
|
|
vtm->sec = NIL_P(v[5])?0:obj2ubits(v[5],6);
|
|
|
|
subsecx = usec2subsecx(v[6]);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
|
|
|
else {
|
2004-06-23 16:59:01 +04:00
|
|
|
/* when argc == 8, v[6] is timezone, but ignored */
|
2017-05-04 16:42:47 +03:00
|
|
|
if (NIL_P(v[5])) {
|
|
|
|
vtm->sec = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
vtm->sec = obj2subsecx(v[5], &subsecx);
|
|
|
|
}
|
2003-01-23 06:39:25 +03:00
|
|
|
}
|
2017-05-04 16:42:47 +03:00
|
|
|
vtm->subsecx = subsecx;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2009-04-25 11:20:20 +04:00
|
|
|
validate_vtm(vtm);
|
2017-05-04 16:42:47 +03:00
|
|
|
RB_GC_GUARD(subsecx);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-03-31 14:27:58 +04:00
|
|
|
static int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
leap_year_p(long y)
|
2004-03-31 14:27:58 +04:00
|
|
|
{
|
2004-06-23 16:59:01 +04:00
|
|
|
return ((y % 4 == 0) && (y % 100 != 0)) || (y % 400 == 0);
|
2004-03-31 14:27:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static time_t
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
timegm_noleapsecond(struct tm *tm)
|
2004-03-31 14:27:58 +04:00
|
|
|
{
|
|
|
|
long tm_year = tm->tm_year;
|
2018-08-12 19:45:02 +03:00
|
|
|
int tm_yday = calc_tm_yday(tm->tm_year, tm->tm_mon, tm->tm_mday);
|
2004-03-31 14:27:58 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* `Seconds Since the Epoch' in SUSv3:
|
|
|
|
* tm_sec + tm_min*60 + tm_hour*3600 + tm_yday*86400 +
|
|
|
|
* (tm_year-70)*31536000 + ((tm_year-69)/4)*86400 -
|
|
|
|
* ((tm_year-1)/100)*86400 + ((tm_year+299)/400)*86400
|
|
|
|
*/
|
|
|
|
return tm->tm_sec + tm->tm_min*60 + tm->tm_hour*3600 +
|
2004-06-23 16:59:01 +04:00
|
|
|
(time_t)(tm_yday +
|
|
|
|
(tm_year-70)*365 +
|
|
|
|
DIV(tm_year-69,4) -
|
|
|
|
DIV(tm_year-1,100) +
|
|
|
|
DIV(tm_year+299,400))*86400;
|
2004-03-31 14:27:58 +04:00
|
|
|
}
|
|
|
|
|
2009-07-02 21:53:21 +04:00
|
|
|
#if 0
|
|
|
|
#define DEBUG_FIND_TIME_NUMGUESS
|
2009-07-03 17:49:41 +04:00
|
|
|
#define DEBUG_GUESSRANGE
|
2009-07-02 21:53:21 +04:00
|
|
|
#endif
|
|
|
|
|
2009-07-03 17:49:41 +04:00
|
|
|
#ifdef DEBUG_GUESSRANGE
|
2013-03-31 01:08:34 +04:00
|
|
|
#define DEBUG_REPORT_GUESSRANGE fprintf(stderr, "find time guess range: %ld - %ld : %"PRI_TIMET_PREFIX"u\n", guess_lo, guess_hi, (unsigned_time_t)(guess_hi-guess_lo))
|
2009-07-03 17:49:41 +04:00
|
|
|
#else
|
2009-07-02 21:53:21 +04:00
|
|
|
#define DEBUG_REPORT_GUESSRANGE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG_FIND_TIME_NUMGUESS
|
|
|
|
#define DEBUG_FIND_TIME_NUMGUESS_INC find_time_numguess++,
|
2009-07-02 19:37:06 +04:00
|
|
|
static unsigned long long find_time_numguess;
|
|
|
|
|
|
|
|
static VALUE find_time_numguess_getter(void)
|
|
|
|
{
|
|
|
|
return ULL2NUM(find_time_numguess);
|
|
|
|
}
|
2009-07-02 21:53:21 +04:00
|
|
|
#else
|
|
|
|
#define DEBUG_FIND_TIME_NUMGUESS_INC
|
2009-07-02 19:37:06 +04:00
|
|
|
#endif
|
|
|
|
|
2009-04-21 19:32:19 +04:00
|
|
|
static const char *
|
2009-04-21 18:56:59 +04:00
|
|
|
find_time_t(struct tm *tptr, int utc_p, time_t *tp)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2009-07-02 21:53:21 +04:00
|
|
|
time_t guess, guess0, guess_lo, guess_hi;
|
2009-07-05 19:11:27 +04:00
|
|
|
struct tm *tm, tm0, tm_lo, tm_hi;
|
2009-07-02 19:37:06 +04:00
|
|
|
int d;
|
2001-05-30 13:12:34 +04:00
|
|
|
int find_dst;
|
2009-04-22 05:40:09 +04:00
|
|
|
struct tm result;
|
2009-07-02 21:53:21 +04:00
|
|
|
int status;
|
2010-06-09 17:54:03 +04:00
|
|
|
int tptr_tm_yday;
|
2009-07-02 19:37:06 +04:00
|
|
|
|
2010-11-27 13:12:48 +03:00
|
|
|
#define GUESS(p) (DEBUG_FIND_TIME_NUMGUESS_INC (utc_p ? gmtime_with_leapsecond((p), &result) : LOCALTIME((p), result)))
|
2001-05-30 13:12:34 +04:00
|
|
|
|
2009-07-05 19:11:27 +04:00
|
|
|
guess_lo = TIMET_MIN;
|
|
|
|
guess_hi = TIMET_MAX;
|
|
|
|
|
2001-12-17 09:45:37 +03:00
|
|
|
find_dst = 0 < tptr->tm_isdst;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2009-08-30 18:44:54 +04:00
|
|
|
#if defined(HAVE_MKTIME)
|
|
|
|
tm0 = *tptr;
|
|
|
|
if (!utc_p && (guess = mktime(&tm0)) != -1) {
|
|
|
|
tm = GUESS(&guess);
|
|
|
|
if (tm && tmcmp(tptr, tm) == 0) {
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-07-05 19:11:27 +04:00
|
|
|
tm0 = *tptr;
|
|
|
|
if (tm0.tm_mon < 0) {
|
2014-11-27 11:08:32 +03:00
|
|
|
tm0.tm_mon = 0;
|
|
|
|
tm0.tm_mday = 1;
|
|
|
|
tm0.tm_hour = 0;
|
|
|
|
tm0.tm_min = 0;
|
|
|
|
tm0.tm_sec = 0;
|
2009-07-05 19:11:27 +04:00
|
|
|
}
|
|
|
|
else if (11 < tm0.tm_mon) {
|
2014-11-27 11:08:32 +03:00
|
|
|
tm0.tm_mon = 11;
|
|
|
|
tm0.tm_mday = 31;
|
|
|
|
tm0.tm_hour = 23;
|
|
|
|
tm0.tm_min = 59;
|
|
|
|
tm0.tm_sec = 60;
|
2009-07-05 19:11:27 +04:00
|
|
|
}
|
|
|
|
else if (tm0.tm_mday < 1) {
|
2014-11-27 11:08:32 +03:00
|
|
|
tm0.tm_mday = 1;
|
|
|
|
tm0.tm_hour = 0;
|
|
|
|
tm0.tm_min = 0;
|
|
|
|
tm0.tm_sec = 0;
|
2009-07-05 19:11:27 +04:00
|
|
|
}
|
|
|
|
else if ((d = (leap_year_p(1900 + tm0.tm_year) ?
|
|
|
|
leap_year_days_in_month :
|
|
|
|
common_year_days_in_month)[tm0.tm_mon]) < tm0.tm_mday) {
|
2014-11-27 11:08:32 +03:00
|
|
|
tm0.tm_mday = d;
|
|
|
|
tm0.tm_hour = 23;
|
|
|
|
tm0.tm_min = 59;
|
|
|
|
tm0.tm_sec = 60;
|
2009-07-05 19:11:27 +04:00
|
|
|
}
|
|
|
|
else if (tm0.tm_hour < 0) {
|
2014-11-27 11:08:32 +03:00
|
|
|
tm0.tm_hour = 0;
|
|
|
|
tm0.tm_min = 0;
|
|
|
|
tm0.tm_sec = 0;
|
2009-07-05 19:11:27 +04:00
|
|
|
}
|
|
|
|
else if (23 < tm0.tm_hour) {
|
2014-11-27 11:08:32 +03:00
|
|
|
tm0.tm_hour = 23;
|
|
|
|
tm0.tm_min = 59;
|
|
|
|
tm0.tm_sec = 60;
|
2009-07-05 19:11:27 +04:00
|
|
|
}
|
|
|
|
else if (tm0.tm_min < 0) {
|
2014-11-27 11:08:32 +03:00
|
|
|
tm0.tm_min = 0;
|
|
|
|
tm0.tm_sec = 0;
|
2009-07-05 19:11:27 +04:00
|
|
|
}
|
|
|
|
else if (59 < tm0.tm_min) {
|
2014-11-27 11:08:32 +03:00
|
|
|
tm0.tm_min = 59;
|
|
|
|
tm0.tm_sec = 60;
|
2009-07-05 19:11:27 +04:00
|
|
|
}
|
|
|
|
else if (tm0.tm_sec < 0) {
|
2014-11-27 11:08:32 +03:00
|
|
|
tm0.tm_sec = 0;
|
2009-07-05 19:11:27 +04:00
|
|
|
}
|
|
|
|
else if (60 < tm0.tm_sec) {
|
2014-11-27 11:08:32 +03:00
|
|
|
tm0.tm_sec = 60;
|
2009-07-05 19:11:27 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2009-07-02 21:53:21 +04:00
|
|
|
DEBUG_REPORT_GUESSRANGE;
|
2009-07-05 19:11:27 +04:00
|
|
|
guess0 = guess = timegm_noleapsecond(&tm0);
|
2008-08-22 05:52:42 +04:00
|
|
|
tm = GUESS(&guess);
|
2004-03-31 14:27:58 +04:00
|
|
|
if (tm) {
|
2004-06-23 16:59:01 +04:00
|
|
|
d = tmcmp(tptr, tm);
|
2009-04-21 18:56:59 +04:00
|
|
|
if (d == 0) { goto found; }
|
2004-06-23 16:59:01 +04:00
|
|
|
if (d < 0) {
|
|
|
|
guess_hi = guess;
|
|
|
|
guess -= 24 * 60 * 60;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
guess_lo = guess;
|
|
|
|
guess += 24 * 60 * 60;
|
|
|
|
}
|
2009-07-02 21:53:21 +04:00
|
|
|
DEBUG_REPORT_GUESSRANGE;
|
2008-08-22 05:52:42 +04:00
|
|
|
if (guess_lo < guess && guess < guess_hi && (tm = GUESS(&guess)) != NULL) {
|
2004-06-23 16:59:01 +04:00
|
|
|
d = tmcmp(tptr, tm);
|
2009-04-21 18:56:59 +04:00
|
|
|
if (d == 0) { goto found; }
|
2004-06-23 16:59:01 +04:00
|
|
|
if (d < 0)
|
|
|
|
guess_hi = guess;
|
|
|
|
else
|
|
|
|
guess_lo = guess;
|
2009-07-02 21:53:21 +04:00
|
|
|
DEBUG_REPORT_GUESSRANGE;
|
2004-06-23 16:59:01 +04:00
|
|
|
}
|
2004-03-30 15:31:44 +04:00
|
|
|
}
|
|
|
|
|
2008-08-22 05:52:42 +04:00
|
|
|
tm = GUESS(&guess_lo);
|
1998-01-16 15:13:05 +03:00
|
|
|
if (!tm) goto error;
|
2001-05-24 10:10:36 +04:00
|
|
|
d = tmcmp(tptr, tm);
|
|
|
|
if (d < 0) goto out_of_range;
|
2009-04-21 18:56:59 +04:00
|
|
|
if (d == 0) { guess = guess_lo; goto found; }
|
2001-05-24 10:10:36 +04:00
|
|
|
tm_lo = *tm;
|
2001-05-02 08:22:21 +04:00
|
|
|
|
2008-08-22 05:52:42 +04:00
|
|
|
tm = GUESS(&guess_hi);
|
2001-05-24 10:10:36 +04:00
|
|
|
if (!tm) goto error;
|
|
|
|
d = tmcmp(tptr, tm);
|
|
|
|
if (d > 0) goto out_of_range;
|
2009-04-21 18:56:59 +04:00
|
|
|
if (d == 0) { guess = guess_hi; goto found; }
|
2001-05-24 10:10:36 +04:00
|
|
|
tm_hi = *tm;
|
|
|
|
|
2009-07-02 21:53:21 +04:00
|
|
|
DEBUG_REPORT_GUESSRANGE;
|
2001-05-30 13:12:34 +04:00
|
|
|
|
2009-07-02 21:53:21 +04:00
|
|
|
status = 1;
|
2004-06-23 16:59:01 +04:00
|
|
|
|
2009-07-02 21:53:21 +04:00
|
|
|
while (guess_lo + 1 < guess_hi) {
|
|
|
|
if (status == 0) {
|
|
|
|
binsearch:
|
2009-07-02 19:37:06 +04:00
|
|
|
guess = guess_lo / 2 + guess_hi / 2;
|
|
|
|
if (guess <= guess_lo)
|
|
|
|
guess = guess_lo + 1;
|
|
|
|
else if (guess >= guess_hi)
|
|
|
|
guess = guess_hi - 1;
|
2009-07-02 21:53:21 +04:00
|
|
|
status = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (status == 1) {
|
|
|
|
time_t guess0_hi = timegm_noleapsecond(&tm_hi);
|
|
|
|
guess = guess_hi - (guess0_hi - guess0);
|
2009-07-03 17:49:41 +04:00
|
|
|
if (guess == guess_hi) /* hh:mm:60 tends to cause this condition. */
|
|
|
|
guess--;
|
2009-07-02 21:53:21 +04:00
|
|
|
status = 2;
|
|
|
|
}
|
|
|
|
else if (status == 2) {
|
|
|
|
time_t guess0_lo = timegm_noleapsecond(&tm_lo);
|
|
|
|
guess = guess_lo + (guess0 - guess0_lo);
|
2009-07-03 17:49:41 +04:00
|
|
|
if (guess == guess_lo)
|
|
|
|
guess++;
|
2009-07-02 21:53:21 +04:00
|
|
|
status = 0;
|
|
|
|
}
|
|
|
|
if (guess <= guess_lo || guess_hi <= guess) {
|
|
|
|
/* Precious guess is invalid. try binary search. */
|
2009-07-03 17:49:41 +04:00
|
|
|
#ifdef DEBUG_GUESSRANGE
|
|
|
|
if (guess <= guess_lo) fprintf(stderr, "too small guess: %ld <= %ld\n", guess, guess_lo);
|
|
|
|
if (guess_hi <= guess) fprintf(stderr, "too big guess: %ld <= %ld\n", guess_hi, guess);
|
|
|
|
#endif
|
2009-07-02 21:53:21 +04:00
|
|
|
goto binsearch;
|
|
|
|
}
|
2009-07-02 19:37:06 +04:00
|
|
|
}
|
2004-06-23 16:59:01 +04:00
|
|
|
|
2008-08-22 05:52:42 +04:00
|
|
|
tm = GUESS(&guess);
|
2004-06-23 16:59:01 +04:00
|
|
|
if (!tm) goto error;
|
2009-02-22 17:23:33 +03:00
|
|
|
|
2004-06-23 16:59:01 +04:00
|
|
|
d = tmcmp(tptr, tm);
|
2009-07-02 19:37:06 +04:00
|
|
|
|
|
|
|
if (d < 0) {
|
|
|
|
guess_hi = guess;
|
|
|
|
tm_hi = *tm;
|
2009-07-02 21:53:21 +04:00
|
|
|
DEBUG_REPORT_GUESSRANGE;
|
2009-07-02 19:37:06 +04:00
|
|
|
}
|
|
|
|
else if (d > 0) {
|
|
|
|
guess_lo = guess;
|
|
|
|
tm_lo = *tm;
|
2009-07-02 21:53:21 +04:00
|
|
|
DEBUG_REPORT_GUESSRANGE;
|
2009-07-02 19:37:06 +04:00
|
|
|
}
|
|
|
|
else {
|
2009-04-21 18:56:59 +04:00
|
|
|
found:
|
2004-06-23 16:59:01 +04:00
|
|
|
if (!utc_p) {
|
|
|
|
/* If localtime is nonmonotonic, another result may exist. */
|
|
|
|
time_t guess2;
|
|
|
|
if (find_dst) {
|
|
|
|
guess2 = guess - 2 * 60 * 60;
|
2008-08-22 05:52:42 +04:00
|
|
|
tm = LOCALTIME(&guess2, result);
|
2004-06-23 16:59:01 +04:00
|
|
|
if (tm) {
|
|
|
|
if (tptr->tm_hour != (tm->tm_hour + 2) % 24 ||
|
|
|
|
tptr->tm_min != tm->tm_min ||
|
2009-04-21 18:56:59 +04:00
|
|
|
tptr->tm_sec != tm->tm_sec) {
|
2004-06-23 16:59:01 +04:00
|
|
|
guess2 -= (tm->tm_hour - tptr->tm_hour) * 60 * 60 +
|
|
|
|
(tm->tm_min - tptr->tm_min) * 60 +
|
|
|
|
(tm->tm_sec - tptr->tm_sec);
|
|
|
|
if (tptr->tm_mday != tm->tm_mday)
|
|
|
|
guess2 += 24 * 60 * 60;
|
|
|
|
if (guess != guess2) {
|
2008-08-22 05:52:42 +04:00
|
|
|
tm = LOCALTIME(&guess2, result);
|
2010-06-11 02:37:40 +04:00
|
|
|
if (tm && tmcmp(tptr, tm) == 0) {
|
2004-06-23 16:59:01 +04:00
|
|
|
if (guess < guess2)
|
2009-04-21 18:56:59 +04:00
|
|
|
*tp = guess;
|
2004-06-23 16:59:01 +04:00
|
|
|
else
|
2009-04-21 18:56:59 +04:00
|
|
|
*tp = guess2;
|
|
|
|
return NULL;
|
2004-06-23 16:59:01 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
guess2 = guess + 2 * 60 * 60;
|
2008-08-22 05:52:42 +04:00
|
|
|
tm = LOCALTIME(&guess2, result);
|
2004-06-23 16:59:01 +04:00
|
|
|
if (tm) {
|
|
|
|
if ((tptr->tm_hour + 2) % 24 != tm->tm_hour ||
|
|
|
|
tptr->tm_min != tm->tm_min ||
|
2009-04-21 18:56:59 +04:00
|
|
|
tptr->tm_sec != tm->tm_sec) {
|
2004-06-23 16:59:01 +04:00
|
|
|
guess2 -= (tm->tm_hour - tptr->tm_hour) * 60 * 60 +
|
|
|
|
(tm->tm_min - tptr->tm_min) * 60 +
|
|
|
|
(tm->tm_sec - tptr->tm_sec);
|
|
|
|
if (tptr->tm_mday != tm->tm_mday)
|
|
|
|
guess2 -= 24 * 60 * 60;
|
|
|
|
if (guess != guess2) {
|
2008-08-22 05:52:42 +04:00
|
|
|
tm = LOCALTIME(&guess2, result);
|
2010-06-11 02:37:40 +04:00
|
|
|
if (tm && tmcmp(tptr, tm) == 0) {
|
2004-06-23 16:59:01 +04:00
|
|
|
if (guess < guess2)
|
2009-04-21 18:56:59 +04:00
|
|
|
*tp = guess2;
|
2004-06-23 16:59:01 +04:00
|
|
|
else
|
2009-04-21 18:56:59 +04:00
|
|
|
*tp = guess;
|
|
|
|
return NULL;
|
2004-06-23 16:59:01 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-05-30 13:12:34 +04:00
|
|
|
}
|
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
*tp = guess;
|
|
|
|
return NULL;
|
2001-05-16 13:05:54 +04:00
|
|
|
}
|
2001-05-24 10:10:36 +04:00
|
|
|
}
|
2010-07-09 15:33:46 +04:00
|
|
|
|
2013-05-19 07:10:21 +04:00
|
|
|
/* Given argument has no corresponding time_t. Let's extrapolate. */
|
2010-06-09 17:54:03 +04:00
|
|
|
/*
|
|
|
|
* `Seconds Since the Epoch' in SUSv3:
|
|
|
|
* tm_sec + tm_min*60 + tm_hour*3600 + tm_yday*86400 +
|
|
|
|
* (tm_year-70)*31536000 + ((tm_year-69)/4)*86400 -
|
|
|
|
* ((tm_year-1)/100)*86400 + ((tm_year+299)/400)*86400
|
|
|
|
*/
|
|
|
|
|
|
|
|
tptr_tm_yday = calc_tm_yday(tptr->tm_year, tptr->tm_mon, tptr->tm_mday);
|
|
|
|
|
|
|
|
*tp = guess_lo +
|
|
|
|
((tptr->tm_year - tm_lo.tm_year) * 365 +
|
|
|
|
((tptr->tm_year-69)/4) -
|
|
|
|
((tptr->tm_year-1)/100) +
|
|
|
|
((tptr->tm_year+299)/400) -
|
|
|
|
((tm_lo.tm_year-69)/4) +
|
|
|
|
((tm_lo.tm_year-1)/100) -
|
|
|
|
((tm_lo.tm_year+299)/400) +
|
|
|
|
tptr_tm_yday -
|
|
|
|
tm_lo.tm_yday) * 86400 +
|
|
|
|
(tptr->tm_hour - tm_lo.tm_hour) * 3600 +
|
|
|
|
(tptr->tm_min - tm_lo.tm_min) * 60 +
|
2010-07-09 15:33:46 +04:00
|
|
|
(tptr->tm_sec - (tm_lo.tm_sec == 60 ? 59 : tm_lo.tm_sec));
|
2010-06-09 17:54:03 +04:00
|
|
|
|
|
|
|
return NULL;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
out_of_range:
|
2009-04-21 18:56:59 +04:00
|
|
|
return "time out of range";
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
error:
|
2009-04-21 18:56:59 +04:00
|
|
|
return "gmtime/localtime error";
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
static int
|
|
|
|
vtmcmp(struct vtm *a, struct vtm *b)
|
|
|
|
{
|
|
|
|
if (ne(a->year, b->year))
|
|
|
|
return lt(a->year, b->year) ? -1 : 1;
|
|
|
|
else if (a->mon != b->mon)
|
|
|
|
return a->mon < b->mon ? -1 : 1;
|
|
|
|
else if (a->mday != b->mday)
|
|
|
|
return a->mday < b->mday ? -1 : 1;
|
|
|
|
else if (a->hour != b->hour)
|
|
|
|
return a->hour < b->hour ? -1 : 1;
|
|
|
|
else if (a->min != b->min)
|
|
|
|
return a->min < b->min ? -1 : 1;
|
|
|
|
else if (a->sec != b->sec)
|
|
|
|
return a->sec < b->sec ? -1 : 1;
|
2009-08-29 23:06:29 +04:00
|
|
|
else if (ne(a->subsecx, b->subsecx))
|
|
|
|
return lt(a->subsecx, b->subsecx) ? -1 : 1;
|
2009-04-21 18:56:59 +04:00
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
2008-08-22 05:52:42 +04:00
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
static int
|
|
|
|
tmcmp(struct tm *a, struct tm *b)
|
|
|
|
{
|
|
|
|
if (a->tm_year != b->tm_year)
|
|
|
|
return a->tm_year < b->tm_year ? -1 : 1;
|
|
|
|
else if (a->tm_mon != b->tm_mon)
|
|
|
|
return a->tm_mon < b->tm_mon ? -1 : 1;
|
|
|
|
else if (a->tm_mday != b->tm_mday)
|
|
|
|
return a->tm_mday < b->tm_mday ? -1 : 1;
|
|
|
|
else if (a->tm_hour != b->tm_hour)
|
|
|
|
return a->tm_hour < b->tm_hour ? -1 : 1;
|
|
|
|
else if (a->tm_min != b->tm_min)
|
|
|
|
return a->tm_min < b->tm_min ? -1 : 1;
|
|
|
|
else if (a->tm_sec != b->tm_sec)
|
|
|
|
return a->tm_sec < b->tm_sec ? -1 : 1;
|
|
|
|
else
|
|
|
|
return 0;
|
2001-12-17 09:45:37 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Time.utc(year) -> time
|
|
|
|
* Time.utc(year, month) -> time
|
|
|
|
* Time.utc(year, month, day) -> time
|
|
|
|
* Time.utc(year, month, day, hour) -> time
|
|
|
|
* Time.utc(year, month, day, hour, min) -> time
|
|
|
|
* Time.utc(year, month, day, hour, min, sec_with_frac) -> time
|
|
|
|
* Time.utc(year, month, day, hour, min, sec, usec_with_frac) -> time
|
2014-11-27 06:48:42 +03:00
|
|
|
* Time.utc(sec, min, hour, day, month, year, dummy, dummy, dummy, dummy) -> time
|
2010-05-18 01:07:33 +04:00
|
|
|
* Time.gm(year) -> time
|
|
|
|
* Time.gm(year, month) -> time
|
|
|
|
* Time.gm(year, month, day) -> time
|
|
|
|
* Time.gm(year, month, day, hour) -> time
|
|
|
|
* Time.gm(year, month, day, hour, min) -> time
|
|
|
|
* Time.gm(year, month, day, hour, min, sec_with_frac) -> time
|
|
|
|
* Time.gm(year, month, day, hour, min, sec, usec_with_frac) -> time
|
2014-11-27 06:48:42 +03:00
|
|
|
* Time.gm(sec, min, hour, day, month, year, dummy, dummy, dummy, dummy) -> time
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Creates a Time object based on given values, interpreted as UTC (GMT). The
|
2003-12-27 09:33:45 +03:00
|
|
|
* year must be specified. Other values default to the minimum value
|
2012-11-30 08:53:09 +04:00
|
|
|
* for that field (and may be +nil+ or omitted). Months may
|
2003-12-27 09:33:45 +03:00
|
|
|
* be specified by numbers from 1 to 12, or by the three-letter English
|
|
|
|
* month names. Hours are specified on a 24-hour clock (0..23). Raises
|
2012-11-30 08:53:09 +04:00
|
|
|
* an ArgumentError if any values are out of range. Will
|
|
|
|
* also accept ten arguments in the order output by Time#to_a.
|
|
|
|
*
|
|
|
|
* +sec_with_frac+ and +usec_with_frac+ can have a fractional part.
|
2003-12-27 09:33:45 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* Time.utc(2000,"jan",1,20,15,1) #=> 2000-01-01 20:15:01 UTC
|
|
|
|
* Time.gm(2000,"jan",1,20,15,1) #=> 2000-01-01 20:15:01 UTC
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_s_mkutc(int argc, VALUE *argv, VALUE klass)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2018-09-12 17:37:51 +03:00
|
|
|
struct vtm vtm;
|
|
|
|
|
|
|
|
time_arg(argc, argv, &vtm);
|
|
|
|
return time_gmtime(time_new_timew(klass, timegmw(&vtm)));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Time.local(year) -> time
|
|
|
|
* Time.local(year, month) -> time
|
|
|
|
* Time.local(year, month, day) -> time
|
|
|
|
* Time.local(year, month, day, hour) -> time
|
|
|
|
* Time.local(year, month, day, hour, min) -> time
|
|
|
|
* Time.local(year, month, day, hour, min, sec_with_frac) -> time
|
|
|
|
* Time.local(year, month, day, hour, min, sec, usec_with_frac) -> time
|
2014-11-27 06:48:42 +03:00
|
|
|
* Time.local(sec, min, hour, day, month, year, dummy, dummy, isdst, dummy) -> time
|
2010-05-18 01:07:33 +04:00
|
|
|
* Time.mktime(year) -> time
|
|
|
|
* Time.mktime(year, month) -> time
|
|
|
|
* Time.mktime(year, month, day) -> time
|
|
|
|
* Time.mktime(year, month, day, hour) -> time
|
|
|
|
* Time.mktime(year, month, day, hour, min) -> time
|
|
|
|
* Time.mktime(year, month, day, hour, min, sec_with_frac) -> time
|
|
|
|
* Time.mktime(year, month, day, hour, min, sec, usec_with_frac) -> time
|
2014-11-27 06:48:42 +03:00
|
|
|
* Time.mktime(sec, min, hour, day, month, year, dummy, dummy, isdst, dummy) -> time
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Same as Time::gm, but interprets the values in the
|
2003-12-27 09:33:45 +03:00
|
|
|
* local time zone.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* Time.local(2000,"jan",1,20,15,1) #=> 2000-01-01 20:15:01 -0600
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_s_mktime(int argc, VALUE *argv, VALUE klass)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2018-09-12 17:37:51 +03:00
|
|
|
struct vtm vtm;
|
|
|
|
|
|
|
|
time_arg(argc, argv, &vtm);
|
|
|
|
return time_localtime(time_new_timew(klass, timelocalw(&vtm)));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.to_i -> int
|
|
|
|
* time.tv_sec -> int
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the value of _time_ as an integer number of seconds
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
* since the Epoch.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2003-12-27 09:33:45 +03:00
|
|
|
* t = Time.now
|
2010-04-11 10:56:28 +04:00
|
|
|
* "%10.5f" % t.to_f #=> "1270968656.89607"
|
|
|
|
* t.to_i #=> 1270968656
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_to_i(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2010-03-31 16:34:31 +04:00
|
|
|
return w2v(wdiv(tobj->timew, WINT2FIXWV(TIME_SCALE)));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.to_f -> float
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the value of _time_ as a floating point number of
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
* seconds since the Epoch.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2003-12-27 09:33:45 +03:00
|
|
|
* t = Time.now
|
2010-04-11 10:56:28 +04:00
|
|
|
* "%10.5f" % t.to_f #=> "1270968744.77658"
|
|
|
|
* t.to_i #=> 1270968744
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
*
|
|
|
|
* Note that IEEE 754 double is not accurate enough to represent
|
2012-11-30 08:53:09 +04:00
|
|
|
* the number of nanoseconds since the Epoch.
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_to_f(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2010-03-28 03:24:20 +04:00
|
|
|
return rb_Float(rb_time_unmagnify_to_float(tobj->timew));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2009-05-19 18:00:04 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:46 +04:00
|
|
|
* time.to_r -> a_rational
|
2009-05-19 18:00:04 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the value of _time_ as a rational number of seconds
|
2009-05-19 18:00:04 +04:00
|
|
|
* since the Epoch.
|
|
|
|
*
|
|
|
|
* t = Time.now
|
2010-04-11 10:56:28 +04:00
|
|
|
* p t.to_r #=> (1270968792716287611/1000000000)
|
2009-05-19 18:00:04 +04:00
|
|
|
*
|
|
|
|
* This methods is intended to be used to get an accurate value
|
2012-11-30 08:53:09 +04:00
|
|
|
* representing the nanoseconds since the Epoch. You can use this method
|
|
|
|
* to convert _time_ to another Epoch.
|
2009-05-19 18:00:04 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_to_r(VALUE time)
|
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
2010-01-14 02:51:16 +03:00
|
|
|
VALUE v;
|
2009-05-19 18:00:04 +04:00
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2010-03-30 15:57:03 +04:00
|
|
|
v = w2v(rb_time_unmagnify(tobj->timew));
|
2011-09-29 15:07:45 +04:00
|
|
|
if (!RB_TYPE_P(v, T_RATIONAL)) {
|
2010-06-22 18:13:09 +04:00
|
|
|
v = rb_Rational1(v);
|
2010-01-14 02:51:16 +03:00
|
|
|
}
|
|
|
|
return v;
|
2009-05-19 18:00:04 +04:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.usec -> int
|
|
|
|
* time.tv_usec -> int
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the number of microseconds for _time_.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:03:26 -0600
|
|
|
|
* "%10.6f" % t.to_f #=> "1195481006.775195"
|
|
|
|
* t.usec #=> 775195
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_usec(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
2010-03-31 16:34:31 +04:00
|
|
|
wideval_t w, q, r;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2010-03-31 16:34:31 +04:00
|
|
|
|
|
|
|
w = wmod(tobj->timew, WINT2WV(TIME_SCALE));
|
|
|
|
wmuldivmod(w, WINT2FIXWV(1000000), WINT2FIXWV(TIME_SCALE), &q, &r);
|
|
|
|
return rb_to_int(w2v(q));
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.nsec -> int
|
|
|
|
* time.tv_nsec -> int
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the number of nanoseconds for _time_.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
* t = Time.now #=> 2007-11-17 15:18:03 +0900
|
|
|
|
* "%10.9f" % t.to_f #=> "1195280283.536151409"
|
|
|
|
* t.nsec #=> 536151406
|
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* The lowest digits of #to_f and #nsec are different because
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
* IEEE 754 double is not accurate enough to represent
|
2012-11-30 08:53:09 +04:00
|
|
|
* the exact number of nanoseconds since the Epoch.
|
|
|
|
*
|
|
|
|
* The more accurate value is returned by #nsec.
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_nsec(VALUE time)
|
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2010-03-31 16:34:31 +04:00
|
|
|
return rb_to_int(w2v(wmulquoll(wmod(tobj->timew, WINT2WV(TIME_SCALE)), 1000000000, TIME_SCALE)));
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.subsec -> number
|
2009-04-21 18:56:59 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the fraction for _time_.
|
2009-04-21 18:56:59 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* The return value can be a rational number.
|
2009-04-21 18:56:59 +04:00
|
|
|
*
|
|
|
|
* t = Time.now #=> 2009-03-26 22:33:12 +0900
|
|
|
|
* "%10.9f" % t.to_f #=> "1238074392.940563917"
|
|
|
|
* t.subsec #=> (94056401/100000000)
|
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* The lowest digits of #to_f and #subsec are different because
|
2009-04-21 18:56:59 +04:00
|
|
|
* IEEE 754 double is not accurate enough to represent
|
2012-11-30 08:53:09 +04:00
|
|
|
* the rational number.
|
|
|
|
*
|
|
|
|
* The more accurate value is returned by #subsec.
|
2009-04-21 18:56:59 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_subsec(VALUE time)
|
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2017-04-11 05:40:14 +03:00
|
|
|
return quov(w2v(wmod(tobj->timew, WINT2FIXWV(TIME_SCALE))), INT2FIX(TIME_SCALE));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time <=> other_time -> -1, 0, +1 or nil
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2013-02-23 07:35:38 +04:00
|
|
|
* Comparison---Compares +time+ with +other_time+.
|
|
|
|
*
|
|
|
|
* -1, 0, +1 or nil depending on whether +time+ is less than, equal to, or
|
|
|
|
* greater than +other_time+.
|
|
|
|
*
|
|
|
|
* +nil+ is returned if the two values are incomparable.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:12:12 -0600
|
|
|
|
* t2 = t + 2592000 #=> 2007-12-19 08:12:12 -0600
|
|
|
|
* t <=> t2 #=> -1
|
|
|
|
* t2 <=> t #=> 1
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:13:38 -0600
|
|
|
|
* t2 = t + 0.1 #=> 2007-11-19 08:13:38 -0600
|
|
|
|
* t.nsec #=> 98222999
|
|
|
|
* t2.nsec #=> 198222999
|
2003-12-27 09:33:45 +03:00
|
|
|
* t <=> t2 #=> -1
|
|
|
|
* t2 <=> t #=> 1
|
|
|
|
* t <=> t #=> 0
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_cmp(VALUE time1, VALUE time2)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj1, *tobj2;
|
2009-04-21 18:56:59 +04:00
|
|
|
int n;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
GetTimeval(time1, tobj1);
|
2009-09-09 07:43:48 +04:00
|
|
|
if (IsTimeval(time2)) {
|
2003-05-19 19:45:46 +04:00
|
|
|
GetTimeval(time2, tobj2);
|
2010-03-27 17:18:08 +03:00
|
|
|
n = wcmp(tobj1->timew, tobj2->timew);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-08-13 11:13:27 +04:00
|
|
|
else {
|
2013-02-17 15:55:50 +04:00
|
|
|
return rb_invcmp(time1, time2);
|
2008-08-13 11:13:27 +04:00
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
if (n == 0) return INT2FIX(0);
|
|
|
|
if (n > 0) return INT2FIX(1);
|
|
|
|
return INT2FIX(-1);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* time.eql?(other_time)
|
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns +true+ if _time_ and +other_time+ are
|
|
|
|
* both Time objects with the same seconds and fractional seconds.
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_eql(VALUE time1, VALUE time2)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj1, *tobj2;
|
|
|
|
|
|
|
|
GetTimeval(time1, tobj1);
|
2009-09-09 07:43:48 +04:00
|
|
|
if (IsTimeval(time2)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
GetTimeval(time2, tobj2);
|
2010-03-30 15:57:03 +04:00
|
|
|
return rb_equal(w2v(tobj1->timew), w2v(tobj2->timew));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.utc? -> true or false
|
|
|
|
* time.gmt? -> true or false
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns +true+ if _time_ represents a time in UTC (GMT).
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:15:23 -0600
|
2003-12-27 09:33:45 +03:00
|
|
|
* t.utc? #=> false
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.gm(2000,"jan",1,20,15,1) #=> 2000-01-01 20:15:01 UTC
|
2003-12-27 09:33:45 +03:00
|
|
|
* t.utc? #=> true
|
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:16:03 -0600
|
2003-12-27 09:33:45 +03:00
|
|
|
* t.gmt? #=> false
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.gm(2000,1,1,20,15,1) #=> 2000-01-01 20:15:01 UTC
|
2003-12-27 09:33:45 +03:00
|
|
|
* t.gmt? #=> true
|
|
|
|
*/
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_utc_p(VALUE time)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2018-08-08 15:48:58 +03:00
|
|
|
if (TZMODE_UTC_P(tobj)) return Qtrue;
|
1999-08-13 09:45:20 +04:00
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-08 07:57:49 +03:00
|
|
|
* time.hash -> integer
|
2003-12-27 09:33:45 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns a hash code for this Time object.
|
2014-03-14 05:27:43 +04:00
|
|
|
*
|
|
|
|
* See also Object#hash.
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_hash(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2010-03-30 15:57:03 +04:00
|
|
|
return rb_hash(w2v(tobj->timew));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-01-18 17:16:47 +03:00
|
|
|
/* :nodoc: */
|
1999-08-13 09:45:20 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_init_copy(VALUE copy, VALUE time)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2002-08-27 12:31:08 +04:00
|
|
|
struct time_object *tobj, *tcopy;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2012-06-05 15:13:18 +04:00
|
|
|
if (!OBJ_INIT_COPY(copy, time)) return copy;
|
1999-08-13 09:45:20 +04:00
|
|
|
GetTimeval(time, tobj);
|
2013-03-15 18:06:21 +04:00
|
|
|
GetNewTimeval(copy, tcopy);
|
2002-08-27 12:31:08 +04:00
|
|
|
MEMCPY(tcopy, tobj, struct time_object, 1);
|
|
|
|
|
|
|
|
return copy;
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2002-08-27 12:31:08 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_dup(VALUE time)
|
2002-08-27 12:31:08 +04:00
|
|
|
{
|
2011-07-15 20:06:53 +04:00
|
|
|
VALUE dup = time_s_alloc(rb_obj_class(time));
|
2003-05-19 09:41:08 +04:00
|
|
|
time_init_copy(dup, time);
|
2002-08-27 12:31:08 +04:00
|
|
|
return dup;
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_localtime(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
2009-04-21 18:56:59 +04:00
|
|
|
struct vtm vtm;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2018-08-08 15:48:58 +03:00
|
|
|
if (TZMODE_LOCALTIME_P(tobj)) {
|
2001-12-03 13:07:48 +03:00
|
|
|
if (tobj->tm_got)
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
else {
|
2001-10-29 08:07:26 +03:00
|
|
|
time_modify(time);
|
2000-06-19 12:38:11 +04:00
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2018-10-08 05:35:31 +03:00
|
|
|
if (!NIL_P(tobj->vtm.zone) && zone_localtime(tobj->vtm.zone, time)) {
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
if (!localtimew(tobj->timew, &vtm))
|
2001-12-17 09:45:37 +03:00
|
|
|
rb_raise(rb_eArgError, "localtime error");
|
2009-04-21 18:56:59 +04:00
|
|
|
tobj->vtm = vtm;
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
tobj->tm_got = 1;
|
2018-08-08 15:48:58 +03:00
|
|
|
TZMODE_SET_LOCALTIME(tobj);
|
1998-01-16 15:13:05 +03:00
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
2009-05-12 16:07:49 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.localtime -> time
|
|
|
|
* time.localtime(utc_offset) -> time
|
2009-05-12 16:07:49 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Converts _time_ to local time (using the local time zone in
|
2018-10-08 05:35:31 +03:00
|
|
|
* effect at the creation time of _time_) modifying the receiver.
|
2009-05-12 16:07:49 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* If +utc_offset+ is given, it is used instead of the local time.
|
2009-05-12 16:07:49 +04:00
|
|
|
*
|
|
|
|
* t = Time.utc(2000, "jan", 1, 20, 15, 1) #=> 2000-01-01 20:15:01 UTC
|
|
|
|
* t.utc? #=> true
|
|
|
|
*
|
|
|
|
* t.localtime #=> 2000-01-01 14:15:01 -0600
|
|
|
|
* t.utc? #=> false
|
|
|
|
*
|
|
|
|
* t.localtime("+09:00") #=> 2000-01-02 05:15:01 +0900
|
|
|
|
* t.utc? #=> false
|
2018-07-02 10:46:38 +03:00
|
|
|
*
|
|
|
|
* If +utc_offset+ is not given and _time_ is local time, just return
|
|
|
|
* the receiver.
|
2009-05-12 16:07:49 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_localtime_m(int argc, VALUE *argv, VALUE time)
|
|
|
|
{
|
|
|
|
VALUE off;
|
|
|
|
rb_scan_args(argc, argv, "01", &off);
|
|
|
|
|
|
|
|
if (!NIL_P(off)) {
|
2018-10-08 05:35:31 +03:00
|
|
|
if (zone_localtime(off, time)) return time;
|
|
|
|
|
2009-05-12 16:07:49 +04:00
|
|
|
off = utc_offset_arg(off);
|
|
|
|
validate_utc_offset(off);
|
|
|
|
|
|
|
|
time_set_utc_offset(time, off);
|
|
|
|
return time_fixoff(time);
|
|
|
|
}
|
|
|
|
|
|
|
|
return time_localtime(time);
|
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.gmtime -> time
|
|
|
|
* time.utc -> time
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Converts _time_ to UTC (GMT), modifying the receiver.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:18:31 -0600
|
2003-12-27 09:33:45 +03:00
|
|
|
* t.gmt? #=> false
|
2007-11-19 17:40:15 +03:00
|
|
|
* t.gmtime #=> 2007-11-19 14:18:31 UTC
|
2003-12-27 09:33:45 +03:00
|
|
|
* t.gmt? #=> true
|
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:18:51 -0600
|
2003-12-27 09:33:45 +03:00
|
|
|
* t.utc? #=> false
|
2007-11-19 17:40:15 +03:00
|
|
|
* t.utc #=> 2007-11-19 14:18:51 UTC
|
2003-12-27 09:33:45 +03:00
|
|
|
* t.utc? #=> true
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_gmtime(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
2009-04-21 18:56:59 +04:00
|
|
|
struct vtm vtm;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2018-08-08 15:48:58 +03:00
|
|
|
if (TZMODE_UTC_P(tobj)) {
|
2001-12-03 13:07:48 +03:00
|
|
|
if (tobj->tm_got)
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
else {
|
2001-10-29 08:07:26 +03:00
|
|
|
time_modify(time);
|
2000-06-19 12:38:11 +04:00
|
|
|
}
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2018-10-08 05:35:31 +03:00
|
|
|
GMTIMEW(tobj->timew, &vtm);
|
2009-04-21 18:56:59 +04:00
|
|
|
tobj->vtm = vtm;
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
tobj->tm_got = 1;
|
2018-08-08 15:48:58 +03:00
|
|
|
TZMODE_SET_UTC(tobj);
|
1998-01-16 15:13:05 +03:00
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
2009-05-12 16:07:49 +04:00
|
|
|
static VALUE
|
|
|
|
time_fixoff(VALUE time)
|
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
struct vtm vtm;
|
|
|
|
VALUE off;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2018-08-08 15:48:58 +03:00
|
|
|
if (TZMODE_FIXOFF_P(tobj)) {
|
2009-05-12 16:07:49 +04:00
|
|
|
if (tobj->tm_got)
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
time_modify(time);
|
|
|
|
}
|
|
|
|
|
2018-08-08 15:48:58 +03:00
|
|
|
if (TZMODE_FIXOFF_P(tobj))
|
2009-05-12 16:07:49 +04:00
|
|
|
off = tobj->vtm.utc_offset;
|
|
|
|
else
|
|
|
|
off = INT2FIX(0);
|
|
|
|
|
2018-10-08 05:35:31 +03:00
|
|
|
GMTIMEW(tobj->timew, &vtm);
|
2009-05-12 16:07:49 +04:00
|
|
|
|
|
|
|
tobj->vtm = vtm;
|
|
|
|
vtm_add_offset(&tobj->vtm, off);
|
|
|
|
|
|
|
|
tobj->tm_got = 1;
|
2018-08-08 15:48:58 +03:00
|
|
|
TZMODE_SET_FIXOFF(tobj, off);
|
2009-05-12 16:07:49 +04:00
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.getlocal -> new_time
|
|
|
|
* time.getlocal(utc_offset) -> new_time
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns a new Time object representing _time_ in
|
2003-12-27 09:33:45 +03:00
|
|
|
* local time (using the local time zone in effect for this process).
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* If +utc_offset+ is given, it is used instead of the local time.
|
2015-06-14 14:10:49 +03:00
|
|
|
* +utc_offset+ can be given as a human-readable string (eg. <code>"+09:00"</code>)
|
|
|
|
* or as a number of seconds (eg. <code>32400</code>).
|
2009-05-12 16:07:49 +04:00
|
|
|
*
|
|
|
|
* t = Time.utc(2000,1,1,20,15,1) #=> 2000-01-01 20:15:01 UTC
|
|
|
|
* t.utc? #=> true
|
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* l = t.getlocal #=> 2000-01-01 14:15:01 -0600
|
2009-05-12 16:07:49 +04:00
|
|
|
* l.utc? #=> false
|
2003-12-27 09:33:45 +03:00
|
|
|
* t == l #=> true
|
2009-05-12 16:07:49 +04:00
|
|
|
*
|
|
|
|
* j = t.getlocal("+09:00") #=> 2000-01-02 05:15:01 +0900
|
|
|
|
* j.utc? #=> false
|
|
|
|
* t == j #=> true
|
2015-06-14 14:10:49 +03:00
|
|
|
*
|
|
|
|
* k = t.getlocal(9*60*60) #=> 2000-01-02 05:15:01 +0900
|
|
|
|
* k.utc? #=> false
|
|
|
|
* t == k #=> true
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
2001-12-10 10:18:16 +03:00
|
|
|
static VALUE
|
2009-05-12 16:07:49 +04:00
|
|
|
time_getlocaltime(int argc, VALUE *argv, VALUE time)
|
2001-12-10 10:18:16 +03:00
|
|
|
{
|
2009-05-12 16:07:49 +04:00
|
|
|
VALUE off;
|
|
|
|
rb_scan_args(argc, argv, "01", &off);
|
|
|
|
|
|
|
|
if (!NIL_P(off)) {
|
2018-10-08 05:35:31 +03:00
|
|
|
if (maybe_tzobj_p(off)) {
|
|
|
|
VALUE t = time_dup(time);
|
|
|
|
if (zone_localtime(off, t)) return t;
|
|
|
|
}
|
|
|
|
|
2009-05-12 16:07:49 +04:00
|
|
|
off = utc_offset_arg(off);
|
|
|
|
validate_utc_offset(off);
|
|
|
|
|
|
|
|
time = time_dup(time);
|
|
|
|
time_set_utc_offset(time, off);
|
|
|
|
return time_fixoff(time);
|
|
|
|
}
|
|
|
|
|
2001-12-10 10:18:16 +03:00
|
|
|
return time_localtime(time_dup(time));
|
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.getgm -> new_time
|
|
|
|
* time.getutc -> new_time
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns a new Time object representing _time_ in UTC.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.local(2000,1,1,20,15,1) #=> 2000-01-01 20:15:01 -0600
|
2003-12-27 09:33:45 +03:00
|
|
|
* t.gmt? #=> false
|
2007-11-19 17:40:15 +03:00
|
|
|
* y = t.getgm #=> 2000-01-02 02:15:01 UTC
|
2003-12-27 09:33:45 +03:00
|
|
|
* y.gmt? #=> true
|
|
|
|
* t == y #=> true
|
|
|
|
*/
|
|
|
|
|
2001-12-10 10:18:16 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_getgmtime(VALUE time)
|
2001-12-10 10:18:16 +03:00
|
|
|
{
|
|
|
|
return time_gmtime(time_dup(time));
|
|
|
|
}
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
static VALUE
|
2009-04-25 10:48:39 +04:00
|
|
|
time_get_tm(VALUE time, struct time_object *tobj)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2018-08-08 15:48:58 +03:00
|
|
|
if (TZMODE_UTC_P(tobj)) return time_gmtime(time);
|
|
|
|
if (TZMODE_FIXOFF_P(tobj)) return time_fixoff(time);
|
1999-08-13 09:45:20 +04:00
|
|
|
return time_localtime(time);
|
|
|
|
}
|
|
|
|
|
2016-03-23 14:57:01 +03:00
|
|
|
static VALUE strftime_cstr(const char *fmt, size_t len, VALUE time, rb_encoding *enc);
|
|
|
|
#define strftimev(fmt, time, enc) strftime_cstr((fmt), rb_strlen_lit(fmt), (time), (enc))
|
2009-04-21 18:56:59 +04:00
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.asctime -> string
|
|
|
|
* time.ctime -> string
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns a canonical string representation of _time_.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2003-12-27 09:33:45 +03:00
|
|
|
* Time.now.asctime #=> "Wed Apr 9 08:56:03 2003"
|
2016-04-22 14:34:05 +03:00
|
|
|
* Time.now.ctime #=> "Wed Apr 9 08:56:03 2003"
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_asctime(VALUE time)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2011-08-27 13:18:18 +04:00
|
|
|
return strftimev("%a %b %e %T %Y", time, rb_usascii_encoding());
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.inspect -> string
|
|
|
|
* time.to_s -> string
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns a string representing _time_. Equivalent to calling
|
|
|
|
* #strftime with the appropriate format string.
|
|
|
|
*
|
|
|
|
* t = Time.now
|
|
|
|
* t.to_s => "2012-11-10 18:16:12 +0100"
|
|
|
|
* t.strftime "%Y-%m-%d %H:%M:%S %z" => "2012-11-10 18:16:12 +0100"
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* t.utc.to_s => "2012-11-10 17:16:12 UTC"
|
|
|
|
* t.strftime "%Y-%m-%d %H:%M:%S UTC" => "2012-11-10 17:16:12 UTC"
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_to_s(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2018-08-08 15:48:58 +03:00
|
|
|
if (TZMODE_UTC_P(tobj))
|
2011-08-27 13:18:18 +04:00
|
|
|
return strftimev("%Y-%m-%d %H:%M:%S UTC", time, rb_usascii_encoding());
|
2009-04-21 18:56:59 +04:00
|
|
|
else
|
2011-08-27 13:18:18 +04:00
|
|
|
return strftimev("%Y-%m-%d %H:%M:%S %z", time, rb_usascii_encoding());
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-04-06 11:48:38 +04:00
|
|
|
static VALUE
|
2018-10-12 05:25:37 +03:00
|
|
|
time_add(const struct time_object *tobj, VALUE torig, VALUE offset, int sign)
|
2004-04-06 11:48:38 +04:00
|
|
|
{
|
2018-08-08 13:00:43 +03:00
|
|
|
VALUE result;
|
2018-10-12 05:25:37 +03:00
|
|
|
struct time_object *result_tobj;
|
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
offset = num_exact(offset);
|
|
|
|
if (sign < 0)
|
2010-03-30 15:57:03 +04:00
|
|
|
result = time_new_timew(rb_cTime, wsub(tobj->timew, rb_time_magnify(v2w(offset))));
|
2009-04-21 18:56:59 +04:00
|
|
|
else
|
2010-03-30 15:57:03 +04:00
|
|
|
result = time_new_timew(rb_cTime, wadd(tobj->timew, rb_time_magnify(v2w(offset))));
|
2018-10-12 05:25:37 +03:00
|
|
|
GetTimeval(result, result_tobj);
|
|
|
|
TZMODE_COPY(result_tobj, tobj);
|
2017-07-04 07:23:06 +03:00
|
|
|
|
2004-04-06 11:48:38 +04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time + numeric -> time
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Addition --- Adds some number of seconds (possibly fractional) to
|
|
|
|
* _time_ and returns that value as a new Time object.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:22:21 -0600
|
|
|
|
* t + (60 * 60 * 24) #=> 2007-11-20 08:22:21 -0600
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_plus(VALUE time1, VALUE time2)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-08-13 09:45:20 +04:00
|
|
|
struct time_object *tobj;
|
|
|
|
GetTimeval(time1, tobj);
|
|
|
|
|
2009-09-09 07:43:48 +04:00
|
|
|
if (IsTimeval(time2)) {
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_raise(rb_eTypeError, "time + time?");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2017-07-04 07:23:06 +03:00
|
|
|
return time_add(tobj, time1, time2, 1);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time - other_time -> float
|
|
|
|
* time - numeric -> time
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2017-09-14 17:54:29 +03:00
|
|
|
* Difference --- Returns a difference in seconds as a Float
|
2012-11-30 08:53:09 +04:00
|
|
|
* between _time_ and +other_time+, or subtracts the given number
|
|
|
|
* of seconds in +numeric+ from _time_.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:23:10 -0600
|
|
|
|
* t2 = t + 2592000 #=> 2007-12-19 08:23:10 -0600
|
2003-12-27 09:33:45 +03:00
|
|
|
* t2 - t #=> 2592000.0
|
2007-11-19 17:40:15 +03:00
|
|
|
* t2 - 2592000 #=> 2007-11-19 08:23:10 -0600
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_minus(VALUE time1, VALUE time2)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-08-13 09:45:20 +04:00
|
|
|
struct time_object *tobj;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
GetTimeval(time1, tobj);
|
2009-09-09 07:43:48 +04:00
|
|
|
if (IsTimeval(time2)) {
|
1999-08-13 09:45:20 +04:00
|
|
|
struct time_object *tobj2;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
GetTimeval(time2, tobj2);
|
2010-03-28 03:24:20 +04:00
|
|
|
return rb_Float(rb_time_unmagnify_to_float(wsub(tobj->timew, tobj2->timew)));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2017-07-04 07:23:06 +03:00
|
|
|
return time_add(tobj, time1, time2, -1);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.succ -> new_time
|
2003-12-27 09:33:45 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns a new Time object, one second later than _time_.
|
2009-09-30 12:32:43 +04:00
|
|
|
* Time#succ is obsolete since 1.9.2 for time is not a discrete value.
|
2007-11-19 17:40:15 +03:00
|
|
|
*
|
|
|
|
* t = Time.now #=> 2007-11-19 08:23:57 -0600
|
|
|
|
* t.succ #=> 2007-11-19 08:23:58 -0600
|
2012-11-30 08:53:09 +04:00
|
|
|
*
|
|
|
|
* Use instead <code>time + 1</code>
|
|
|
|
*
|
|
|
|
* t + 1 #=> 2007-11-19 08:23:58 -0600
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
2009-09-30 12:32:43 +04:00
|
|
|
VALUE
|
|
|
|
rb_time_succ(VALUE time)
|
2003-11-28 17:23:33 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
2009-04-25 10:40:59 +04:00
|
|
|
struct time_object *tobj2;
|
2003-11-28 17:23:33 +03:00
|
|
|
|
2009-09-30 12:32:43 +04:00
|
|
|
rb_warn("Time#succ is obsolete; use time + 1");
|
2003-11-28 17:23:33 +03:00
|
|
|
GetTimeval(time, tobj);
|
2010-03-30 17:25:57 +04:00
|
|
|
time = time_new_timew(rb_cTime, wadd(tobj->timew, WINT2FIXWV(TIME_SCALE)));
|
2009-04-25 10:40:59 +04:00
|
|
|
GetTimeval(time, tobj2);
|
2018-08-08 15:48:58 +03:00
|
|
|
TZMODE_COPY(tobj2, tobj);
|
2018-10-08 07:03:32 +03:00
|
|
|
if (TZMODE_LOCALTIME_P(tobj2) && maybe_tzobj_p(tobj2->vtm.zone)) {
|
|
|
|
zone_localtime(tobj2->vtm.zone, time);
|
|
|
|
}
|
2007-07-18 03:55:17 +04:00
|
|
|
return time;
|
2003-11-28 17:23:33 +03:00
|
|
|
}
|
|
|
|
|
2009-09-30 12:32:43 +04:00
|
|
|
#define time_succ rb_time_succ
|
|
|
|
|
2010-03-11 16:39:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.round([ndigits]) -> new_time
|
2010-03-11 16:39:12 +03:00
|
|
|
*
|
|
|
|
* Rounds sub seconds to a given precision in decimal digits (0 digits by default).
|
2012-11-30 08:53:09 +04:00
|
|
|
* It returns a new Time object.
|
|
|
|
* +ndigits+ should be zero or positive integer.
|
2010-03-11 16:39:12 +03:00
|
|
|
*
|
|
|
|
* require 'time'
|
|
|
|
*
|
2010-03-30 04:12:21 +04:00
|
|
|
* t = Time.utc(2010,3,30, 5,43,"25.123456789".to_r)
|
|
|
|
* p t.iso8601(10) #=> "2010-03-30T05:43:25.1234567890Z"
|
|
|
|
* p t.round.iso8601(10) #=> "2010-03-30T05:43:25.0000000000Z"
|
|
|
|
* p t.round(0).iso8601(10) #=> "2010-03-30T05:43:25.0000000000Z"
|
|
|
|
* p t.round(1).iso8601(10) #=> "2010-03-30T05:43:25.1000000000Z"
|
|
|
|
* p t.round(2).iso8601(10) #=> "2010-03-30T05:43:25.1200000000Z"
|
|
|
|
* p t.round(3).iso8601(10) #=> "2010-03-30T05:43:25.1230000000Z"
|
|
|
|
* p t.round(4).iso8601(10) #=> "2010-03-30T05:43:25.1235000000Z"
|
|
|
|
* p t.round(5).iso8601(10) #=> "2010-03-30T05:43:25.1234600000Z"
|
|
|
|
* p t.round(6).iso8601(10) #=> "2010-03-30T05:43:25.1234570000Z"
|
|
|
|
* p t.round(7).iso8601(10) #=> "2010-03-30T05:43:25.1234568000Z"
|
|
|
|
* p t.round(8).iso8601(10) #=> "2010-03-30T05:43:25.1234567900Z"
|
|
|
|
* p t.round(9).iso8601(10) #=> "2010-03-30T05:43:25.1234567890Z"
|
|
|
|
* p t.round(10).iso8601(10) #=> "2010-03-30T05:43:25.1234567890Z"
|
|
|
|
*
|
2010-05-29 22:51:39 +04:00
|
|
|
* t = Time.utc(1999,12,31, 23,59,59)
|
2010-03-11 16:39:12 +03:00
|
|
|
* p((t + 0.4).round.iso8601(3)) #=> "1999-12-31T23:59:59.000Z"
|
|
|
|
* p((t + 0.49).round.iso8601(3)) #=> "1999-12-31T23:59:59.000Z"
|
|
|
|
* p((t + 0.5).round.iso8601(3)) #=> "2000-01-01T00:00:00.000Z"
|
|
|
|
* p((t + 1.4).round.iso8601(3)) #=> "2000-01-01T00:00:00.000Z"
|
|
|
|
* p((t + 1.49).round.iso8601(3)) #=> "2000-01-01T00:00:00.000Z"
|
|
|
|
* p((t + 1.5).round.iso8601(3)) #=> "2000-01-01T00:00:01.000Z"
|
|
|
|
*
|
|
|
|
* t = Time.utc(1999,12,31, 23,59,59)
|
|
|
|
* p (t + 0.123456789).round(4).iso8601(6) #=> "1999-12-31T23:59:59.123500Z"
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_round(int argc, VALUE *argv, VALUE time)
|
|
|
|
{
|
|
|
|
VALUE ndigits, v, a, b, den;
|
|
|
|
long nd;
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
rb_scan_args(argc, argv, "01", &ndigits);
|
|
|
|
|
|
|
|
if (NIL_P(ndigits))
|
|
|
|
ndigits = INT2FIX(0);
|
|
|
|
else
|
|
|
|
ndigits = rb_to_int(ndigits);
|
|
|
|
|
|
|
|
nd = NUM2LONG(ndigits);
|
|
|
|
if (nd < 0)
|
|
|
|
rb_raise(rb_eArgError, "negative ndigits given");
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2010-03-30 15:57:03 +04:00
|
|
|
v = w2v(rb_time_unmagnify(tobj->timew));
|
2010-03-11 16:39:12 +03:00
|
|
|
|
|
|
|
a = INT2FIX(1);
|
|
|
|
b = INT2FIX(10);
|
|
|
|
while (0 < nd) {
|
|
|
|
if (nd & 1)
|
2017-04-11 05:40:14 +03:00
|
|
|
a = mulv(a, b);
|
|
|
|
b = mulv(b, b);
|
2010-03-11 16:39:12 +03:00
|
|
|
nd = nd >> 1;
|
|
|
|
}
|
2017-04-11 05:40:14 +03:00
|
|
|
den = quov(INT2FIX(1), a);
|
|
|
|
v = modv(v, den);
|
|
|
|
if (lt(v, quov(den, INT2FIX(2))))
|
2017-07-04 07:23:06 +03:00
|
|
|
return time_add(tobj, time, v, -1);
|
2010-03-11 16:39:12 +03:00
|
|
|
else
|
2017-07-04 07:23:06 +03:00
|
|
|
return time_add(tobj, time, subv(den, v), 1);
|
2010-03-11 16:39:12 +03:00
|
|
|
}
|
2007-11-19 17:40:15 +03:00
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-08 07:57:49 +03:00
|
|
|
* time.sec -> integer
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the second of the minute (0..60) for _time_.
|
2012-07-31 01:18:29 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* *Note:* Seconds range from zero to 60 to allow the system to inject
|
|
|
|
* leap seconds. See http://en.wikipedia.org/wiki/Leap_second for further
|
|
|
|
* details.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:25:02 -0600
|
|
|
|
* t.sec #=> 2
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_sec(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
2009-04-21 18:56:59 +04:00
|
|
|
return INT2FIX(tobj->vtm.sec);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-08 07:57:49 +03:00
|
|
|
* time.min -> integer
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the minute of the hour (0..59) for _time_.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:25:51 -0600
|
|
|
|
* t.min #=> 25
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_min(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
2009-04-21 18:56:59 +04:00
|
|
|
return INT2FIX(tobj->vtm.min);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-08 07:57:49 +03:00
|
|
|
* time.hour -> integer
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the hour of the day (0..23) for _time_.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:26:20 -0600
|
2003-12-27 09:33:45 +03:00
|
|
|
* t.hour #=> 8
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_hour(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
2009-04-21 18:56:59 +04:00
|
|
|
return INT2FIX(tobj->vtm.hour);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-08 07:57:49 +03:00
|
|
|
* time.day -> integer
|
|
|
|
* time.mday -> integer
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the day of the month (1..n) for _time_.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:27:03 -0600
|
|
|
|
* t.day #=> 19
|
|
|
|
* t.mday #=> 19
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_mday(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
2009-04-21 18:56:59 +04:00
|
|
|
return INT2FIX(tobj->vtm.mday);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-08 07:57:49 +03:00
|
|
|
* time.mon -> integer
|
|
|
|
* time.month -> integer
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the month of the year (1..12) for _time_.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:27:30 -0600
|
|
|
|
* t.mon #=> 11
|
|
|
|
* t.month #=> 11
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_mon(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
2009-04-21 18:56:59 +04:00
|
|
|
return INT2FIX(tobj->vtm.mon);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-08 07:57:49 +03:00
|
|
|
* time.year -> integer
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the year for _time_ (including the century).
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:27:51 -0600
|
|
|
|
* t.year #=> 2007
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_year(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
2009-04-21 18:56:59 +04:00
|
|
|
return tobj->vtm.year;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-08 07:57:49 +03:00
|
|
|
* time.wday -> integer
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2003-12-27 09:33:45 +03:00
|
|
|
* Returns an integer representing the day of the week, 0..6, with
|
|
|
|
* Sunday == 0.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-20 13:55:22 +03:00
|
|
|
* t = Time.now #=> 2007-11-20 02:35:35 -0600
|
|
|
|
* t.wday #=> 2
|
|
|
|
* t.sunday? #=> false
|
|
|
|
* t.monday? #=> false
|
|
|
|
* t.tuesday? #=> true
|
|
|
|
* t.wednesday? #=> false
|
|
|
|
* t.thursday? #=> false
|
|
|
|
* t.friday? #=> false
|
|
|
|
* t.saturday? #=> false
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_wday(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
2014-02-24 07:38:14 +04:00
|
|
|
return INT2FIX((int)tobj->vtm.wday);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2005-10-27 12:18:38 +04:00
|
|
|
#define wday_p(n) {\
|
|
|
|
struct time_object *tobj;\
|
|
|
|
GetTimeval(time, tobj);\
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);\
|
2009-04-21 18:56:59 +04:00
|
|
|
return (tobj->vtm.wday == (n)) ? Qtrue : Qfalse;\
|
2005-10-27 12:18:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.sunday? -> true or false
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns +true+ if _time_ represents Sunday.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-20 13:55:22 +03:00
|
|
|
* t = Time.local(1990, 4, 1) #=> 1990-04-01 00:00:00 -0600
|
|
|
|
* t.sunday? #=> true
|
2005-10-27 12:18:38 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_sunday(VALUE time)
|
|
|
|
{
|
|
|
|
wday_p(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.monday? -> true or false
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns +true+ if _time_ represents Monday.
|
2007-11-19 17:40:15 +03:00
|
|
|
*
|
2007-11-20 13:55:22 +03:00
|
|
|
* t = Time.local(2003, 8, 4) #=> 2003-08-04 00:00:00 -0500
|
|
|
|
* p t.monday? #=> true
|
2005-10-27 12:18:38 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_monday(VALUE time)
|
|
|
|
{
|
|
|
|
wday_p(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.tuesday? -> true or false
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns +true+ if _time_ represents Tuesday.
|
2007-11-20 13:55:22 +03:00
|
|
|
*
|
|
|
|
* t = Time.local(1991, 2, 19) #=> 1991-02-19 00:00:00 -0600
|
|
|
|
* p t.tuesday? #=> true
|
2005-10-27 12:18:38 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_tuesday(VALUE time)
|
|
|
|
{
|
|
|
|
wday_p(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.wednesday? -> true or false
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns +true+ if _time_ represents Wednesday.
|
2007-11-20 13:55:22 +03:00
|
|
|
*
|
|
|
|
* t = Time.local(1993, 2, 24) #=> 1993-02-24 00:00:00 -0600
|
|
|
|
* p t.wednesday? #=> true
|
2005-10-27 12:18:38 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_wednesday(VALUE time)
|
|
|
|
{
|
|
|
|
wday_p(3);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.thursday? -> true or false
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns +true+ if _time_ represents Thursday.
|
2007-11-20 13:55:22 +03:00
|
|
|
*
|
|
|
|
* t = Time.local(1995, 12, 21) #=> 1995-12-21 00:00:00 -0600
|
|
|
|
* p t.thursday? #=> true
|
2005-10-27 12:18:38 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_thursday(VALUE time)
|
|
|
|
{
|
|
|
|
wday_p(4);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.friday? -> true or false
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns +true+ if _time_ represents Friday.
|
2007-11-20 13:55:22 +03:00
|
|
|
*
|
|
|
|
* t = Time.local(1987, 12, 18) #=> 1987-12-18 00:00:00 -0600
|
|
|
|
* t.friday? #=> true
|
2005-10-27 12:18:38 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_friday(VALUE time)
|
|
|
|
{
|
|
|
|
wday_p(5);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.saturday? -> true or false
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns +true+ if _time_ represents Saturday.
|
2007-11-20 13:55:22 +03:00
|
|
|
*
|
|
|
|
* t = Time.local(2006, 6, 10) #=> 2006-06-10 00:00:00 -0500
|
|
|
|
* t.saturday? #=> true
|
2005-10-27 12:18:38 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
time_saturday(VALUE time)
|
|
|
|
{
|
|
|
|
wday_p(6);
|
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-08 07:57:49 +03:00
|
|
|
* time.yday -> integer
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2003-12-27 09:33:45 +03:00
|
|
|
* Returns an integer representing the day of the year, 1..366.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:32:31 -0600
|
|
|
|
* t.yday #=> 323
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_yday(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
2009-04-21 18:56:59 +04:00
|
|
|
return INT2FIX(tobj->vtm.yday);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.isdst -> true or false
|
|
|
|
* time.dst? -> true or false
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns +true+ if _time_ occurs during Daylight
|
2003-12-27 09:33:45 +03:00
|
|
|
* Saving Time in its time zone.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2008-03-09 04:04:46 +03:00
|
|
|
* # CST6CDT:
|
2007-11-20 13:55:22 +03:00
|
|
|
* Time.local(2000, 1, 1).zone #=> "CST"
|
2003-12-27 09:33:45 +03:00
|
|
|
* Time.local(2000, 1, 1).isdst #=> false
|
2007-11-20 13:55:22 +03:00
|
|
|
* Time.local(2000, 1, 1).dst? #=> false
|
|
|
|
* Time.local(2000, 7, 1).zone #=> "CDT"
|
|
|
|
* Time.local(2000, 7, 1).isdst #=> true
|
2003-12-27 09:33:45 +03:00
|
|
|
* Time.local(2000, 7, 1).dst? #=> true
|
2007-11-20 13:55:22 +03:00
|
|
|
*
|
2008-03-09 04:04:46 +03:00
|
|
|
* # Asia/Tokyo:
|
2007-11-20 13:55:22 +03:00
|
|
|
* Time.local(2000, 1, 1).zone #=> "JST"
|
|
|
|
* Time.local(2000, 1, 1).isdst #=> false
|
2003-12-27 09:33:45 +03:00
|
|
|
* Time.local(2000, 1, 1).dst? #=> false
|
2007-11-20 13:55:22 +03:00
|
|
|
* Time.local(2000, 7, 1).zone #=> "JST"
|
|
|
|
* Time.local(2000, 7, 1).isdst #=> false
|
|
|
|
* Time.local(2000, 7, 1).dst? #=> false
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_isdst(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
2009-04-21 18:56:59 +04:00
|
|
|
return tobj->vtm.isdst ? Qtrue : Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2018-10-08 05:35:31 +03:00
|
|
|
* time.zone -> string or timezone
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the name of the time zone used for _time_. As of Ruby
|
2003-12-27 09:33:45 +03:00
|
|
|
* 1.8, returns ``UTC'' rather than ``GMT'' for UTC times.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2003-12-27 09:33:45 +03:00
|
|
|
* t = Time.gm(2000, "jan", 1, 20, 15, 1)
|
|
|
|
* t.zone #=> "UTC"
|
|
|
|
* t = Time.local(2000, "jan", 1, 20, 15, 1)
|
|
|
|
* t.zone #=> "CST"
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_zone(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
2018-10-08 05:35:31 +03:00
|
|
|
VALUE zone;
|
2009-02-22 17:23:33 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2018-08-08 15:48:58 +03:00
|
|
|
if (TZMODE_UTC_P(tobj)) {
|
2014-07-23 11:20:39 +04:00
|
|
|
return rb_usascii_str_new_cstr("UTC");
|
2001-03-21 06:41:45 +03:00
|
|
|
}
|
2018-10-08 05:35:31 +03:00
|
|
|
zone = tobj->vtm.zone;
|
|
|
|
if (NIL_P(zone))
|
2009-05-12 16:07:49 +04:00
|
|
|
return Qnil;
|
2014-07-23 11:20:39 +04:00
|
|
|
|
2018-10-08 05:35:31 +03:00
|
|
|
if (RB_TYPE_P(zone, T_STRING))
|
|
|
|
zone = rb_str_dup(zone);
|
|
|
|
return zone;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2016-09-08 07:57:49 +03:00
|
|
|
* time.gmt_offset -> integer
|
|
|
|
* time.gmtoff -> integer
|
|
|
|
* time.utc_offset -> integer
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns the offset in seconds between the timezone of _time_
|
2003-12-27 09:33:45 +03:00
|
|
|
* and UTC.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.gm(2000,1,1,20,15,1) #=> 2000-01-01 20:15:01 UTC
|
2003-12-27 09:33:45 +03:00
|
|
|
* t.gmt_offset #=> 0
|
2007-11-19 17:40:15 +03:00
|
|
|
* l = t.getlocal #=> 2000-01-01 14:15:01 -0600
|
2003-12-27 09:33:45 +03:00
|
|
|
* l.gmt_offset #=> -21600
|
|
|
|
*/
|
|
|
|
|
2017-12-11 15:09:47 +03:00
|
|
|
VALUE
|
|
|
|
rb_time_utc_offset(VALUE time)
|
2001-12-17 09:45:37 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
|
|
|
|
2018-08-08 15:48:58 +03:00
|
|
|
if (TZMODE_UTC_P(tobj)) {
|
2001-12-17 09:45:37 +03:00
|
|
|
return INT2FIX(0);
|
|
|
|
}
|
|
|
|
else {
|
2017-12-11 15:09:47 +03:00
|
|
|
MAKE_TM(time, tobj);
|
2009-04-21 18:56:59 +04:00
|
|
|
return tobj->vtm.utc_offset;
|
2001-12-17 09:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.to_a -> array
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Returns a ten-element _array_ of values for _time_:
|
|
|
|
*
|
|
|
|
* [sec, min, hour, day, month, year, wday, yday, isdst, zone]
|
|
|
|
*
|
|
|
|
* See the individual methods for an explanation of the
|
2003-12-27 09:33:45 +03:00
|
|
|
* valid ranges of each value. The ten elements can be passed directly
|
2012-11-30 08:53:09 +04:00
|
|
|
* to Time::utc or Time::local to create a
|
|
|
|
* new Time object.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2007-11-19 17:40:15 +03:00
|
|
|
* t = Time.now #=> 2007-11-19 08:36:01 -0600
|
|
|
|
* now = t.to_a #=> [1, 36, 8, 19, 11, 2007, 1, 323, false, "CST"]
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_to_a(VALUE time)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_ary_new3(10,
|
2009-04-21 18:56:59 +04:00
|
|
|
INT2FIX(tobj->vtm.sec),
|
|
|
|
INT2FIX(tobj->vtm.min),
|
|
|
|
INT2FIX(tobj->vtm.hour),
|
|
|
|
INT2FIX(tobj->vtm.mday),
|
|
|
|
INT2FIX(tobj->vtm.mon),
|
|
|
|
tobj->vtm.year,
|
|
|
|
INT2FIX(tobj->vtm.wday),
|
|
|
|
INT2FIX(tobj->vtm.yday),
|
|
|
|
tobj->vtm.isdst?Qtrue:Qfalse,
|
1999-01-20 07:59:39 +03:00
|
|
|
time_zone(time));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2016-03-23 14:57:01 +03:00
|
|
|
static VALUE
|
|
|
|
rb_strftime_alloc(const char *format, size_t format_len, rb_encoding *enc,
|
2018-10-08 05:35:31 +03:00
|
|
|
VALUE time, struct vtm *vtm, wideval_t timew, int gmt)
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2010-03-31 16:34:31 +04:00
|
|
|
VALUE timev = Qnil;
|
|
|
|
struct timespec ts;
|
|
|
|
|
|
|
|
if (!timew2timespec_exact(timew, &ts))
|
2016-03-23 14:57:01 +03:00
|
|
|
timev = w2v(rb_time_unmagnify(timew));
|
1998-01-16 15:19:22 +03:00
|
|
|
|
2016-03-23 14:57:01 +03:00
|
|
|
if (NIL_P(timev)) {
|
2018-10-08 05:35:31 +03:00
|
|
|
return rb_strftime_timespec(format, format_len, enc, time, vtm, &ts, gmt);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2016-03-23 14:57:01 +03:00
|
|
|
else {
|
2018-10-08 05:35:31 +03:00
|
|
|
return rb_strftime(format, format_len, enc, time, vtm, timev, gmt);
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
static VALUE
|
2016-03-23 14:57:01 +03:00
|
|
|
strftime_cstr(const char *fmt, size_t len, VALUE time, rb_encoding *enc)
|
2009-04-21 18:56:59 +04:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
VALUE str;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
2018-10-08 05:35:31 +03:00
|
|
|
str = rb_strftime_alloc(fmt, len, enc, time, &tobj->vtm, tobj->timew, TZMODE_UTC_P(tobj));
|
2016-03-23 14:57:01 +03:00
|
|
|
if (!str) rb_raise(rb_eArgError, "invalid format: %s", fmt);
|
2009-04-21 18:56:59 +04:00
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* time.strftime( string ) -> string
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Formats _time_ according to the directives in the given format string.
|
|
|
|
*
|
|
|
|
* The directives begin with a percent (%) character.
|
2010-07-09 16:21:43 +04:00
|
|
|
* Any text not listed as a directive will be passed through to the
|
|
|
|
* output string.
|
|
|
|
*
|
|
|
|
* The directive consists of a percent (%) character,
|
2010-07-10 15:26:54 +04:00
|
|
|
* zero or more flags, optional minimum field width,
|
|
|
|
* optional modifier and a conversion specifier
|
2012-11-30 08:53:09 +04:00
|
|
|
* as follows:
|
2010-07-10 15:26:54 +04:00
|
|
|
*
|
|
|
|
* %<flags><width><modifier><conversion>
|
2010-07-09 16:21:43 +04:00
|
|
|
*
|
|
|
|
* Flags:
|
2012-11-30 08:53:09 +04:00
|
|
|
* - don't pad a numerical output
|
|
|
|
* _ use spaces for padding
|
|
|
|
* 0 use zeros for padding
|
|
|
|
* ^ upcase the result string
|
|
|
|
* # change case
|
|
|
|
* : use colons for %z
|
2010-07-09 16:21:43 +04:00
|
|
|
*
|
2010-07-10 15:26:54 +04:00
|
|
|
* The minimum field width specifies the minimum width.
|
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* The modifiers are "E" and "O".
|
2010-07-17 20:12:49 +04:00
|
|
|
* They are ignored.
|
2003-12-27 09:33:45 +03:00
|
|
|
*
|
2010-07-08 18:39:09 +04:00
|
|
|
* Format directives:
|
|
|
|
*
|
|
|
|
* Date (Year, Month, Day):
|
2014-07-28 00:58:05 +04:00
|
|
|
* %Y - Year with century if provided, will pad result at least 4 digits.
|
2011-01-17 20:00:36 +03:00
|
|
|
* -0001, 0000, 1995, 2009, 14292, etc.
|
2012-11-30 08:53:09 +04:00
|
|
|
* %C - year / 100 (rounded down such as 20 in 2009)
|
2011-01-18 17:05:39 +03:00
|
|
|
* %y - year % 100 (00..99)
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-10 15:26:54 +04:00
|
|
|
* %m - Month of the year, zero-padded (01..12)
|
2010-07-09 16:21:43 +04:00
|
|
|
* %_m blank-padded ( 1..12)
|
|
|
|
* %-m no-padded (1..12)
|
2010-07-08 18:39:09 +04:00
|
|
|
* %B - The full month name (``January'')
|
2010-07-09 16:21:43 +04:00
|
|
|
* %^B uppercased (``JANUARY'')
|
2010-07-08 18:39:09 +04:00
|
|
|
* %b - The abbreviated month name (``Jan'')
|
2010-07-09 16:21:43 +04:00
|
|
|
* %^b uppercased (``JAN'')
|
2010-07-08 18:39:09 +04:00
|
|
|
* %h - Equivalent to %b
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-09 16:21:43 +04:00
|
|
|
* %d - Day of the month, zero-padded (01..31)
|
|
|
|
* %-d no-padded (1..31)
|
2010-07-08 18:39:09 +04:00
|
|
|
* %e - Day of the month, blank-padded ( 1..31)
|
|
|
|
*
|
|
|
|
* %j - Day of the year (001..366)
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-08 18:39:09 +04:00
|
|
|
* Time (Hour, Minute, Second, Subsecond):
|
2010-07-09 16:21:43 +04:00
|
|
|
* %H - Hour of the day, 24-hour clock, zero-padded (00..23)
|
|
|
|
* %k - Hour of the day, 24-hour clock, blank-padded ( 0..23)
|
|
|
|
* %I - Hour of the day, 12-hour clock, zero-padded (01..12)
|
2010-07-10 15:26:54 +04:00
|
|
|
* %l - Hour of the day, 12-hour clock, blank-padded ( 1..12)
|
2010-07-09 16:21:43 +04:00
|
|
|
* %P - Meridian indicator, lowercase (``am'' or ``pm'')
|
|
|
|
* %p - Meridian indicator, uppercase (``AM'' or ``PM'')
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-08 18:39:09 +04:00
|
|
|
* %M - Minute of the hour (00..59)
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-08 18:39:09 +04:00
|
|
|
* %S - Second of the minute (00..60)
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-08 18:39:09 +04:00
|
|
|
* %L - Millisecond of the second (000..999)
|
2013-04-04 17:37:22 +04:00
|
|
|
* The digits under millisecond are truncated to not produce 1000.
|
2010-07-08 18:39:09 +04:00
|
|
|
* %N - Fractional seconds digits, default is 9 digits (nanosecond)
|
2013-09-09 16:33:36 +04:00
|
|
|
* %3N millisecond (3 digits)
|
|
|
|
* %6N microsecond (6 digits)
|
|
|
|
* %9N nanosecond (9 digits)
|
|
|
|
* %12N picosecond (12 digits)
|
|
|
|
* %15N femtosecond (15 digits)
|
|
|
|
* %18N attosecond (18 digits)
|
|
|
|
* %21N zeptosecond (21 digits)
|
|
|
|
* %24N yoctosecond (24 digits)
|
2013-04-04 17:37:22 +04:00
|
|
|
* The digits under the specified length are truncated to avoid
|
|
|
|
* carry up.
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-08 18:39:09 +04:00
|
|
|
* Time zone:
|
|
|
|
* %z - Time zone as hour and minute offset from UTC (e.g. +0900)
|
|
|
|
* %:z - hour and minute offset from UTC with a colon (e.g. +09:00)
|
|
|
|
* %::z - hour, minute and second offset from UTC (e.g. +09:00:00)
|
2014-02-28 20:01:54 +04:00
|
|
|
* %Z - Abbreviated time zone name or similar information. (OS dependent)
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-08 18:39:09 +04:00
|
|
|
* Weekday:
|
|
|
|
* %A - The full weekday name (``Sunday'')
|
2010-07-09 16:21:43 +04:00
|
|
|
* %^A uppercased (``SUNDAY'')
|
2011-01-17 19:02:13 +03:00
|
|
|
* %a - The abbreviated name (``Sun'')
|
|
|
|
* %^a uppercased (``SUN'')
|
2010-07-08 18:39:09 +04:00
|
|
|
* %u - Day of the week (Monday is 1, 1..7)
|
|
|
|
* %w - Day of the week (Sunday is 0, 0..6)
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-10 15:26:54 +04:00
|
|
|
* ISO 8601 week-based year and week number:
|
2012-11-30 08:53:09 +04:00
|
|
|
* The first week of YYYY starts with a Monday and includes YYYY-01-04.
|
2010-07-10 15:26:54 +04:00
|
|
|
* The days in the year before the first week are in the last week of
|
|
|
|
* the previous year.
|
2010-07-09 16:21:43 +04:00
|
|
|
* %G - The week-based year
|
|
|
|
* %g - The last 2 digits of the week-based year (00..99)
|
|
|
|
* %V - Week number of the week-based year (01..53)
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-08 18:39:09 +04:00
|
|
|
* Week number:
|
2012-11-30 08:53:09 +04:00
|
|
|
* The first week of YYYY that starts with a Sunday or Monday (according to %U
|
|
|
|
* or %W). The days in the year before the first week are in week 0.
|
|
|
|
* %U - Week number of the year. The week starts with Sunday. (00..53)
|
|
|
|
* %W - Week number of the year. The week starts with Monday. (00..53)
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-08 18:39:09 +04:00
|
|
|
* Seconds since the Epoch:
|
|
|
|
* %s - Number of seconds since 1970-01-01 00:00:00 UTC.
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-08 18:39:09 +04:00
|
|
|
* Literal string:
|
2010-07-10 15:26:54 +04:00
|
|
|
* %n - Newline character (\n)
|
2010-07-08 18:39:09 +04:00
|
|
|
* %t - Tab character (\t)
|
|
|
|
* %% - Literal ``%'' character
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-08 18:39:09 +04:00
|
|
|
* Combination:
|
2010-07-10 15:26:54 +04:00
|
|
|
* %c - date and time (%a %b %e %T %Y)
|
2010-07-08 18:39:09 +04:00
|
|
|
* %D - Date (%m/%d/%y)
|
|
|
|
* %F - The ISO 8601 date format (%Y-%m-%d)
|
2011-06-11 17:42:35 +04:00
|
|
|
* %v - VMS date (%e-%^b-%4Y)
|
2010-07-10 15:26:54 +04:00
|
|
|
* %x - Same as %D
|
|
|
|
* %X - Same as %T
|
2010-07-08 18:39:09 +04:00
|
|
|
* %r - 12-hour time (%I:%M:%S %p)
|
|
|
|
* %R - 24-hour time (%H:%M)
|
|
|
|
* %T - 24-hour time (%H:%M:%S)
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2010-07-10 15:26:54 +04:00
|
|
|
* This method is similar to strftime() function defined in ISO C and POSIX.
|
2012-11-30 08:53:09 +04:00
|
|
|
*
|
2013-05-19 07:10:21 +04:00
|
|
|
* While all directives are locale independent since Ruby 1.9, %Z is platform
|
|
|
|
* dependent.
|
2012-11-30 08:53:09 +04:00
|
|
|
* So, the result may differ even if the same format string is used in other
|
2010-07-10 15:26:54 +04:00
|
|
|
* systems such as C.
|
|
|
|
*
|
2011-08-25 20:39:37 +04:00
|
|
|
* %z is recommended over %Z.
|
|
|
|
* %Z doesn't identify the timezone.
|
|
|
|
* For example, "CST" is used at America/Chicago (-06:00),
|
|
|
|
* America/Havana (-05:00), Asia/Harbin (+08:00), Australia/Darwin (+09:30)
|
|
|
|
* and Australia/Adelaide (+10:30).
|
2012-11-30 08:53:09 +04:00
|
|
|
* Also, %Z is highly dependent on the operating system.
|
2011-08-25 20:39:37 +04:00
|
|
|
* For example, it may generate a non ASCII string on Japanese Windows.
|
|
|
|
* i.e. the result can be different to "JST".
|
|
|
|
* So the numeric time zone offset, %z, is recommended.
|
|
|
|
*
|
2010-07-09 16:21:43 +04:00
|
|
|
* Examples:
|
|
|
|
*
|
|
|
|
* t = Time.new(2007,11,19,8,37,48,"-06:00") #=> 2007-11-19 08:37:48 -0600
|
|
|
|
* t.strftime("Printed on %m/%d/%Y") #=> "Printed on 11/19/2007"
|
|
|
|
* t.strftime("at %I:%M%p") #=> "at 08:37AM"
|
2011-05-15 15:55:52 +04:00
|
|
|
*
|
2010-07-19 15:36:23 +04:00
|
|
|
* Various ISO 8601 formats:
|
2011-01-17 19:02:13 +03:00
|
|
|
* %Y%m%d => 20071119 Calendar date (basic)
|
|
|
|
* %F => 2007-11-19 Calendar date (extended)
|
|
|
|
* %Y-%m => 2007-11 Calendar date, reduced accuracy, specific month
|
|
|
|
* %Y => 2007 Calendar date, reduced accuracy, specific year
|
|
|
|
* %C => 20 Calendar date, reduced accuracy, specific century
|
|
|
|
* %Y%j => 2007323 Ordinal date (basic)
|
|
|
|
* %Y-%j => 2007-323 Ordinal date (extended)
|
|
|
|
* %GW%V%u => 2007W471 Week date (basic)
|
|
|
|
* %G-W%V-%u => 2007-W47-1 Week date (extended)
|
|
|
|
* %GW%V => 2007W47 Week date, reduced accuracy, specific week (basic)
|
|
|
|
* %G-W%V => 2007-W47 Week date, reduced accuracy, specific week (extended)
|
|
|
|
* %H%M%S => 083748 Local time (basic)
|
|
|
|
* %T => 08:37:48 Local time (extended)
|
|
|
|
* %H%M => 0837 Local time, reduced accuracy, specific minute (basic)
|
|
|
|
* %H:%M => 08:37 Local time, reduced accuracy, specific minute (extended)
|
|
|
|
* %H => 08 Local time, reduced accuracy, specific hour
|
|
|
|
* %H%M%S,%L => 083748,000 Local time with decimal fraction, comma as decimal sign (basic)
|
|
|
|
* %T,%L => 08:37:48,000 Local time with decimal fraction, comma as decimal sign (extended)
|
|
|
|
* %H%M%S.%L => 083748.000 Local time with decimal fraction, full stop as decimal sign (basic)
|
|
|
|
* %T.%L => 08:37:48.000 Local time with decimal fraction, full stop as decimal sign (extended)
|
|
|
|
* %H%M%S%z => 083748-0600 Local time and the difference from UTC (basic)
|
|
|
|
* %T%:z => 08:37:48-06:00 Local time and the difference from UTC (extended)
|
|
|
|
* %Y%m%dT%H%M%S%z => 20071119T083748-0600 Date and time of day for calendar date (basic)
|
|
|
|
* %FT%T%:z => 2007-11-19T08:37:48-06:00 Date and time of day for calendar date (extended)
|
|
|
|
* %Y%jT%H%M%S%z => 2007323T083748-0600 Date and time of day for ordinal date (basic)
|
|
|
|
* %Y-%jT%T%:z => 2007-323T08:37:48-06:00 Date and time of day for ordinal date (extended)
|
|
|
|
* %GW%V%uT%H%M%S%z => 2007W471T083748-0600 Date and time of day for week date (basic)
|
|
|
|
* %G-W%V-%uT%T%:z => 2007-W47-1T08:37:48-06:00 Date and time of day for week date (extended)
|
|
|
|
* %Y%m%dT%H%M => 20071119T0837 Calendar date and local time (basic)
|
|
|
|
* %FT%R => 2007-11-19T08:37 Calendar date and local time (extended)
|
|
|
|
* %Y%jT%H%MZ => 2007323T0837Z Ordinal date and UTC of day (basic)
|
|
|
|
* %Y-%jT%RZ => 2007-323T08:37Z Ordinal date and UTC of day (extended)
|
|
|
|
* %GW%V%uT%H%M%z => 2007W471T0837-0600 Week date and local time and difference from UTC (basic)
|
|
|
|
* %G-W%V-%uT%R%:z => 2007-W47-1T08:37-06:00 Week date and local time and difference from UTC (extended)
|
2010-07-09 16:21:43 +04:00
|
|
|
*
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_strftime(VALUE time, VALUE format)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
2005-10-22 08:27:48 +04:00
|
|
|
const char *fmt;
|
2002-08-21 19:47:54 +04:00
|
|
|
long len;
|
2011-08-27 13:18:18 +04:00
|
|
|
rb_encoding *enc;
|
2017-01-31 05:18:58 +03:00
|
|
|
VALUE tmp;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
2009-04-25 10:25:06 +04:00
|
|
|
MAKE_TM(time, tobj);
|
2001-05-02 08:22:21 +04:00
|
|
|
StringValue(format);
|
2008-02-29 12:19:15 +03:00
|
|
|
if (!rb_enc_str_asciicompat_p(format)) {
|
|
|
|
rb_raise(rb_eArgError, "format should have ASCII compatible encoding");
|
|
|
|
}
|
2017-01-31 05:18:58 +03:00
|
|
|
tmp = rb_str_tmp_frozen_acquire(format);
|
|
|
|
fmt = RSTRING_PTR(tmp);
|
|
|
|
len = RSTRING_LEN(tmp);
|
2011-08-27 13:18:18 +04:00
|
|
|
enc = rb_enc_get(format);
|
1999-08-13 09:45:20 +04:00
|
|
|
if (len == 0) {
|
|
|
|
rb_warning("strftime called with empty format string");
|
2016-03-23 14:57:01 +03:00
|
|
|
return rb_enc_str_new(0, 0, enc);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2003-04-09 19:27:39 +04:00
|
|
|
else {
|
2018-10-08 05:35:33 +03:00
|
|
|
VALUE str = rb_strftime_alloc(fmt, len, enc, time, &tobj->vtm, tobj->timew,
|
2018-08-08 15:48:58 +03:00
|
|
|
TZMODE_UTC_P(tobj));
|
2017-01-31 05:18:58 +03:00
|
|
|
rb_str_tmp_frozen_release(format, tmp);
|
2016-03-23 14:57:01 +03:00
|
|
|
if (!str) rb_raise(rb_eArgError, "invalid format: %"PRIsVALUE, format);
|
|
|
|
return str;
|
2003-04-09 19:27:39 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2012-12-01 17:54:54 +04:00
|
|
|
/* :nodoc: */
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_mdump(VALUE time)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
1999-08-13 09:45:20 +04:00
|
|
|
unsigned long p, s;
|
2003-08-16 18:58:34 +04:00
|
|
|
char buf[8];
|
1999-01-20 07:59:39 +03:00
|
|
|
int i;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
VALUE str;
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
struct vtm vtm;
|
|
|
|
long year;
|
|
|
|
long usec, nsec;
|
2018-10-08 05:35:31 +03:00
|
|
|
VALUE subsecx, nano, subnano, v, zone;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2010-03-27 17:18:08 +03:00
|
|
|
gmtimew(tobj->timew, &vtm);
|
2009-04-21 18:56:59 +04:00
|
|
|
|
|
|
|
if (FIXNUM_P(vtm.year)) {
|
|
|
|
year = FIX2LONG(vtm.year);
|
|
|
|
if (year < 1900 || 1900+0xffff < year)
|
2018-09-27 13:22:08 +03:00
|
|
|
rb_raise(rb_eArgError, "year too %s to marshal: %ld UTC",
|
|
|
|
(year < 1900 ? "small" : "big"), year);
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
else {
|
2018-09-27 13:22:08 +03:00
|
|
|
rb_raise(rb_eArgError, "year too %s to marshal: %"PRIsVALUE" UTC",
|
|
|
|
(le(vtm.year, INT2FIX(1900)) ? "small" : "big"), vtm.year);
|
2009-04-21 18:56:59 +04:00
|
|
|
}
|
|
|
|
|
2009-08-29 23:06:29 +04:00
|
|
|
subsecx = vtm.subsecx;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2017-04-11 05:40:14 +03:00
|
|
|
nano = mulquov(subsecx, INT2FIX(1000000000), INT2FIX(TIME_SCALE));
|
2009-08-29 23:06:29 +04:00
|
|
|
divmodv(nano, INT2FIX(1), &v, &subnano);
|
2009-04-21 18:56:59 +04:00
|
|
|
nsec = FIX2LONG(v);
|
|
|
|
usec = nsec / 1000;
|
|
|
|
nsec = nsec % 1000;
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2017-04-11 05:40:14 +03:00
|
|
|
nano = addv(LONG2FIX(nsec), subnano);
|
2010-01-13 22:04:17 +03:00
|
|
|
|
2009-04-25 10:25:06 +04:00
|
|
|
p = 0x1UL << 31 | /* 1 */
|
2018-08-08 15:48:58 +03:00
|
|
|
TZMODE_UTC_P(tobj) << 30 | /* 1 */
|
2009-04-25 10:25:06 +04:00
|
|
|
(year-1900) << 14 | /* 16 */
|
|
|
|
(vtm.mon-1) << 10 | /* 4 */
|
|
|
|
vtm.mday << 5 | /* 5 */
|
|
|
|
vtm.hour; /* 5 */
|
2014-10-17 12:50:01 +04:00
|
|
|
s = (unsigned long)vtm.min << 26 | /* 6 */
|
2009-04-25 10:25:06 +04:00
|
|
|
vtm.sec << 20 | /* 6 */
|
2009-04-21 18:56:59 +04:00
|
|
|
usec; /* 20 */
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
for (i=0; i<4; i++) {
|
2009-03-10 22:47:46 +03:00
|
|
|
buf[i] = (unsigned char)p;
|
1999-08-13 09:45:20 +04:00
|
|
|
p = RSHIFT(p, 8);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
for (i=4; i<8; i++) {
|
2009-03-10 22:47:46 +03:00
|
|
|
buf[i] = (unsigned char)s;
|
1999-08-13 09:45:20 +04:00
|
|
|
s = RSHIFT(s, 8);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
str = rb_str_new(buf, 8);
|
|
|
|
rb_copy_generic_ivar(str, time);
|
2010-01-13 22:04:17 +03:00
|
|
|
if (!rb_equal(nano, INT2FIX(0))) {
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(nano, T_RATIONAL)) {
|
2010-02-03 18:29:15 +03:00
|
|
|
rb_ivar_set(str, id_nano_num, RRATIONAL(nano)->num);
|
|
|
|
rb_ivar_set(str, id_nano_den, RRATIONAL(nano)->den);
|
2010-01-13 22:04:17 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_ivar_set(str, id_nano_num, nano);
|
|
|
|
rb_ivar_set(str, id_nano_den, INT2FIX(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (nsec) { /* submicro is only for Ruby 1.9.1 compatibility */
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
/*
|
|
|
|
* submicro is formatted in fixed-point packed BCD (without sign).
|
|
|
|
* It represent digits under microsecond.
|
|
|
|
* For nanosecond resolution, 3 digits (2 bytes) are used.
|
|
|
|
* However it can be longer.
|
|
|
|
* Extra digits are ignored for loading.
|
|
|
|
*/
|
2009-09-23 08:16:41 +04:00
|
|
|
char buf[2];
|
|
|
|
int len = (int)sizeof(buf);
|
|
|
|
buf[1] = (char)((nsec % 10) << 4);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
nsec /= 10;
|
2009-09-23 08:16:41 +04:00
|
|
|
buf[0] = (char)(nsec % 10);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
nsec /= 10;
|
2009-09-23 08:16:41 +04:00
|
|
|
buf[0] |= (char)((nsec % 10) << 4);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
if (buf[1] == 0)
|
|
|
|
len = 1;
|
2009-09-23 08:16:41 +04:00
|
|
|
rb_ivar_set(str, id_submicro, rb_str_new(buf, len));
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
2018-08-08 15:48:58 +03:00
|
|
|
if (!TZMODE_UTC_P(tobj)) {
|
2017-12-11 15:09:47 +03:00
|
|
|
VALUE off = rb_time_utc_offset(time), div, mod;
|
2010-02-03 18:37:45 +03:00
|
|
|
divmodv(off, INT2FIX(1), &div, &mod);
|
|
|
|
if (rb_equal(mod, INT2FIX(0)))
|
|
|
|
off = rb_Integer(div);
|
|
|
|
rb_ivar_set(str, id_offset, off);
|
|
|
|
}
|
2018-10-08 05:35:31 +03:00
|
|
|
zone = tobj->vtm.zone;
|
|
|
|
if (maybe_tzobj_p(zone)) {
|
|
|
|
zone = rb_funcallv(zone, id_name, 0, 0);
|
|
|
|
}
|
|
|
|
rb_ivar_set(str, id_zone, zone);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
return str;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
2012-12-01 17:54:54 +04:00
|
|
|
/* :nodoc: */
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_dump(int argc, VALUE *argv, VALUE time)
|
2003-10-02 12:25:00 +04:00
|
|
|
{
|
2003-10-09 21:45:53 +04:00
|
|
|
VALUE str;
|
2003-10-02 12:25:00 +04:00
|
|
|
|
2003-10-09 21:45:53 +04:00
|
|
|
rb_scan_args(argc, argv, "01", 0);
|
2009-02-22 17:23:33 +03:00
|
|
|
str = time_mdump(time);
|
2003-10-09 21:45:53 +04:00
|
|
|
|
|
|
|
return str;
|
2003-10-02 12:25:00 +04:00
|
|
|
}
|
|
|
|
|
2012-12-01 17:54:54 +04:00
|
|
|
/* :nodoc: */
|
2003-10-02 12:25:00 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_mload(VALUE time, VALUE str)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2003-10-02 12:25:00 +04:00
|
|
|
struct time_object *tobj;
|
1999-08-13 09:45:20 +04:00
|
|
|
unsigned long p, s;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
time_t sec;
|
|
|
|
long usec;
|
1999-01-20 07:59:39 +03:00
|
|
|
unsigned char *buf;
|
2009-04-21 18:56:59 +04:00
|
|
|
struct vtm vtm;
|
2004-05-14 20:39:15 +04:00
|
|
|
int i, gmt;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
long nsec;
|
2012-12-07 06:55:35 +04:00
|
|
|
VALUE submicro, nano_num, nano_den, offset, zone;
|
2010-03-28 04:54:29 +04:00
|
|
|
wideval_t timew;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2003-10-02 12:25:00 +04:00
|
|
|
time_modify(time);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
|
2010-10-14 02:22:18 +04:00
|
|
|
#define get_attr(attr, iffound) \
|
2015-05-30 03:20:15 +03:00
|
|
|
attr = rb_attr_delete(str, id_##attr); \
|
2010-10-14 02:22:18 +04:00
|
|
|
if (!NIL_P(attr)) { \
|
|
|
|
iffound; \
|
2010-02-03 18:37:45 +03:00
|
|
|
}
|
2010-10-14 02:22:18 +04:00
|
|
|
|
|
|
|
get_attr(nano_num, {});
|
|
|
|
get_attr(nano_den, {});
|
|
|
|
get_attr(submicro, {});
|
2013-08-17 17:20:50 +04:00
|
|
|
get_attr(offset, (offset = rb_rescue(validate_utc_offset, offset, NULL, Qnil)));
|
|
|
|
get_attr(zone, (zone = rb_rescue(validate_zone_name, zone, NULL, Qnil)));
|
|
|
|
|
2010-10-14 02:22:18 +04:00
|
|
|
#undef get_attr
|
|
|
|
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
rb_copy_generic_ivar(time, str);
|
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
StringValue(str);
|
2006-08-31 14:47:44 +04:00
|
|
|
buf = (unsigned char *)RSTRING_PTR(str);
|
|
|
|
if (RSTRING_LEN(str) != 8) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eTypeError, "marshaled time format differ");
|
|
|
|
}
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
p = s = 0;
|
1999-01-20 07:59:39 +03:00
|
|
|
for (i=0; i<4; i++) {
|
2014-10-17 12:50:01 +04:00
|
|
|
p |= (unsigned long)buf[i]<<(8*i);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
for (i=4; i<8; i++) {
|
2014-10-17 12:50:01 +04:00
|
|
|
s |= (unsigned long)buf[i]<<(8*(i-4));
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
2006-07-04 00:07:10 +04:00
|
|
|
if ((p & (1UL<<31)) == 0) {
|
2005-09-25 03:45:46 +04:00
|
|
|
gmt = 0;
|
2010-02-03 18:37:45 +03:00
|
|
|
offset = Qnil;
|
2003-10-02 12:25:00 +04:00
|
|
|
sec = p;
|
|
|
|
usec = s;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
nsec = usec * 1000;
|
2010-03-30 19:34:33 +04:00
|
|
|
timew = wadd(rb_time_magnify(TIMET2WV(sec)), wmulquoll(WINT2FIXWV(usec), TIME_SCALE, 1000000));
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2003-10-02 12:25:00 +04:00
|
|
|
else {
|
2006-07-04 00:07:10 +04:00
|
|
|
p &= ~(1UL<<31);
|
2009-09-23 08:16:41 +04:00
|
|
|
gmt = (int)((p >> 30) & 0x1);
|
|
|
|
|
|
|
|
vtm.year = INT2FIX(((int)(p >> 14) & 0xffff) + 1900);
|
|
|
|
vtm.mon = ((int)(p >> 10) & 0xf) + 1;
|
|
|
|
vtm.mday = (int)(p >> 5) & 0x1f;
|
|
|
|
vtm.hour = (int) p & 0x1f;
|
|
|
|
vtm.min = (int)(s >> 26) & 0x3f;
|
|
|
|
vtm.sec = (int)(s >> 20) & 0x3f;
|
2009-04-21 18:56:59 +04:00
|
|
|
vtm.utc_offset = INT2FIX(0);
|
|
|
|
vtm.yday = vtm.wday = 0;
|
|
|
|
vtm.isdst = 0;
|
2018-08-08 13:00:43 +03:00
|
|
|
vtm.zone = rb_fstring_usascii("");
|
2009-04-21 18:56:59 +04:00
|
|
|
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
usec = (long)(s & 0xfffff);
|
|
|
|
nsec = usec * 1000;
|
|
|
|
|
2010-01-13 22:04:17 +03:00
|
|
|
|
2017-04-11 05:40:14 +03:00
|
|
|
vtm.subsecx = mulquov(LONG2FIX(nsec), INT2FIX(TIME_SCALE), LONG2FIX(1000000000));
|
2010-01-13 22:04:17 +03:00
|
|
|
if (nano_num != Qnil) {
|
2017-04-11 05:40:14 +03:00
|
|
|
VALUE nano = quov(num_exact(nano_num), num_exact(nano_den));
|
|
|
|
vtm.subsecx = addv(vtm.subsecx, mulquov(nano, INT2FIX(TIME_SCALE), LONG2FIX(1000000000)));
|
2010-01-13 22:04:17 +03:00
|
|
|
}
|
|
|
|
else if (submicro != Qnil) { /* for Ruby 1.9.1 compatibility */
|
2007-11-20 15:50:29 +03:00
|
|
|
unsigned char *ptr;
|
|
|
|
long len;
|
|
|
|
int digit;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
ptr = (unsigned char*)StringValuePtr(submicro);
|
|
|
|
len = RSTRING_LEN(submicro);
|
2010-01-22 15:08:02 +03:00
|
|
|
nsec = 0;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
if (0 < len) {
|
2007-11-20 15:50:29 +03:00
|
|
|
if (10 <= (digit = ptr[0] >> 4)) goto end_submicro;
|
|
|
|
nsec += digit * 100;
|
|
|
|
if (10 <= (digit = ptr[0] & 0xf)) goto end_submicro;
|
|
|
|
nsec += digit * 10;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
|
|
|
if (1 < len) {
|
2007-11-20 15:50:29 +03:00
|
|
|
if (10 <= (digit = ptr[1] >> 4)) goto end_submicro;
|
|
|
|
nsec += digit;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
2017-04-11 05:40:14 +03:00
|
|
|
vtm.subsecx = addv(vtm.subsecx, mulquov(LONG2FIX(nsec), INT2FIX(TIME_SCALE), LONG2FIX(1000000000)));
|
2007-11-20 15:50:29 +03:00
|
|
|
end_submicro: ;
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
2010-03-27 17:18:08 +03:00
|
|
|
timew = timegmw(&vtm);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
}
|
2003-10-02 12:25:00 +04:00
|
|
|
|
2013-03-15 18:06:21 +04:00
|
|
|
GetNewTimeval(time, tobj);
|
2018-08-08 13:39:31 +03:00
|
|
|
tobj->tzmode = TIME_TZMODE_LOCALTIME;
|
2003-10-02 12:25:00 +04:00
|
|
|
tobj->tm_got = 0;
|
2010-03-27 17:18:08 +03:00
|
|
|
tobj->timew = timew;
|
2010-02-03 18:37:45 +03:00
|
|
|
if (gmt) {
|
2018-08-08 15:48:58 +03:00
|
|
|
TZMODE_SET_UTC(tobj);
|
2010-02-03 18:37:45 +03:00
|
|
|
}
|
|
|
|
else if (!NIL_P(offset)) {
|
|
|
|
time_set_utc_offset(time, offset);
|
|
|
|
time_fixoff(time);
|
|
|
|
}
|
2012-12-07 06:55:35 +04:00
|
|
|
if (!NIL_P(zone)) {
|
2018-08-08 15:48:58 +03:00
|
|
|
if (TZMODE_FIXOFF_P(tobj)) TZMODE_SET_LOCALTIME(tobj);
|
2017-07-04 07:23:06 +03:00
|
|
|
zone = rb_fstring(zone);
|
2018-08-08 13:00:43 +03:00
|
|
|
tobj->vtm.zone = zone;
|
2012-12-07 06:55:35 +04:00
|
|
|
}
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
|
2003-10-02 12:25:00 +04:00
|
|
|
return time;
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2012-12-01 17:54:54 +04:00
|
|
|
/* :nodoc: */
|
2003-10-02 12:25:00 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
time_load(VALUE klass, VALUE str)
|
2003-10-02 12:25:00 +04:00
|
|
|
{
|
|
|
|
VALUE time = time_s_alloc(klass);
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2003-10-02 12:25:00 +04:00
|
|
|
time_mload(time, str);
|
|
|
|
return time;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
2018-10-08 05:35:31 +03:00
|
|
|
/* Document-class: Time::TM
|
|
|
|
*
|
|
|
|
* A container class for timezone conversion.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
*
|
|
|
|
* Time::TM.from_time(t) -> tm
|
|
|
|
*
|
|
|
|
* Creates new Time::TM object from a Time object.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
tm_from_time(VALUE klass, VALUE time)
|
|
|
|
{
|
|
|
|
struct time_object *tobj;
|
|
|
|
struct vtm vtm, *v;
|
|
|
|
#ifdef TM_IS_TIME
|
|
|
|
VALUE tm;
|
|
|
|
struct time_object *ttm;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
|
|
|
tm = time_s_alloc(klass);
|
|
|
|
ttm = DATA_PTR(tm);
|
|
|
|
v = &vtm;
|
|
|
|
GMTIMEW(ttm->timew = tobj->timew, v);
|
|
|
|
v->subsecx = INT2FIX(0);
|
|
|
|
v->zone = Qnil;
|
|
|
|
ttm->vtm = *v;
|
|
|
|
ttm->tm_got = 1;
|
|
|
|
TZMODE_SET_UTC(ttm);
|
|
|
|
return tm;
|
|
|
|
#else
|
|
|
|
VALUE args[8];
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
GetTimeval(time, tobj);
|
|
|
|
if (tobj->tm_got && TZMODE_UTC_P(tobj))
|
|
|
|
v = &tobj->vtm;
|
|
|
|
else
|
|
|
|
GMTIMEW(tobj->timew, v = &vtm);
|
|
|
|
args[i++] = v->year;
|
|
|
|
args[i++] = INT2FIX(v->mon);
|
|
|
|
args[i++] = INT2FIX(v->mday);
|
|
|
|
args[i++] = INT2FIX(v->hour);
|
|
|
|
args[i++] = INT2FIX(v->min);
|
|
|
|
args[i++] = INT2FIX(v->sec);
|
|
|
|
switch (v->isdst) {
|
|
|
|
case 0: args[i++] = Qfalse; break;
|
|
|
|
case 1: args[i++] = Qtrue; break;
|
|
|
|
default: args[i++] = Qnil; break;
|
|
|
|
}
|
|
|
|
args[i++] = w2v(rb_time_unmagnify(tobj->timew));
|
|
|
|
return rb_class_new_instance(i, args, klass);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
*
|
|
|
|
* Time::TM.new(year, month, day, hour, min, sec) -> tm
|
|
|
|
*
|
|
|
|
* Creates new Time::TM object.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
tm_initialize(int argc, VALUE *argv, VALUE tm)
|
|
|
|
{
|
|
|
|
#ifdef TM_IS_TIME
|
|
|
|
struct time_object *tobj = DATA_PTR(tm);
|
|
|
|
struct vtm vtm;
|
|
|
|
|
|
|
|
rb_check_arity(argc, 6, 6);
|
|
|
|
time_arg(argc, argv, &vtm);
|
|
|
|
tobj->tzmode = TIME_TZMODE_UTC;
|
|
|
|
tobj->timew = timegmw(&vtm);
|
|
|
|
tobj->vtm = vtm;
|
|
|
|
return tm;
|
|
|
|
#else
|
|
|
|
int i = 0;
|
|
|
|
struct vtm vtm;
|
|
|
|
wideval_t t;
|
|
|
|
|
|
|
|
time_arg(argc, argv, &vtm);
|
|
|
|
t = timegmw(&vtm);
|
|
|
|
RSTRUCT_SET(tm, i++, INT2FIX(vtm.sec));
|
|
|
|
RSTRUCT_SET(tm, i++, INT2FIX(vtm.min));
|
|
|
|
RSTRUCT_SET(tm, i++, INT2FIX(vtm.hour));
|
|
|
|
RSTRUCT_SET(tm, i++, INT2FIX(vtm.mday));
|
|
|
|
RSTRUCT_SET(tm, i++, INT2FIX(vtm.mon));
|
|
|
|
RSTRUCT_SET(tm, i++, vtm.year);
|
|
|
|
RSTRUCT_SET(tm, i++, INT2FIX(0));
|
|
|
|
switch (vtm.isdst) {
|
|
|
|
case 0: RSTRUCT_SET(tm, i++, Qfalse); break;
|
|
|
|
case 1: RSTRUCT_SET(tm, i++, Qtrue); break;
|
|
|
|
default: RSTRUCT_SET(tm, i++, Qnil); break;
|
|
|
|
}
|
|
|
|
RSTRUCT_SET(tm, i++, w2v(rb_time_unmagnify(t)));
|
|
|
|
return tm;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* call-seq:
|
|
|
|
*
|
|
|
|
* tm.to_time -> time
|
|
|
|
*
|
|
|
|
* Returns a new Time object.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
tm_to_time(VALUE tm)
|
|
|
|
{
|
|
|
|
#ifdef TM_IS_TIME
|
|
|
|
struct time_object *torig = get_timeval(tm);
|
|
|
|
VALUE dup = time_s_alloc(rb_cTime);
|
|
|
|
struct time_object *tobj = DATA_PTR(dup);
|
|
|
|
*tobj = *torig;
|
|
|
|
return dup;
|
|
|
|
#else
|
|
|
|
VALUE t[6];
|
|
|
|
const VALUE *p = RSTRUCT_CONST_PTR(tm);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < numberof(t); ++i) {
|
|
|
|
t[i] = p[numberof(t) - 1 - i];
|
|
|
|
}
|
|
|
|
return time_s_mkutc(numberof(t), t, rb_cTime);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_time_zone_abbreviation(VALUE zone, VALUE time)
|
|
|
|
{
|
|
|
|
VALUE tm, abbr, strftime_args[2];
|
|
|
|
|
|
|
|
abbr = rb_check_string_type(zone);
|
|
|
|
if (!NIL_P(abbr)) return abbr;
|
|
|
|
|
|
|
|
tm = tm_from_time(rb_cTimeTM, time);
|
|
|
|
abbr = rb_check_funcall(zone, rb_intern("abbr"), 1, &tm);
|
|
|
|
if (abbr != Qundef) {
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
#ifdef SUPPORT_TZINFO_ZONE_ABBREVIATION
|
|
|
|
abbr = rb_check_funcall(zone, rb_intern("period_for_utc"), 1, &tm);
|
|
|
|
if (abbr != Qundef) {
|
|
|
|
abbr = rb_funcallv(abbr, rb_intern("abbreviation"), 0, 0);
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
strftime_args[0] = rb_fstring_cstr("%Z");
|
|
|
|
strftime_args[1] = tm;
|
|
|
|
abbr = rb_check_funcall(zone, rb_intern("strftime"), 2, strftime_args);
|
|
|
|
if (abbr != Qundef) {
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
abbr = rb_check_funcall_default(zone, rb_intern("name"), 0, 0, Qnil);
|
|
|
|
found:
|
|
|
|
return rb_obj_as_string(abbr);
|
|
|
|
}
|
|
|
|
|
2003-12-27 09:33:45 +03:00
|
|
|
/*
|
2011-10-06 04:14:55 +04:00
|
|
|
* Time is an abstraction of dates and times. Time is stored internally as
|
|
|
|
* the number of seconds with fraction since the _Epoch_, January 1, 1970
|
2012-11-30 08:53:09 +04:00
|
|
|
* 00:00 UTC. Also see the library module Date. The Time class treats GMT
|
2011-10-06 04:17:41 +04:00
|
|
|
* (Greenwich Mean Time) and UTC (Coordinated Universal Time) as equivalent.
|
|
|
|
* GMT is the older way of referring to these baseline times but persists in
|
|
|
|
* the names of calls on POSIX systems.
|
2011-10-06 04:14:55 +04:00
|
|
|
*
|
|
|
|
* All times may have fraction. Be aware of this fact when comparing times
|
2011-10-06 04:17:41 +04:00
|
|
|
* with each other -- times that are apparently equal when displayed may be
|
2011-10-06 04:14:55 +04:00
|
|
|
* different when compared.
|
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Since Ruby 1.9.2, Time implementation uses a signed 63 bit integer,
|
|
|
|
* Bignum or Rational.
|
2012-02-11 20:28:13 +04:00
|
|
|
* The integer is a number of nanoseconds since the _Epoch_ which can
|
|
|
|
* represent 1823-11-12 to 2116-02-20.
|
2012-11-30 08:53:09 +04:00
|
|
|
* When Bignum or Rational is used (before 1823, after 2116, under
|
|
|
|
* nanosecond), Time works slower as when integer is used.
|
2012-02-11 20:28:13 +04:00
|
|
|
*
|
2011-10-06 04:14:55 +04:00
|
|
|
* = Examples
|
|
|
|
*
|
|
|
|
* All of these examples were done using the EST timezone which is GMT-5.
|
|
|
|
*
|
|
|
|
* == Creating a new Time instance
|
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* You can create a new instance of Time with Time::new. This will use the
|
|
|
|
* current system time. Time::now is an alias for this. You can also
|
|
|
|
* pass parts of the time to Time::new such as year, month, minute, etc. When
|
2011-10-06 04:14:55 +04:00
|
|
|
* you want to construct a time this way you must pass at least a year. If you
|
2012-11-30 08:53:09 +04:00
|
|
|
* pass the year with nothing else time will default to January 1 of that year
|
2011-10-06 04:14:55 +04:00
|
|
|
* at 00:00:00 with the current system timezone. Here are some examples:
|
|
|
|
*
|
|
|
|
* Time.new(2002) #=> 2002-01-01 00:00:00 -0500
|
|
|
|
* Time.new(2002, 10) #=> 2002-10-01 00:00:00 -0500
|
|
|
|
* Time.new(2002, 10, 31) #=> 2002-10-31 00:00:00 -0500
|
2013-08-06 17:39:15 +04:00
|
|
|
* Time.new(2002, 10, 31, 2, 2, 2, "+02:00") #=> 2002-10-31 02:02:02 +0200
|
2011-10-06 04:14:55 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* You can also use #gm, #local and
|
|
|
|
* #utc to infer GMT, local and UTC timezones instead of using
|
|
|
|
* the current system setting.
|
2011-10-06 04:14:55 +04:00
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* You can also create a new time using Time::at which takes the number of
|
2011-10-06 04:17:41 +04:00
|
|
|
* seconds (or fraction of seconds) since the {Unix
|
|
|
|
* Epoch}[http://en.wikipedia.org/wiki/Unix_time].
|
2011-10-06 04:14:55 +04:00
|
|
|
*
|
|
|
|
* Time.at(628232400) #=> 1989-11-28 00:00:00 -0500
|
|
|
|
*
|
|
|
|
* == Working with an instance of Time
|
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* Once you have an instance of Time there is a multitude of things you can
|
|
|
|
* do with it. Below are some examples. For all of the following examples, we
|
2011-10-06 04:14:55 +04:00
|
|
|
* will work on the assumption that you have done the following:
|
|
|
|
*
|
|
|
|
* t = Time.new(1993, 02, 24, 12, 0, 0, "+09:00")
|
|
|
|
*
|
|
|
|
* Was that a monday?
|
2011-11-04 11:19:23 +04:00
|
|
|
*
|
2011-10-06 04:14:55 +04:00
|
|
|
* t.monday? #=> false
|
|
|
|
*
|
|
|
|
* What year was that again?
|
|
|
|
*
|
|
|
|
* t.year #=> 1993
|
|
|
|
*
|
2016-03-15 03:56:45 +03:00
|
|
|
* Was it daylight savings at the time?
|
2011-10-06 04:14:55 +04:00
|
|
|
*
|
|
|
|
* t.dst? #=> false
|
|
|
|
*
|
|
|
|
* What's the day a year later?
|
|
|
|
*
|
|
|
|
* t + (60*60*24*365) #=> 1994-02-24 12:00:00 +0900
|
|
|
|
*
|
2012-11-30 08:53:09 +04:00
|
|
|
* How many seconds was that since the Unix Epoch?
|
2011-10-06 04:14:55 +04:00
|
|
|
*
|
|
|
|
* t.to_i #=> 730522800
|
|
|
|
*
|
|
|
|
* You can also do standard functions like compare two times.
|
|
|
|
*
|
|
|
|
* t1 = Time.new(2010)
|
|
|
|
* t2 = Time.new(2011)
|
2011-11-04 11:19:23 +04:00
|
|
|
*
|
2011-10-06 04:14:55 +04:00
|
|
|
* t1 == t2 #=> false
|
|
|
|
* t1 == t1 #=> true
|
|
|
|
* t1 < t2 #=> true
|
|
|
|
* t1 > t2 #=> false
|
|
|
|
*
|
|
|
|
* Time.new(2010,10,31).between?(t1, t2) #=> true
|
2003-12-27 09:33:45 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
Init_Time(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-06-09 13:25:32 +04:00
|
|
|
#undef rb_intern
|
2008-08-16 04:20:31 +04:00
|
|
|
#define rb_intern(str) rb_intern_const(str)
|
2008-06-09 13:25:32 +04:00
|
|
|
|
2009-04-21 18:56:59 +04:00
|
|
|
id_quo = rb_intern("quo");
|
|
|
|
id_div = rb_intern("div");
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
id_divmod = rb_intern("divmod");
|
|
|
|
id_submicro = rb_intern("submicro");
|
2010-01-13 22:04:17 +03:00
|
|
|
id_nano_num = rb_intern("nano_num");
|
|
|
|
id_nano_den = rb_intern("nano_den");
|
2010-02-03 18:37:45 +03:00
|
|
|
id_offset = rb_intern("offset");
|
2012-12-07 06:55:35 +04:00
|
|
|
id_zone = rb_intern("zone");
|
2017-09-25 09:20:10 +03:00
|
|
|
id_nanosecond = rb_intern("nanosecond");
|
|
|
|
id_microsecond = rb_intern("microsecond");
|
|
|
|
id_millisecond = rb_intern("millisecond");
|
|
|
|
id_nsec = rb_intern("nsec");
|
|
|
|
id_usec = rb_intern("usec");
|
2018-10-08 05:35:31 +03:00
|
|
|
id_local_to_utc = rb_intern("local_to_utc");
|
|
|
|
id_utc_to_local = rb_intern("utc_to_local");
|
|
|
|
id_year = rb_intern("year");
|
|
|
|
id_mon = rb_intern("mon");
|
|
|
|
id_mday = rb_intern("mday");
|
|
|
|
id_hour = rb_intern("hour");
|
|
|
|
id_min = rb_intern("min");
|
|
|
|
id_sec = rb_intern("sec");
|
|
|
|
id_isdst = rb_intern("isdst");
|
|
|
|
id_name = rb_intern("name");
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_cTime = rb_define_class("Time", rb_cObject);
|
|
|
|
rb_include_module(rb_cTime, rb_mComparable);
|
|
|
|
|
2018-10-08 05:35:31 +03:00
|
|
|
#ifdef TM_IS_TIME
|
|
|
|
rb_cTimeTM = rb_define_class_under(rb_cTime, "TM", rb_cTime);
|
|
|
|
#else
|
|
|
|
rb_cTimeTM = rb_struct_define_under(rb_cTime, "TM",
|
|
|
|
"sec", "min", "hour",
|
|
|
|
"mday", "mon", "year",
|
|
|
|
"subsec", "isdst",
|
|
|
|
"to_i", NULL);
|
|
|
|
rb_alias(rb_cTimeTM, rb_intern("dst?"), id_isdst);
|
|
|
|
#endif
|
|
|
|
rb_define_method(rb_cTimeTM, "initialize", tm_initialize, -1);
|
|
|
|
rb_define_method(rb_cTimeTM, "utc", tm_to_time, 0);
|
|
|
|
rb_alias(rb_cTimeTM, rb_intern("to_time"), rb_intern("utc"));
|
|
|
|
rb_define_singleton_method(rb_cTimeTM, "from_time", tm_from_time, 1);
|
|
|
|
|
2002-12-20 11:33:17 +03:00
|
|
|
rb_define_alloc_func(rb_cTime, time_s_alloc);
|
2009-06-24 15:19:58 +04:00
|
|
|
rb_define_singleton_method(rb_cTime, "now", time_s_now, 0);
|
1999-10-29 13:25:48 +04:00
|
|
|
rb_define_singleton_method(rb_cTime, "at", time_s_at, -1);
|
2000-06-12 11:48:31 +04:00
|
|
|
rb_define_singleton_method(rb_cTime, "utc", time_s_mkutc, -1);
|
|
|
|
rb_define_singleton_method(rb_cTime, "gm", time_s_mkutc, -1);
|
|
|
|
rb_define_singleton_method(rb_cTime, "local", time_s_mktime, -1);
|
|
|
|
rb_define_singleton_method(rb_cTime, "mktime", time_s_mktime, -1);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
rb_define_method(rb_cTime, "to_i", time_to_i, 0);
|
|
|
|
rb_define_method(rb_cTime, "to_f", time_to_f, 0);
|
2009-05-19 18:00:04 +04:00
|
|
|
rb_define_method(rb_cTime, "to_r", time_to_r, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_method(rb_cTime, "<=>", time_cmp, 1);
|
|
|
|
rb_define_method(rb_cTime, "eql?", time_eql, 1);
|
|
|
|
rb_define_method(rb_cTime, "hash", time_hash, 0);
|
2009-05-12 16:07:49 +04:00
|
|
|
rb_define_method(rb_cTime, "initialize", time_init, -1);
|
2003-05-19 09:41:08 +04:00
|
|
|
rb_define_method(rb_cTime, "initialize_copy", time_init_copy, 1);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2009-05-12 16:07:49 +04:00
|
|
|
rb_define_method(rb_cTime, "localtime", time_localtime_m, -1);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_method(rb_cTime, "gmtime", time_gmtime, 0);
|
2000-07-06 11:21:26 +04:00
|
|
|
rb_define_method(rb_cTime, "utc", time_gmtime, 0);
|
2009-05-12 16:07:49 +04:00
|
|
|
rb_define_method(rb_cTime, "getlocal", time_getlocaltime, -1);
|
2001-12-10 10:18:16 +03:00
|
|
|
rb_define_method(rb_cTime, "getgm", time_getgmtime, 0);
|
|
|
|
rb_define_method(rb_cTime, "getutc", time_getgmtime, 0);
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_method(rb_cTime, "ctime", time_asctime, 0);
|
|
|
|
rb_define_method(rb_cTime, "asctime", time_asctime, 0);
|
|
|
|
rb_define_method(rb_cTime, "to_s", time_to_s, 0);
|
|
|
|
rb_define_method(rb_cTime, "inspect", time_to_s, 0);
|
|
|
|
rb_define_method(rb_cTime, "to_a", time_to_a, 0);
|
|
|
|
|
|
|
|
rb_define_method(rb_cTime, "+", time_plus, 1);
|
|
|
|
rb_define_method(rb_cTime, "-", time_minus, 1);
|
|
|
|
|
2003-11-28 17:23:33 +03:00
|
|
|
rb_define_method(rb_cTime, "succ", time_succ, 0);
|
2010-03-11 16:39:12 +03:00
|
|
|
rb_define_method(rb_cTime, "round", time_round, -1);
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_method(rb_cTime, "sec", time_sec, 0);
|
|
|
|
rb_define_method(rb_cTime, "min", time_min, 0);
|
|
|
|
rb_define_method(rb_cTime, "hour", time_hour, 0);
|
|
|
|
rb_define_method(rb_cTime, "mday", time_mday, 0);
|
|
|
|
rb_define_method(rb_cTime, "day", time_mday, 0);
|
|
|
|
rb_define_method(rb_cTime, "mon", time_mon, 0);
|
|
|
|
rb_define_method(rb_cTime, "month", time_mon, 0);
|
|
|
|
rb_define_method(rb_cTime, "year", time_year, 0);
|
|
|
|
rb_define_method(rb_cTime, "wday", time_wday, 0);
|
|
|
|
rb_define_method(rb_cTime, "yday", time_yday, 0);
|
|
|
|
rb_define_method(rb_cTime, "isdst", time_isdst, 0);
|
2000-10-17 22:14:05 +04:00
|
|
|
rb_define_method(rb_cTime, "dst?", time_isdst, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_method(rb_cTime, "zone", time_zone, 0);
|
2017-12-11 15:09:47 +03:00
|
|
|
rb_define_method(rb_cTime, "gmtoff", rb_time_utc_offset, 0);
|
|
|
|
rb_define_method(rb_cTime, "gmt_offset", rb_time_utc_offset, 0);
|
|
|
|
rb_define_method(rb_cTime, "utc_offset", rb_time_utc_offset, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2000-06-19 12:38:11 +04:00
|
|
|
rb_define_method(rb_cTime, "utc?", time_utc_p, 0);
|
|
|
|
rb_define_method(rb_cTime, "gmt?", time_utc_p, 0);
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2005-10-27 12:18:38 +04:00
|
|
|
rb_define_method(rb_cTime, "sunday?", time_sunday, 0);
|
|
|
|
rb_define_method(rb_cTime, "monday?", time_monday, 0);
|
|
|
|
rb_define_method(rb_cTime, "tuesday?", time_tuesday, 0);
|
|
|
|
rb_define_method(rb_cTime, "wednesday?", time_wednesday, 0);
|
|
|
|
rb_define_method(rb_cTime, "thursday?", time_thursday, 0);
|
|
|
|
rb_define_method(rb_cTime, "friday?", time_friday, 0);
|
|
|
|
rb_define_method(rb_cTime, "saturday?", time_saturday, 0);
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_method(rb_cTime, "tv_sec", time_to_i, 0);
|
|
|
|
rb_define_method(rb_cTime, "tv_usec", time_usec, 0);
|
|
|
|
rb_define_method(rb_cTime, "usec", time_usec, 0);
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
rb_define_method(rb_cTime, "tv_nsec", time_nsec, 0);
|
|
|
|
rb_define_method(rb_cTime, "nsec", time_nsec, 0);
|
2009-04-21 18:56:59 +04:00
|
|
|
rb_define_method(rb_cTime, "subsec", time_subsec, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
rb_define_method(rb_cTime, "strftime", time_strftime, 1);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
/* methods for marshaling */
|
2012-12-01 13:17:02 +04:00
|
|
|
rb_define_private_method(rb_cTime, "_dump", time_dump, -1);
|
|
|
|
rb_define_private_method(rb_singleton_class(rb_cTime), "_load", time_load, 1);
|
2003-10-02 12:25:00 +04:00
|
|
|
#if 0
|
|
|
|
/* Time will support marshal_dump and marshal_load in the future (1.9 maybe) */
|
2012-12-01 13:17:02 +04:00
|
|
|
rb_define_private_method(rb_cTime, "marshal_dump", time_mdump, 0);
|
|
|
|
rb_define_private_method(rb_cTime, "marshal_load", time_mload, 1);
|
2003-10-02 12:25:00 +04:00
|
|
|
#endif
|
2009-07-02 19:37:06 +04:00
|
|
|
|
2009-07-02 21:53:21 +04:00
|
|
|
#ifdef DEBUG_FIND_TIME_NUMGUESS
|
2009-07-02 19:37:06 +04:00
|
|
|
rb_define_virtual_variable("$find_time_numguess", find_time_numguess_getter, NULL);
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|