X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=server.h;h=0f93b7f0b034caa1eb88a276f3b2aa40fa78fc83;hp=f1cc7a0dbfc0d56116739ebccda95829d8cfe577;hb=f3e2d52ccf79454ee157917f9017263a8f4c50c3;hpb=eb33692c9edee93e0883cd9f980d48dc7e17d801 diff --git a/server.h b/server.h index f1cc7a0..0f93b7f 100644 --- a/server.h +++ b/server.h @@ -21,9 +21,9 @@ struct Client { // The HTTP request, as sent by the client. If we are in READING_REQUEST, // this might not be finished. - std::string client_request; + std::string request; - // What stream we're connecting to; parsed from client_request. + // What stream we're connecting to; parsed from . // Not relevant for READING_REQUEST. std::string stream_id; @@ -57,23 +57,24 @@ public: // Start a new thread that handles clients. void run(); + + // Stop the thread. + void stop(); + void add_client(int sock); void add_stream(const std::string &stream_id); void set_header(const std::string &stream_id, const std::string &header); void add_data(const std::string &stream_id, const char *data, size_t bytes); private: - void process_client(Client *client); - - // Close a given client socket, and clean up after it. - void close_client(Client *client); - - // Parse the HTTP request, construct the header, and set the client into - // the SENDING_HEADER state. - void parse_request(Client *client); + pthread_t worker_thread; + // All variables below this line are protected by the mutex. pthread_mutex_t mutex; + // If the thread should stop or not. + bool should_stop; + // Map from stream ID to stream. std::map streams; @@ -84,11 +85,33 @@ private: int epoll_fd; epoll_event events[EPOLL_MAX_EVENTS]; + // Clients that are in SENDING_DATA, but that we don't listen on, + // because we currently don't have any data for them. + // See put_client_to_sleep() and wake_up_all_clients(). + std::vector sleeping_clients; + // Recover the this pointer, and call do_work(). static void *do_work_thunk(void *arg); // The actual worker thread. void do_work(); + + void process_client(Client *client); + + // Close a given client socket, and clean up after it. + void close_client(Client *client); + + // Parse the HTTP request, construct the header, and set the client into + // the SENDING_HEADER state. + void parse_request(Client *client); + + // Put client to sleep, since there is no more data for it; we will on + // longer listen on POLLOUT until we get more data. Also, it will be put + // in the list of clients to wake up when we do. + void put_client_to_sleep(Client *client); + + // We have more data, so mark all clients that are sleeping as ready to go. + void wake_up_all_clients(); }; #endif // !defined(_SERVER_H)