#include #include #include #include #include #include #include #include #include #include #include #include #include "ipc.cpp" #include "page.cpp" #include "buffer.cpp" #include "point.cpp" #include "client.cpp" #define PORT 6969 #define MAX_COMMAND_SIZE 128 #define MAX_EVENTS 10 int create_listener() { int s = socket(AF_INET, SOCK_STREAM, 0); sockaddr_in addr = { AF_INET, htons(PORT), htonl(INADDR_LOOPBACK)}; int opt = 1; setsockopt(s, SOL_SOCKET, SO_REUSEADDR | SO_REUSEPORT, &opt, sizeof(opt)); bind(s, (sockaddr *) &addr, sizeof(sockaddr_in)); listen(s, MAX_EVENTS); return s; } void parse_command(char *command, Client *client) { char *token = strtok(command, " \n"); while (token) { if (strcmp(token, "show") == 0) { client->show(); } else if (strcmp(token, "move") == 0) { client->move(); } else if (strcmp(token, "push") == 0) { client->push(); } else if (strcmp(token, "pop") == 0) { client->pop(); } else { client->args.push(atoi(token)); } token = strtok(0, " \n"); } } int main() { Buffer scratch("scratch"); scratch.read_file("LICENSE"); int listener = create_listener(); int epollfd = epoll_create1(0); epoll_event ev; ev.events = EPOLLIN; ev.data.fd = listener; epoll_ctl(epollfd, EPOLL_CTL_ADD, listener, &ev); epoll_event events[MAX_EVENTS]; Client *clients[1024] = {}; while (true) { int nfds = epoll_wait(epollfd, events, MAX_EVENTS, -1); for (int i = 0; i < nfds; i++) { if (events[i].data.fd == listener) { int clientfd = accept(listener, 0, 0); ev.events = EPOLLIN | EPOLLET; ev.data.fd = clientfd; if (clients[clientfd]) { delete clients[clientfd]; } Client *c = new Client(scratch); c->sockfd = clientfd; clients[clientfd] = c; epoll_ctl(epollfd, EPOLL_CTL_ADD, clientfd, &ev); } else { char command[MAX_COMMAND_SIZE] = {}; int clientfd = events[i].data.fd; read(clientfd, command, MAX_COMMAND_SIZE - 1); parse_command(command, clients[clientfd]); } } } close(listener); }