Class: Droonga::Client::Connection::DroongaProtocol::Coolio
- Inherits:
-
Object
- Object
- Droonga::Client::Connection::DroongaProtocol::Coolio
show all
- Defined in:
- lib/droonga/client/connection/droonga-protocol/coolio.rb
Defined Under Namespace
Classes: InfiniteRequest, NilMessage, Receiver, ReceiverError, Request, Sender
Instance Attribute Summary collapse
Instance Method Summary
collapse
Constructor Details
#initialize(host, port, tag, options = {}) ⇒ Coolio
Returns a new instance of Coolio.
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
# File 'lib/droonga/client/connection/droonga-protocol/coolio.rb', line 212
def initialize(host, port, tag, options={})
@host = host
@port = port
@tag = tag
default_options = {
}
@options = default_options.merge(options)
@loop = options[:loop] || ::Coolio::Loop.default
@sender = Sender.connect(@host, @port)
@sender.attach(@loop)
@receiver_host = @options[:receiver_host] || Socket.gethostname
@receiver_port = @options[:receiver_port] || 0
@receiver = Receiver.new(@receiver_host, @receiver_port)
@receiver.on_error = lambda do |error|
on_error(ReceiverError.new(error))
end
@receiver.attach(@loop)
end
|
Instance Attribute Details
#on_error(error) ⇒ Object
314
315
316
|
# File 'lib/droonga/client/connection/droonga-protocol/coolio.rb', line 314
def on_error(error)
@on_error.call(error) if @on_error
end
|
Instance Method Details
#close ⇒ Object
309
310
311
312
|
# File 'lib/droonga/client/connection/droonga-protocol/coolio.rb', line 309
def close
@sender.close
@receiver.close
end
|
#request(message, options = {}, &block) ⇒ Object
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
|
# File 'lib/droonga/client/connection/droonga-protocol/coolio.rb', line 232
def request(message, options={}, &block)
message = message.merge("replyTo" => @receiver.droonga_name)
send(message, options) do |error|
yield(error)
end
sync = block.nil?
if sync
response = nil
block = lambda do |_response|
response = _response
end
end
id = message["id"]
@receiver.register(id) do |response|
@receiver.unregister(id)
block.call(response)
end
request = Request.new(@receiver, id, @loop)
if sync
request.wait
response
else
request
end
end
|
#send(message, options = {}, &block) ⇒ Object
299
300
301
302
303
304
305
306
307
|
# File 'lib/droonga/client/connection/droonga-protocol/coolio.rb', line 299
def send(message, options={}, &block)
@sender.send("#{@tag}.message", message) do
host = @sender.peeraddr[3]
port = @sender.peeraddr[1]
detail = message
error = ConnectionError.new(host, port, detail)
yield(error)
end
end
|
#subscribe(message, options = {}, &block) ⇒ Object
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
|
# File 'lib/droonga/client/connection/droonga-protocol/coolio.rb', line 259
def subscribe(message, options={}, &block)
message = message.merge("replyTo" => @receiver.droonga_name,
"from" => @receiver.droonga_name)
send(message, options) do |error|
yield(error)
end
id = message["id"]
request_options = {
:subscription_timeout => options[:subscription_timeout],
}
@receiver.max_messages = options[:max_messages]
request = InfiniteRequest.new(@loop, request_options)
request.on_timeout = lambda do
@receiver.unregister(id)
end
sync = block.nil?
if sync
yielder = nil
buffer = []
@receiver.register(id) do |response|
if yielder
while (old_response = buffer.shift)
yielder << old_response
end
yielder << response
else
buffer << response
end
end
Enumerator.new do |_yielder|
yielder = _yielder
request.wait
end
else
@receiver.register(id, &block)
request
end
end
|