Sha256: e3929f4dcb4d94d0ecbfa85c706c4500174e9f194da521a7da19033d70720630

Contents?: true

Size: 1.83 KB

Versions: 5

Compression:

Stored size: 1.83 KB

Contents

# frozen_string_literal: true
# Copyright 2014-2020 Aerospike, Inc.
#
# Portions may be licensed to Aerospike, Inc. under one or more contributor
# license agreements.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.

module Aerospike

  class Pool #:nodoc:

    attr_accessor :create_proc, :cleanup_proc, :check_proc

    def initialize(max_size = 256, &block)
      @create_proc = block
      @cleanup_proc = nil
      @check_proc = nil

      @pool = Queue.new
      @max_size = max_size
    end

    def offer(obj)
      if @pool.length < @max_size
        @pool << obj
      else
        cleanup(obj)
      end
    end
    alias_method :<<, :offer

    def poll(create_new=true)
      non_block = true
      begin
        obj = @pool.pop(non_block)
        if !check(obj)
          cleanup(obj)
          obj = nil
        end
      end until obj
      obj
    rescue ThreadError
      create if create_new
    end

    def empty?
      @pool.empty?
    end

    def length
      @pool.length
    end
    alias_method :size, :length

    def inspect
      "#<Aerospike::Pool: size=#{size}>"
    end

    protected

    def create
      return unless create_proc
      create_proc.()
    end

    def check(obj)
      return true unless check_proc
      check_proc.(obj)
    end

    def cleanup(obj)
      return unless cleanup_proc
      cleanup_proc.(obj)
    end

  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
aerospike-2.27.0 lib/aerospike/utils/pool.rb
aerospike-2.26.0 lib/aerospike/utils/pool.rb
aerospike-2.25.0 lib/aerospike/utils/pool.rb
aerospike-2.24.0 lib/aerospike/utils/pool.rb
aerospike-2.23.0 lib/aerospike/utils/pool.rb