From: Ryan Dahl Date: Fri, 2 Sep 2011 00:44:06 +0000 (-0700) Subject: Upgrade libuv to b89f4f3 X-Git-Tag: v0.5.6~66 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b0a7d63a8c728cb95896a847dcd0dcfc3172d1a;p=platform%2Fupstream%2Fnodejs.git Upgrade libuv to b89f4f3 --- diff --git a/deps/uv/src/unix/fs.c b/deps/uv/src/unix/fs.c index 264226b..fc4edbb 100644 --- a/deps/uv/src/unix/fs.c +++ b/deps/uv/src/unix/fs.c @@ -31,6 +31,33 @@ #include #include #include +#include + + +#define ARGS1(a) (a) +#define ARGS2(a,b) (a), (b) +#define ARGS3(a,b,c) (a), (b), (c) +#define ARGS4(a,b,c,d) (a), (b), (c), (d) + +#define WRAP_EIO(type, eiofunc, func, args) \ + uv_fs_req_init(loop, req, type, cb); \ + if (cb) { \ + /* async */ \ + uv_ref(loop); \ + req->eio = eiofunc(args, EIO_PRI_DEFAULT, uv__fs_after, req); \ + if (!req->eio) { \ + uv_err_new(loop, ENOMEM); \ + return -1; \ + } \ + } else { \ + /* sync */ \ + req->result = func(args); \ + if (req->result) { \ + uv_err_new(loop, errno); \ + return -1; \ + } \ + } \ + return 0; static void uv_fs_req_init(uv_loop_t* loop, uv_fs_t* req, uv_fs_type fs_type, @@ -122,24 +149,7 @@ static int uv__fs_after(eio_req* eio) { int uv_fs_close(uv_loop_t* loop, uv_fs_t* req, uv_file file, uv_fs_cb cb) { - uv_fs_req_init(loop, req, UV_FS_CLOSE, cb); - if (cb) { - /* async */ - uv_ref(loop); - req->eio = eio_close(file, EIO_PRI_DEFAULT, uv__fs_after, req); - if (!req->eio) { - uv_err_new(loop, ENOMEM); - return -1; - } - } else { - /* sync */ - if ((req->result = uv__close(file))) { - uv_err_new(loop, errno); - return -1; - } - } - - return 0; + WRAP_EIO(UV_FS_CLOSE, eio_close, close, ARGS1(file)); } @@ -203,28 +213,7 @@ int uv_fs_read(uv_loop_t* loop, uv_fs_t* req, uv_file fd, void* buf, int uv_fs_unlink(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) { - uv_fs_req_init(loop, req, UV_FS_UNLINK, cb); - - if (cb) { - /* async */ - uv_ref(loop); - req->eio = eio_unlink(path, EIO_PRI_DEFAULT, uv__fs_after, req); - if (!req->eio) { - uv_err_new(loop, ENOMEM); - return -1; - } - - } else { - /* sync */ - req->result = unlink(path); - - if (req->result) { - uv_err_new(loop, errno); - return -1; - } - } - - return 0; + WRAP_EIO(UV_FS_UNLINK, eio_unlink, unlink, ARGS1(path)) } @@ -260,54 +249,12 @@ int uv_fs_write(uv_loop_t* loop, uv_fs_t* req, uv_file file, void* buf, int uv_fs_mkdir(uv_loop_t* loop, uv_fs_t* req, const char* path, int mode, uv_fs_cb cb) { - uv_fs_req_init(loop, req, UV_FS_MKDIR, cb); - - if (cb) { - /* async */ - uv_ref(loop); - req->eio = eio_mkdir(path, mode, EIO_PRI_DEFAULT, uv__fs_after, req); - if (!req->eio) { - uv_err_new(loop, ENOMEM); - return -1; - } - - } else { - /* sync */ - req->result = mkdir(path, mode); - - if (req->result < 0) { - uv_err_new(loop, errno); - return -1; - } - } - - return 0; + WRAP_EIO(UV_FS_MKDIR, eio_mkdir, mkdir, ARGS2(path, mode)) } int uv_fs_rmdir(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) { - uv_fs_req_init(loop, req, UV_FS_RMDIR, cb); - - if (cb) { - /* async */ - uv_ref(loop); - req->eio = eio_rmdir(path, EIO_PRI_DEFAULT, uv__fs_after, req); - if (!req->eio) { - uv_err_new(loop, ENOMEM); - return -1; - } - - } else { - /* sync */ - req->result = rmdir(path); - - if (req->result < 0) { - uv_err_new(loop, errno); - return -1; - } - } - - return 0; + WRAP_EIO(UV_FS_RMDIR, eio_rmdir, rmdir, ARGS1(path)) } @@ -436,149 +383,50 @@ int uv_fs_fstat(uv_loop_t* loop, uv_fs_t* req, uv_file file, uv_fs_cb cb) { int uv_fs_rename(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb) { - uv_fs_req_init(loop, req, UV_FS_RENAME, cb); - - if (cb) { - /* async */ - uv_ref(loop); - req->eio = eio_rename(path, new_path, EIO_PRI_DEFAULT, uv__fs_after, req); - if (!req->eio) { - uv_err_new(loop, ENOMEM); - return -1; - } - - } else { - /* sync */ - req->result = rename(path, new_path); - - if (req->result) { - uv_err_new(loop, errno); - return -1; - } - } - - return 0; + WRAP_EIO(UV_FS_RENAME, eio_rename, rename, ARGS2(path, new_path)) } int uv_fs_fsync(uv_loop_t* loop, uv_fs_t* req, uv_file file, uv_fs_cb cb) { - uv_fs_req_init(loop, req, UV_FS_FSYNC, cb); - - if (cb) { - /* async */ - uv_ref(loop); - req->eio = eio_fsync(file, EIO_PRI_DEFAULT, uv__fs_after, req); - if (!req->eio) { - uv_err_new(loop, ENOMEM); - return -1; - } - - } else { - /* sync */ - req->result = fsync(file); - - if (req->result) { - uv_err_new(loop, errno); - return -1; - } - } - - return 0; + WRAP_EIO(UV_FS_FSYNC, eio_fsync, fsync, ARGS1(file)) } int uv_fs_fdatasync(uv_loop_t* loop, uv_fs_t* req, uv_file file, uv_fs_cb cb) { - uv_fs_req_init(loop, req, UV_FS_FDATASYNC, cb); - - if (cb) { - /* async */ - uv_ref(loop); - req->eio = eio_fdatasync(file, EIO_PRI_DEFAULT, uv__fs_after, req); - if (!req->eio) { - uv_err_new(loop, ENOMEM); - return -1; - } - - } else { - /* sync */ - req->result = fdatasync(file); - - if (req->result) { - uv_err_new(loop, errno); - return -1; - } - } - - return 0; + WRAP_EIO(UV_FS_FDATASYNC, eio_fdatasync, fdatasync, ARGS1(file)) } int uv_fs_ftruncate(uv_loop_t* loop, uv_fs_t* req, uv_file file, off_t offset, uv_fs_cb cb) { - uv_fs_req_init(loop, req, UV_FS_FTRUNCATE, cb); - - if (cb) { - /* async */ - uv_ref(loop); - req->eio = eio_ftruncate(file, offset, EIO_PRI_DEFAULT, uv__fs_after, req); - if (!req->eio) { - uv_err_new(loop, ENOMEM); - return -1; - } - - } else { - /* sync */ - req->result = ftruncate(file, offset); - - if (req->result) { - uv_err_new(loop, errno); - return -1; - } - } - - return 0; + WRAP_EIO(UV_FS_FTRUNCATE, eio_ftruncate, ftruncate, ARGS2(file, offset)) } int uv_fs_sendfile(uv_loop_t* loop, uv_fs_t* req, uv_file out_fd, uv_file in_fd, off_t in_offset, size_t length, uv_fs_cb cb) { - uv_fs_req_init(loop, req, UV_FS_SENDFILE, cb); - - if (cb) { - /* async */ - uv_ref(loop); - req->eio = eio_sendfile(out_fd, in_fd, in_offset, length, EIO_PRI_DEFAULT, - uv__fs_after, req); - if (!req->eio) { - uv_err_new(loop, ENOMEM); - return -1; - } - - } else { - /* sync */ - req->result = eio_sendfile_sync(out_fd, in_fd, in_offset, length); - - if (req->result) { - uv_err_new(loop, errno); - return -1; - } - } - - return 0; + WRAP_EIO(UV_FS_SENDFILE, eio_sendfile, eio_sendfile_sync, + ARGS4(out_fd, in_fd, in_offset, length)) } int uv_fs_chmod(uv_loop_t* loop, uv_fs_t* req, const char* path, int mode, uv_fs_cb cb) { - assert(0 && "implement me"); - return -1; + WRAP_EIO(UV_FS_CHMOD, eio_chmod, chmod, ARGS2(path, mode)) +} + + +static int _utime(const char* path, double atime, double mtime) { + struct utimbuf buf; + buf.actime = atime; + buf.modtime = mtime; + return utime(path, &buf); } int uv_fs_utime(uv_loop_t* loop, uv_fs_t* req, const char* path, double atime, double mtime, uv_fs_cb cb) { - assert(0 && "implement me"); - return -1; + WRAP_EIO(UV_FS_UTIME, eio_utime, _utime, ARGS3(path, atime, mtime)) } @@ -637,15 +485,13 @@ int uv_fs_lstat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) { int uv_fs_link(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb) { - assert(0 && "implement me"); - return -1; + WRAP_EIO(UV_FS_LINK, eio_link, link, ARGS2(path, new_path)) } int uv_fs_symlink(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb) { - assert(0 && "implement me"); - return -1; + WRAP_EIO(UV_FS_SYMLINK, eio_symlink, symlink, ARGS2(path, new_path)) } @@ -658,22 +504,19 @@ int uv_fs_readlink(uv_loop_t* loop, uv_fs_t* req, const char* path, int uv_fs_fchmod(uv_loop_t* loop, uv_fs_t* req, uv_file file, int mode, uv_fs_cb cb) { - assert(0 && "implement me"); - return -1; + WRAP_EIO(UV_FS_FCHMOD, eio_fchmod, fchmod, ARGS2(file, mode)) } int uv_fs_chown(uv_loop_t* loop, uv_fs_t* req, const char* path, int uid, int gid, uv_fs_cb cb) { - assert(0 && "implement me"); - return -1; + WRAP_EIO(UV_FS_CHOWN, eio_chown, chown, ARGS3(path, uid, gid)) } int uv_fs_fchown(uv_loop_t* loop, uv_fs_t* req, uv_file file, int uid, int gid, uv_fs_cb cb) { - assert(0 && "implement me"); - return -1; + WRAP_EIO(UV_FS_FCHOWN, eio_fchown, fchown, ARGS3(file, uid, gid)) } diff --git a/deps/uv/test/test-fs.c b/deps/uv/test/test-fs.c index d8b85ef..1d172e5 100644 --- a/deps/uv/test/test-fs.c +++ b/deps/uv/test/test-fs.c @@ -58,6 +58,8 @@ static int fdatasync_cb_count; static int ftruncate_cb_count; static int sendfile_cb_count; static int fstat_cb_count; +static int chmod_cb_count; +static int fchmod_cb_count; static uv_loop_t* loop; @@ -81,6 +83,40 @@ static char buf[32]; static char test_buf[] = "test-buffer\n"; +void check_permission(const char* filename, int mode) { + int r; + uv_fs_t req; + struct stat* s; + + r = uv_fs_stat(uv_default_loop(), &req, filename, NULL); + ASSERT(r == 0); + ASSERT(req.result == 0); + + s = req.ptr; + ASSERT((s->st_mode & 0777) == mode); + + uv_fs_req_cleanup(&req); +} + + +static void fchmod_cb(uv_fs_t* req) { + ASSERT(req->fs_type == UV_FS_FCHMOD); + ASSERT(req->result == 0); + fchmod_cb_count++; + uv_fs_req_cleanup(req); + check_permission("test_file", 0600); +} + + +static void chmod_cb(uv_fs_t* req) { + ASSERT(req->fs_type == UV_FS_CHMOD); + ASSERT(req->result == 0); + chmod_cb_count++; + uv_fs_req_cleanup(req); + check_permission("test_file", 0200); +} + + static void unlink_cb(uv_fs_t* req) { ASSERT(req == &unlink_req); ASSERT(req->fs_type == UV_FS_UNLINK); @@ -611,3 +647,69 @@ TEST_IMPL(fs_fstat) { return 0; } + + +TEST_IMPL(fs_chmod) { + int r; + uv_fs_t req; + uv_file file; + + /* Setup. */ + unlink("test_file"); + + uv_init(); + + loop = uv_default_loop(); + + r = uv_fs_open(loop, &req, "test_file", O_RDWR | O_CREAT, 0, NULL); + ASSERT(r == 0); + ASSERT(req.result != -1); + file = req.result; + uv_fs_req_cleanup(&req); + + r = uv_fs_write(loop, &req, file, test_buf, sizeof(test_buf), -1, NULL); + ASSERT(r == 0); + ASSERT(req.result == sizeof(test_buf)); + uv_fs_req_cleanup(&req); + + /* Make the file write-only */ + r = uv_fs_chmod(loop, &req, "test_file", 0200, NULL); + ASSERT(r == 0); + ASSERT(req.result == 0); + uv_fs_req_cleanup(&req); + + check_permission("test_file", 0200); + + /* Make the file read+write with sync uv_fs_fchmod */ + r = uv_fs_fchmod(loop, &req, file, 0600, NULL); + ASSERT(r == 0); + ASSERT(req.result == 0); + uv_fs_req_cleanup(&req); + + check_permission("test_file", 0600); + + /* async chmod */ + r = uv_fs_chmod(loop, &req, "test_file", 0200, chmod_cb); + ASSERT(r == 0); + uv_run(loop); + ASSERT(chmod_cb_count == 1); + + /* async fchmod */ + r = uv_fs_fchmod(loop, &req, file, 0600, fchmod_cb); + ASSERT(r == 0); + uv_run(loop); + ASSERT(fchmod_cb_count == 1); + + close(file); + + /* + * Run the loop just to check we don't have make any extranious uv_ref() + * calls. This should drop out immediately. + */ + uv_run(loop); + + /* Cleanup. */ + unlink("test_file"); + + return 0; +} diff --git a/deps/uv/test/test-list.h b/deps/uv/test/test-list.h index 22bc12e..032060d 100644 --- a/deps/uv/test/test-list.h +++ b/deps/uv/test/test-list.h @@ -77,6 +77,7 @@ TEST_DECLARE (fs_file_sync) TEST_DECLARE (fs_async_dir) TEST_DECLARE (fs_async_sendfile) TEST_DECLARE (fs_fstat) +TEST_DECLARE (fs_chmod) TEST_DECLARE (threadpool_queue_work_simple) #ifdef _WIN32 TEST_DECLARE (spawn_detect_pipe_name_collisions_on_windows) @@ -181,6 +182,7 @@ TASK_LIST_START TEST_ENTRY (fs_async_dir) TEST_ENTRY (fs_async_sendfile) TEST_ENTRY (fs_fstat) + TEST_ENTRY (fs_chmod) TEST_ENTRY (threadpool_queue_work_simple)