1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00
libuv/test/benchmark-pump.c

479 lines
10 KiB
C
Raw Permalink Normal View History

2011-05-10 01:39:54 +02:00
/* 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 "task.h"
#include "uv.h"
2011-05-10 01:39:54 +02:00
#include <math.h>
#include <stdio.h>
static int TARGET_CONNECTIONS;
2011-05-10 01:39:54 +02:00
#define WRITE_BUFFER_SIZE 8192
#define MAX_SIMULTANEOUS_CONNECTS 100
2011-05-09 21:29:29 -07:00
#define PRINT_STATS 0
2011-05-10 01:39:54 +02:00
#define STATS_INTERVAL 1000 /* msec */
2011-05-09 21:29:29 -07:00
#define STATS_COUNT 5
2011-05-10 01:39:54 +02:00
2011-06-30 17:39:27 -07:00
static void do_write(uv_stream_t*);
static void maybe_connect_some(void);
2011-05-10 01:39:54 +02:00
static uv_req_t* req_alloc(void);
2011-05-11 19:56:33 -07:00
static void req_free(uv_req_t* uv_req);
2011-05-10 01:39:54 +02:00
static void buf_alloc(uv_handle_t* handle, size_t size, uv_buf_t* buf);
static void buf_free(const uv_buf_t* buf);
2011-05-10 01:39:54 +02:00
2011-08-31 05:18:48 +02:00
static uv_loop_t* loop;
2011-05-10 01:39:54 +02:00
2011-07-01 17:54:17 -07:00
static uv_tcp_t tcpServer;
static uv_pipe_t pipeServer;
static uv_stream_t* server;
static struct sockaddr_in listen_addr;
static struct sockaddr_in connect_addr;
2011-05-10 01:39:54 +02:00
2011-05-09 21:29:29 -07:00
static int64_t start_time;
2011-05-10 01:39:54 +02:00
static int max_connect_socket = 0;
static int max_read_sockets = 0;
2011-05-10 01:39:54 +02:00
static int read_sockets = 0;
static int write_sockets = 0;
2011-05-09 21:29:29 -07:00
static int64_t nrecv = 0;
static int64_t nrecv_total = 0;
static int64_t nsent = 0;
static int64_t nsent_total = 0;
2011-05-10 01:39:54 +02:00
static int stats_left = 0;
static char write_buffer[WRITE_BUFFER_SIZE];
/* Make this as large as you need. */
#define MAX_WRITE_HANDLES 1000
2011-07-01 17:54:17 -07:00
static stream_type type;
static uv_tcp_t tcp_write_handles[MAX_WRITE_HANDLES];
static uv_pipe_t pipe_write_handles[MAX_WRITE_HANDLES];
2011-05-10 01:39:54 +02:00
static uv_timer_t timer_handle;
2011-05-10 01:39:54 +02:00
2011-05-09 21:29:29 -07:00
static double gbit(int64_t bytes, int64_t passed_ms) {
double gbits = ((double)bytes / (1024 * 1024 * 1024)) * 8;
return gbits / ((double)passed_ms / 1000);
2011-05-10 01:39:54 +02:00
}
static void show_stats(uv_timer_t* handle) {
2011-05-17 02:22:47 +02:00
int64_t diff;
2011-07-01 17:54:17 -07:00
int i;
2011-05-17 02:22:47 +02:00
2011-05-09 21:29:29 -07:00
#if PRINT_STATS
fprintf(stderr, "connections: %d, write: %.1f gbit/s\n",
write_sockets,
gbit(nsent, STATS_INTERVAL));
fflush(stderr);
2011-05-09 21:29:29 -07:00
#endif
2011-05-10 01:39:54 +02:00
/* Exit if the show is over */
if (!--stats_left) {
2011-05-09 21:29:29 -07:00
2011-08-31 05:18:48 +02:00
uv_update_time(loop);
diff = uv_now(loop) - start_time;
2011-05-09 21:29:29 -07:00
fprintf(stderr, "%s_pump%d_client: %.1f gbit/s\n",
type == TCP ? "tcp" : "pipe",
write_sockets,
gbit(nsent_total, diff));
fflush(stderr);
2011-05-09 21:29:29 -07:00
2011-07-01 17:54:17 -07:00
for (i = 0; i < write_sockets; i++) {
2013-09-11 16:59:55 +02:00
if (type == TCP)
uv_close((uv_handle_t*) &tcp_write_handles[i], NULL);
else
uv_close((uv_handle_t*) &pipe_write_handles[i], NULL);
2011-07-01 17:54:17 -07:00
}
2011-05-10 01:39:54 +02:00
exit(0);
}
/* Reset read and write counters */
2011-05-09 21:29:29 -07:00
nrecv = 0;
nsent = 0;
}
2011-05-10 01:39:54 +02:00
static void read_show_stats(void) {
int64_t diff;
2011-08-31 05:18:48 +02:00
uv_update_time(loop);
diff = uv_now(loop) - start_time;
fprintf(stderr, "%s_pump%d_server: %.1f gbit/s\n",
type == TCP ? "tcp" : "pipe",
max_read_sockets,
gbit(nrecv_total, diff));
fflush(stderr);
}
static void read_sockets_close_cb(uv_handle_t* handle) {
free(handle);
read_sockets--;
/* If it's past the first second and everyone has closed their connection
* Then print stats.
*/
2011-08-31 05:18:48 +02:00
if (uv_now(loop) - start_time > 1000 && read_sockets == 0) {
read_show_stats();
uv_close((uv_handle_t*)server, NULL);
}
2011-05-10 01:39:54 +02:00
}
static void start_stats_collection(void) {
2011-05-10 01:39:54 +02:00
int r;
/* Show-stats timer */
2011-05-09 21:29:29 -07:00
stats_left = STATS_COUNT;
2011-08-31 05:18:48 +02:00
r = uv_timer_init(loop, &timer_handle);
ASSERT_OK(r);
r = uv_timer_start(&timer_handle, show_stats, STATS_INTERVAL, STATS_INTERVAL);
ASSERT_OK(r);
2011-08-31 05:18:48 +02:00
uv_update_time(loop);
start_time = uv_now(loop);
2011-05-10 01:39:54 +02:00
}
static void read_cb(uv_stream_t* stream, ssize_t bytes, const uv_buf_t* buf) {
if (nrecv_total == 0) {
ASSERT_OK(start_time);
2011-08-31 05:18:48 +02:00
uv_update_time(loop);
start_time = uv_now(loop);
}
if (bytes < 0) {
2011-07-01 17:54:17 -07:00
uv_close((uv_handle_t*)stream, read_sockets_close_cb);
return;
}
2011-05-10 01:39:54 +02:00
buf_free(buf);
2011-05-09 21:29:29 -07:00
nrecv += bytes;
nrecv_total += bytes;
2011-05-10 01:39:54 +02:00
}
static void write_cb(uv_write_t* req, int status) {
ASSERT_OK(status);
2011-05-10 01:39:54 +02:00
req_free((uv_req_t*) req);
2011-05-10 01:39:54 +02:00
2011-05-09 21:29:29 -07:00
nsent += sizeof write_buffer;
nsent_total += sizeof write_buffer;
do_write((uv_stream_t*) req->handle);
2011-05-10 01:39:54 +02:00
}
2011-07-01 17:54:17 -07:00
static void do_write(uv_stream_t* stream) {
uv_write_t* req;
2011-05-13 07:15:02 -07:00
uv_buf_t buf;
2011-05-10 01:39:54 +02:00
int r;
buf.base = (char*) &write_buffer;
buf.len = sizeof write_buffer;
req = (uv_write_t*) req_alloc();
r = uv_write(req, stream, &buf, 1, write_cb);
ASSERT_OK(r);
2011-05-10 01:39:54 +02:00
}
static void connect_cb(uv_connect_t* req, int status) {
int i;
if (status) {
fprintf(stderr, "%s", uv_strerror(status));
fflush(stderr);
}
ASSERT_OK(status);
2011-05-10 01:39:54 +02:00
write_sockets++;
req_free((uv_req_t*) req);
2011-05-10 01:39:54 +02:00
maybe_connect_some();
if (write_sockets == TARGET_CONNECTIONS) {
start_stats_collection();
2011-05-10 01:39:54 +02:00
/* Yay! start writing */
for (i = 0; i < write_sockets; i++) {
2013-09-11 16:59:55 +02:00
if (type == TCP)
do_write((uv_stream_t*) &tcp_write_handles[i]);
else
do_write((uv_stream_t*) &pipe_write_handles[i]);
}
}
2011-05-10 01:39:54 +02:00
}
static void maybe_connect_some(void) {
uv_connect_t* req;
uv_tcp_t* tcp;
2011-07-01 17:54:17 -07:00
uv_pipe_t* pipe;
int r;
2011-05-10 01:39:54 +02:00
while (max_connect_socket < TARGET_CONNECTIONS &&
max_connect_socket < write_sockets + MAX_SIMULTANEOUS_CONNECTS) {
2011-07-01 17:54:17 -07:00
if (type == TCP) {
tcp = &tcp_write_handles[max_connect_socket++];
2011-08-31 05:18:48 +02:00
r = uv_tcp_init(loop, tcp);
ASSERT_OK(r);
2011-07-01 17:54:17 -07:00
req = (uv_connect_t*) req_alloc();
r = uv_tcp_connect(req,
tcp,
(const struct sockaddr*) &connect_addr,
connect_cb);
ASSERT_OK(r);
2011-07-01 17:54:17 -07:00
} else {
pipe = &pipe_write_handles[max_connect_socket++];
r = uv_pipe_init(loop, pipe, 0);
ASSERT_OK(r);
2011-07-01 17:54:17 -07:00
req = (uv_connect_t*) req_alloc();
2011-11-04 16:06:53 -07:00
uv_pipe_connect(req, pipe, TEST_PIPENAME, connect_cb);
2011-07-01 17:54:17 -07:00
}
2011-05-10 01:39:54 +02:00
}
}
static void connection_cb(uv_stream_t* s, int status) {
2011-07-01 17:54:17 -07:00
uv_stream_t* stream;
2011-05-10 01:39:54 +02:00
int r;
ASSERT_PTR_EQ(server, s);
ASSERT_OK(status);
2011-07-01 17:54:17 -07:00
if (type == TCP) {
stream = (uv_stream_t*)malloc(sizeof(uv_tcp_t));
r = uv_tcp_init(loop, (uv_tcp_t*)stream);
ASSERT_OK(r);
2011-07-01 17:54:17 -07:00
} else {
stream = (uv_stream_t*)malloc(sizeof(uv_pipe_t));
r = uv_pipe_init(loop, (uv_pipe_t*)stream, 0);
ASSERT_OK(r);
2011-07-01 17:54:17 -07:00
}
2011-07-01 17:54:17 -07:00
r = uv_accept(s, stream);
ASSERT_OK(r);
2011-05-10 01:39:54 +02:00
2011-07-01 17:54:17 -07:00
r = uv_read_start(stream, buf_alloc, read_cb);
ASSERT_OK(r);
2011-05-10 01:39:54 +02:00
read_sockets++;
max_read_sockets++;
2011-05-10 01:39:54 +02:00
}
/*
* Request allocator
*/
typedef struct req_list_s {
union uv_any_req uv_req;
2011-05-10 01:39:54 +02:00
struct req_list_s* next;
} req_list_t;
static req_list_t* req_freelist = NULL;
static uv_req_t* req_alloc(void) {
2011-05-10 01:39:54 +02:00
req_list_t* req;
req = req_freelist;
if (req != NULL) {
req_freelist = req->next;
2011-05-11 19:56:33 -07:00
return (uv_req_t*) req;
2011-05-10 01:39:54 +02:00
}
req = (req_list_t*) malloc(sizeof *req);
2011-05-11 19:56:33 -07:00
return (uv_req_t*) req;
2011-05-10 01:39:54 +02:00
}
2011-05-11 19:56:33 -07:00
static void req_free(uv_req_t* uv_req) {
req_list_t* req = (req_list_t*) uv_req;
2011-05-10 01:39:54 +02:00
req->next = req_freelist;
req_freelist = req;
}
/*
* Buffer allocator
*/
typedef struct buf_list_s {
2011-05-13 07:15:02 -07:00
uv_buf_t uv_buf_t;
2011-05-10 01:39:54 +02:00
struct buf_list_s* next;
} buf_list_t;
static buf_list_t* buf_freelist = NULL;
static void buf_alloc(uv_handle_t* handle, size_t size, uv_buf_t* buf) {
buf_list_t* ab;
2011-05-10 01:39:54 +02:00
ab = buf_freelist;
if (ab != NULL)
buf_freelist = ab->next;
else {
ab = malloc(size + sizeof(*ab));
ab->uv_buf_t.len = size;
ab->uv_buf_t.base = (char*) (ab + 1);
2011-05-10 01:39:54 +02:00
}
*buf = ab->uv_buf_t;
2011-05-10 01:39:54 +02:00
}
static void buf_free(const uv_buf_t* buf) {
buf_list_t* ab = (buf_list_t*) buf->base - 1;
ab->next = buf_freelist;
buf_freelist = ab;
2011-05-10 01:39:54 +02:00
}
2011-07-01 17:54:17 -07:00
HELPER_IMPL(tcp_pump_server) {
int r;
2011-07-01 17:54:17 -07:00
type = TCP;
2011-08-31 05:18:48 +02:00
loop = uv_default_loop();
ASSERT_OK(uv_ip4_addr("0.0.0.0", TEST_PORT, &listen_addr));
/* Server */
server = (uv_stream_t*)&tcpServer;
2011-08-31 05:18:48 +02:00
r = uv_tcp_init(loop, &tcpServer);
ASSERT_OK(r);
r = uv_tcp_bind(&tcpServer, (const struct sockaddr*) &listen_addr, 0);
ASSERT_OK(r);
r = uv_listen((uv_stream_t*)&tcpServer, MAX_WRITE_HANDLES, connection_cb);
ASSERT_OK(r);
notify_parent_process();
uv_run(loop, UV_RUN_DEFAULT);
return 0;
}
2011-07-01 17:54:17 -07:00
HELPER_IMPL(pipe_pump_server) {
int r;
type = PIPE;
2011-08-31 05:18:48 +02:00
loop = uv_default_loop();
2011-07-01 17:54:17 -07:00
/* Server */
server = (uv_stream_t*)&pipeServer;
r = uv_pipe_init(loop, &pipeServer, 0);
ASSERT_OK(r);
r = uv_pipe_bind(&pipeServer, TEST_PIPENAME);
ASSERT_OK(r);
r = uv_listen((uv_stream_t*)&pipeServer, MAX_WRITE_HANDLES, connection_cb);
ASSERT_OK(r);
2011-07-01 17:54:17 -07:00
notify_parent_process();
uv_run(loop, UV_RUN_DEFAULT);
2011-07-01 17:54:17 -07:00
MAKE_VALGRIND_HAPPY(loop);
2011-07-01 17:54:17 -07:00
return 0;
}
static void tcp_pump(int n) {
ASSERT_LE(n, MAX_WRITE_HANDLES);
TARGET_CONNECTIONS = n;
2011-07-01 17:54:17 -07:00
type = TCP;
2011-08-31 05:18:48 +02:00
loop = uv_default_loop();
ASSERT_OK(uv_ip4_addr("127.0.0.1", TEST_PORT, &connect_addr));
/* Start making connections */
maybe_connect_some();
uv_run(loop, UV_RUN_DEFAULT);
MAKE_VALGRIND_HAPPY(loop);
}
static void pipe_pump(int n) {
ASSERT_LE(n, MAX_WRITE_HANDLES);
2011-07-01 17:54:17 -07:00
TARGET_CONNECTIONS = n;
type = PIPE;
2011-08-31 05:18:48 +02:00
loop = uv_default_loop();
2011-07-01 17:54:17 -07:00
/* Start making connections */
maybe_connect_some();
uv_run(loop, UV_RUN_DEFAULT);
MAKE_VALGRIND_HAPPY(loop);
2011-07-01 17:54:17 -07:00
}
BENCHMARK_IMPL(tcp_pump100_client) {
tcp_pump(100);
return 0;
}
BENCHMARK_IMPL(tcp_pump1_client) {
tcp_pump(1);
return 0;
}
BENCHMARK_IMPL(pipe_pump100_client) {
pipe_pump(100);
return 0;
}
2011-07-01 17:54:17 -07:00
BENCHMARK_IMPL(pipe_pump1_client) {
pipe_pump(1);
return 0;
}