[前][次][番号順一覧][スレッド一覧]

ruby-changes:10162

From: shyouhei <ko1@a...>
Date: Wed, 21 Jan 2009 11:14:02 +0900 (JST)
Subject: [ruby-changes:10162] Ruby:r21705 (ruby_1_8_7): merge revision(s) 19025,19050,19064,19482:

shyouhei	2009-01-21 11:13:46 +0900 (Wed, 21 Jan 2009)

  New Revision: 21705

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21705

  Log:
    merge revision(s) 19025,19050,19064,19482:
    * win32/win32.c (gettimeofday): shouldn't use mktime(2) because it's
      buggy about handling summer time.
      reported by Yoshikawa <yoshixool AT gmail.com> at [ruby-dev:36071]
    * win32/win32.c (gettimeofday): calc tv_sec and tv_usec from system
      time by myself. [ruby-dev:36084]
    * win32/win32.c (gettimeofday): tv_usec is usec, not msec.
      [ruby-dev:36094]
      of the Gregorian calendar.
    * win32/win32.c (filetime_to_timeval): new function, split from
      gettimeofday().
    * win32/win32.c (gettimeofday): use above function.
    * win32/win32.c (filetime_to_unixtime): ditto. [ruby-dev:36135]

  Modified files:
    branches/ruby_1_8_7/ChangeLog
    branches/ruby_1_8_7/version.h
    branches/ruby_1_8_7/win32/win32.c

Index: ruby_1_8_7/ChangeLog
===================================================================
--- ruby_1_8_7/ChangeLog	(revision 21704)
+++ ruby_1_8_7/ChangeLog	(revision 21705)
@@ -1,3 +1,28 @@
+Wed Jan 21 11:12:55 2009  NAKAMURA Usaku  <usa@r...>
+
+	* win32/win32.c (filetime_to_timeval): new function, split from
+	  gettimeofday().
+
+	* win32/win32.c (gettimeofday): use above function.
+
+	* win32/win32.c (filetime_to_unixtime): ditto. [ruby-dev:36135]
+
+Wed Jan 21 11:12:55 2009  NAKAMURA Usaku  <usa@r...>
+
+	* win32/win32.c (gettimeofday): tv_usec is usec, not msec.
+	  [ruby-dev:36094]
+
+Wed Jan 21 11:12:55 2009  NAKAMURA Usaku  <usa@r...>
+
+	* win32/win32.c (gettimeofday): calc tv_sec and tv_usec from system
+	  time by myself. [ruby-dev:36084]
+
+Wed Jan 21 11:12:55 2009  NAKAMURA Usaku  <usa@r...>
+
+	* win32/win32.c (gettimeofday): shouldn't use mktime(2) because it's
+	  buggy about handling summer time.
+	  reported by Yoshikawa <yoshixool AT gmail.com> at [ruby-dev:36071]
+
 Tue Jan 20 12:23:38 2009  Nobuyoshi Nakada  <nobu@r...>
 
 	* lib/scanf.rb (Scanf::FormatSpecifier#initialize): %i should accept
Index: ruby_1_8_7/version.h
===================================================================
--- ruby_1_8_7/version.h	(revision 21704)
+++ ruby_1_8_7/version.h	(revision 21705)
@@ -1,15 +1,15 @@
 #define RUBY_VERSION "1.8.7"
-#define RUBY_RELEASE_DATE "2009-01-20"
+#define RUBY_RELEASE_DATE "2009-01-21"
 #define RUBY_VERSION_CODE 187
-#define RUBY_RELEASE_CODE 20090120
-#define RUBY_PATCHLEVEL 90
+#define RUBY_RELEASE_CODE 20090121
+#define RUBY_PATCHLEVEL 91
 
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 8
 #define RUBY_VERSION_TEENY 7
 #define RUBY_RELEASE_YEAR 2009
 #define RUBY_RELEASE_MONTH 1
-#define RUBY_RELEASE_DAY 20
+#define RUBY_RELEASE_DAY 21
 
 #ifdef RUBY_EXTERN
 RUBY_EXTERN const char ruby_version[];
Index: ruby_1_8_7/win32/win32.c
===================================================================
--- ruby_1_8_7/win32/win32.c	(revision 21704)
+++ ruby_1_8_7/win32/win32.c	(revision 21705)
@@ -2975,24 +2975,36 @@
 
 #include <sys/timeb.h>
 
+static int
+filetime_to_timeval(const FILETIME* ft, struct timeval *tv)
+{
+    ULARGE_INTEGER tmp;
+    unsigned LONG_LONG lt;
+
+    tmp.LowPart = ft->dwLowDateTime;
+    tmp.HighPart = ft->dwHighDateTime;
+    lt = tmp.QuadPart;
+
+    /* lt is now 100-nanosec intervals since 1601/01/01 00:00:00 UTC,
+       convert it into UNIX time (since 1970/01/01 00:00:00 UTC).
+       the first leap second is at 1972/06/30, so we doesn't need to think
+       about it. */
+    lt /= 10;	/* to usec */
+    lt -= (LONG_LONG)((1970-1601)*365.2425) * 24 * 60 * 60 * 1000 * 1000;
+
+    tv->tv_sec = lt / (1000 * 1000);
+    tv->tv_usec = lt % (1000 * 1000);
+
+    return tv->tv_sec > 0 ? 0 : -1;
+}
+
 int _cdecl
 gettimeofday(struct timeval *tv, struct timezone *tz)
 {
-    SYSTEMTIME st;
-    time_t t;
-    struct tm tm;
+    FILETIME ft;
 
-    GetLocalTime(&st);
-    tm.tm_sec = st.wSecond;
-    tm.tm_min = st.wMinute;
-    tm.tm_hour = st.wHour;
-    tm.tm_mday = st.wDay;
-    tm.tm_mon = st.wMonth - 1;
-    tm.tm_year = st.wYear - 1900;
-    tm.tm_isdst = -1;
-    t = mktime(&tm);
-    tv->tv_sec = t;
-    tv->tv_usec = st.wMilliseconds * 1000;
+    GetSystemTimeAsFileTime(&ft);
+    filetime_to_timeval(&ft, tv);
 
     return 0;
 }
@@ -3267,27 +3279,12 @@
 static time_t
 filetime_to_unixtime(const FILETIME *ft)
 {
-    FILETIME loc;
-    SYSTEMTIME st;
-    struct tm tm;
-    time_t t;
+    struct timeval tv;
 
-    if (!FileTimeToLocalFileTime(ft, &loc)) {
+    if (filetime_to_timeval(ft, &tv) == (time_t)-1)
 	return 0;
-    }
-    if (!FileTimeToSystemTime(&loc, &st)) {
-	return 0;
-    }
-    memset(&tm, 0, sizeof(tm));
-    tm.tm_year = st.wYear - 1900;
-    tm.tm_mon = st.wMonth - 1;
-    tm.tm_mday = st.wDay;
-    tm.tm_hour = st.wHour;
-    tm.tm_min = st.wMinute;
-    tm.tm_sec = st.wSecond;
-    tm.tm_isdst = -1;
-    t = mktime(&tm);
-    return t == -1 ? 0 : t;
+    else
+	return tv.tv_sec;
 }
 
 static unsigned

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]