about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-01-07 17:07:48 -0800
committerEric Wong <normalperson@yhbt.net>2011-01-07 17:07:48 -0800
commit25c9cf0d8420a971840297d9ca62e7dd9c05b09e (patch)
treefefbfa223edf8140683d2cbee98e967e99b5827d
parent7e4a7225dbd01df27a6b3ec44e53c013b889a724 (diff)
downloadrainbows-25c9cf0d8420a971840297d9ca62e7dd9c05b09e.tar.gz
No point in having too many modules to search around
(for both hackers and the runtime).
-rw-r--r--lib/rainbows/ev_core.rb2
-rw-r--r--lib/rainbows/event_machine/client.rb57
-rw-r--r--lib/rainbows/event_machine/response.rb56
3 files changed, 55 insertions, 60 deletions
diff --git a/lib/rainbows/ev_core.rb b/lib/rainbows/ev_core.rb
index 79703e6..0bdaab3 100644
--- a/lib/rainbows/ev_core.rb
+++ b/lib/rainbows/ev_core.rb
@@ -22,7 +22,7 @@ module Rainbows::EvCore
       alive = headers.include?(Content_Length) ||
               !!(%r{\Achunked\z}i =~ headers[Transfer_Encoding])
     end
-    write_response(status, headers, body, alive)
+    ev_write_response(status, headers, body, alive)
   end
 
   def post_init
diff --git a/lib/rainbows/event_machine/client.rb b/lib/rainbows/event_machine/client.rb
index ff77d2b..b13d6fb 100644
--- a/lib/rainbows/event_machine/client.rb
+++ b/lib/rainbows/event_machine/client.rb
@@ -1,10 +1,8 @@
 # -*- encoding: binary -*-
 # :enddoc:
-require 'rainbows/event_machine/response'
 class Rainbows::EventMachine::Client < EM::Connection
   attr_writer :body
   include Rainbows::EvCore
-  include Rainbows::EventMachine::Response
 
   def initialize(io)
     @_io = io
@@ -44,7 +42,60 @@ class Rainbows::EventMachine::Client < EM::Connection
     }
 
     (nil == status || -1 == status) or
-      write_response(status, headers, body, @hp.next?)
+      ev_write_response(status, headers, body, @hp.next?)
+  end
+
+  def deferred_errback(orig_body)
+    @body.errback do
+      orig_body.close if orig_body.respond_to?(:close)
+      quit
+    end
+  end
+
+  def deferred_callback(orig_body, alive)
+    @body.callback do
+      orig_body.close if orig_body.respond_to?(:close)
+      @body = nil
+      alive ? receive_data(nil) : quit
+    end
+  end
+
+  def ev_write_response(status, headers, body, alive)
+    @state = :headers if alive
+    if body.respond_to?(:errback) && body.respond_to?(:callback)
+      @body = body
+      deferred_errback(body)
+      deferred_callback(body, alive)
+    elsif body.respond_to?(:to_path)
+      st = File.stat(path = body.to_path)
+
+      if st.file?
+        write_headers(status, headers, alive)
+        @body = stream_file_data(path)
+        deferred_errback(body)
+        deferred_callback(body, alive)
+        return
+      elsif st.socket? || st.pipe?
+        io = body_to_io(@body = body)
+        chunk = stream_response_headers(status, headers, alive)
+        m = chunk ? Rainbows::EventMachine::ResponseChunkPipe :
+                    Rainbows::EventMachine::ResponsePipe
+        return EM.watch(io, m, self).notify_readable = true
+      end
+      # char or block device... WTF? fall through to body.each
+    end
+    write_response(status, headers, body, alive)
+    if alive
+      if @body.nil?
+        if @buf.empty?
+          set_comm_inactivity_timeout(Rainbows.keepalive_timeout)
+        else
+          EM.next_tick { receive_data(nil) }
+        end
+      end
+    else
+      quit unless @body
+    end
   end
 
   def next!
diff --git a/lib/rainbows/event_machine/response.rb b/lib/rainbows/event_machine/response.rb
deleted file mode 100644
index 7b88261..0000000
--- a/lib/rainbows/event_machine/response.rb
+++ /dev/null
@@ -1,56 +0,0 @@
-# -*- encoding: binary -*-
-# :enddoc:
-module Rainbows::EventMachine::Response
-  def deferred_errback(orig_body)
-    @body.errback do
-      orig_body.close if orig_body.respond_to?(:close)
-      quit
-    end
-  end
-
-  def deferred_callback(orig_body, alive)
-    @body.callback do
-      orig_body.close if orig_body.respond_to?(:close)
-      @body = nil
-      alive ? receive_data(nil) : quit
-    end
-  end
-
-  def write_response(status, headers, body, alive)
-    @state = :headers if alive
-    if body.respond_to?(:errback) && body.respond_to?(:callback)
-      @body = body
-      deferred_errback(body)
-      deferred_callback(body, alive)
-    elsif body.respond_to?(:to_path)
-      st = File.stat(path = body.to_path)
-
-      if st.file?
-        write_headers(status, headers, alive)
-        @body = stream_file_data(path)
-        deferred_errback(body)
-        deferred_callback(body, alive)
-        return
-      elsif st.socket? || st.pipe?
-        io = body_to_io(@body = body)
-        chunk = stream_response_headers(status, headers, alive)
-        m = chunk ? Rainbows::EventMachine::ResponseChunkPipe :
-                    Rainbows::EventMachine::ResponsePipe
-        return EM.watch(io, m, self).notify_readable = true
-      end
-      # char or block device... WTF? fall through to body.each
-    end
-    super(status, headers, body, alive)
-    if alive
-      if @body.nil?
-        if @buf.empty?
-          set_comm_inactivity_timeout(Rainbows.keepalive_timeout)
-        else
-          EM.next_tick { receive_data(nil) }
-        end
-      end
-    else
-      quit unless @body
-    end
-  end
-end