Class: Vault::ConnectionPool::TimedStack
- Inherits:
-
Object
- Object
- Vault::ConnectionPool::TimedStack
- Defined in:
- lib/vault/vendor/connection_pool/timed_stack.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#empty? ⇒ Boolean
Returns
true
if there are no available connections. -
#initialize(size = 0, &block) ⇒ TimedStack
constructor
Creates a new pool with
size
connections that are created from the givenblock
. -
#length ⇒ Object
The number of connections available on the stack.
-
#pop(timeout = 0.5, options = {}) ⇒ Object
Retrieves a connection from the stack.
-
#push(obj, options = {}) ⇒ Object
(also: #<<)
Returns
obj
to the stack. -
#shutdown(&block) ⇒ Object
Shuts down the TimedStack which prevents connections from being checked out.
Constructor Details
#initialize(size = 0, &block) ⇒ TimedStack
Creates a new pool with size
connections that are created from the given block
.
38 39 40 41 42 43 44 45 46 |
# File 'lib/vault/vendor/connection_pool/timed_stack.rb', line 38 def initialize(size = 0, &block) @create_block = block @created = 0 @que = [] @max = size @mutex = Mutex.new @resource = ConditionVariable.new @shutdown_block = nil end |
Instance Method Details
#empty? ⇒ Boolean
Returns true
if there are no available connections.
112 113 114 |
# File 'lib/vault/vendor/connection_pool/timed_stack.rb', line 112 def empty? (@created - @que.length) >= @max end |
#length ⇒ Object
The number of connections available on the stack.
119 120 121 |
# File 'lib/vault/vendor/connection_pool/timed_stack.rb', line 119 def length @max - @created + @que.length end |
#pop(timeout = 0.5, options = {}) ⇒ Object
Retrieves a connection from the stack. If a connection is available it is immediately returned. If no connection is available within the given timeout a Timeout::Error is raised.
:timeout
is the only checked entry in options
and is preferred over the timeout
argument (which will be removed in a future release). Other options may be used by subclasses that extend TimedStack.
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/vault/vendor/connection_pool/timed_stack.rb', line 74 def pop(timeout = 0.5, = {}) , timeout = timeout, 0.5 if Hash === timeout timeout = .fetch :timeout, timeout deadline = Time.now + timeout @mutex.synchronize do loop do raise ConnectionPool::PoolShuttingDownError if @shutdown_block return fetch_connection() if connection_stored?() connection = try_create() return connection if connection to_wait = deadline - Time.now raise Timeout::Error, "Waited #{timeout} sec" if to_wait <= 0 @resource.wait(@mutex, to_wait) end end end |
#push(obj, options = {}) ⇒ Object Also known as: <<
Returns obj
to the stack. options
is ignored in TimedStack but may be used by subclasses that extend TimedStack.
52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/vault/vendor/connection_pool/timed_stack.rb', line 52 def push(obj, = {}) @mutex.synchronize do if @shutdown_block @shutdown_block.call(obj) else store_connection obj, end @resource.broadcast end end |
#shutdown(&block) ⇒ Object
Shuts down the TimedStack which prevents connections from being checked out. The block
is called once for each connection on the stack.
98 99 100 101 102 103 104 105 106 107 |
# File 'lib/vault/vendor/connection_pool/timed_stack.rb', line 98 def shutdown(&block) raise ArgumentError, "shutdown must receive a block" unless block_given? @mutex.synchronize do @shutdown_block = block @resource.broadcast shutdown_connections end end |