Class: Typhoeus::Hydra

Inherits:
Object
  • Object
show all
Defined in:
lib/typhoeus/hydra.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeHydra

Returns a new instance of Hydra.



3
4
5
6
7
8
9
# File 'lib/typhoeus/hydra.rb', line 3

def initialize
  @multi       = Multi.new
  @easy_pool   = []
  @mocks       = []
  @memoized_requests = {}
  @retrieved_from_cache = {}
end

Class Method Details

.hydraObject



11
12
13
# File 'lib/typhoeus/hydra.rb', line 11

def self.hydra
  @hydra ||= new
end

Instance Method Details

#cache_getter(&block) ⇒ Object



47
48
49
# File 'lib/typhoeus/hydra.rb', line 47

def cache_getter(&block)
  @cache_getter = block
end

#cache_setter(&block) ⇒ Object



51
52
53
# File 'lib/typhoeus/hydra.rb', line 51

def cache_setter(&block)
  @cache_setter = block
end

#mock(method, url) ⇒ Object



63
64
65
66
# File 'lib/typhoeus/hydra.rb', line 63

def mock(method, url)
  @mocks << HydraMock.new(url, method)
  @mocks.last
end

#on_complete(&block) ⇒ Object



55
56
57
# File 'lib/typhoeus/hydra.rb', line 55

def on_complete(&block)
  @on_complete = block
end

#on_complete=(proc) ⇒ Object



59
60
61
# File 'lib/typhoeus/hydra.rb', line 59

def on_complete=(proc)
  @on_complete = proc
end

#queue(request) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/typhoeus/hydra.rb', line 15

def queue(request)
  return if assign_to_mock(request)

  if request.method == :get
    if @memoized_requests.has_key? request.url
      if response = @retrieved_from_cache[request.url]
        request.response = response
        request.call_handlers
      else
        @memoized_requests[request.url] << request
      end
    else
      @memoized_requests[request.url] = []
      get_from_cache_or_queue(request)
    end
  else
    get_from_cache_or_queue(request)
  end
end

#runObject



35
36
37
38
39
40
41
42
43
44
45
# File 'lib/typhoeus/hydra.rb', line 35

def run
  @mocks.each do |m|
    m.requests.each do |request|
      m.response.request = request
      handle_request(request, m.response)
    end
  end
  @multi.perform
  @memoized_requests = {}
  @retrieved_from_cache = {}
end