about summary refs log tree commit homepage
path: root/lib/mongrel.rb
diff options
context:
space:
mode:
authorzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-07-15 00:55:53 +0000
committerzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-07-15 00:55:53 +0000
commit401e7fc810ca730687f2626a2baa1a7c848abbf7 (patch)
tree1993a1980cd4a02429e1c3eb28bb9b7c12cf9b75 /lib/mongrel.rb
parentc05069479d33351b9db1a4b7393e71c608788d05 (diff)
downloadunicorn-401e7fc810ca730687f2626a2baa1a7c848abbf7.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@294 19e92222-5c0b-0410-8929-a290d50e31e9
Diffstat (limited to 'lib/mongrel.rb')
-rw-r--r--lib/mongrel.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/mongrel.rb b/lib/mongrel.rb
index cd2a860..fa99e84 100644
--- a/lib/mongrel.rb
+++ b/lib/mongrel.rb
@@ -199,40 +199,31 @@ module Mongrel
       
 
       dispatcher.request_begins(params) if dispatcher
-      STDERR.puts "REQUEST: #{params.inspect}"
 
       if remain == 0
         # we've got everything, pack it up
-        STDERR.puts "everything already read, packing up and done: #{params.http_body.inspect}"
         @body = StringIO.new
         @body.write params.http_body
         dispatcher.request_progress(params, 0, content_length) if dispatcher
       elsif remain < 0
-        STDERR.puts "ERROR: body length larger than content length, stupid client"
         # ERROR, they're sending bad requests
         raise HttpParserError.new("Sent body size #{params.http_body.length} but declared Content-Length: #{content_length}")
       elsif remain > 0
-        STDERR.puts "need to read #{remain} more of the body #{content_length}"
         # must read more data to complete body
         if remain > Const::MAX_BODY
-          STDERR.puts "Big content, saving to tempfile"
           # huge body, put it in a tempfile
           @body = Tempfile.new(Const::MONGREL_TMP_BASE)
           @body.binmode
         else
           # small body, just use that
-          STDERR.puts "Small file, using ram"
           @body = StringIO.new
         end
 
         @body.write params.http_body
         read_body(remain, content_length, dispatcher)
-      else
-        STDERR.puts "BAD LOGIC: Tell Zed he's a moron."
       end
 
       @body.rewind
-      STDERR.puts "DONE"
     end
 
 
@@ -241,17 +232,14 @@ module Mongrel
     # and will set @body = nil if the request fails.  It also expects any initial
     # part of the body that has been read to be in the @body already.
     def read_body(remain, total, dispatcher)
-      STDERR.puts "reading body"
       begin
         # write the odd sized chunk first
         remain -= @body.write(@socket.read(remain % Const::CHUNK_SIZE))
-        STDERR.puts "first read, remaining: #{remain}"
         dispatcher.request_progress(params, remain, total) if dispatcher
 
         # then stream out nothing but perfectly sized chunks
         until remain <= 0 or @socket.closed?
           data = @socket.read(Const::CHUNK_SIZE)
-          STDERR.puts "read #{data.length} more"
           # have to do it this way since @socket.eof? causes it to block
           raise "Socket closed or read failure" if not data or data.length != Const::CHUNK_SIZE
           remain -= @body.write(data)