X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=server.cpp;h=da721e780c2149c566ada02fc7ca9d1c942f4602;hp=9b91e0371254e67044a8138424334a21aea4b88c;hb=ad7d036afd462810aaa1c8686834fa91b2c4e5ae;hpb=528865024d7fdb484b2903e2205b8d00fb0550ef;ds=sidebyside diff --git a/server.cpp b/server.cpp index 9b91e03..da721e7 100644 --- a/server.cpp +++ b/server.cpp @@ -107,6 +107,10 @@ void Server::set_header(const string &stream_id, const string &header) void Server::add_data(const string &stream_id, const char *data, size_t bytes) { + if (bytes == 0) { + return; + } + MutexLock lock(&mutex); assert(streams.count(stream_id) != 0); Stream *stream = &streams[stream_id]; @@ -122,8 +126,7 @@ void Server::add_data(const string &stream_id, const char *data, size_t bytes) } memcpy(stream->data + pos, data, bytes); - - // TODO: wake up clients + wake_up_all_clients(); } void Server::process_client(Client *client) @@ -217,10 +220,18 @@ void Server::process_client(Client *client) } // See if we need to split across the circular buffer. - int ret; + ssize_t ret; if ((client->bytes_sent % BACKLOG_SIZE) + bytes_to_send > BACKLOG_SIZE) { - // TODO: writev - assert(false); + size_t bytes_first_part = BACKLOG_SIZE - (client->bytes_sent % BACKLOG_SIZE); + + iovec iov[2]; + iov[0].iov_base = const_cast(stream.data + (client->bytes_sent % BACKLOG_SIZE)); + iov[0].iov_len = bytes_first_part; + + iov[1].iov_base = const_cast(stream.data); + iov[1].iov_len = bytes_to_send - bytes_first_part; + + ret = writev(client->sock, iov, 2); } else { ret = write(client->sock, stream.data + (client->bytes_sent % BACKLOG_SIZE), @@ -231,10 +242,12 @@ void Server::process_client(Client *client) close_client(client); return; } - client->bytes_sent += ret; - - // TODO: put clients to sleep + client->bytes_sent += ret; + if (client->bytes_sent == stream.data_size) { + // We don't have any more data for this client, so put it to sleep. + put_client_to_sleep(client); + } break; } default: @@ -276,3 +289,31 @@ void Server::close_client(Client *client) close(client->sock); clients.erase(client->sock); } + +void Server::put_client_to_sleep(Client *client) +{ + epoll_event ev; + ev.events = EPOLLRDHUP; + ev.data.fd = client->sock; + + if (epoll_ctl(epoll_fd, EPOLL_CTL_MOD, client->sock, &ev) == -1) { + perror("epoll_ctl(EPOLL_CTL_MOD)"); + exit(1); + } + + sleeping_clients.push_back(client->sock); +} + +void Server::wake_up_all_clients() +{ + for (unsigned i = 0; i < sleeping_clients.size(); ++i) { + epoll_event ev; + ev.events = EPOLLOUT | EPOLLRDHUP; + ev.data.fd = sleeping_clients[i]; + if (epoll_ctl(epoll_fd, EPOLL_CTL_MOD, sleeping_clients[i], &ev) == -1) { + perror("epoll_ctl(EPOLL_CTL_MOD)"); + exit(1); + } + } + sleeping_clients.clear(); +}