raindrops.git  about / heads / tags
real-time stats for preforking Rack servers
blob 53e14b599d412e8b9f1222dc2378013d29e2bfc1 925 bytes (raw)
$ git show v0.5.0:lib/raindrops/middleware/proxy.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 
# -*- encoding: binary -*-
# :stopdoc:
# This class is by Raindrops::Middleware to proxy application response
# bodies.  There should be no need to use it directly.
class Raindrops::Middleware::Proxy
  def initialize(body, stats)
    @body, @stats = body, stats
  end

  # yield to the Rack server here for writing
  def each
    @body.each { |x| yield x }
  end

  # the Rack server should call this after #each (usually ensure-d)
  def close
    @stats.decr_writing
    @body.close if @body.respond_to?(:close)
  end

  # Some Rack servers can optimize response processing if it responds
  # to +to_path+ via the sendfile(2) system call, we proxy +to_path+
  # to the underlying body if possible.
  def to_path
    @body.to_path
  end

  # Rack servers use +respond_to?+ to check for the presence of +close+
  # and +to_path+ methods.
  def respond_to?(m)
    m = m.to_sym
    :close == m || @body.respond_to?(m)
  end
end

git clone https://yhbt.net/raindrops.git