2016-01-30 05:24:46 +00:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
Copyright (c) 2015-2016 Chung, Hyung-Hwan. All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2018-12-12 13:15:54 +00:00
|
|
|
#include "mio-prv.h"
|
2016-01-30 05:24:46 +00:00
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
# include <windows.h>
|
|
|
|
# include <time.h>
|
|
|
|
#elif defined(__OS2__)
|
|
|
|
# define INCL_DOSDATETIME
|
|
|
|
# define INCL_DOSERRORS
|
|
|
|
# include <os2.h>
|
|
|
|
# include <time.h>
|
|
|
|
#elif defined(__DOS__)
|
|
|
|
# include <dos.h>
|
|
|
|
# include <time.h>
|
|
|
|
#else
|
|
|
|
# if defined(HAVE_SYS_TIME_H)
|
|
|
|
# include <sys/time.h>
|
|
|
|
# endif
|
|
|
|
# if defined(HAVE_TIME_H)
|
|
|
|
# include <time.h>
|
|
|
|
# endif
|
|
|
|
# include <errno.h>
|
|
|
|
#endif
|
|
|
|
|
2019-01-27 02:09:22 +00:00
|
|
|
#define MIO_EPOCH_YEAR (1970)
|
|
|
|
#define MIO_EPOCH_MON (1)
|
|
|
|
#define MIO_EPOCH_DAY (1)
|
|
|
|
#define MIO_EPOCH_WDAY (4)
|
|
|
|
|
|
|
|
/* windows specific epoch time */
|
|
|
|
#define MIO_EPOCH_YEAR_WIN (1601)
|
|
|
|
#define MIO_EPOCH_MON_WIN (1)
|
|
|
|
#define MIO_EPOCH_DAY_WIN (1)
|
|
|
|
|
2016-01-30 05:24:46 +00:00
|
|
|
#if defined(_WIN32)
|
2018-12-12 13:15:54 +00:00
|
|
|
#define EPOCH_DIFF_YEARS (MIO_EPOCH_YEAR-MIO_EPOCH_YEAR_WIN)
|
|
|
|
#define EPOCH_DIFF_DAYS ((mio_intptr_t)EPOCH_DIFF_YEARS*365+EPOCH_DIFF_YEARS/4-3)
|
|
|
|
#define EPOCH_DIFF_SECS ((mio_intptr_t)EPOCH_DIFF_DAYS*24*60*60)
|
2016-01-30 05:24:46 +00:00
|
|
|
#endif
|
|
|
|
|
2019-01-29 16:57:16 +00:00
|
|
|
#if 0
|
|
|
|
void mio_sys_gettime (mio_ntime_t* now)
|
2016-01-30 05:24:46 +00:00
|
|
|
{
|
|
|
|
#if defined(_WIN32)
|
|
|
|
SYSTEMTIME st;
|
|
|
|
FILETIME ft;
|
|
|
|
ULARGE_INTEGER li;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* MSDN: The FILETIME structure is a 64-bit value representing the
|
|
|
|
* number of 100-nanosecond intervals since January 1, 1601 (UTC).
|
|
|
|
*/
|
|
|
|
|
|
|
|
GetSystemTime (&st);
|
2016-01-30 19:08:28 +00:00
|
|
|
SystemTimeToFileTime (&st, &ft); /* this must not fail */
|
2016-01-30 05:24:46 +00:00
|
|
|
|
|
|
|
li.LowPart = ft.dwLowDateTime;
|
|
|
|
li.HighPart = ft.dwHighDateTime;
|
|
|
|
|
|
|
|
/* li.QuadPart is in the 100-nanosecond intervals */
|
2019-01-29 16:57:16 +00:00
|
|
|
now->sec = (li.QuadPart / (MIO_NSECS_PER_SEC / 100)) - EPOCH_DIFF_SECS;
|
|
|
|
now->nsec = (li.QuadPart % (MIO_NSECS_PER_SEC / 100)) * 100;
|
2016-01-30 05:24:46 +00:00
|
|
|
|
|
|
|
#elif defined(__OS2__)
|
|
|
|
|
|
|
|
DATETIME dt;
|
2018-12-12 13:15:54 +00:00
|
|
|
mio_btime_t bt;
|
2016-01-30 05:24:46 +00:00
|
|
|
|
|
|
|
/* Can I use DosQuerySysInfo(QSV_TIME_LOW) and
|
|
|
|
* DosQuerySysInfo(QSV_TIME_HIGH) for this instead?
|
|
|
|
* Maybe, resolution too low as it returns values
|
|
|
|
* in seconds. */
|
|
|
|
|
2016-01-30 19:08:28 +00:00
|
|
|
DosGetDateTime (&dt);
|
|
|
|
/* DosGetDateTime() never fails. it always returns NO_ERROR */
|
2016-01-30 05:24:46 +00:00
|
|
|
|
2018-12-12 13:15:54 +00:00
|
|
|
bt.year = dt.year - MIO_BTIME_YEAR_BASE;
|
2016-01-30 05:24:46 +00:00
|
|
|
bt.mon = dt.month - 1;
|
|
|
|
bt.mday = dt.day;
|
|
|
|
bt.hour = dt.hours;
|
|
|
|
bt.min = dt.minutes;
|
|
|
|
bt.sec = dt.seconds;
|
|
|
|
/*bt.msec = dt.hundredths * 10;*/
|
|
|
|
bt.isdst = -1; /* determine dst for me */
|
|
|
|
|
2019-01-27 02:09:22 +00:00
|
|
|
if (mio_timelocal(&bt, t) <= -1)
|
2016-01-30 19:08:28 +00:00
|
|
|
{
|
2019-01-29 16:57:16 +00:00
|
|
|
now->sec = time (MIO_NULL);
|
|
|
|
now->nsec = 0;
|
2016-01-30 19:08:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-01-29 16:57:16 +00:00
|
|
|
now->nsec = MIO_MSEC_TO_NSEC(dt.hundredths * 10);
|
2016-01-30 19:08:28 +00:00
|
|
|
}
|
2016-01-30 05:24:46 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
#elif defined(__DOS__)
|
|
|
|
|
|
|
|
struct dostime_t dt;
|
|
|
|
struct dosdate_t dd;
|
2018-12-12 13:15:54 +00:00
|
|
|
mio_btime_t bt;
|
2016-01-30 05:24:46 +00:00
|
|
|
|
|
|
|
_dos_gettime (&dt);
|
|
|
|
_dos_getdate (&dd);
|
|
|
|
|
2018-12-12 13:15:54 +00:00
|
|
|
bt.year = dd.year - MIO_BTIME_YEAR_BASE;
|
2016-01-30 05:24:46 +00:00
|
|
|
bt.mon = dd.month - 1;
|
|
|
|
bt.mday = dd.day;
|
|
|
|
bt.hour = dt.hour;
|
|
|
|
bt.min = dt.minute;
|
|
|
|
bt.sec = dt.second;
|
|
|
|
/*bt.msec = dt.hsecond * 10; */
|
|
|
|
bt.isdst = -1; /* determine dst for me */
|
|
|
|
|
2019-01-27 02:09:22 +00:00
|
|
|
if (mio_timelocal(&bt, t) <= -1)
|
2016-01-30 19:08:28 +00:00
|
|
|
{
|
2019-01-29 16:57:16 +00:00
|
|
|
now->sec = time (MIO_NULL);
|
|
|
|
now->nsec = 0;
|
2016-01-30 19:08:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-01-29 16:57:16 +00:00
|
|
|
now->nsec = MIO_MSEC_TO_NSEC(dt.hsecond * 10);
|
2016-01-30 19:08:28 +00:00
|
|
|
}
|
2016-01-30 05:24:46 +00:00
|
|
|
|
|
|
|
#elif defined(macintosh)
|
|
|
|
unsigned long tv;
|
|
|
|
|
|
|
|
GetDateTime (&tv);
|
2019-01-29 16:57:16 +00:00
|
|
|
now->sec = tv;
|
2016-01-30 05:24:46 +00:00
|
|
|
tv->nsec = 0;
|
|
|
|
|
2016-01-30 19:08:28 +00:00
|
|
|
#elif defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_REALTIME)
|
|
|
|
struct timespec ts;
|
2016-01-30 05:24:46 +00:00
|
|
|
|
2019-01-27 02:09:22 +00:00
|
|
|
if (clock_gettime(CLOCK_REALTIME, &ts) == -1 && errno == EINVAL)
|
2016-01-30 05:24:46 +00:00
|
|
|
{
|
2016-01-30 19:08:28 +00:00
|
|
|
#if defined(HAVE_GETTIMEOFDAY)
|
|
|
|
struct timeval tv;
|
2018-12-12 13:15:54 +00:00
|
|
|
gettimeofday (&tv, MIO_NULL);
|
2019-01-29 16:57:16 +00:00
|
|
|
now->sec = tv.tv_sec;
|
|
|
|
now->nsec = MIO_USEC_TO_NSEC(tv.tv_usec);
|
2016-01-30 19:08:28 +00:00
|
|
|
#else
|
2019-01-29 16:57:16 +00:00
|
|
|
now->sec = time (MIO_NULL);
|
|
|
|
now->nsec = 0;
|
2016-01-30 19:08:28 +00:00
|
|
|
#endif
|
2016-01-30 05:24:46 +00:00
|
|
|
}
|
|
|
|
|
2019-01-29 16:57:16 +00:00
|
|
|
now->sec = ts.tv_sec;
|
|
|
|
now->nsec = ts.tv_nsec;
|
2016-01-30 19:08:28 +00:00
|
|
|
|
|
|
|
#elif defined(HAVE_GETTIMEOFDAY)
|
|
|
|
struct timeval tv;
|
2018-12-12 13:15:54 +00:00
|
|
|
gettimeofday (&tv, MIO_NULL);
|
2019-01-29 16:57:16 +00:00
|
|
|
now->sec = tv.tv_sec;
|
|
|
|
now->nsec = MIO_USEC_TO_NSEC(tv.tv_usec);
|
2016-01-30 05:24:46 +00:00
|
|
|
|
|
|
|
#else
|
2019-01-29 16:57:16 +00:00
|
|
|
now->sec = time(MIO_NULL);
|
|
|
|
now->nsec = 0;
|
2016-01-30 05:24:46 +00:00
|
|
|
#endif
|
|
|
|
}
|
2019-01-29 16:57:16 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
void mio_sys_gettime (mio_ntime_t* now)
|
|
|
|
{
|
|
|
|
#if defined(_WIN32)
|
|
|
|
|
|
|
|
#if defined(_WIN64) || (defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0600))
|
|
|
|
mio_uint64_t bigsec, bigmsec;
|
|
|
|
bigmsec = GetTickCount64();
|
|
|
|
#else
|
|
|
|
xtn_t* xtn = GET_XTN(mio);
|
|
|
|
mio_uint64_t bigsec, bigmsec;
|
|
|
|
DWORD msec;
|
|
|
|
|
|
|
|
msec = GetTickCount(); /* this can sustain for 49.7 days */
|
|
|
|
if (msec < xtn->tc_last)
|
|
|
|
{
|
|
|
|
/* i assume the difference is never bigger than 49.7 days */
|
|
|
|
/*diff = (MIO_TYPE_MAX(DWORD) - xtn->tc_last) + 1 + msec;*/
|
|
|
|
xtn->tc_overflow++;
|
|
|
|
bigmsec = ((mio_uint64_t)MIO_TYPE_MAX(DWORD) * xtn->tc_overflow) + msec;
|
|
|
|
}
|
|
|
|
else bigmsec = msec;
|
|
|
|
xtn->tc_last = msec;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bigsec = MIO_MSEC_TO_SEC(bigmsec);
|
|
|
|
bigmsec -= MIO_SEC_TO_MSEC(bigsec);
|
|
|
|
MIO_INIT_NTIME(now, bigsec, MIO_MSEC_TO_NSEC(bigmsec));
|
|
|
|
|
|
|
|
#elif defined(__OS2__)
|
|
|
|
xtn_t* xtn = GET_XTN(mio);
|
|
|
|
ULONG msec, elapsed;
|
|
|
|
mio_ntime_t et;
|
|
|
|
|
|
|
|
/* TODO: use DosTmrQueryTime() and DosTmrQueryFreq()? */
|
|
|
|
DosQuerySysInfo (QSV_MS_COUNT, QSV_MS_COUNT, &msec, MIO_SIZEOF(msec)); /* milliseconds */
|
|
|
|
|
|
|
|
elapsed = (msec < xtn->tc_last)? (MIO_TYPE_MAX(ULONG) - xtn->tc_last + msec + 1): (msec - xtn->tc_last);
|
|
|
|
xtn->tc_last = msec;
|
|
|
|
|
|
|
|
et.sec = MIO_MSEC_TO_SEC(elapsed);
|
|
|
|
msec = elapsed - MIO_SEC_TO_MSEC(et.sec);
|
|
|
|
et.nsec = MIO_MSEC_TO_NSEC(msec);
|
|
|
|
|
|
|
|
MIO_ADD_NTIME (&xtn->tc_last_ret , &xtn->tc_last_ret, &et);
|
|
|
|
*now = xtn->tc_last_ret;
|
|
|
|
|
|
|
|
#elif defined(__DOS__) && (defined(_INTELC32_) || defined(__WATCOMC__))
|
|
|
|
xtn_t* xtn = GET_XTN(mio);
|
|
|
|
clock_t c, elapsed;
|
|
|
|
mio_ntime_t et;
|
|
|
|
|
|
|
|
c = clock();
|
|
|
|
elapsed = (c < xtn->tc_last)? (MIO_TYPE_MAX(clock_t) - xtn->tc_last + c + 1): (c - xtn->tc_last);
|
|
|
|
xtn->tc_last = c;
|
|
|
|
|
|
|
|
et.sec = elapsed / CLOCKS_PER_SEC;
|
|
|
|
#if (CLOCKS_PER_SEC == 100)
|
|
|
|
et.nsec = MIO_MSEC_TO_NSEC((elapsed % CLOCKS_PER_SEC) * 10);
|
|
|
|
#elif (CLOCKS_PER_SEC == 1000)
|
|
|
|
et.nsec = MIO_MSEC_TO_NSEC(elapsed % CLOCKS_PER_SEC);
|
|
|
|
#elif (CLOCKS_PER_SEC == 1000000L)
|
|
|
|
et.nsec = MIO_USEC_TO_NSEC(elapsed % CLOCKS_PER_SEC);
|
|
|
|
#elif (CLOCKS_PER_SEC == 1000000000L)
|
|
|
|
et.nsec = (elapsed % CLOCKS_PER_SEC);
|
|
|
|
#else
|
|
|
|
# error UNSUPPORTED CLOCKS_PER_SEC
|
|
|
|
#endif
|
|
|
|
|
|
|
|
MIO_ADD_NTIME (&xtn->tc_last_ret , &xtn->tc_last_ret, &et);
|
|
|
|
*now = xtn->tc_last_ret;
|
|
|
|
|
|
|
|
#elif defined(macintosh)
|
|
|
|
UnsignedWide tick;
|
|
|
|
mio_uint64_t tick64;
|
|
|
|
Microseconds (&tick);
|
|
|
|
tick64 = *(mio_uint64_t*)&tick;
|
|
|
|
MIO_INIT_NTIME (now, MIO_USEC_TO_SEC(tick64), MIO_USEC_TO_NSEC(tick64));
|
|
|
|
#elif defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_MONOTONIC)
|
|
|
|
struct timespec ts;
|
|
|
|
clock_gettime (CLOCK_MONOTONIC, &ts);
|
|
|
|
MIO_INIT_NTIME(now, ts.tv_sec, ts.tv_nsec);
|
|
|
|
#elif defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_REALTIME)
|
|
|
|
struct timespec ts;
|
|
|
|
clock_gettime (CLOCK_REALTIME, &ts);
|
|
|
|
MIO_INIT_NTIME(now, ts.tv_sec, ts.tv_nsec);
|
|
|
|
#else
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday (&tv, MIO_NULL);
|
|
|
|
MIO_INIT_NTIME(now, tv.tv_sec, MIO_USEC_TO_NSEC(tv.tv_usec));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|