It is simple to use this framework to build your own service. It is based on Protocol structure and callbacks, so that we can dynamically change protocols and support stuff such as HTTP requests.
The framework consists of the following components:
async: A native POSIX thread pool.- It uses a combination of a pipe (for wakeup signals) and mutexes (for managing the task queue).
- Give a basic layer of protection to any server implementation.
reactor: Reactor pattern implementation using callbacks- Linux epoll system call abstraction
- Supported events: ready to read/write, closed, reactor exit
protocol-server- server construction library- protocol-server manages everything that makes a server run, including the thread pool, process forking, accepting new connections, setting up the initial protocol for new connections, and user space socket writing buffers.
Here is a simple example:
#include"protocol-server.h"#include<stdio.h>#include<string.h>voidon_open(server_ptserver, intsockfd) {
printf("A connection was accepted on socket #%d.\n", sockfd);
}
voidon_close(server_ptserver, intsockfd) {
printf("Socket #%d is now disconnected.\n", sockfd);
}
// simple echo implementation: the main callbackvoidon_data(server_ptserver, intsockfd) {
// We will assign a reading buffer on the stackcharbuff[1024];
ssize_tincoming=0;
// Read everything, this is edge triggered, `on_data` won't be called//again until all the data was read.while ((incoming=Server.read(server, sockfd, buff, 1024)) >0) {
// since the data is stack allocated, we'll write a copy// otherwise, we would avoid a copy using Server.write_moveServer.write(server, sockfd, buff, incoming);
if (!memcmp(buff, "bye", 3)) {
// close the connection automatically AFTER the buffer was sent.Server.close(server, sockfd);
}
}
}
intmain(void) {
/* create the echo protocol object */structProtocolprotocol= { .on_open=on_open,
.on_close=on_close,
.on_data=on_data,
.service="echo"};
// use the macro start_server, which will call Server.listen(settings)// with the settings we provide.start_server(.protocol=&protocol, .timeout=10, .threads=8);
}The code is heavily commented, and you can generate API documentation via
Doxygen. Check the directory html for details.
server-framework is freely redistributable under the two-clause BSD License.
Use of this source code is governed by a BSD-style license that can be found
in the LICENSE file.