2001-01-11 00:59:25 +01:00
|
|
|
/*
|
|
|
|
* msvcrt.dll date/time functions
|
|
|
|
*
|
|
|
|
* Copyright 1996,1998 Marcus Meissner
|
|
|
|
* Copyright 1996 Jukka Iivonen
|
|
|
|
* Copyright 1997,2000 Uwe Bonnes
|
|
|
|
* Copyright 2000 Jon Griffiths
|
2004-03-19 02:16:59 +01:00
|
|
|
* Copyright 2004 Hans Leidekker
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2001-01-11 00:59:25 +01:00
|
|
|
*/
|
2001-04-23 20:22:33 +02:00
|
|
|
|
2002-08-26 23:53:24 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
2001-01-11 00:59:25 +01:00
|
|
|
#include <time.h>
|
2002-08-26 23:53:24 +02:00
|
|
|
#ifdef HAVE_SYS_TIMES_H
|
|
|
|
# include <sys/times.h>
|
|
|
|
#endif
|
2001-01-11 00:59:25 +01:00
|
|
|
|
2001-04-23 20:22:33 +02:00
|
|
|
#include "msvcrt.h"
|
2004-03-11 01:43:47 +01:00
|
|
|
#include "winbase.h"
|
2002-01-22 01:57:16 +01:00
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
|
2001-01-11 00:59:25 +01:00
|
|
|
|
2004-03-19 02:16:59 +01:00
|
|
|
static const int MonthLengths[2][12] =
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
2004-03-19 02:16:59 +01:00
|
|
|
{ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
|
|
|
|
{ 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline int IsLeapYear(int Year)
|
|
|
|
{
|
|
|
|
return Year % 4 == 0 && (Year % 100 != 0 || Year % 400 == 0);
|
2001-01-11 00:59:25 +01:00
|
|
|
}
|
|
|
|
|
2004-03-19 02:16:59 +01:00
|
|
|
#define SECSPERDAY 86400
|
|
|
|
/* 1601 to 1970 is 369 years plus 89 leap days */
|
|
|
|
#define SECS_1601_TO_1970 ((369 * 365 + 89) * (ULONGLONG)SECSPERDAY)
|
|
|
|
#define TICKSPERSEC 10000000
|
|
|
|
#define TICKSPERMSEC 10000
|
|
|
|
#define TICKS_1601_TO_1970 (SECS_1601_TO_1970 * TICKSPERSEC)
|
|
|
|
|
|
|
|
/* native uses a single static buffer for localtime/gmtime/mktime */
|
|
|
|
static struct MSVCRT_tm tm;
|
|
|
|
|
2001-11-12 16:47:26 +01:00
|
|
|
/**********************************************************************
|
|
|
|
* mktime (MSVCRT.@)
|
|
|
|
*/
|
|
|
|
MSVCRT_time_t MSVCRT_mktime(struct MSVCRT_tm *t)
|
|
|
|
{
|
2004-03-19 02:16:59 +01:00
|
|
|
MSVCRT_time_t secs;
|
|
|
|
SYSTEMTIME st;
|
|
|
|
FILETIME lft, uft;
|
|
|
|
ULONGLONG time;
|
|
|
|
|
2004-03-25 01:12:40 +01:00
|
|
|
st.wMilliseconds = 0;
|
2004-03-19 02:16:59 +01:00
|
|
|
st.wSecond = t->tm_sec;
|
|
|
|
st.wMinute = t->tm_min;
|
|
|
|
st.wHour = t->tm_hour;
|
2004-03-25 01:12:40 +01:00
|
|
|
st.wDay = t->tm_mday;
|
|
|
|
st.wMonth = t->tm_mon + 1;
|
2004-03-19 02:16:59 +01:00
|
|
|
st.wYear = t->tm_year + 1900;
|
|
|
|
|
|
|
|
SystemTimeToFileTime(&st, &lft);
|
|
|
|
LocalFileTimeToFileTime(&lft, &uft);
|
|
|
|
|
|
|
|
time = ((ULONGLONG)uft.dwHighDateTime << 32) | uft.dwLowDateTime;
|
|
|
|
secs = time / TICKSPERSEC - SECS_1601_TO_1970;
|
2004-10-21 21:56:46 +02:00
|
|
|
/* compute tm_wday, tm_yday and renormalize the other fields of the
|
|
|
|
* tm structure */
|
|
|
|
if( MSVCRT_localtime( &secs)) *t = tm;
|
2004-03-19 02:16:59 +01:00
|
|
|
|
|
|
|
return secs;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* localtime (MSVCRT.@)
|
|
|
|
*/
|
|
|
|
struct MSVCRT_tm* MSVCRT_localtime(const MSVCRT_time_t* secs)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
FILETIME ft, lft;
|
|
|
|
SYSTEMTIME st;
|
|
|
|
DWORD tzid;
|
|
|
|
TIME_ZONE_INFORMATION tzinfo;
|
|
|
|
|
|
|
|
ULONGLONG time = *secs * (ULONGLONG)TICKSPERSEC + TICKS_1601_TO_1970;
|
|
|
|
|
|
|
|
ft.dwHighDateTime = (UINT)(time >> 32);
|
|
|
|
ft.dwLowDateTime = (UINT)time;
|
|
|
|
|
|
|
|
FileTimeToLocalFileTime(&ft, &lft);
|
|
|
|
FileTimeToSystemTime(&lft, &st);
|
|
|
|
|
|
|
|
if (st.wYear < 1970) return NULL;
|
|
|
|
|
|
|
|
tm.tm_sec = st.wSecond;
|
|
|
|
tm.tm_min = st.wMinute;
|
|
|
|
tm.tm_hour = st.wHour;
|
|
|
|
tm.tm_mday = st.wDay;
|
|
|
|
tm.tm_year = st.wYear - 1900;
|
2004-03-25 01:12:40 +01:00
|
|
|
tm.tm_mon = st.wMonth - 1;
|
2004-03-19 02:16:59 +01:00
|
|
|
tm.tm_wday = st.wDayOfWeek;
|
|
|
|
|
2004-03-25 01:12:40 +01:00
|
|
|
for (i = tm.tm_yday = 0; i < st.wMonth - 1; i++) {
|
2004-03-19 02:16:59 +01:00
|
|
|
tm.tm_yday += MonthLengths[IsLeapYear(st.wYear)][i];
|
|
|
|
}
|
|
|
|
|
2004-03-25 01:12:40 +01:00
|
|
|
tm.tm_yday += st.wDay - 1;
|
2004-03-19 02:16:59 +01:00
|
|
|
|
|
|
|
tzid = GetTimeZoneInformation(&tzinfo);
|
|
|
|
|
2004-10-27 23:17:44 +02:00
|
|
|
if (tzid == TIME_ZONE_ID_INVALID)
|
2004-03-19 02:16:59 +01:00
|
|
|
tm.tm_isdst = -1;
|
2004-10-27 23:17:44 +02:00
|
|
|
else
|
2004-03-19 02:16:59 +01:00
|
|
|
tm.tm_isdst = (tzid == TIME_ZONE_ID_DAYLIGHT?1:0);
|
|
|
|
|
|
|
|
return &tm;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct MSVCRT_tm* MSVCRT_gmtime(const MSVCRT_time_t* secs)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2004-03-25 01:12:40 +01:00
|
|
|
FILETIME ft;
|
2004-03-19 02:16:59 +01:00
|
|
|
SYSTEMTIME st;
|
|
|
|
|
|
|
|
ULONGLONG time = *secs * (ULONGLONG)TICKSPERSEC + TICKS_1601_TO_1970;
|
|
|
|
|
|
|
|
ft.dwHighDateTime = (UINT)(time >> 32);
|
|
|
|
ft.dwLowDateTime = (UINT)time;
|
|
|
|
|
2004-03-25 01:12:40 +01:00
|
|
|
FileTimeToSystemTime(&ft, &st);
|
2004-03-19 02:16:59 +01:00
|
|
|
|
|
|
|
if (st.wYear < 1970) return NULL;
|
|
|
|
|
|
|
|
tm.tm_sec = st.wSecond;
|
|
|
|
tm.tm_min = st.wMinute;
|
|
|
|
tm.tm_hour = st.wHour;
|
|
|
|
tm.tm_mday = st.wDay;
|
|
|
|
tm.tm_year = st.wYear - 1900;
|
2004-03-25 01:12:40 +01:00
|
|
|
tm.tm_mon = st.wMonth - 1;
|
2004-03-19 02:16:59 +01:00
|
|
|
tm.tm_wday = st.wDayOfWeek;
|
2004-03-25 01:12:40 +01:00
|
|
|
for (i = tm.tm_yday = 0; i < st.wMonth - 1; i++) {
|
2004-03-19 02:16:59 +01:00
|
|
|
tm.tm_yday += MonthLengths[IsLeapYear(st.wYear)][i];
|
|
|
|
}
|
|
|
|
|
2004-03-25 01:12:40 +01:00
|
|
|
tm.tm_yday += st.wDay - 1;
|
2004-03-19 02:16:59 +01:00
|
|
|
tm.tm_isdst = 0;
|
|
|
|
|
|
|
|
return &tm;
|
2001-11-12 16:47:26 +01:00
|
|
|
}
|
|
|
|
|
2001-01-11 00:59:25 +01:00
|
|
|
/**********************************************************************
|
|
|
|
* _strdate (MSVCRT.@)
|
|
|
|
*/
|
2001-04-10 23:16:07 +02:00
|
|
|
char* _strdate(char* date)
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
2004-03-19 02:16:59 +01:00
|
|
|
LPCSTR format = "MM'/'dd'/'yy";
|
|
|
|
|
|
|
|
GetDateFormatA(LOCALE_NEUTRAL, 0, NULL, format, date, 9);
|
|
|
|
|
|
|
|
return date;
|
2001-01-11 00:59:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _strtime (MSVCRT.@)
|
|
|
|
*/
|
2001-04-10 23:16:07 +02:00
|
|
|
char* _strtime(char* date)
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
2004-03-19 02:16:59 +01:00
|
|
|
LPCSTR format = "HH':'mm':'ss";
|
|
|
|
|
|
|
|
GetTimeFormatA(LOCALE_NEUTRAL, 0, NULL, format, date, 9);
|
|
|
|
|
|
|
|
return date;
|
2001-01-11 00:59:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* clock (MSVCRT.@)
|
|
|
|
*/
|
2001-04-16 20:54:31 +02:00
|
|
|
MSVCRT_clock_t MSVCRT_clock(void)
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
2004-03-19 02:16:59 +01:00
|
|
|
FILETIME ftc, fte, ftk, ftu;
|
|
|
|
ULONGLONG utime, ktime;
|
|
|
|
|
|
|
|
MSVCRT_clock_t clock;
|
|
|
|
|
|
|
|
GetProcessTimes(GetCurrentProcess(), &ftc, &fte, &ftk, &ftu);
|
|
|
|
|
|
|
|
ktime = ((ULONGLONG)ftk.dwHighDateTime << 32) | ftk.dwLowDateTime;
|
|
|
|
utime = ((ULONGLONG)ftu.dwHighDateTime << 32) | ftu.dwLowDateTime;
|
|
|
|
|
2004-09-08 21:05:28 +02:00
|
|
|
clock = (utime + ktime) / (TICKSPERSEC / MSVCRT_CLOCKS_PER_SEC);
|
2004-03-19 02:16:59 +01:00
|
|
|
|
|
|
|
return clock;
|
2001-01-11 00:59:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* difftime (MSVCRT.@)
|
|
|
|
*/
|
2001-04-11 01:25:25 +02:00
|
|
|
double MSVCRT_difftime(MSVCRT_time_t time1, MSVCRT_time_t time2)
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
2004-03-19 02:16:59 +01:00
|
|
|
return (double)(time1 - time2);
|
2001-01-11 00:59:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _ftime (MSVCRT.@)
|
|
|
|
*/
|
2004-06-25 03:19:15 +02:00
|
|
|
void _ftime(struct MSVCRT__timeb *buf)
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
2004-03-11 01:43:47 +01:00
|
|
|
TIME_ZONE_INFORMATION tzinfo;
|
|
|
|
FILETIME ft;
|
|
|
|
ULONGLONG time;
|
|
|
|
|
|
|
|
DWORD tzid = GetTimeZoneInformation(&tzinfo);
|
|
|
|
GetSystemTimeAsFileTime(&ft);
|
|
|
|
|
|
|
|
time = ((ULONGLONG)ft.dwHighDateTime << 32) | ft.dwLowDateTime;
|
|
|
|
|
|
|
|
buf->time = time / TICKSPERSEC - SECS_1601_TO_1970;
|
|
|
|
buf->millitm = (time % TICKSPERSEC) / TICKSPERMSEC;
|
2004-10-25 23:48:57 +02:00
|
|
|
buf->timezone = tzinfo.Bias +
|
|
|
|
( tzid == TIME_ZONE_ID_STANDARD ? tzinfo.StandardBias :
|
|
|
|
( tzid == TIME_ZONE_ID_DAYLIGHT ? tzinfo.DaylightBias : 0 ));
|
2004-03-11 01:43:47 +01:00
|
|
|
buf->dstflag = (tzid == TIME_ZONE_ID_DAYLIGHT?1:0);
|
2001-01-11 00:59:25 +01:00
|
|
|
}
|
2003-03-04 03:19:15 +01:00
|
|
|
|
2004-06-25 03:19:15 +02:00
|
|
|
/*********************************************************************
|
|
|
|
* time (MSVCRT.@)
|
|
|
|
*/
|
|
|
|
MSVCRT_time_t MSVCRT_time(MSVCRT_time_t* buf)
|
|
|
|
{
|
|
|
|
MSVCRT_time_t curtime;
|
|
|
|
struct MSVCRT__timeb tb;
|
|
|
|
|
|
|
|
_ftime(&tb);
|
|
|
|
|
|
|
|
curtime = tb.time;
|
|
|
|
return buf ? *buf = curtime : curtime;
|
|
|
|
}
|
|
|
|
|
2003-03-04 03:19:15 +01:00
|
|
|
/*********************************************************************
|
|
|
|
* _daylight (MSVCRT.@)
|
|
|
|
*/
|
|
|
|
int MSVCRT___daylight = 1; /* FIXME: assume daylight */
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* __p_daylight (MSVCRT.@)
|
|
|
|
*/
|
|
|
|
void *MSVCRT___p__daylight(void)
|
|
|
|
{
|
|
|
|
return &MSVCRT___daylight;
|
|
|
|
}
|