1
0
Fork 0
mirror of https://github.com/mperham/connection_pool synced 2023-03-27 23:22:21 -04:00
connection_pool/lib/connection_pool.rb

138 lines
3.1 KiB
Ruby
Raw Normal View History

2014-03-13 21:56:16 -04:00
require_relative 'connection_pool/version'
require_relative 'connection_pool/timed_stack'
# 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.
#
# 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
# 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):
#
2012-03-14 09:10:09 -04:00
# $redis = ConnectionPool.wrap { Redis.new }
#
# def do_work
2012-03-14 09:10:09 -04:00
# $redis.lpop('my-list') if $redis.llen('my-list') > 0
# 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
#
class ConnectionPool
2012-12-18 13:08:06 -05:00
DEFAULTS = {size: 5, timeout: 5}
class Error < RuntimeError
end
def self.wrap(options, &block)
Wrapper.new(options, &block)
end
2012-12-18 13:08:06 -05:00
def initialize(options = {}, &block)
raise ArgumentError, 'Connection pool requires a block' unless block
2011-09-18 16:26:26 -04:00
options = DEFAULTS.merge(options)
2012-12-18 13:08:06 -05:00
@size = options.fetch(:size)
@timeout = options.fetch(:timeout)
@available = TimedStack.new(@size, &block)
2012-03-14 09:27:21 -04:00
@key = :"current-#{@available.object_id}"
end
2013-09-24 12:37:58 -04:00
def with(options = {})
# Connections can become corrupted via Timeout::Error. Discard
# any connection whose usage after checkout does not finish as expected.
# See #67
success = false
2013-09-23 23:28:50 -04:00
conn = checkout(options)
begin
result = yield conn
success = true # means the connection wasn't interrupted
result
ensure
if success
# everything is roses, we can safely check the connection back in
checkin
else
@available.discard!(pop_connection)
end
end
end
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)
else
2015-01-17 19:40:03 -05:00
stack.last
end
stack.push conn
conn
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?
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
class Wrapper < ::BasicObject
METHODS = [:with, :pool_shutdown]
def initialize(options = {}, &block)
@pool = ::ConnectionPool.new(options, &block)
end
2015-01-17 18:16:02 -05:00
def with(&block)
@pool.with(&block)
end
def pool_shutdown(&block)
@pool.shutdown(&block)
end
def respond_to?(id, *args)
2015-01-17 18:16:02 -05:00
METHODS.include?(id) || with { |c| c.respond_to?(id, *args) }
end
def method_missing(name, *args, &block)
2015-01-17 18:16:02 -05:00
with do |connection|
connection.send(name, *args, &block)
end
end
end
end