Class: EventMachine::Hiredis::BaseClient
- Inherits:
-
Object
- Object
- EventMachine::Hiredis::BaseClient
- Includes:
- EM::Deferrable, EventEmitter
- Defined in:
- lib/em-hiredis/base_client.rb
Overview
Emits the following events
-
:connected - on successful connection or reconnection
-
:reconnected - on successful reconnection
-
:disconnected - no longer connected, when previously in connected state
-
:reconnect_failed(failure_number) - a reconnect attempt failed
This event is passed number of failures so far (1,2,3...)
-
:monitor
Direct Known Subclasses
Instance Attribute Summary collapse
-
#db ⇒ Object
readonly
Returns the value of attribute db.
-
#host ⇒ Object
readonly
Returns the value of attribute host.
-
#password ⇒ Object
readonly
Returns the value of attribute password.
-
#port ⇒ Object
readonly
Returns the value of attribute port.
Instance Method Summary collapse
- #auth(password, &blk) ⇒ Object
- #close_connection ⇒ Object
-
#configure(uri_string) ⇒ Object
Configure the redis connection to use.
- #connect ⇒ Object
- #connected? ⇒ Boolean
-
#initialize(host = 'localhost', port = '6379', password = nil, db = nil) ⇒ BaseClient
constructor
A new instance of BaseClient.
-
#pending_commands? ⇒ Boolean
Indicates that commands have been sent to redis but a reply has not yet been received.
- #reconnect_connection ⇒ Object
- #select(db, &blk) ⇒ Object
Methods included from EventEmitter
#emit, #listeners, #on, #remove_all_listeners, #remove_listener
Constructor Details
#initialize(host = 'localhost', port = '6379', password = nil, db = nil) ⇒ BaseClient
Returns a new instance of BaseClient.
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/em-hiredis/base_client.rb', line 19 def initialize(host='localhost', port='6379', password=nil, db=nil) @host, @port, @password, @db = host, port, password, db @defs = [] @command_queue = [] @closing_connection = false @reconnect_failed_count = 0 @reconnect_timer = nil @failed = false self.on(:failed) { @failed = true @command_queue.each do |df, _, _| df.fail(Error.new("Redis connection in failed state")) end @command_queue = [] } end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(sym, *args) ⇒ Object (private)
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/em-hiredis/base_client.rb', line 163 def method_missing(sym, *args) deferred = EM::DefaultDeferrable.new # Shortcut for defining the callback case with just a block deferred.callback { |result| yield(result) } if block_given? if @connected @connection.send_command(sym, *args) @defs.push(deferred) elsif @failed deferred.fail(Error.new("Redis connection in failed state")) else @command_queue << [deferred, sym, args] end deferred end |
Instance Attribute Details
#db ⇒ Object (readonly)
Returns the value of attribute db.
17 18 19 |
# File 'lib/em-hiredis/base_client.rb', line 17 def db @db end |
#host ⇒ Object (readonly)
Returns the value of attribute host.
17 18 19 |
# File 'lib/em-hiredis/base_client.rb', line 17 def host @host end |
#password ⇒ Object (readonly)
Returns the value of attribute password.
17 18 19 |
# File 'lib/em-hiredis/base_client.rb', line 17 def password @password end |
#port ⇒ Object (readonly)
Returns the value of attribute port.
17 18 19 |
# File 'lib/em-hiredis/base_client.rb', line 17 def port @port end |
Instance Method Details
#auth(password, &blk) ⇒ Object
145 146 147 148 |
# File 'lib/em-hiredis/base_client.rb', line 145 def auth(password, &blk) @password = password method_missing(:auth, password, &blk) end |
#close_connection ⇒ Object
150 151 152 153 154 |
# File 'lib/em-hiredis/base_client.rb', line 150 def close_connection EM.cancel_timer(@reconnect_timer) if @reconnect_timer @closing_connection = true @connection.close_connection_after_writing end |
#configure(uri_string) ⇒ Object
Configure the redis connection to use
In usual operation, the uri should be passed to initialize. This method is useful for example when failing over to a slave connection at runtime
43 44 45 46 47 48 49 50 |
# File 'lib/em-hiredis/base_client.rb', line 43 def configure(uri_string) uri = URI(uri_string) @host = uri.host @port = uri.port @password = uri.password path = uri.path[1..-1] @db = path.empty? ? nil : path end |
#connect ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/em-hiredis/base_client.rb', line 52 def connect @connection = EM.connect(@host, @port, Connection, @host, @port) @connection.on(:closed) do if @connected @defs.each { |d| d.fail(Error.new("Redis disconnected")) } @defs = [] @deferred_status = nil @connected = false unless @closing_connection reconnect end emit(:disconnected) EM::Hiredis.logger.info("#{@connection.to_s} disconnected") else unless @closing_connection @reconnect_failed_count += 1 @reconnect_timer = EM.add_timer(EM::Hiredis.reconnect_timeout) { @reconnect_timer = nil reconnect } emit(:reconnect_failed, @reconnect_failed_count) EM::Hiredis.logger.info("#{@connection.to_s} reconnect failed") if @reconnect_failed_count >= 4 emit(:failed) self.fail(Error.new("Could not connect after 4 attempts")) end end end end @connection.on(:connected) do @connected = true @reconnect_failed_count = 0 @failed = false select(@db) if @db auth(@password) if @password @command_queue.each do |df, command, args| @connection.send_command(command, *args) @defs.push(df) end @command_queue = [] emit(:connected) EM::Hiredis.logger.info("#{@connection.to_s} connected") succeed if @reconnecting @reconnecting = false emit(:reconnected) end end @connection.on(:message) do |reply| if RuntimeError === reply raise "Replies out of sync: #{reply.inspect}" if @defs.empty? deferred = @defs.shift error = Error.new("Error reply from redis") error.redis_error = reply deferred.fail(error) if deferred else handle_reply(reply) end end @connected = false @reconnecting = false return self end |
#connected? ⇒ Boolean
136 137 138 |
# File 'lib/em-hiredis/base_client.rb', line 136 def connected? @connected end |
#pending_commands? ⇒ Boolean
Indicates that commands have been sent to redis but a reply has not yet been received
This can be useful for example to avoid stopping the eventmachine reactor while there are outstanding commands
132 133 134 |
# File 'lib/em-hiredis/base_client.rb', line 132 def pending_commands? @connected && @defs.size > 0 end |
#reconnect_connection ⇒ Object
156 157 158 159 |
# File 'lib/em-hiredis/base_client.rb', line 156 def reconnect_connection EM.cancel_timer(@reconnect_timer) if @reconnect_timer reconnect end |
#select(db, &blk) ⇒ Object
140 141 142 143 |
# File 'lib/em-hiredis/base_client.rb', line 140 def select(db, &blk) @db = db method_missing(:select, db, &blk) end |