]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/socket.cpp
Convert more by-values to const references, optimise ConfigReader a bit
[user/henk/code/inspircd.git] / src / socket.cpp
index d28122b7390f1663122e1f49ca36a54c38b90269..d4cdb0a18f41903510d1732596da69ac84af47a7 100644 (file)
@@ -59,11 +59,10 @@ InspSocket::InspSocket(int newfd, char* ip)
        socket_ref[this->fd] = this;
 }
 
-InspSocket::InspSocket(std::string ahost, int aport, bool listening, unsigned long maxtime)
+InspSocket::InspSocket(const std::string &ahost, int aport, bool listening, unsigned long maxtime)
+ : fd(-1), host(ahost)
 {
-       this->fd = -1;
-       this->host = ahost;
-       this->Buffer = "";
+       this->outbuffer.clear();
        if (listening) {
                if ((this->fd = OpenTCPSocket()) == ERROR)
                {
@@ -242,42 +241,33 @@ char* InspSocket::Read()
 // It will either write all of the data, or an undefined amount.
 // If an undefined amount is written the connection has failed
 // and should be aborted.
-int InspSocket::Write(std::string data)
+int InspSocket::Write(const std::string &data)
 {
-       try
-       {
-               if ((data != "") && (this->Buffer.length() + data.length() < this->Buffer.max_size()))
-                       this->Buffer.append(data);
-       }
-       catch (std::length_error)
-       {
-               log(DEBUG,"std::length_error exception caught while appending to socket buffer!");
-               return 0;
-       }
-       return data.length();
+       /* Try and append the data to the back of the queue, and send it on its way
+        */
+       outbuffer.push_back(data);
+       return (!this->FlushWriteBuffer());
 }
 
 bool InspSocket::FlushWriteBuffer()
 {
        if ((this->fd > -1) && (this->state == I_CONNECTED))
        {
-               int result = 0, v = 0;
-               const char* n = Buffer.c_str();
-               v = Buffer.length();
-               if (v > 0)
+               if (outbuffer.size())
                {
-                       result = write(this->fd,n,v);
+                       int result = write(this->fd,outbuffer[0].c_str(),outbuffer[0].length());
                        if (result > 0)
                        {
-                               if (result == v)
+                               if ((unsigned int)result == outbuffer[0].length())
                                {
-                                       Buffer = "";
+                                       /* The whole block was written (usually a line)
+                                        * Pop the block off the front of the queue
+                                        */
+                                       outbuffer.pop_front();
                                }
                                else
                                {
-                                       /* If we wrote some, advance the buffer forwards */
-                                       n += result;
-                                       Buffer = n;
+                                       outbuffer[0] = outbuffer[0].substr(result + 1,outbuffer[0].length());
                                }
                        }
                        else if ((result == -1) && (errno != EAGAIN))
@@ -285,11 +275,11 @@ bool InspSocket::FlushWriteBuffer()
                                log(DEBUG,"Write error on socket: %s",strerror(errno));
                                this->OnError(I_ERR_WRITE);
                                this->state = I_ERROR;
-                               return false;
+                               return true;
                        }
                }
        }
-       return true;
+       return false;
 }
 
 bool InspSocket::Timeout(time_t current)
@@ -345,7 +335,7 @@ bool InspSocket::Poll()
                         * Both FlushWriteBuffer AND the return result of OnDataReady must
                         * return true for this to be ok.
                         */
-                       return (n && this->FlushWriteBuffer());
+                       return (n && !this->FlushWriteBuffer());
                break;
                default:
                break;
@@ -381,4 +371,3 @@ InspSocket::~InspSocket()
 {
        this->Close();
 }
-