summaryrefslogtreecommitdiff
path: root/lib/rack/body_proxy.rb
blob: cb161980ed9420a90fdade7359f64224d8a5fa73 (plain)
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
35
36
37
38
39
40
41
# frozen_string_literal: true

module Rack
  class BodyProxy
    def initialize(body, &block)
      @body = body
      @block = block
      @closed = false
    end

    def respond_to?(method_name, include_all = false)
      super or @body.respond_to?(method_name, include_all)
    end

    def close
      return if @closed
      @closed = true
      begin
        @body.close if @body.respond_to? :close
      ensure
        @block.call
      end
    end

    def closed?
      @closed
    end

    # N.B. This method is a special case to address the bug described by #434.
    # We are applying this special case for #each only. Future bugs of this
    # class will be handled by requesting users to patch their ruby
    # implementation, to save adding too many methods in this class.
    def each
      @body.each { |body| yield body }
    end

    def method_missing(method_name, *args, &block)
      @body.__send__(method_name, *args, &block)
    end
  end
end