Class: Freddy::Producers::SendAndWaitResponseProducer
- Inherits:
-
Object
- Object
- Freddy::Producers::SendAndWaitResponseProducer
- Defined in:
- lib/freddy/producers/send_and_wait_response_producer.rb
Constant Summary collapse
- CONTENT_TYPE =
'application/json'.freeze
Instance Method Summary collapse
- #handle_response(delivery) ⇒ Object
-
#initialize(channel, logger) ⇒ SendAndWaitResponseProducer
constructor
A new instance of SendAndWaitResponseProducer.
- #on_timeout(correlation_id, destination, timeout_in_seconds) ⇒ Object
- #process_response(request, delivery) ⇒ Object
- #produce(destination, payload, timeout_in_seconds:, delete_on_timeout:, **properties) ⇒ Object
Constructor Details
#initialize(channel, logger) ⇒ SendAndWaitResponseProducer
Returns a new instance of SendAndWaitResponseProducer.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/freddy/producers/send_and_wait_response_producer.rb', line 6 def initialize(channel, logger) @logger = logger @channel = channel @request_manager = RequestManager.new(@logger) @exchange = @channel.default_exchange @topic_exchange = @channel.topic Freddy::FREDDY_TOPIC_EXCHANGE_NAME @channel.on_no_route do |correlation_id| @request_manager.no_route(correlation_id) end @response_queue = @channel.queue("", exclusive: true) @response_consumer = Consumers::ResponseConsumer.new(@logger) @response_consumer.consume(@response_queue, &method(:handle_response)) end |
Instance Method Details
#handle_response(delivery) ⇒ Object
64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/freddy/producers/send_and_wait_response_producer.rb', line 64 def handle_response(delivery) correlation_id = delivery.correlation_id if request = @request_manager.delete(correlation_id) process_response(request, delivery) else = "Got rpc response for correlation_id #{correlation_id} "\ "but there is no requester" @logger.warn end end |
#on_timeout(correlation_id, destination, timeout_in_seconds) ⇒ Object
82 83 84 85 86 87 88 89 |
# File 'lib/freddy/producers/send_and_wait_response_producer.rb', line 82 def on_timeout(correlation_id, destination, timeout_in_seconds) Proc.new do @logger.warn "Request timed out waiting response from #{destination}"\ ", correlation id #{correlation_id}" @request_manager.delete(correlation_id) end end |
#process_response(request, delivery) ⇒ Object
76 77 78 79 80 |
# File 'lib/freddy/producers/send_and_wait_response_producer.rb', line 76 def process_response(request, delivery) @logger.debug "Got response for request to #{request[:destination]} "\ "with correlation_id #{delivery.correlation_id}" request[:callback].call(delivery.payload, delivery) end |
#produce(destination, payload, timeout_in_seconds:, delete_on_timeout:, **properties) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/freddy/producers/send_and_wait_response_producer.rb', line 25 def produce(destination, payload, timeout_in_seconds:, delete_on_timeout:, **properties) correlation_id = SecureRandom.uuid container = SyncResponseContainer.new( on_timeout(correlation_id, destination, timeout_in_seconds) ) @request_manager.store(correlation_id, callback: container, destination: destination ) if delete_on_timeout properties[:expiration] = (timeout_in_seconds * 1000).to_i end properties = properties.merge( routing_key: destination, content_type: CONTENT_TYPE, correlation_id: correlation_id, reply_to: @response_queue.name, mandatory: true, type: 'request' ) json_payload = Payload.dump(payload) @logger.debug( message: 'Publishing request', queue: destination, payload: payload, response_queue: @response_queue.name, correlation_id: correlation_id ) # Connection adapters handle thread safety for #publish themselves. No # need to lock these. @topic_exchange.publish json_payload, properties.dup @exchange.publish json_payload, properties.dup container.wait_for_response(timeout_in_seconds) end |