mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
unix,win: add uv_gettimeofday()
PR-URL: https://github.com/libuv/libuv/pull/2221 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
parent
23bb992d7b
commit
575d41481e
@ -62,6 +62,7 @@ set(uv_test_sources
|
||||
test/test-getnameinfo.c
|
||||
test/test-getsockname.c
|
||||
test/test-getters-setters.c
|
||||
test/test-gettimeofday.c
|
||||
test/test-handle-fileno.c
|
||||
test/test-homedir.c
|
||||
test/test-hrtime.c
|
||||
|
@ -201,6 +201,7 @@ test_run_tests_SOURCES = test/blackhole-server.c \
|
||||
test/test-gethostname.c \
|
||||
test/test-getnameinfo.c \
|
||||
test/test-getsockname.c \
|
||||
test/test-gettimeofday.c \
|
||||
test/test-handle-fileno.c \
|
||||
test/test-homedir.c \
|
||||
test/test-hrtime.c \
|
||||
|
@ -578,3 +578,10 @@ API
|
||||
zero on success, and a non-zero error value otherwise.
|
||||
|
||||
.. versionadded:: 1.25.0
|
||||
|
||||
.. c:function:: int uv_gettimeofday(uv_timeval_t* tv)
|
||||
|
||||
Cross-platform implementation of :man:`gettimeofday(2)`. The timezone
|
||||
argument to `gettimeofday()` is not supported, as it is considered obsolete.
|
||||
|
||||
.. versionadded:: 1.28.0
|
||||
|
@ -1586,6 +1586,8 @@ UV_EXTERN void uv_key_delete(uv_key_t* key);
|
||||
UV_EXTERN void* uv_key_get(uv_key_t* key);
|
||||
UV_EXTERN void uv_key_set(uv_key_t* key, void* value);
|
||||
|
||||
UV_EXTERN int uv_gettimeofday(uv_timeval_t* tv);
|
||||
|
||||
typedef void (*uv_thread_cb)(void* arg);
|
||||
|
||||
UV_EXTERN int uv_thread_create(uv_thread_t* tid, uv_thread_cb entry, void* arg);
|
||||
|
@ -41,6 +41,7 @@
|
||||
#include <sys/resource.h> /* getrusage */
|
||||
#include <pwd.h>
|
||||
#include <sys/utsname.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
#ifdef __sun
|
||||
# include <sys/filio.h>
|
||||
@ -1429,3 +1430,17 @@ int uv__getsockpeername(const uv_handle_t* handle,
|
||||
*namelen = (int) socklen;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int uv_gettimeofday(uv_timeval_t* tv) {
|
||||
struct timeval time;
|
||||
|
||||
if (tv == NULL)
|
||||
return UV_EINVAL;
|
||||
|
||||
if (gettimeofday(&time, NULL) != 0)
|
||||
return UV__ERR(errno);
|
||||
|
||||
tv->tv_sec = time.tv_sec;
|
||||
tv->tv_usec = time.tv_usec;
|
||||
return 0;
|
||||
}
|
||||
|
@ -1778,3 +1778,20 @@ error:
|
||||
buffer->machine[0] = '\0';
|
||||
return r;
|
||||
}
|
||||
|
||||
int uv_gettimeofday(uv_timeval_t* tv) {
|
||||
/* Based on https://doxygen.postgresql.org/gettimeofday_8c_source.html */
|
||||
const uint64_t epoch = (uint64_t) 116444736000000000ULL;
|
||||
FILETIME file_time;
|
||||
ULARGE_INTEGER ularge;
|
||||
|
||||
if (tv == NULL)
|
||||
return UV_EINVAL;
|
||||
|
||||
GetSystemTimeAsFileTime(&file_time);
|
||||
ularge.LowPart = file_time.dwLowDateTime;
|
||||
ularge.HighPart = file_time.dwHighDateTime;
|
||||
tv->tv_sec = (long) ((ularge.QuadPart - epoch) / 10000000L);
|
||||
tv->tv_usec = (long) (((ularge.QuadPart - epoch) % 10000000L) / 10);
|
||||
return 0;
|
||||
}
|
||||
|
39
test/test-gettimeofday.c
Normal file
39
test/test-gettimeofday.c
Normal file
@ -0,0 +1,39 @@
|
||||
/* Copyright libuv project contributors. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to
|
||||
* deal in the Software without restriction, including without limitation the
|
||||
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
* sell copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "uv.h"
|
||||
#include "task.h"
|
||||
|
||||
TEST_IMPL(gettimeofday) {
|
||||
uv_timeval_t tv;
|
||||
int r;
|
||||
|
||||
tv.tv_sec = 0;
|
||||
r = uv_gettimeofday(&tv);
|
||||
ASSERT(r == 0);
|
||||
ASSERT(tv.tv_sec != 0);
|
||||
|
||||
/* Test invalid input. */
|
||||
r = uv_gettimeofday(NULL);
|
||||
ASSERT(r == UV_EINVAL);
|
||||
|
||||
return 0;
|
||||
}
|
@ -252,6 +252,7 @@ TEST_DECLARE (getnameinfo_basic_ip4_sync)
|
||||
TEST_DECLARE (getnameinfo_basic_ip6)
|
||||
TEST_DECLARE (getsockname_tcp)
|
||||
TEST_DECLARE (getsockname_udp)
|
||||
TEST_DECLARE (gettimeofday)
|
||||
TEST_DECLARE (fail_always)
|
||||
TEST_DECLARE (pass_always)
|
||||
TEST_DECLARE (socket_buffer_size)
|
||||
@ -781,6 +782,8 @@ TASK_LIST_START
|
||||
TEST_ENTRY (getsockname_tcp)
|
||||
TEST_ENTRY (getsockname_udp)
|
||||
|
||||
TEST_ENTRY (gettimeofday)
|
||||
|
||||
TEST_ENTRY (poll_duplex)
|
||||
TEST_ENTRY (poll_unidirectional)
|
||||
TEST_ENTRY (poll_close)
|
||||
|
@ -43,6 +43,7 @@
|
||||
'test-gethostname.c',
|
||||
'test-getnameinfo.c',
|
||||
'test-getsockname.c',
|
||||
'test-gettimeofday.c',
|
||||
'test-handle-fileno.c',
|
||||
'test-homedir.c',
|
||||
'test-hrtime.c',
|
||||
|
Loading…
x
Reference in New Issue
Block a user