lib/ethon/easies/callbacks.rb
module Ethon module Easies # This module contains all the logic around the callbacks, # which are needed to interact with libcurl. module Callbacks # Set writefunction and headerfunction callback. # They are called by libcurl in order to provide the header and # the body from the request. # # @example Set callbacks. # easy.set_callbacks def set_callbacks Curl.set_option(:writefunction, body_write_callback, handle) Curl.set_option(:headerfunction, header_write_callback, handle) @response_body = "" @response_header = "" end # Returns the body write callback. # # @example Return the callback. # easy.body_write_callback # # @return [ Proc ] The callback. def body_write_callback @body_write_callback ||= proc {|stream, size, num, object| @response_body << stream.read_string(size * num) size * num } end # Returns the header write callback. # # @example Return the callback. # easy.header_write_callback # # @return [ Proc ] The callback. def header_write_callback @header_write_callback ||= proc {|stream, size, num, object| @response_header << stream.read_string(size * num) size * num } end # Set the read callback. This callback is used by libcurl to # read data when performing a PUT request. # # @example Set the callback. # easy.set_read_callback("a=1") # # @param [ String ] body The body. def set_read_callback(body) @request_body_read = 0 @read_callback = proc {|stream, size, num, object| size = size * num left = body.bytesize - @request_body_read size = left if size > left if size > 0 stream.write_string(body.byteslice(@request_body_read, size), size) @request_body_read += size end size } self.readfunction = read_callback end # Returns the body read callback. # # @example Return the callback. # easy.read_callback # # @return [ Proc ] The callback. def read_callback @read_callback end end end end