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
|
# frozen_string_literal: true
module Grape
module ServeStream
CHUNK_SIZE = 16_384
# Class helps send file through API
class FileBody
attr_reader :path
# @param path [String]
def initialize(path)
@path = path
end
# Need for Rack::Sendfile middleware
#
# @return [String]
def to_path
path
end
def each
File.open(path, 'rb') do |file|
while (chunk = file.read(CHUNK_SIZE))
yield chunk
end
end
end
def ==(other)
path == other.path
end
end
end
end
|