class HTTPX::Resolver::Native

  1. lib/httpx/resolver/native.rb
Superclass: Resolver

Methods

Public Class

  1. new

Public Instance

  1. <<
  2. call
  3. close
  4. closed?
  5. handle_socket_timeout
  6. interests
  7. state
  8. timeout
  9. to_io

Constants

DEFAULTS = { nameserver: nil, **Resolv::DNS::Config.default_config_hash, packet_size: 512, timeouts: Resolver::RESOLVE_TIMEOUT, }.freeze  
DNS_PORT = 53  

Attributes

state [R]

Public Class methods

new(family, options)
[show source]
   # File lib/httpx/resolver/native.rb
24 def initialize(family, options)
25   super
26   @ns_index = 0
27   @resolver_options = DEFAULTS.merge(@options.resolver_options)
28   @socket_type = @resolver_options.fetch(:socket_type, :udp)
29   @nameserver = if (nameserver = @resolver_options[:nameserver])
30     nameserver = nameserver[family] if nameserver.is_a?(Hash)
31     Array(nameserver)
32   end
33   @ndots = @resolver_options.fetch(:ndots, 1)
34   @search = Array(@resolver_options[:search]).map { |srch| srch.scan(/[^.]+/) }
35   @_timeouts = Array(@resolver_options[:timeouts])
36   @timeouts = Hash.new { |timeouts, host| timeouts[host] = @_timeouts.dup }
37   @connections = []
38   @name = nil
39   @queries = {}
40   @read_buffer = "".b
41   @write_buffer = Buffer.new(@resolver_options[:packet_size])
42   @state = :idle
43 end

Public Instance methods

<<(connection)
[show source]
   # File lib/httpx/resolver/native.rb
76 def <<(connection)
77   if @nameserver.nil?
78     ex = ResolveError.new("No available nameserver")
79     ex.set_backtrace(caller)
80     connection.force_reset
81     throw(:resolve_error, ex)
82   else
83     @connections << connection
84     resolve
85   end
86 end
call()
[show source]
   # File lib/httpx/resolver/native.rb
57 def call
58   case @state
59   when :open
60     consume
61   end
62 end
close()
[show source]
   # File lib/httpx/resolver/native.rb
45 def close
46   transition(:closed)
47 end
closed?()
[show source]
   # File lib/httpx/resolver/native.rb
49 def closed?
50   @state == :closed
51 end
handle_socket_timeout(interval)
[show source]
   # File lib/httpx/resolver/native.rb
96 def handle_socket_timeout(interval); end
interests()
[show source]
   # File lib/httpx/resolver/native.rb
64 def interests
65   case @state
66   when :idle
67     transition(:open)
68   when :closed
69     transition(:idle)
70     transition(:open)
71   end
72 
73   calculate_interests
74 end
timeout()
[show source]
   # File lib/httpx/resolver/native.rb
88 def timeout
89   return if @connections.empty?
90 
91   @start_timeout = Utils.now
92   hosts = @queries.keys
93   @timeouts.values_at(*hosts).reject(&:empty?).map(&:first).min
94 end
to_io()
[show source]
   # File lib/httpx/resolver/native.rb
53 def to_io
54   @io.to_io
55 end