refactor(worker): improve worker code
This commit is contained in:
@@ -20,6 +20,4 @@ cws_worker_s **cws_worker_new(size_t workers_num, cws_config_s *config);
|
|||||||
|
|
||||||
void cws_worker_free(cws_worker_s **workers, size_t workers_num);
|
void cws_worker_free(cws_worker_s **workers, size_t workers_num);
|
||||||
|
|
||||||
void *cws_worker_loop(void *arg);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -11,52 +11,86 @@
|
|||||||
#include "http/response.h"
|
#include "http/response.h"
|
||||||
#include "utils/error.h"
|
#include "utils/error.h"
|
||||||
|
|
||||||
static cws_server_ret cws_worker_setup_epoll(cws_worker_s *worker) {
|
static cws_return worker_setup_epoll(cws_worker_s *worker) {
|
||||||
worker->epfd = epoll_create1(0);
|
worker->epfd = epoll_create1(0);
|
||||||
if (worker->epfd == -1) {
|
if (worker->epfd == -1) {
|
||||||
return CWS_SERVER_EPOLL_CREATE_ERROR;
|
return CWS_EPOLL_CREATE_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
return CWS_SERVER_OK;
|
return CWS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void cws_server_close_client(int epfd, int client_fd) {
|
static void worker_close_client(int epfd, int client_fd) {
|
||||||
cws_epoll_del(epfd, client_fd);
|
cws_epoll_del(epfd, client_fd);
|
||||||
close(client_fd);
|
close(client_fd);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int cws_server_handle_client_data(int epfd, int client_fd) {
|
static cws_return worker_read_data(int epfd, int client_fd, string_s *data) {
|
||||||
string_s *data = string_new("", 4096);
|
|
||||||
|
|
||||||
ssize_t total_bytes = cws_read_data(client_fd, data);
|
ssize_t total_bytes = cws_read_data(client_fd, data);
|
||||||
if (total_bytes == 0) {
|
if (total_bytes == 0) {
|
||||||
/* Request not completed yet */
|
/* Request not completed yet */
|
||||||
string_free(data);
|
return CWS_OK;
|
||||||
return CWS_SERVER_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (total_bytes < 0) {
|
if (total_bytes < 0) {
|
||||||
/* Something happened, close connection */
|
/* Something happened, close connection */
|
||||||
string_free(data);
|
worker_close_client(epfd, client_fd);
|
||||||
cws_server_close_client(epfd, client_fd);
|
|
||||||
|
|
||||||
return CWS_SERVER_CLIENT_DISCONNECTED_ERROR;
|
return CWS_CLIENT_DISCONNECTED_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
return CWS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
static cws_return worker_handle_client_data(int epfd, int client_fd) {
|
||||||
|
string_s *data = string_new("", 4096);
|
||||||
|
cws_return ret = worker_read_data(epfd, client_fd, data);
|
||||||
|
if (ret != CWS_OK) {
|
||||||
|
string_free(data);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
cws_request_s *request = cws_http_parse(data);
|
cws_request_s *request = cws_http_parse(data);
|
||||||
string_free(data);
|
string_free(data);
|
||||||
if (request == NULL) {
|
if (request == NULL) {
|
||||||
cws_server_close_client(epfd, client_fd);
|
worker_close_client(epfd, client_fd);
|
||||||
return CWS_SERVER_HTTP_PARSE_ERROR;
|
return CWS_HTTP_PARSE_ERROR;
|
||||||
}
|
}
|
||||||
request->sockfd = client_fd;
|
request->sockfd = client_fd;
|
||||||
|
|
||||||
cws_http_send_response(request, HTTP_OK);
|
cws_http_send_response(request, HTTP_OK);
|
||||||
|
|
||||||
cws_http_free(request);
|
cws_http_free(request);
|
||||||
cws_server_close_client(epfd, client_fd);
|
worker_close_client(epfd, client_fd);
|
||||||
|
|
||||||
return CWS_SERVER_OK;
|
return CWS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void *cws_worker_loop(void *arg) {
|
||||||
|
cws_worker_s *worker = arg;
|
||||||
|
struct epoll_event events[64];
|
||||||
|
|
||||||
|
int nfds;
|
||||||
|
|
||||||
|
while (cws_server_run) {
|
||||||
|
nfds = epoll_wait(worker->epfd, events, 64, 250);
|
||||||
|
|
||||||
|
if (nfds < 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nfds == 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < nfds; ++i) {
|
||||||
|
/* Handle client's data */
|
||||||
|
int client_fd = events[i].data.fd;
|
||||||
|
worker_handle_client_data(worker->epfd, client_fd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
cws_worker_s **cws_worker_new(size_t workers_num, cws_config_s *config) {
|
cws_worker_s **cws_worker_new(size_t workers_num, cws_config_s *config) {
|
||||||
@@ -81,7 +115,7 @@ cws_worker_s **cws_worker_new(size_t workers_num, cws_config_s *config) {
|
|||||||
workers[i]->config = config;
|
workers[i]->config = config;
|
||||||
|
|
||||||
/* Setup worker's epoll */
|
/* Setup worker's epoll */
|
||||||
int ret = cws_worker_setup_epoll(workers[i]);
|
int ret = worker_setup_epoll(workers[i]);
|
||||||
if (ret == -1) {
|
if (ret == -1) {
|
||||||
for (size_t j = 0; j < i; ++j) {
|
for (size_t j = 0; j < i; ++j) {
|
||||||
free(workers[j]);
|
free(workers[j]);
|
||||||
@@ -111,30 +145,3 @@ void cws_worker_free(cws_worker_s **workers, size_t workers_num) {
|
|||||||
|
|
||||||
free(workers);
|
free(workers);
|
||||||
}
|
}
|
||||||
|
|
||||||
void *cws_worker_loop(void *arg) {
|
|
||||||
cws_worker_s *worker = arg;
|
|
||||||
struct epoll_event events[64];
|
|
||||||
|
|
||||||
int nfds;
|
|
||||||
|
|
||||||
while (cws_server_run) {
|
|
||||||
nfds = epoll_wait(worker->epfd, events, 64, 250);
|
|
||||||
|
|
||||||
if (nfds < 0) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (nfds == 0) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (int i = 0; i < nfds; ++i) {
|
|
||||||
/* Handle client's data */
|
|
||||||
int client_fd = events[i].data.fd;
|
|
||||||
cws_server_handle_client_data(worker->epfd, client_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user