This patch changes how uv-win uses the UV_SHUTTING and UV_SHUT flags. UV_SHUT is now only used for tcp handles to track whether shutdown() has actually been called. UV_SHUTTING has the more generic meaning of "no longer readable". It would be good to replace it by an actual UV_READABLE flag in the future. This makes the shutdown_close_tcp and shutdown_close_pipe tests pass on windows.
202 lines
5.2 KiB
C
202 lines
5.2 KiB
C
/* Copyright Joyent, Inc. and other Node 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 <assert.h>
|
|
|
|
#include "uv.h"
|
|
#include "../uv-common.h"
|
|
#include "internal.h"
|
|
|
|
|
|
void uv_stream_init(uv_loop_t* loop, uv_stream_t* handle) {
|
|
handle->write_queue_size = 0;
|
|
handle->loop = loop;
|
|
handle->flags = 0;
|
|
|
|
loop->counters.handle_init++;
|
|
loop->counters.stream_init++;
|
|
|
|
uv_ref(loop);
|
|
}
|
|
|
|
|
|
void uv_connection_init(uv_stream_t* handle) {
|
|
handle->flags |= UV_HANDLE_CONNECTION;
|
|
handle->write_reqs_pending = 0;
|
|
|
|
uv_req_init(handle->loop, (uv_req_t*) &(handle->read_req));
|
|
handle->read_req.event_handle = NULL;
|
|
handle->read_req.wait_handle = INVALID_HANDLE_VALUE;
|
|
handle->read_req.type = UV_READ;
|
|
handle->read_req.data = handle;
|
|
|
|
handle->shutdown_req = NULL;
|
|
}
|
|
|
|
|
|
int uv_listen(uv_stream_t* stream, int backlog, uv_connection_cb cb) {
|
|
switch (stream->type) {
|
|
case UV_TCP:
|
|
return uv_tcp_listen((uv_tcp_t*)stream, backlog, cb);
|
|
case UV_NAMED_PIPE:
|
|
return uv_pipe_listen((uv_pipe_t*)stream, backlog, cb);
|
|
default:
|
|
assert(0);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
|
|
int uv_accept(uv_stream_t* server, uv_stream_t* client) {
|
|
switch (server->type) {
|
|
case UV_TCP:
|
|
return uv_tcp_accept((uv_tcp_t*)server, (uv_tcp_t*)client);
|
|
case UV_NAMED_PIPE:
|
|
return uv_pipe_accept((uv_pipe_t*)server, client);
|
|
default:
|
|
assert(0);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
|
|
int uv_read_start(uv_stream_t* handle, uv_alloc_cb alloc_cb,
|
|
uv_read_cb read_cb) {
|
|
switch (handle->type) {
|
|
case UV_TCP:
|
|
return uv_tcp_read_start((uv_tcp_t*)handle, alloc_cb, read_cb);
|
|
case UV_NAMED_PIPE:
|
|
return uv_pipe_read_start((uv_pipe_t*)handle, alloc_cb, read_cb);
|
|
case UV_TTY:
|
|
return uv_tty_read_start((uv_tty_t*) handle, alloc_cb, read_cb);
|
|
default:
|
|
assert(0);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
|
|
int uv_read2_start(uv_stream_t* handle, uv_alloc_cb alloc_cb,
|
|
uv_read2_cb read_cb) {
|
|
switch (handle->type) {
|
|
case UV_NAMED_PIPE:
|
|
return uv_pipe_read2_start((uv_pipe_t*)handle, alloc_cb, read_cb);
|
|
default:
|
|
assert(0);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
|
|
int uv_read_stop(uv_stream_t* handle) {
|
|
if (handle->type == UV_TTY) {
|
|
return uv_tty_read_stop((uv_tty_t*) handle);
|
|
} else {
|
|
handle->flags &= ~UV_HANDLE_READING;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
int uv_write(uv_write_t* req, uv_stream_t* handle, uv_buf_t bufs[], int bufcnt,
|
|
uv_write_cb cb) {
|
|
uv_loop_t* loop = handle->loop;
|
|
|
|
switch (handle->type) {
|
|
case UV_TCP:
|
|
return uv_tcp_write(loop, req, (uv_tcp_t*) handle, bufs, bufcnt, cb);
|
|
case UV_NAMED_PIPE:
|
|
return uv_pipe_write(loop, req, (uv_pipe_t*) handle, bufs, bufcnt, cb);
|
|
case UV_TTY:
|
|
return uv_tty_write(loop, req, (uv_tty_t*) handle, bufs, bufcnt, cb);
|
|
default:
|
|
assert(0);
|
|
uv__set_sys_error(loop, WSAEINVAL);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
|
|
int uv_write2(uv_write_t* req, uv_stream_t* handle, uv_buf_t bufs[], int bufcnt,
|
|
uv_stream_t* send_handle, uv_write_cb cb) {
|
|
uv_loop_t* loop = handle->loop;
|
|
|
|
switch (handle->type) {
|
|
case UV_NAMED_PIPE:
|
|
return uv_pipe_write2(loop, req, (uv_pipe_t*) handle, bufs, bufcnt, send_handle, cb);
|
|
default:
|
|
assert(0);
|
|
uv__set_sys_error(loop, WSAEINVAL);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
|
|
int uv_shutdown(uv_shutdown_t* req, uv_stream_t* handle, uv_shutdown_cb cb) {
|
|
uv_loop_t* loop = handle->loop;
|
|
|
|
if (!(handle->flags & UV_HANDLE_CONNECTION)) {
|
|
uv__set_sys_error(loop, WSAEINVAL);
|
|
return -1;
|
|
}
|
|
|
|
if (handle->flags & UV_HANDLE_SHUTTING) {
|
|
uv__set_sys_error(loop, WSAESHUTDOWN);
|
|
return -1;
|
|
}
|
|
|
|
uv_req_init(loop, (uv_req_t*) req);
|
|
req->type = UV_SHUTDOWN;
|
|
req->handle = handle;
|
|
req->cb = cb;
|
|
|
|
handle->flags |= UV_HANDLE_SHUTTING;
|
|
handle->shutdown_req = req;
|
|
handle->reqs_pending++;
|
|
uv_ref(loop);
|
|
|
|
uv_want_endgame(loop, (uv_handle_t*)handle);
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
size_t uv_count_bufs(uv_buf_t bufs[], int count) {
|
|
size_t bytes = 0;
|
|
int i;
|
|
|
|
for (i = 0; i < count; i++) {
|
|
bytes += (size_t)bufs[i].len;
|
|
}
|
|
|
|
return bytes;
|
|
}
|
|
|
|
|
|
int uv_is_readable(uv_stream_t* handle) {
|
|
return !(handle->flags & UV_HANDLE_EOF);
|
|
}
|
|
|
|
|
|
int uv_is_writable(uv_stream_t* handle) {
|
|
return !(handle->flags & UV_HANDLE_SHUTTING);
|
|
}
|