]> git.sesse.net Git - cubemap/blobdiff - server.cpp
When closing a client, make sure it is not left in sleeping_clients.
[cubemap] / server.cpp
index b914b2ec4fbaa50175021038e42ed9161cd21bad..d894bd14d0a85d05783366fb60f0394fcf7c86dc 100644 (file)
@@ -13,6 +13,7 @@
 #include <vector>
 #include <string>
 #include <map>
 #include <vector>
 #include <string>
 #include <map>
+#include <algorithm>
 
 #include "metacube.h"
 #include "server.h"
 
 #include "metacube.h"
 #include "server.h"
@@ -220,10 +221,18 @@ void Server::process_client(Client *client)
                }
 
                // See if we need to split across the circular buffer.
                }
 
                // 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) {
                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<char *>(stream.data + (client->bytes_sent % BACKLOG_SIZE));
+                       iov[0].iov_len = bytes_first_part;
+
+                       iov[1].iov_base = const_cast<char *>(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),
                } else {
                        ret = write(client->sock,
                                    stream.data + (client->bytes_sent % BACKLOG_SIZE),
@@ -276,6 +285,11 @@ void Server::close_client(Client *client)
                perror("epoll_ctl(EPOLL_CTL_DEL)");
                exit(1);
        }
                perror("epoll_ctl(EPOLL_CTL_DEL)");
                exit(1);
        }
+
+       // This client could be sleeping, so we'll need to fix that. (Argh, O(n).)
+       vector<int>::iterator new_end =
+               remove(sleeping_clients.begin(), sleeping_clients.end(), client->sock);
+       sleeping_clients.erase(new_end, sleeping_clients.end());
        
        // Bye-bye!
        close(client->sock);
        
        // Bye-bye!
        close(client->sock);