yahns Ruby server user/dev discussion
 help / color / mirror / code / Atom feed
blob 6e56a18bca6f2a8dcf1906ffa93093b4b542799f 604 bytes (raw)
name: lib/yahns/chunk_body.rb 	 # note: path name is non-authoritative(*)

 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
 
# -*- 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
  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

debug log:

solving 6e56a18 ...
found 6e56a18 in https://yhbt.net/yahns.git/

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).