Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit 3efcbad

Browse files
committed
Upgrade libuv to 2e60358
Fixes #1621.
1 parent cf24f56 commit 3efcbad

File tree

6 files changed

+135
-47
lines changed

6 files changed

+135
-47
lines changed

deps/uv/include/uv-private/uv-win.h

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include <mswsock.h>
2929
#include <ws2tcpip.h>
3030
#include <windows.h>
31+
#include <sys/stat.h>
3132

3233
#include "tree.h"
3334

@@ -246,6 +247,7 @@ RB_HEAD(uv_timer_tree_s, uv_timer_s);
246247

247248
#define UV_FS_PRIVATE_FIELDS \
248249
int flags; \
250+
struct _stat stat; \
249251
void* arg0; \
250252
union { \
251253
struct { \

deps/uv/src/unix/fs.c

+55-24
Original file line numberDiff line numberDiff line change
@@ -81,28 +81,36 @@ static int uv__fs_after(eio_req* eio) {
8181
req->result = req->eio->result;
8282
req->errorno = req->eio->errorno;
8383

84-
if (req->fs_type == UV_FS_READDIR) {
85-
/*
86-
* XXX This is pretty bad.
87-
* We alloc and copy the large null termiated string list from libeio.
88-
* This is done because libeio is going to free eio->ptr2 after this
89-
* callback. We must keep it until uv_fs_req_cleanup. If we get rid of
90-
* libeio this can be avoided.
91-
*/
92-
buflen = 0;
93-
name = req->eio->ptr2;
94-
for (i = 0; i < req->result; i++) {
95-
namelen = strlen(name);
96-
buflen += namelen + 1;
97-
/* TODO check ENOMEM */
98-
name += namelen;
99-
assert(*name == '\0');
100-
name++;
101-
}
102-
req->ptr = malloc(buflen);
103-
memcpy(req->ptr, req->eio->ptr2, buflen);
104-
} else if (req->fs_type == UV_FS_STAT || req->fs_type == UV_FS_LSTAT) {
105-
req->ptr = req->eio->ptr2;
84+
switch (req->fs_type) {
85+
case UV_FS_READDIR:
86+
/*
87+
* XXX This is pretty bad.
88+
* We alloc and copy the large null termiated string list from libeio.
89+
* This is done because libeio is going to free eio->ptr2 after this
90+
* callback. We must keep it until uv_fs_req_cleanup. If we get rid of
91+
* libeio this can be avoided.
92+
*/
93+
buflen = 0;
94+
name = req->eio->ptr2;
95+
for (i = 0; i < req->result; i++) {
96+
namelen = strlen(name);
97+
buflen += namelen + 1;
98+
/* TODO check ENOMEM */
99+
name += namelen;
100+
assert(*name == '\0');
101+
name++;
102+
}
103+
req->ptr = malloc(buflen);
104+
memcpy(req->ptr, req->eio->ptr2, buflen);
105+
break;
106+
case UV_FS_STAT:
107+
case UV_FS_LSTAT:
108+
case UV_FS_FSTAT:
109+
req->ptr = req->eio->ptr2;
110+
break;
111+
112+
default:
113+
break;
106114
}
107115

108116
uv_unref(req->loop);
@@ -398,8 +406,31 @@ int uv_fs_stat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) {
398406

399407

400408
int uv_fs_fstat(uv_loop_t* loop, uv_fs_t* req, uv_file file, uv_fs_cb cb) {
401-
assert(0 && "implement me");
402-
return -1;
409+
uv_fs_req_init(loop, req, UV_FS_FSTAT, cb);
410+
411+
if (cb) {
412+
/* async */
413+
uv_ref(loop);
414+
req->eio = eio_fstat(file, EIO_PRI_DEFAULT, uv__fs_after, req);
415+
416+
if (!req->eio) {
417+
uv_err_new(loop, ENOMEM);
418+
return -1;
419+
}
420+
421+
} else {
422+
/* sync */
423+
req->result = fstat(file, &req->statbuf);
424+
425+
if (req->result < 0) {
426+
uv_err_new(loop, errno);
427+
return -1;
428+
}
429+
430+
req->ptr = &req->statbuf;
431+
}
432+
433+
return 0;
403434
}
404435

405436

deps/uv/src/win/fs.c

+6-17
Original file line numberDiff line numberDiff line change
@@ -234,17 +234,11 @@ void fs__readdir(uv_fs_t* req, const char* path, int flags) {
234234
void fs__stat(uv_fs_t* req, const char* path) {
235235
int result;
236236

237-
req->ptr = malloc(sizeof(struct _stat));
238-
if (!req->ptr) {
239-
uv_fatal_error(ERROR_OUTOFMEMORY, "malloc");
240-
}
241-
242-
result = _stat(path, (struct _stat*)req->ptr);
237+
result = _stat(path, &req->stat);
243238
if (result == -1) {
244-
free(req->ptr);
245239
req->ptr = NULL;
246240
} else {
247-
req->flags |= UV_FS_FREE_PTR;
241+
req->ptr = &req->stat;
248242
}
249243

250244
SET_REQ_RESULT(req, result);
@@ -254,17 +248,11 @@ void fs__stat(uv_fs_t* req, const char* path) {
254248
void fs__fstat(uv_fs_t* req, uv_file file) {
255249
int result;
256250

257-
req->ptr = malloc(sizeof(struct _stat));
258-
if (!req->ptr) {
259-
uv_fatal_error(ERROR_OUTOFMEMORY, "malloc");
260-
}
261-
262-
result = _fstat(file, (struct _stat*)req->ptr);
251+
result = _fstat(file, &req->stat);
263252
if (result == -1) {
264-
free(req->ptr);
265253
req->ptr = NULL;
266254
} else {
267-
req->flags |= UV_FS_FREE_PTR;
255+
req->ptr = &req->stat;
268256
}
269257

270258
SET_REQ_RESULT(req, result);
@@ -807,9 +795,10 @@ void uv_fs_req_cleanup(uv_fs_t* req) {
807795

808796
if (req->flags & UV_FS_FREE_PTR && req->ptr) {
809797
free(req->ptr);
810-
req->ptr = NULL;
811798
}
812799

800+
req->ptr = NULL;
801+
813802
if (req->flags & UV_FS_ASYNC_QUEUED) {
814803
uv_unref(loop);
815804
}

deps/uv/src/win/tcp.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ static int uv_tcp_set_socket(uv_loop_t* loop, uv_tcp_t* handle,
7575
}
7676

7777
if (pSetFileCompletionNotificationModes) {
78-
if (!pSetFileCompletionNotificationModes((HANDLE) socket,
78+
if (pSetFileCompletionNotificationModes((HANDLE) socket,
7979
FILE_SKIP_SET_EVENT_ON_HANDLE |
8080
FILE_SKIP_COMPLETION_PORT_ON_SUCCESS)) {
81+
handle->flags |= UV_HANDLE_SYNC_BYPASS_IOCP;
82+
} else if (GetLastError() != ERROR_INVALID_FUNCTION) {
8183
uv_set_sys_error(loop, GetLastError());
8284
return -1;
8385
}
84-
85-
handle->flags |= UV_HANDLE_SYNC_BYPASS_IOCP;
8686
}
8787

8888
handle->socket = socket;

deps/uv/test/test-fs.c

+67-3
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ static int fsync_cb_count;
5757
static int fdatasync_cb_count;
5858
static int ftruncate_cb_count;
5959
static int sendfile_cb_count;
60+
static int fstat_cb_count;
6061

6162
static uv_loop_t* loop;
6263

@@ -88,6 +89,15 @@ static void unlink_cb(uv_fs_t* req) {
8889
uv_fs_req_cleanup(req);
8990
}
9091

92+
static void fstat_cb(uv_fs_t* req) {
93+
struct stat* s = req->ptr;
94+
ASSERT(req->fs_type == UV_FS_FSTAT);
95+
ASSERT(req->result == 0);
96+
ASSERT(s->st_size == sizeof(test_buf));
97+
uv_fs_req_cleanup(req);
98+
fstat_cb_count++;
99+
}
100+
91101

92102
static void close_cb(uv_fs_t* req) {
93103
int r;
@@ -486,10 +496,10 @@ TEST_IMPL(fs_async_dir) {
486496

487497
TEST_IMPL(fs_async_sendfile) {
488498
int f, r;
489-
490-
/* Setup. */
491499
struct stat s1, s2;
492500

501+
/* Setup. */
502+
uv_init();
493503
unlink("test_file");
494504
unlink("test_file2");
495505

@@ -509,7 +519,6 @@ TEST_IMPL(fs_async_sendfile) {
509519
ASSERT(r == 0);
510520

511521
/* Test starts here. */
512-
uv_init();
513522
loop = uv_default_loop();
514523

515524
r = uv_fs_open(loop, &open_req1, "test_file", O_RDWR, 0, NULL);
@@ -547,3 +556,58 @@ TEST_IMPL(fs_async_sendfile) {
547556

548557
return 0;
549558
}
559+
560+
561+
TEST_IMPL(fs_fstat) {
562+
int r;
563+
uv_fs_t req;
564+
uv_file file;
565+
566+
/* Setup. */
567+
unlink("test_file");
568+
569+
uv_init();
570+
571+
loop = uv_default_loop();
572+
573+
r = uv_fs_open(loop, &req, "test_file", O_RDWR | O_CREAT, 0, NULL);
574+
ASSERT(r == 0);
575+
ASSERT(req.result != -1);
576+
file = req.result;
577+
uv_fs_req_cleanup(&req);
578+
579+
r = uv_fs_write(loop, &req, file, test_buf, sizeof(test_buf), -1, NULL);
580+
ASSERT(r == 0);
581+
ASSERT(req.result == sizeof(test_buf));
582+
uv_fs_req_cleanup(&req);
583+
584+
r = uv_fs_fstat(loop, &req, file, NULL);
585+
ASSERT(r == 0);
586+
ASSERT(req.result == 0);
587+
struct stat* s = req.ptr;
588+
ASSERT(s->st_size == sizeof(test_buf));
589+
uv_fs_req_cleanup(&req);
590+
591+
/* Now do the uv_fs_fstat call asynchronously */
592+
r = uv_fs_fstat(loop, &req, file, fstat_cb);
593+
ASSERT(r == 0);
594+
uv_run(loop);
595+
ASSERT(fstat_cb_count == 1);
596+
597+
598+
r = uv_fs_close(loop, &req, file, NULL);
599+
ASSERT(r == 0);
600+
ASSERT(req.result == 0);
601+
uv_fs_req_cleanup(&req);
602+
603+
/*
604+
* Run the loop just to check we don't have make any extranious uv_ref()
605+
* calls. This should drop out immediately.
606+
*/
607+
uv_run(loop);
608+
609+
/* Cleanup. */
610+
unlink("test_file");
611+
612+
return 0;
613+
}

deps/uv/test/test-list.h

+2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ TEST_DECLARE (fs_file_async)
7676
TEST_DECLARE (fs_file_sync)
7777
TEST_DECLARE (fs_async_dir)
7878
TEST_DECLARE (fs_async_sendfile)
79+
TEST_DECLARE (fs_fstat)
7980
TEST_DECLARE (threadpool_queue_work_simple)
8081
#ifdef _WIN32
8182
TEST_DECLARE (spawn_detect_pipe_name_collisions_on_windows)
@@ -179,6 +180,7 @@ TASK_LIST_START
179180
TEST_ENTRY (fs_file_sync)
180181
TEST_ENTRY (fs_async_dir)
181182
TEST_ENTRY (fs_async_sendfile)
183+
TEST_ENTRY (fs_fstat)
182184

183185
TEST_ENTRY (threadpool_queue_work_simple)
184186

0 commit comments

Comments
 (0)