Class: Rdkafka::AbstractHandle

Inherits:
FFI::Struct
  • Object
show all
Defined in:
lib/rdkafka/abstract_handle.rb

Defined Under Namespace

Classes: WaitTimeoutError

Constant Summary collapse

REGISTRY =

Subclasses must define their own layout, and the layout must start with:

layout :pending, :bool, :response, :int

{}

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.register(handle) ⇒ Object



16
17
18
19
# File 'lib/rdkafka/abstract_handle.rb', line 16

def self.register(handle)
  address = handle.to_ptr.address
  REGISTRY[address] = handle
end

.remove(address) ⇒ Object



21
22
23
# File 'lib/rdkafka/abstract_handle.rb', line 21

def self.remove(address)
  REGISTRY.delete(address)
end

Instance Method Details

#create_resultObject

Returns operation-specific result.

Returns:

  • (Object)

    operation-specific result



69
70
71
# File 'lib/rdkafka/abstract_handle.rb', line 69

def create_result
  raise "Must be implemented by subclass!"
end

#operation_nameString

Returns the name of the operation (e.g. "delivery").

Returns:

  • (String)

    the name of the operation (e.g. "delivery")



64
65
66
# File 'lib/rdkafka/abstract_handle.rb', line 64

def operation_name
  raise "Must be implemented by subclass!"
end

#pending?Boolean

Whether the handle is still pending.

Returns:

  • (Boolean)


28
29
30
# File 'lib/rdkafka/abstract_handle.rb', line 28

def pending?
  self[:pending]
end

#raise_errorObject

Allow subclasses to override

Raises:



74
75
76
# File 'lib/rdkafka/abstract_handle.rb', line 74

def raise_error
  raise RdkafkaError.new(self[:response])
end

#wait(max_wait_timeout: 60, wait_timeout: 0.1) ⇒ Object

Wait for the operation to complete or raise an error if this takes longer than the timeout. If there is a timeout this does not mean the operation failed, rdkafka might still be working on the operation. In this case it is possible to call wait again.

Parameters:

  • max_wait_timeout (Numeric, nil) (defaults to: 60)

    Amount of time to wait before timing out. If this is nil it does not time out.

  • wait_timeout (Numeric) (defaults to: 0.1)

    Amount of time we should wait before we recheck if the operation has completed

Returns:

  • (Object)

    Operation-specific result

Raises:



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/rdkafka/abstract_handle.rb', line 43

def wait(max_wait_timeout: 60, wait_timeout: 0.1)
  timeout = if max_wait_timeout
              CURRENT_TIME.call + max_wait_timeout
            else
              nil
            end
  loop do
    if pending?
      if timeout && timeout <= CURRENT_TIME.call
        raise WaitTimeoutError.new("Waiting for #{operation_name} timed out after #{max_wait_timeout} seconds")
      end
      sleep wait_timeout
    elsif self[:response] != 0
      raise_error
    else
      return create_result
    end
  end
end