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

168 lines
3.8 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-19 04:26:32 +02:00
#include "task.h"
2011-03-28 01:55:29 -07:00
#include <stdio.h>
2011-03-28 03:26:00 -07:00
#include <stdlib.h>
2011-03-28 01:55:29 -07:00
2011-03-28 03:17:52 -07:00
#define BUFSIZE 1024
2011-03-28 01:55:29 -07:00
typedef struct {
2011-04-07 11:02:54 +02:00
oio_handle handle;
oio_req req;
oio_buf buf;
2011-04-16 14:04:45 -07:00
int msg;
2011-03-28 01:55:29 -07:00
} peer_t;
2011-04-07 11:02:54 +02:00
oio_handle server;
2011-03-28 01:55:29 -07:00
void after_write(oio_req* req, int status);
void after_read(oio_handle* handle, int nread, oio_buf buf);
void on_close(oio_handle* peer, int status);
2011-04-07 11:02:54 +02:00
void on_accept(oio_handle* handle);
2011-04-01 00:09:06 +02:00
void after_write(oio_req* req, int status) {
peer_t* peer;
ASSERT(status == 0);
peer = (peer_t*) req->data;
/* Free the read/write buffer */
free(peer->buf.base);
/* Start reading again */
oio_read_start(req->handle, after_read);
2011-03-28 01:55:29 -07:00
}
void after_read(oio_handle* handle, int nread, oio_buf buf) {
peer_t* peer;
if (nread < 0) {
/* Error or EOF */
ASSERT (oio_last_error().code == OIO_EOF);
if (buf.base) {
free(buf.base);
}
oio_close(handle);
return;
}
2011-04-07 04:51:59 +02:00
2011-03-31 14:22:20 +02:00
if (nread == 0) {
/* Everything OK, but nothing read. */
free(buf.base);
return;
2011-03-28 01:55:29 -07:00
}
2011-05-03 02:55:51 +02:00
peer = (peer_t*) handle->data;
oio_req_init(&peer->req, &peer->handle, after_write);
2011-04-07 04:51:59 +02:00
peer->req.data = peer;
peer->buf.base = buf.base;
peer->buf.len = nread;
if (oio_write(&peer->req, &peer->buf, 1)) {
FATAL("oio_write failed");
2011-04-16 14:04:45 -07:00
}
oio_read_stop(handle);
2011-03-28 01:55:29 -07:00
}
void on_close(oio_handle* peer, int status) {
if (status != 0) {
2011-03-28 03:17:52 -07:00
fprintf(stdout, "Socket error\n");
2011-03-28 01:55:29 -07:00
}
}
2011-04-07 11:02:54 +02:00
void on_accept(oio_handle* server) {
2011-04-16 14:04:45 -07:00
peer_t* p = (peer_t*)calloc(sizeof(peer_t), 1);
2011-03-30 01:34:56 +02:00
2011-04-18 12:53:02 -07:00
if (oio_accept(server, &p->handle, on_close, (void*)p)) {
FATAL("oio_accept failed");
}
2011-03-28 01:55:29 -07:00
2011-05-03 02:55:51 +02:00
oio_read_start(&p->handle, after_read);
2011-04-01 00:09:06 +02:00
}
2011-03-28 01:55:29 -07:00
2011-04-01 00:09:06 +02:00
void on_server_close(oio_handle* handle, int status) {
ASSERT(handle == &server);
ASSERT(status == 0);
2011-03-28 01:55:29 -07:00
}
int echo_start(int port) {
2011-04-07 11:02:54 +02:00
struct sockaddr_in addr = oio_ip4_addr("0.0.0.0", port);
2011-04-01 00:09:06 +02:00
int r;
2011-04-18 13:01:50 -07:00
r = oio_tcp_init(&server, on_server_close, NULL);
2011-04-07 04:51:59 +02:00
if (r) {
/* TODO: Error codes */
fprintf(stderr, "Socket creation error\n");
return 1;
}
2011-03-28 01:55:29 -07:00
2011-04-07 11:02:54 +02:00
r = oio_bind(&server, (struct sockaddr*) &addr);
2011-03-29 10:08:45 -07:00
if (r) {
/* TODO: Error codes */
2011-03-29 10:08:45 -07:00
fprintf(stderr, "Bind error\n");
return 1;
}
2011-04-07 11:02:54 +02:00
r = oio_listen(&server, 128, on_accept);
2011-03-29 10:08:45 -07:00
if (r) {
/* TODO: Error codes */
2011-03-29 10:08:45 -07:00
fprintf(stderr, "Listen error\n");
return 1;
}
2011-03-28 01:55:29 -07:00
return 0;
}
2011-04-01 00:09:06 +02:00
2011-04-05 01:43:17 +02:00
2011-04-01 00:09:06 +02:00
int echo_stop() {
2011-04-07 11:02:54 +02:00
return oio_close(&server);
2011-04-05 01:43:17 +02:00
}
oio_buf echo_alloc(oio_handle* handle, size_t suggested_size) {
oio_buf buf;
buf.base = (char*) malloc(suggested_size);
buf.len = suggested_size;
return buf;
}
HELPER_IMPL(echo_server) {
oio_init(echo_alloc);
if (echo_start(TEST_PORT))
return 1;
fprintf(stderr, "Listening!\n");
oio_run();
return 0;
}