From 64889d9136fa5466269232c26a2f235dd763d8f0 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 2 Dec 2010 07:38:14 +0000 Subject: ev_core: refactor and split cap_input out Hopefully it makes more sense now and is easier to digest for new hackers. --- lib/rainbows/ev_core/cap_input.rb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lib/rainbows/ev_core/cap_input.rb (limited to 'lib/rainbows/ev_core') diff --git a/lib/rainbows/ev_core/cap_input.rb b/lib/rainbows/ev_core/cap_input.rb new file mode 100644 index 0000000..a2eecab --- /dev/null +++ b/lib/rainbows/ev_core/cap_input.rb @@ -0,0 +1,21 @@ +# -*- encoding: binary -*- +# :enddoc: +class Rainbows::EvCore::CapInput + def initialize(io, client) + @io, @client, @bytes_left = io, client, Rainbows.max_bytes + end + + def <<(buf) + if (@bytes_left -= buf.size) < 0 + @io.close + @client.err_413("chunked request body too big") + end + @io << buf + end + + def gets; @io.gets; end + def each(&block); @io.each(&block); end + def size; @io.size; end + def rewind; @io.rewind; end + def read(*args); @io.read(*args); end +end -- cgit v1.2.3-24-ge0c7