2011-04-18 23:51:45 -07: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 "../oio.h"
|
|
|
|
#include "task.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
static int completed_pingers = 0;
|
|
|
|
static int64_t start_time;
|
|
|
|
|
|
|
|
/* Run the benchmark for this many ms */
|
|
|
|
#define TIME 1000
|
|
|
|
|
|
|
|
/* 64 bytes is enough for a pinger */
|
|
|
|
#define BUFSIZE 1024
|
|
|
|
|
|
|
|
static char PING[] = "PING\n";
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int pongs;
|
|
|
|
int state;
|
|
|
|
oio_handle handle;
|
|
|
|
oio_req connect_req;
|
|
|
|
oio_req read_req;
|
|
|
|
oio_buf buf;
|
|
|
|
char read_buffer[BUFSIZE];
|
|
|
|
} pinger_t;
|
|
|
|
|
|
|
|
void pinger_try_read(pinger_t* pinger);
|
|
|
|
|
|
|
|
|
2011-04-19 23:48:47 +02:00
|
|
|
void pinger_on_close(oio_handle* handle, oio_err err) {
|
2011-04-18 23:51:45 -07:00
|
|
|
pinger_t* pinger = (pinger_t*)handle->data;
|
|
|
|
|
|
|
|
printf("%d pings\n", pinger->pongs);
|
|
|
|
|
|
|
|
ASSERT(!err);
|
|
|
|
|
|
|
|
free(pinger);
|
|
|
|
|
|
|
|
completed_pingers++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void pinger_after_write(oio_req *req) {
|
|
|
|
free(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void pinger_write_ping(pinger_t* pinger) {
|
|
|
|
oio_req *req;
|
2011-04-19 17:01:45 +02:00
|
|
|
oio_buf buf;
|
|
|
|
|
|
|
|
buf.base = (char*)&PING;
|
|
|
|
buf.len = strlen(PING);
|
2011-04-18 23:51:45 -07:00
|
|
|
|
|
|
|
req = (oio_req*)malloc(sizeof(*req));
|
|
|
|
oio_req_init(req, &pinger->handle, pinger_after_write);
|
|
|
|
|
2011-04-19 17:01:45 +02:00
|
|
|
if (oio_write(req, &buf, 1)) {
|
|
|
|
FATAL("oio_write failed");
|
2011-04-18 23:51:45 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void pinger_after_read(oio_req* req, size_t nread) {
|
|
|
|
unsigned int i;
|
|
|
|
pinger_t* pinger;
|
|
|
|
|
|
|
|
pinger = (pinger_t*)req->handle->data;
|
|
|
|
|
|
|
|
if (nread == 0) {
|
|
|
|
puts("got EOF");
|
|
|
|
oio_close(&pinger->handle);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now we count the pings */
|
|
|
|
for (i = 0; i < nread; i++) {
|
|
|
|
ASSERT(pinger->buf.base[i] == PING[pinger->state]);
|
|
|
|
pinger->state = (pinger->state + 1) % (sizeof(PING) - 1);
|
|
|
|
if (pinger->state == 0) {
|
|
|
|
pinger->pongs++;
|
|
|
|
if (oio_now() - start_time > TIME) {
|
|
|
|
oio_close(&pinger->handle);
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
pinger_write_ping(pinger);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pinger_try_read(pinger);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void pinger_try_read(pinger_t* pinger) {
|
|
|
|
oio_req_init(&pinger->read_req, &pinger->handle, pinger_after_read);
|
|
|
|
oio_read(&pinger->read_req, &pinger->buf, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-19 23:48:47 +02:00
|
|
|
void pinger_on_connect(oio_req *req, oio_err err) {
|
2011-04-18 23:51:45 -07:00
|
|
|
pinger_t *pinger = (pinger_t*)req->handle->data;
|
|
|
|
|
|
|
|
ASSERT(!err);
|
|
|
|
|
|
|
|
pinger_try_read(pinger);
|
|
|
|
pinger_write_ping(pinger);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void pinger_new() {
|
|
|
|
int r;
|
|
|
|
struct sockaddr_in client_addr = oio_ip4_addr("0.0.0.0", 0);
|
|
|
|
struct sockaddr_in server_addr = oio_ip4_addr("127.0.0.1", TEST_PORT);
|
|
|
|
pinger_t *pinger;
|
|
|
|
|
|
|
|
pinger = (pinger_t*)malloc(sizeof(*pinger));
|
|
|
|
pinger->state = 0;
|
|
|
|
pinger->pongs = 0;
|
|
|
|
pinger->buf.len = BUFSIZE;
|
|
|
|
pinger->buf.base = (char*)&pinger->read_buffer;
|
|
|
|
|
|
|
|
/* Try to connec to the server and do NUM_PINGS ping-pongs. */
|
|
|
|
r = oio_tcp_init(&pinger->handle, pinger_on_close, (void*)pinger);
|
|
|
|
ASSERT(!r);
|
|
|
|
|
|
|
|
/* We are never doing multiple reads/connects at a time anyway. */
|
|
|
|
/* so these handles can be pre-initialized. */
|
|
|
|
oio_req_init(&pinger->connect_req, &pinger->handle, pinger_on_connect);
|
|
|
|
|
|
|
|
oio_bind(&pinger->handle, (struct sockaddr*)&client_addr);
|
|
|
|
r = oio_connect(&pinger->connect_req, (struct sockaddr*)&server_addr);
|
|
|
|
ASSERT(!r);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BENCHMARK_IMPL(ping_pongs) {
|
|
|
|
oio_init();
|
|
|
|
start_time = oio_now();
|
|
|
|
|
|
|
|
pinger_new();
|
|
|
|
oio_run();
|
|
|
|
|
|
|
|
ASSERT(completed_pingers == 1);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|