Sha256: 32326ca193f69621c01f2e2ee2ac09dfe82c206c935b8f4764f836e82febb104

Contents?: true

Size: 1.81 KB

Versions: 6

Compression:

Stored size: 1.81 KB

Contents

require "kafka/protocol/message"

module Kafka

  # Buffers messages for specific topics/partitions.
  class MessageBuffer
    include Enumerable

    attr_reader :size, :bytesize

    def initialize
      @buffer = {}
      @size = 0
      @bytesize = 0
    end

    def write(value:, key:, topic:, partition:, create_time: Time.now)
      message = Protocol::Message.new(key: key, value: value, create_time: create_time)

      buffer_for(topic, partition) << message

      @size += 1
      @bytesize += message.bytesize
    end

    def concat(messages, topic:, partition:)
      buffer_for(topic, partition).concat(messages)

      @size += messages.count
      @bytesize += messages.map(&:bytesize).reduce(:+)
    end

    def to_h
      @buffer
    end

    def empty?
      @buffer.empty?
    end

    def each
      @buffer.each do |topic, messages_for_topic|
        messages_for_topic.each do |partition, messages_for_partition|
          yield topic, partition, messages_for_partition
        end
      end
    end

    # Clears buffered messages for the given topic and partition.
    #
    # @param topic [String] the name of the topic.
    # @param partition [Integer] the partition id.
    #
    # @return [nil]
    def clear_messages(topic:, partition:)
      @size -= @buffer[topic][partition].count
      @bytesize -= @buffer[topic][partition].map(&:bytesize).reduce(:+)

      @buffer[topic].delete(partition)
      @buffer.delete(topic) if @buffer[topic].empty?
    end

    def messages_for(topic:, partition:)
      buffer_for(topic, partition)
    end

    # Clears messages across all topics and partitions.
    #
    # @return [nil]
    def clear
      @buffer = {}
      @size = 0
    end

    private

    def buffer_for(topic, partition)
      @buffer[topic] ||= {}
      @buffer[topic][partition] ||= []
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby-kafka-0.3.7 lib/kafka/message_buffer.rb
ruby-kafka-0.3.6 lib/kafka/message_buffer.rb
ruby-kafka-0.3.5 lib/kafka/message_buffer.rb
ruby-kafka-0.3.4 lib/kafka/message_buffer.rb
ruby-kafka-0.3.3 lib/kafka/message_buffer.rb
ruby-kafka-0.3.2 lib/kafka/message_buffer.rb