surfliner-metadata_consumer 0.1.0.pre.alpha.3 → 0.1.0.pre.alpha.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,136 +0,0 @@
1
- require "bunny"
2
-
3
- module Surfliner
4
- module MetadataConsumer
5
- # An object encapsulating a RabbitMQ connection.
6
- class MqConnection
7
- # @return [Logger] The logger
8
- attr_reader :logger
9
-
10
- # @return [Bunny::Session] The current RabbitMQ session
11
- attr_reader :connection
12
-
13
- # @return [Bunny::Channel] The channel being listened to
14
- attr_reader :channel
15
-
16
- # @return [Bunny::Exchange] The exchange being listened to
17
- attr_reader :exchange
18
-
19
- # @return [Bunny::Queue] The queue being listened to
20
- attr_reader :queue
21
-
22
- # @return [MqConfig] The configuration
23
- attr_reader :config
24
-
25
- # Initializes a new `MqConnection`.
26
- #
27
- # @param logger [Logger] the logger
28
- # @param config [MqConfig] the configuration
29
- def initialize(logger:, config: MqConfig.from_env)
30
- @logger = logger
31
- @config = config
32
- end
33
-
34
- # Opens a connection.
35
- # @param topic_opts [Hash] RabbitMQ topic options. (See Bunny::Channel#topic)
36
- # @param queue_opts [Hash] RabbitMQ queue options. (See Bunny::Channel#queue)
37
- # @return [self]
38
- # @raise RuntimeError if already connected
39
- def connect(topic_opts: {}, queue_opts: {})
40
- raise "RabbitMQ connection #{connection} already open." if open?
41
-
42
- logger.info("Rabbitmq message broker connection url: #{config.redacted_url}")
43
- @connection = Bunny.new(config.connection_url, logger: logger)
44
- connect_on(connection)
45
- @channel = connection.create_channel
46
- @exchange = channel.topic(config.topic, topic_opts)
47
- @queue = channel.queue(config.queue_name, queue_opts)
48
- queue.bind(exchange, routing_key: config.routing_key)
49
-
50
- self
51
- rescue Bunny::TCPConnectionFailed => err
52
- # TODO: realistically, this only happens in connection.start, where we're eating it
53
- logger.error("Connection to #{config.redacted_url} failed")
54
- raise err
55
- rescue Bunny::PossibleAuthenticationFailureError => err
56
- # TODO: realistically, this only happens in connection.start, where we're eating it
57
- logger.error("Failed to authenticate to #{config.redacted_url}")
58
- raise err
59
- end
60
-
61
- # Opens a connection, yields the queue, and closes the connection after
62
- # the provided block completes.
63
- # @param topic_opts [Hash] RabbitMQ topic options. (See Bunny::Channel#topic)
64
- # @param queue_opts [Hash] RabbitMQ queue options. (See Bunny::Channel#queue)
65
- # @yield [Bunny::Queue] the queue
66
- def open(topic_opts: {}, queue_opts: {})
67
- connect(topic_opts:, queue_opts:)
68
- yield queue
69
- ensure
70
- close
71
- end
72
-
73
- # Closes the connection.
74
- def close
75
- return unless channel
76
- return if channel.closed?
77
- logger.info("closing channel")
78
- channel.close
79
- ensure
80
- logger.info("closing connection")
81
- connection&.close
82
- end
83
-
84
- # @return [true, false] True if the connection is open, false otherwise
85
- def open?
86
- connection&.status == :open
87
- end
88
-
89
- # @return [Symbol, nil] The connection status, or nil if there is no connection
90
- def status
91
- connection&.status
92
- end
93
-
94
- # @return [String] The RabbitMQ hostname
95
- def host
96
- config.host
97
- end
98
-
99
- # @return [String] The RabbitMQ port
100
- def port
101
- config.port
102
- end
103
-
104
- # @return [String] The routing key
105
- def routing_key
106
- config.routing_key
107
- end
108
-
109
- # Publishes the specified payload
110
- # @param payload [String] the payload to publish
111
- # @return [Bunny::Exchange] see #exchange
112
- def publish(payload)
113
- logger.info "Publishing to #{routing_key} with payload: #{payload}"
114
- exchange.publish(payload, routing_key:)
115
- end
116
-
117
- private
118
-
119
- def connect_on(connection, timeout = 120)
120
- timer = 0
121
- logger.info "Trying to open queue connection with timeout=#{timeout}"
122
- while timer < timeout
123
- begin
124
- connection.start
125
- rescue
126
- # TODO: do we actually want to rescue from everything?
127
- end
128
- return connection if connection.status == :open
129
- sleep 1
130
- timer += 1
131
- end
132
- raise "Failed to connect to queue."
133
- end
134
- end
135
- end
136
- end