module Ethon::Multi::Operations
def check
-
(void)
-
Other tags:
- Example: Check. -
def check msgs_left = ::FFI::MemoryPointer.new(:int) while true msg = Curl.multi_info_read(handle, msgs_left) break if msg.null? next if msg[:code] != :done easy = easy_handles.find{ |e| e.handle == msg[:easy_handle] } easy.return_code = msg[:data][:code] Ethon.logger.debug { "ETHON: performed #{easy.log_inspect}" } delete(easy) easy.complete end end
def get_timeout
-
(Ethon::Errors::MultiTimeout)
- If getting the timeout fails.
Returns:
-
(Integer)
- The timeout.
Other tags:
- Example: Get timeout. -
def get_timeout code = Curl.multi_timeout(handle, @timeout) raise Errors::MultiTimeout.new(code) unless code == :ok timeout = @timeout.read_long timeout = 1 if timeout < 0 timeout end
def handle
-
(FFI::Pointer)
- The multi handle.
Other tags:
- Example: Return multi handle. -
def handle @handle ||= FFI::AutoPointer.new(Curl.multi_init, Curl.method(:multi_cleanup)) end
def init_vars
-
(void)
-
Other tags:
- Example: Initialize variables. -
def init_vars @timeout = ::FFI::MemoryPointer.new(:long) @timeval = Curl::Timeval.new @fd_read = Curl::FDSet.new @fd_write = Curl::FDSet.new @fd_excep = Curl::FDSet.new @max_fd = ::FFI::MemoryPointer.new(:int) end
def ongoing?
-
(Boolean)
- True if ongoing, else false.
Other tags:
- Example: Return if ongoing. -
def ongoing? easy_handles.size > 0 || (!defined?(@running_count) || running_count > 0) end
def perform
- Example: Perform multi. -
Returns:
-
(nil)
-
def perform Ethon.logger.debug(STARTED_MULTI) while ongoing? run timeout = get_timeout next if timeout == 0 reset_fds set_fds(timeout) end Ethon.logger.debug(PERFORMED_MULTI) nil end
def prepare
- It is no longer necessary to call prepare.
Other tags:
- Example: Prepare multi. -
Returns:
-
(nil)
-
def prepare Ethon.logger.warn( "ETHON: It is no longer necessay to call "+ "Multi#prepare. Its going to be removed "+ "in future versions." ) end
def reset_fds
-
(void)
-
Other tags:
- Example: Reset fds. -
def reset_fds @fd_read.clear @fd_write.clear @fd_excep.clear end
def run
-
(void)
-
Other tags:
- Example: Run -
def run running_count_pointer = FFI::MemoryPointer.new(:int) begin code = trigger(running_count_pointer) end while code == :call_multi_perform check end
def running_count
-
(Integer)
- Number running requests.
Other tags:
- Example: Return count. -
def running_count @running_count ||= nil end
def set_fds(timeout)
-
(Ethon::Errors::Select)
- If select fails. -
(Ethon::Errors::MultiFdset)
- If setting the file descriptors fails.
Returns:
-
(void)
-
Other tags:
- Example: Set fds. -
def set_fds(timeout) code = Curl.multi_fdset(handle, @fd_read, @fd_write, @fd_excep, @max_fd) raise Errors::MultiFdset.new(code) unless code == :ok max_fd = @max_fd.read_int if max_fd == -1 sleep(0.001) else @timeval[:sec] = timeout / 1000 @timeval[:usec] = (timeout * 1000) % 1000000 code = Curl.select(max_fd + 1, @fd_read, @fd_write, @fd_excep, @timeval) raise Errors::Select.new(::FFI.errno) if code < 0 end end
def trigger(running_count_pointer)
-
(Symbol)
- The Curl.multi_perform return code.
Other tags:
- Example: Trigger. -
def trigger(running_count_pointer) code = Curl.multi_perform(handle, running_count_pointer) @running_count = running_count_pointer.read_int code end