Sha256: 2d4107b46d4540c95daa08d9233c13ad5ef26e66b3a480439886425d702a16df
Contents?: true
Size: 1.91 KB
Versions: 1
Compression:
Stored size: 1.91 KB
Contents
require 'thread' $PIGATO_zmq_ctx = nil class Pigato::Client def initialize broker, conf = {} @broker = broker @sockets = {} @conf = { :autostart => false, :timeout => 2500 } @conf.merge!(conf) if @conf[:autostart] start end end def get_proc_id pid = "#" + Process.pid.to_s pid end def get_thread_id tid = get_proc_id() + "|" + Thread.current.object_id.to_s tid end def request service, request, opts = {} return nil if @sockets[get_thread_id()] == nil socket = @sockets[get_thread_id()] request = [Oj.dump(request), Oj.dump(opts)] rid = SecureRandom.uuid request = [Pigato::C_CLIENT, Pigato::W_REQUEST, service, rid].concat(request) msg = ZMQ::Message.new request.reverse.each{|p| msg.push(ZMQ::Frame(p))} socket.send_message msg res = [] while 1 do chunk = _recv rid break if chunk == nil res << Oj.load(chunk[4]) break if chunk[0] == Pigato::W_REPLY end return nil if res.length == 0 return res[0] if res.length == 1 res end def _recv rid socket = @sockets[get_thread_id()] socket.rcvtimeo = @conf[:timeout] data = [] d1 = Time.now msg = socket.recv_message() while 1 do break if !msg || msg.size == 0 data << msg.pop.data end data = [] if data[3] != rid return nil if data.length == 0 data.shift return data end def start reconnect_to_broker end def stop tid = get_thread_id() if @sockets[tid] @sockets[tid].close @sockets.delete(tid) end end def reconnect_to_broker stop if $PIGATO_zmq_ctx == nil ctx = ZMQ::Context.new ctx.linger = 0 $PIGATO_zmq_ctx = ctx end socket = $PIGATO_zmq_ctx.socket ZMQ::DEALER socket.identity = SecureRandom.uuid socket.connect @broker @sockets[get_thread_id()] = socket end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pigato-0.2.19 | lib/pigato/client.rb |