defmodule OffBroadwayAmqp10.Amqp10.Client.Impl do
@moduledoc """
AMQP Client Wrapper
"""
alias OffBroadwayAmqp10.Amqp10.{Client, State}
require Record
@hrl_path Path.join(:code.lib_dir(:amqp10_common), "include/amqp10_framing.hrl")
@amqp_value_record_tag :"v1_0.amqp_value"
Record.defrecord(
:amqp_value,
@amqp_value_record_tag,
Record.extract(@amqp_value_record_tag, from: @hrl_path)
)
@amqp_sequence_record_tag :"v1_0.amqp_sequence"
Record.defrecord(
:amqp_sequence,
@amqp_sequence_record_tag,
Record.extract(@amqp_sequence_record_tag, from: @hrl_path)
)
@behaviour Client
@impl Client
def open_connection(%State{} = state) do
:amqp10_client.open_connection(state.connection_config)
end
@impl Client
def begin_session(%State{} = state) do
:amqp10_client.begin_session(state.connection)
end
@impl Client
def attach(%State{} = state) do
:amqp10_client_session.attach(state.session, state.receiver_config)
end
@impl Client
def flow_link_credit(%State{} = state, demand) do
:amqp10_client.flow_link_credit(state.receiver, demand, :never)
end
@impl Client
def accept_msg(%State{} = state, ack_data) do
:amqp10_client.accept_msg(state.receiver, ack_data)
end
@impl Client
def body(raw_msg) do
body = :amqp10_msg.body(raw_msg)
cond do
Record.is_record(body, @amqp_value_record_tag) ->
packed_content = amqp_value(body, :content)
:amqp10_client_types.unpack(packed_content)
match?([value] when is_binary(value), body) ->
List.first(body)
is_list(body) && Record.is_record(List.first(body), @amqp_sequence_record_tag) ->
raise "Not implemented - AMQP 1.0 Sequence is not implemented - Please create an issue with a sample message if you need it"
end
end
@impl Client
def headers(raw_msg) do
:amqp10_msg.headers(raw_msg)
end
@impl Client
def properties(raw_msg) do
:amqp10_msg.properties(raw_msg)
end
@impl Client
def application_properties(raw_msg) do
:amqp10_msg.application_properties(raw_msg)
end
@impl Client
def annotations(raw_msg) do
:amqp10_msg.message_annotations(raw_msg)
end
end