]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/inspsocket.cpp
Make classbase and refcountbase uncopyable; expand comments on their indended uses
[user/henk/code/inspircd.git] / src / inspsocket.cpp
index c63748eab1a16e790f1983ad91509c9f95f40d03..fc8bc142f9df2dfeb7ef54f4294e9fdb9dc7b8a9 100644 (file)
 #include "socket.h"
 #include "inspstring.h"
 #include "socketengine.h"
-#ifndef WINDOWS
+
+#ifndef DISABLE_WRITEV
 #include <sys/uio.h>
+#ifndef IOV_MAX
+#define IOV_MAX 1024
+#endif
 #endif
 
 BufferedSocket::BufferedSocket()
@@ -141,10 +145,10 @@ void StreamSocket::Close()
        errno = save;
 }
 
-bool StreamSocket::cull()
+CullResult StreamSocket::cull()
 {
        Close();
-       return true;
+       return EventHandler::cull();
 }
 
 bool StreamSocket::GetNextLine(std::string& line, char delim)
@@ -225,52 +229,90 @@ void StreamSocket::DoWrite()
                return;
        }
 
+#ifndef DISABLE_WRITEV
        if (IOHook)
+#endif
        {
                int rv = -1;
                try
                {
-                       if (sendq.size() > 1 && sendq[0].length() < 1024)
-                       {
-                               // Avoid multiple repeated SSL encryption invocations
-                               // This adds a single copy of the queue, but avoids
-                               // much more overhead in terms of system calls invoked
-                               // by the IOHook.
-                               //
-                               // The length limit of 1024 is to prevent merging strings
-                               // more than once when writes begin to block.
-                               std::string tmp;
-                               tmp.reserve(sendq_len);
-                               for(unsigned int i=0; i < sendq.size(); i++)
-                                       tmp.append(sendq[i]);
-                               sendq.clear();
-                               sendq.push_back(tmp);
-                       }
                        while (!sendq.empty())
                        {
-                               std::string& front = sendq.front();
-                               int itemlen = front.length();
-                               rv = IOHook->OnStreamSocketWrite(this, front);
-                               if (rv > 0)
+                               if (sendq.size() > 1 && sendq[0].length() < 1024)
                                {
-                                       // consumed the entire string, and is ready for more
-                                       sendq_len -= itemlen;
-                                       sendq.pop_front();
+                                       // Avoid multiple repeated SSL encryption invocations
+                                       // This adds a single copy of the queue, but avoids
+                                       // much more overhead in terms of system calls invoked
+                                       // by the IOHook.
+                                       //
+                                       // The length limit of 1024 is to prevent merging strings
+                                       // more than once when writes begin to block.
+                                       std::string tmp;
+                                       tmp.reserve(sendq_len);
+                                       for(unsigned int i=0; i < sendq.size(); i++)
+                                               tmp.append(sendq[i]);
+                                       sendq.clear();
+                                       sendq.push_back(tmp);
                                }
-                               else if (rv == 0)
+                               std::string& front = sendq.front();
+                               int itemlen = front.length();
+                               if (IOHook)
                                {
-                                       // socket has blocked. Stop trying to send data.
-                                       // IOHook has requested unblock notification from the socketengine
+                                       rv = IOHook->OnStreamSocketWrite(this, front);
+                                       if (rv > 0)
+                                       {
+                                               // consumed the entire string, and is ready for more
+                                               sendq_len -= itemlen;
+                                               sendq.pop_front();
+                                       }
+                                       else if (rv == 0)
+                                       {
+                                               // socket has blocked. Stop trying to send data.
+                                               // IOHook has requested unblock notification from the socketengine
 
-                                       // Since it is possible that a partial write took place, adjust sendq_len
-                                       sendq_len = sendq_len - itemlen + front.length();
-                                       return;
+                                               // Since it is possible that a partial write took place, adjust sendq_len
+                                               sendq_len = sendq_len - itemlen + front.length();
+                                               return;
+                                       }
+                                       else
+                                       {
+                                               SetError("Write Error"); // will not overwrite a better error message
+                                               return;
+                                       }
                                }
+#ifdef DISABLE_WRITEV
                                else
                                {
-                                       SetError("Write Error"); // will not overwrite a better error message
-                                       return;
+                                       rv = ServerInstance->SE->Send(this, front.data(), itemlen, 0);
+                                       if (rv == 0)
+                                       {
+                                               SetError("Connection closed");
+                                               return;
+                                       }
+                                       else if (rv < 0)
+                                       {
+                                               if (errno == EAGAIN || errno == EINTR)
+                                                       ServerInstance->SE->ChangeEventMask(this, FD_WANT_FAST_WRITE | FD_WRITE_WILL_BLOCK);
+                                               else
+                                                       SetError(strerror(errno));
+                                               return;
+                                       }
+                                       else if (rv < itemlen)
+                                       {
+                                               ServerInstance->SE->ChangeEventMask(this, FD_WANT_FAST_WRITE | FD_WRITE_WILL_BLOCK);
+                                               front = front.substr(itemlen - rv);
+                                               sendq_len -= rv;
+                                               return;
+                                       }
+                                       else
+                                       {
+                                               sendq_len -= itemlen;
+                                               sendq.pop_front();
+                                               if (sendq.empty())
+                                                       ServerInstance->SE->ChangeEventMask(this, FD_WANT_EDGE_WRITE);
+                                       }
                                }
+#endif
                        }
                }
                catch (CoreException& modexcept)
@@ -279,6 +321,7 @@ void StreamSocket::DoWrite()
                                modexcept.GetSource(), modexcept.GetReason());
                }
        }
+#ifndef DISABLE_WRITEV
        else
        {
                // don't even try if we are known to be blocking
@@ -318,6 +361,11 @@ void StreamSocket::DoWrite()
                        else if (rv > 0)
                        {
                                // Partial write. Clean out strings from the sendq
+                               if (rv < rv_max)
+                               {
+                                       // it's going to block now
+                                       eventChange = FD_WANT_FAST_WRITE | FD_WRITE_WILL_BLOCK;
+                               }
                                sendq_len -= rv;
                                while (rv > 0 && !sendq.empty())
                                {
@@ -335,11 +383,6 @@ void StreamSocket::DoWrite()
                                                rv = 0;
                                        }
                                }
-                               if (rv < rv_max)
-                               {
-                                       // it's going to block now
-                                       eventChange = FD_WANT_FAST_WRITE | FD_WRITE_WILL_BLOCK;
-                               }
                        }
                        else if (rv == 0)
                        {
@@ -368,6 +411,7 @@ void StreamSocket::DoWrite()
                        ServerInstance->SE->ChangeEventMask(this, eventChange);
                }
        }
+#endif
 }
 
 void StreamSocket::WriteData(const std::string &data)