Sha256: 57bc3bcd8f291855f7baebebd866dce19b00165e1be59949304060c62deb7042
Contents?: true
Size: 1.59 KB
Versions: 2
Compression:
Stored size: 1.59 KB
Contents
# frozen_string_literal: true require "timeout" module HTTPX class Timeout LOOP_TIMEOUT = 5 def self.new(opts = {}) return opts if opts.is_a?(Timeout) super end def initialize(loop_timeout: LOOP_TIMEOUT, total_timeout: nil) @loop_timeout = loop_timeout @total_timeout = total_timeout reset_counter end def timeout @loop_timeout || @total_timeout ensure log_time end def ==(other) if other.is_a?(Timeout) @loop_timeout == other.instance_variable_get(:@loop_timeout) && @total_timeout == other.instance_variable_get(:@total_timeout) else super end end def merge(other) case other when Hash timeout = Timeout.new(other) merge(timeout) when Timeout loop_timeout = other.instance_variable_get(:@loop_timeout) || @loop_timeout total_timeout = other.instance_variable_get(:@total_timeout) || @total_timeout Timeout.new(loop_timeout: loop_timeout, total_timeout: total_timeout) else raise ArgumentError, "can't merge with #{other.class}" end end private def reset_counter @time_left = @total_timeout end def reset_timer @started = Process.clock_gettime(Process::CLOCK_MONOTONIC) end def log_time return unless @time_left return reset_timer unless @started @time_left -= (Process.clock_gettime(Process::CLOCK_MONOTONIC) - @started) raise TimeoutError, "Timed out after #{@total_timeout} seconds" if @time_left <= 0 reset_timer end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
httpx-0.2.1 | lib/httpx/timeout.rb |
httpx-0.2.0 | lib/httpx/timeout.rb |