Skip to content

Instantly share code, notes, and snippets.

@bporterfield
Created March 6, 2012 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bporterfield/1988286 to your computer and use it in GitHub Desktop.
Save bporterfield/1988286 to your computer and use it in GitHub Desktop.
private
##
# Writes +s+ to the buffer. When the buffer is full or #sync is true the
# buffer is flushed to the underlying socket.
def do_write(s)
s = s.dup if s.frozen?
s.force_encoding("ASCII-8BIT")
@wbuffer = "" unless defined? @wbuffer
@wbuffer << s
@sync ||= false
if @sync or @wbuffer.size > BLOCK_SIZE or idx = @wbuffer.rindex($/)
remain = idx ? idx + $/.size : @wbuffer.length
nwritten = 0
while remain > 0
str = @wbuffer[nwritten,remain]
begin
nwrote = syswrite(str)
rescue Errno::EAGAIN
retry
end
remain -= nwrote
nwritten += nwrote
end
@wbuffer[0,nwritten] = ""
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment