Sha256: 4cf097129c57a0203e6d56f3f73d986c5f14b25194d46f9cb3df848f6ead486b

Contents?: true

Size: 1.09 KB

Versions: 9

Compression:

Stored size: 1.09 KB

Contents

require 'active_support'

class LHS::Record

  module Batch
    extend ActiveSupport::Concern

    module ClassMethods
      # Process single entries fetched in batches
      def find_each(options = {})
        find_in_batches(options) do |records|
          records.each do |record|
            item = LHS::Item.new(record)
            yield new(LHS::Data.new(item, records._data, self))
          end
        end
      end

      # Process batches of entries
      def find_in_batches(options = {})
        fail 'No block given' unless block_given?
        start = options[:start] || 1
        batch_size = options[:batch_size] || LHS::Pagination::DEFAULT_LIMIT
        params = options[:params] || {}
        loop do # as suggested by Matz
          data = request(params: params.merge(limit_key => batch_size, pagination_key => start))
          batch_size = data._raw[limit_key]
          left = data._raw[total_key].to_i - data._raw[pagination_key].to_i - data._raw[limit_key].to_i
          yield new(data)
          break if left <= 0
          start += batch_size
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
lhs-6.4.0 lib/lhs/concerns/record/batch.rb
lhs-6.3.1 lib/lhs/concerns/record/batch.rb
lhs-6.3.0 lib/lhs/concerns/record/batch.rb
lhs-6.2.0 lib/lhs/concerns/record/batch.rb
lhs-6.1.0 lib/lhs/concerns/record/batch.rb
lhs-6.0.0 lib/lhs/concerns/record/batch.rb
lhs-5.7.1 lib/lhs/concerns/record/batch.rb
lhs-5.7.0 lib/lhs/concerns/record/batch.rb
lhs-5.6.6 lib/lhs/concerns/record/batch.rb