diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-07 18:00:45 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-07 18:00:45 +0000 |
commit | 85f9d57f0f172c0db12d037ac018d7ff33a64975 (patch) | |
tree | ac14a862621210f4ea41d246f6fd035e7a937d05 /src/socket.cpp | |
parent | bac3bedc9faae28b71ace255b0e82efc62dadfb0 (diff) |
Tweaks to socket engine, faster buffer flush and hopefully more stable
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3521 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/socket.cpp')
-rw-r--r-- | src/socket.cpp | 35 |
1 files changed, 13 insertions, 22 deletions
diff --git a/src/socket.cpp b/src/socket.cpp index 6ea91a83f..923ca5848 100644 --- a/src/socket.cpp +++ b/src/socket.cpp @@ -63,7 +63,7 @@ InspSocket::InspSocket(std::string ahost, int aport, bool listening, unsigned lo { this->fd = -1; this->host = ahost; - this->Buffer = ""; + this->outbuffer.clear(); if (listening) { if ((this->fd = OpenTCPSocket()) == ERROR) { @@ -244,40 +244,31 @@ char* InspSocket::Read() // and should be aborted. int InspSocket::Write(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)) |