X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=server.h;h=6007626dd57d5e14953b4f9b905e94fbc08d74c9;hp=cb726c6fb818b7f73ce39ec09b2803215e635df6;hb=1135808bf9df44b879994e6dac07a31eb78c2fdb;hpb=16a03b9858752fae9e81af261821a2a22855fde3 diff --git a/server.h b/server.h index cb726c6..6007626 100644 --- a/server.h +++ b/server.h @@ -1,13 +1,14 @@ #ifndef _SERVER_H #define _SERVER_H 1 -#include #include #include #include #include #include #include +#include +#include #include #include #include @@ -70,27 +71,27 @@ public: private: // Mutex protecting queued_add_clients. - // Note that if you want to hold both this and below, - // you will need to take before this one. - mutable pthread_mutex_t queued_clients_mutex; + // Note that if you want to hold both this and below, + // you will need to take before this one. + mutable std::mutex queued_clients_mutex; // Deferred commands that should be run from the do_work() thread as soon as possible. // We defer these for two reasons: // // - We only want to fiddle with epoll from one thread at any given time, // and doing add_client() from the acceptor thread would violate that. - // - We don't want the input thread(s) hanging on when doing - // add_data(), since they want to do add_data() rather often, and + // - We don't want the input thread(s) hanging on when doing + // add_data(), since they want to do add_data() rather often, and // can be taken a lot of the time. // // Protected by . - std::vector > queued_add_clients; + std::vector> queued_add_clients; // All variables below this line are protected by the mutex. - mutable pthread_mutex_t mutex; + mutable std::mutex mu; // All streams. - std::vector streams; + std::vector> streams; // Map from URL to index into . std::map stream_url_map; @@ -112,7 +113,7 @@ private: // This means that when reading it, we need to check if the client it // describes is still exists (ie., that the fd still exists, and that // the timespec matches). - std::queue > clients_ordered_by_connect_time; + std::queue> clients_ordered_by_connect_time; // Used for epoll implementation (obviously). int epoll_fd; @@ -158,6 +159,14 @@ private: // Close a given client socket, and clean up after it. void close_client(Client *client); + // Listen for a different set of epoll events. + void change_epoll_events(Client *client, uint32_t events); + + // If we're supposed to listen for more requests (persistent HTTP connections), + // puts the client back into READING_REQUEST, changes its epoll flags and returns + // true. + bool more_requests(Client *client); + // Parse the HTTP request. Returns a HTTP status code (200/204/400/404). int parse_request(Client *client);