yahns.git  about / heads / tags
sleepy, multi-threaded, non-blocking application server for Ruby
blob aab803b35cfc39159b9837bc133f08b1def472db 615 bytes (raw)
$ git show HEAD:lib/yahns/chunk_body.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
 
# -*- encoding: binary -*-
# Copyright (C) 2016 all contributors <yahns-public@yhbt.net>
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
# frozen_string_literal: true

class Yahns::ChunkBody # :nodoc:
  def initialize(body, vec)
    @body = body
    @vec = vec
  end

  def each
    vec = @vec
    vec[2] = "\r\n".freeze
    @body.each do |chunk|
      vec[0] = "#{chunk.bytesize.to_s(16)}\r\n"
      vec[1] = chunk
      # vec[2] never changes: "\r\n" above
      yield vec
    end
    vec.clear
    yield "0\r\n\r\n".freeze
  end

  def close
    @body.close if @body.respond_to?(:close)
  end
end

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