2014-03-13 21:56:16 -04:00
|
|
|
require_relative 'connection_pool/version'
|
|
|
|
require_relative 'connection_pool/timed_stack'
|
2011-05-14 15:29:51 -04:00
|
|
|
|
|
|
|
# Generic connection pool class for e.g. sharing a limited number of network connections
|
2015-01-18 14:19:59 -05:00
|
|
|
# among many threads. Note: Connections are lazily created.
|
2011-05-14 15:29:51 -04:00
|
|
|
#
|
|
|
|
# Example usage with block (faster):
|
|
|
|
#
|
|
|
|
# @pool = ConnectionPool.new { Redis.new }
|
|
|
|
#
|
|
|
|
# @pool.with do |redis|
|
2011-05-14 18:36:17 -04:00
|
|
|
# redis.lpop('my-list') if redis.llen('my-list') > 0
|
2011-05-14 15:29:51 -04:00
|
|
|
# end
|
|
|
|
#
|
2013-09-24 12:37:58 -04:00
|
|
|
# Using optional timeout override (for that single invocation)
|
|
|
|
#
|
|
|
|
# @pool.with(:timeout => 2.0) do |redis|
|
|
|
|
# redis.lpop('my-list') if redis.llen('my-list') > 0
|
|
|
|
# end
|
|
|
|
#
|
2012-03-14 09:10:09 -04:00
|
|
|
# Example usage replacing an existing connection (slower):
|
2011-05-14 15:29:51 -04:00
|
|
|
#
|
2012-03-14 09:10:09 -04:00
|
|
|
# $redis = ConnectionPool.wrap { Redis.new }
|
2011-05-14 15:29:51 -04:00
|
|
|
#
|
|
|
|
# def do_work
|
2012-03-14 09:10:09 -04:00
|
|
|
# $redis.lpop('my-list') if $redis.llen('my-list') > 0
|
2011-05-14 15:29:51 -04:00
|
|
|
# end
|
|
|
|
#
|
|
|
|
# Accepts the following options:
|
|
|
|
# - :size - number of connections to pool, defaults to 5
|
|
|
|
# - :timeout - amount of time to wait for a connection if none currently available, defaults to 5 seconds
|
|
|
|
#
|
2012-03-14 09:07:43 -04:00
|
|
|
class ConnectionPool
|
2012-12-18 13:08:06 -05:00
|
|
|
DEFAULTS = {size: 5, timeout: 5}
|
2011-05-14 15:29:51 -04:00
|
|
|
|
2014-02-14 19:05:15 -05:00
|
|
|
class Error < RuntimeError
|
|
|
|
end
|
|
|
|
|
2012-03-14 09:07:43 -04:00
|
|
|
def self.wrap(options, &block)
|
|
|
|
Wrapper.new(options, &block)
|
|
|
|
end
|
|
|
|
|
2012-12-18 13:08:06 -05:00
|
|
|
def initialize(options = {}, &block)
|
2012-03-14 09:07:43 -04:00
|
|
|
raise ArgumentError, 'Connection pool requires a block' unless block
|
2011-09-18 16:26:26 -04:00
|
|
|
|
2012-03-14 09:24:47 -04:00
|
|
|
options = DEFAULTS.merge(options)
|
|
|
|
|
2012-12-18 13:08:06 -05:00
|
|
|
@size = options.fetch(:size)
|
|
|
|
@timeout = options.fetch(:timeout)
|
2012-03-14 09:24:47 -04:00
|
|
|
|
2012-12-18 21:51:47 -05:00
|
|
|
@available = TimedStack.new(@size, &block)
|
2012-03-14 09:27:21 -04:00
|
|
|
@key = :"current-#{@available.object_id}"
|
2011-05-14 15:29:51 -04:00
|
|
|
end
|
|
|
|
|
2013-09-24 12:37:58 -04:00
|
|
|
def with(options = {})
|
2015-04-10 11:34:55 -04:00
|
|
|
Thread.handle_interrupt(StandardError => :never) do
|
|
|
|
conn = checkout(options)
|
|
|
|
begin
|
|
|
|
Thread.handle_interrupt(StandardError => :immediate) do
|
|
|
|
yield conn
|
|
|
|
end
|
|
|
|
ensure
|
2015-01-17 18:32:50 -05:00
|
|
|
checkin
|
|
|
|
end
|
2012-06-18 09:10:05 -04:00
|
|
|
end
|
2011-05-14 15:29:51 -04:00
|
|
|
end
|
2012-12-18 21:33:59 -05:00
|
|
|
|
2013-09-24 12:37:58 -04:00
|
|
|
def checkout(options = {})
|
2015-01-17 19:40:03 -05:00
|
|
|
conn = if stack.empty?
|
2013-09-23 23:28:50 -04:00
|
|
|
timeout = options[:timeout] || @timeout
|
2015-01-17 19:40:03 -05:00
|
|
|
@available.pop(timeout: timeout)
|
2012-06-18 09:10:05 -04:00
|
|
|
else
|
2015-01-17 19:40:03 -05:00
|
|
|
stack.last
|
2012-06-18 09:10:05 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
stack.push conn
|
|
|
|
conn
|
2011-05-14 15:29:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def checkin
|
2015-01-17 19:40:03 -05:00
|
|
|
conn = pop_connection # mutates stack, must be on its own line
|
|
|
|
@available.push(conn) if stack.empty?
|
2014-02-14 18:04:10 -05:00
|
|
|
|
2011-05-14 15:29:51 -04:00
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2013-05-25 13:19:19 -04:00
|
|
|
def shutdown(&block)
|
|
|
|
@available.shutdown(&block)
|
|
|
|
end
|
|
|
|
|
2015-01-17 19:40:03 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def pop_connection
|
|
|
|
if stack.empty?
|
|
|
|
raise ConnectionPool::Error, 'no connections are checked out'
|
|
|
|
else
|
|
|
|
stack.pop
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def stack
|
|
|
|
::Thread.current[@key] ||= []
|
|
|
|
end
|
|
|
|
|
2012-12-18 11:50:12 -05:00
|
|
|
class Wrapper < ::BasicObject
|
2013-06-15 13:39:32 -04:00
|
|
|
METHODS = [:with, :pool_shutdown]
|
2013-06-14 19:41:09 -04:00
|
|
|
|
2012-03-14 09:07:43 -04:00
|
|
|
def initialize(options = {}, &block)
|
|
|
|
@pool = ::ConnectionPool.new(options, &block)
|
|
|
|
end
|
|
|
|
|
2015-01-17 18:16:02 -05:00
|
|
|
def with(&block)
|
|
|
|
@pool.with(&block)
|
2012-03-14 11:36:40 -04:00
|
|
|
end
|
2012-12-18 21:33:59 -05:00
|
|
|
|
2013-06-15 13:39:32 -04:00
|
|
|
def pool_shutdown(&block)
|
|
|
|
@pool.shutdown(&block)
|
|
|
|
end
|
|
|
|
|
2012-12-18 11:41:59 -05:00
|
|
|
def respond_to?(id, *args)
|
2015-01-17 18:16:02 -05:00
|
|
|
METHODS.include?(id) || with { |c| c.respond_to?(id, *args) }
|
2012-11-08 20:14:31 -05:00
|
|
|
end
|
|
|
|
|
2012-03-14 09:07:43 -04:00
|
|
|
def method_missing(name, *args, &block)
|
2015-01-17 18:16:02 -05:00
|
|
|
with do |connection|
|
2012-03-14 09:07:43 -04:00
|
|
|
connection.send(name, *args, &block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-09-09 17:12:23 -04:00
|
|
|
end
|