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

165 lines
4.0 KiB
C
Raw Normal View History

/* 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.
*/
2011-04-07 11:02:54 +02:00
#include "../oio.h"
2011-04-05 01:43:17 +02:00
#include "test.h"
#include <stdlib.h>
2011-04-05 01:43:17 +02:00
#include <stdio.h>
static int completed_pingers = 0;
2011-04-07 04:51:59 +02:00
#define NUM_PINGS 1000
2011-04-05 01:43:17 +02:00
/* 64 bytes is enough for a pinger */
2011-04-07 04:51:59 +02:00
#define BUFSIZE 10240
static char PING[] = "PING\n";
typedef struct {
int pongs;
int state;
2011-04-07 11:02:54 +02:00
oio_handle handle;
oio_req connect_req;
oio_req read_req;
oio_buf buf;
char read_buffer[BUFSIZE];
2011-04-07 04:51:59 +02:00
} pinger_t;
void pinger_try_read(pinger_t* pinger);
2011-04-07 11:02:54 +02:00
void pinger_on_close(oio_handle* handle, oio_err err) {
2011-04-07 04:51:59 +02:00
pinger_t* pinger = (pinger_t*)handle->data;
2011-04-01 00:09:06 +02:00
ASSERT(!err);
ASSERT(NUM_PINGS == pinger->pongs);
2011-04-07 04:51:59 +02:00
free(pinger);
completed_pingers++;
}
2011-04-07 04:51:59 +02:00
2011-04-07 11:02:54 +02:00
void pinger_after_write(oio_req *req) {
2011-04-07 04:51:59 +02:00
free(req);
}
2011-04-16 14:04:45 -07:00
static void pinger_write_ping(pinger_t* pinger) {
2011-04-07 11:02:54 +02:00
oio_req *req;
2011-04-15 19:32:28 +02:00
2011-04-07 11:02:54 +02:00
req = (oio_req*)malloc(sizeof(*req));
oio_req_init(req, &pinger->handle, pinger_after_write);
2011-04-16 14:04:45 -07:00
if (oio_write2(req, (char*)&PING)) {
FATAL("oio_write2 failed");
2011-04-16 14:04:45 -07:00
}
puts("PING");
2011-04-07 04:51:59 +02:00
}
2011-04-16 14:04:45 -07:00
static void pinger_after_read(oio_req* req, size_t nread) {
2011-04-01 00:09:06 +02:00
unsigned int i;
2011-04-07 04:51:59 +02:00
pinger_t* pinger;
pinger = (pinger_t*)req->handle->data;
if (nread == 0) {
2011-04-16 14:04:45 -07:00
puts("got EOF");
2011-04-07 11:02:54 +02:00
oio_close(&pinger->handle);
return;
}
/* Now we count the pings */
for (i = 0; i < nread; i++) {
ASSERT(pinger->buf.base[i] == PING[pinger->state]);
2011-04-07 04:51:59 +02:00
pinger->state = (pinger->state + 1) % (sizeof(PING) - 1);
if (pinger->state == 0) {
2011-04-16 14:04:45 -07:00
printf("PONG %d\n", pinger->pongs);
2011-04-07 04:51:59 +02:00
pinger->pongs++;
if (pinger->pongs < NUM_PINGS) {
pinger_write_ping(pinger);
} else {
2011-04-07 11:02:54 +02:00
oio_close(&pinger->handle);
2011-04-01 00:09:06 +02:00
return;
}
}
}
2011-04-01 00:09:06 +02:00
2011-04-07 04:51:59 +02:00
pinger_try_read(pinger);
}
2011-04-07 04:51:59 +02:00
void pinger_try_read(pinger_t* pinger) {
2011-04-16 14:04:45 -07:00
oio_req_init(&pinger->read_req, &pinger->handle, pinger_after_read);
2011-04-07 11:02:54 +02:00
oio_read(&pinger->read_req, &pinger->buf, 1);
}
2011-04-07 11:02:54 +02:00
void pinger_on_connect(oio_req *req, oio_err err) {
2011-04-07 04:51:59 +02:00
pinger_t *pinger = (pinger_t*)req->handle->data;
ASSERT(!err);
2011-04-05 01:43:17 +02:00
2011-04-07 04:51:59 +02:00
pinger_try_read(pinger);
pinger_write_ping(pinger);
}
2011-04-16 14:04:45 -07:00
void pinger_new() {
int r;
2011-04-07 11:02:54 +02:00
struct sockaddr_in client_addr = oio_ip4_addr("0.0.0.0", 0);
2011-04-14 01:35:39 +02:00
struct sockaddr_in server_addr = oio_ip4_addr("127.0.0.1", TEST_PORT);
2011-04-07 04:51:59 +02:00
pinger_t *pinger;
2011-04-07 04:51:59 +02:00
pinger = (pinger_t*)malloc(sizeof(*pinger));
pinger->state = 0;
pinger->pongs = 0;
2011-04-16 14:04:45 -07:00
pinger->buf.len = BUFSIZE;
2011-04-07 04:51:59 +02:00
pinger->buf.base = (char*)&pinger->read_buffer;
2011-04-05 01:43:17 +02:00
/* Try to connec to the server and do NUM_PINGS ping-pongs. */
2011-04-16 14:04:45 -07:00
r = oio_tcp_handle_init(&pinger->handle, pinger_on_close, (void*)pinger);
ASSERT(!r);
2011-04-07 04:51:59 +02:00
/* We are never doing multiple reads/connects at a time anyway. */
/* so these handles can be pre-initialized. */
2011-04-07 11:02:54 +02:00
oio_req_init(&pinger->connect_req, &pinger->handle, pinger_on_connect);
2011-04-01 00:09:06 +02:00
2011-04-07 11:02:54 +02:00
oio_bind(&pinger->handle, (struct sockaddr*)&client_addr);
2011-04-16 14:04:45 -07:00
r = oio_connect(&pinger->connect_req, (struct sockaddr*)&server_addr);
ASSERT(!r);
}
2011-04-05 01:43:17 +02:00
TEST_IMPL(ping_pong) {
2011-04-07 11:02:54 +02:00
oio_init();
2011-04-16 14:04:45 -07:00
pinger_new();
2011-04-07 11:02:54 +02:00
oio_run();
ASSERT(completed_pingers == 1);
return 0;
}