yahns.git  about / heads / tags
sleepy, multi-threaded, non-blocking application server for Ruby
blob 7153ad900e8f77bf29e632324f54f6a678581e1d 507 bytes (raw)
$ git show remove-kgio: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
 
# -*- 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: false

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

  def each
    @body.each do |chunk|
      chunk = "#{chunk.bytesize.to_s(16)}\r\n#{chunk}\r\n"
      yield chunk
      chunk.clear
    end
    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