Packages
amqp_client
3.11.21
4.2.1
4.2.0
retired
4.1.6
4.1.5
retired
4.1.5-rc.2
retired
4.1.5-rc.1
retired
4.1.5-1
4.0.3
4.0.3-rc.1
3.13.0-rc.2
3.13.0-rc.1
3.12.14
3.12.13
3.12.12
3.12.11
3.12.10
3.12.9
3.12.8
3.12.7
3.12.6
3.12.5
3.12.4
3.12.3
3.12.2
3.12.1
3.12.0
3.12.0-rc.4
3.11.28
3.11.27
3.11.26
3.11.25
3.11.24
3.11.23
3.11.22
3.11.21
3.11.20
3.11.19
3.11.18
3.11.17
3.11.13
3.11.12
3.11.11
3.11.10
3.11.9
3.11.8
3.11.7
3.11.6
3.11.5
3.11.4
3.11.3
3.11.2
3.11.1
3.11.0
3.11.0-rc.2
3.11.0-rc.1
3.11.0-1
3.10.20
3.10.19
3.10.18
3.10.17
3.10.16
3.10.15
3.10.14
3.10.13
3.10.12
3.10.11
3.10.10
3.10.9
3.10.8
3.10.7
3.10.6
3.10.5
3.10.4
3.10.3
3.10.2
3.10.1
3.10.0
3.10.0-rc.6
3.10.0-rc.5
3.9.29
3.9.28
3.9.27
3.9.26
3.9.25
3.9.24
3.9.23
3.9.22
3.9.21
3.9.20
3.9.19
3.9.18
3.9.17
3.9.16
3.9.15
3.9.11
3.9.8
3.9.5
3.9.4
3.9.1
3.8.35
3.8.34
3.8.33
3.8.32
3.8.31
3.8.30
3.8.25
3.8.21
3.8.19
3.8.14
3.8.11
3.8.10
3.8.10-rc.1
3.8.9
3.8.7
3.8.6
3.8.6-rc.2
3.8.6-rc.1
3.8.5
3.8.5-rc.2
3.8.5-rc.1
3.8.4
3.8.4-rc.3
3.8.4-rc.1
3.8.3
3.8.3-rc.2
3.8.3-rc.1
3.8.2
3.8.2-rc.1
3.8.1
3.8.1-rc.1
3.8.0
3.8.0-rc.3
3.8.0-rc.2
3.8.0-rc.1
3.7.28
3.7.27
3.7.27-rc.2
3.7.27-rc.1
3.7.26
3.7.25
3.7.25-rc.1
3.7.24
3.7.24-rc.2
3.7.24-rc.1
3.7.23
3.7.23-rc.1
3.7.22
3.7.22-rc.2
3.7.22-rc.1
3.7.21
3.7.20
3.7.20-rc.2
3.7.20-rc.1
3.7.19
3.7.18
3.7.18-rc.1
3.7.17
3.7.17-rc.3
3.7.17-rc.2
3.7.15
3.7.14
3.7.14-rc.2
3.7.14-rc.1
3.7.13
3.7.13-rc.2
3.7.13-rc.1
3.7.12
3.7.12-rc.2
3.7.12-rc.1
3.7.11
3.7.11-rc.2
3.7.11-rc.1
3.7.10-rc.4
3.7.10-rc.3
3.7.10-rc.2
3.7.10-rc.1
3.7.9
3.7.9-rc.3
3.7.9-rc.2
3.7.8
3.7.8-rc.4
3.7.8-rc.3
3.7.8-rc.2
3.7.8-rc.1
3.7.7
3.7.7-rc.2
3.7.7-rc.1
3.7.6
3.7.6-rc.2
3.7.6-rc.1
3.7.5
3.7.5-rc.1
3.7.4
3.7.4-rc.4
3.7.4-rc.3
3.7.4-rc.2
3.7.4-rc.1
3.7.3
3.7.3-rc.2
3.7.3-rc.1
3.7.2
3.7.1
3.7.0-rc.2
3.6.16
3.6.16-rc.1
3.6.15
3.6.15-rc.1
3.6.14
3.6.13
3.6.12
3.6.11
3.6.10
3.6.9
3.6.8
3.6.7
3.6.7-pre.1
3.5.6
3.5.0
3.4.0
3.3.5
3.0.2
0.0.0-rc.1
RabbitMQ AMQP Client
Current section
Files
Jump to
Current section
Files
src/amqp_gen_consumer.erl
%% This Source Code Form is subject to the terms of the Mozilla Public
%% License, v. 2.0. If a copy of the MPL was not distributed with this
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
%%
%% Copyright (c) 2011-2023 VMware, Inc. or its affiliates. All rights reserved.
%%
%% @doc A behaviour module for implementing consumers for
%% amqp_channel. To specify a consumer implementation for a channel,
%% use amqp_connection:open_channel/{2,3}.
%% <br/>
%% All callbacks are called within the gen_consumer process. <br/>
%% <br/>
%% See comments in amqp_gen_consumer.erl source file for documentation
%% on the callback functions.
%% <br/>
%% Note that making calls to the channel from the callback module will
%% result in deadlock.
-module(amqp_gen_consumer).
-include("amqp_client.hrl").
-behaviour(gen_server2).
-export([start_link/3, call_consumer/2, call_consumer/3, call_consumer/4]).
-export([init/1, terminate/2, code_change/3, handle_call/3, handle_cast/2,
handle_info/2, prioritise_info/3]).
-record(state, {module,
module_state}).
-type ok_error() :: {ok, State :: term()} | {error, Reason:: term(), State :: term()}.
%% This callback is invoked by the channel, when it starts
%% up. Use it to initialize the state of the consumer. In case of
-callback init(Args :: term()) -> {ok, State :: term()} | {stop, Reason :: term()} | ignore.
%% This callback is invoked by the channel before a basic.consume
-callback handle_consume(#'basic.consume'{}, Sender :: pid(), State :: term()) -> ok_error().
%% This callback is invoked by the channel every time a
%% basic.consume_ok is received from the server. Consume is the original
%% method sent out to the server - it can be used to associate the
%% call with the response.
-callback handle_consume_ok(#'basic.consume_ok'{}, #'basic.consume'{}, State :: term()) -> ok_error().
%% This callback is invoked by the channel every time a basic.cancel
%% is sent to the server.
-callback handle_cancel(#'basic.cancel'{}, State :: term()) -> ok_error().
%% This callback is invoked by the channel every time a basic.cancel_ok
%% is received from the server.
-callback handle_cancel_ok(CancelOk :: #'basic.cancel_ok'{}, #'basic.cancel'{}, State :: term()) -> ok_error().
%% This callback is invoked by the channel every time a basic.cancel
%% is received from the server.
-callback handle_server_cancel(#'basic.cancel'{}, State :: term()) -> ok_error().
%% This callback is invoked by the channel every time a basic.deliver
%% is received from the server.
-callback handle_deliver(#'basic.deliver'{}, #amqp_msg{}, State :: term()) -> ok_error().
%% This callback is invoked by the channel every time a basic.deliver
%% is received from the server. Only relevant for channels that use
%% direct client connection and manual flow control.
-callback handle_deliver(#'basic.deliver'{}, #amqp_msg{}, DeliveryCtx :: {pid(), pid(), pid()}, State :: term()) -> ok_error().
%% This callback is invoked the consumer process receives a
%% message.
-callback handle_info(Info :: term(), State :: term()) -> ok_error().
%% This callback is invoked by the channel when calling
%% amqp_channel:call_consumer/2. Reply is the term that
%% amqp_channel:call_consumer/2 will return. If the callback
%% returns {noreply, _}, then the caller to
%% amqp_channel:call_consumer/2 and the channel remain blocked
%% until gen_server2:reply/2 is used with the provided From as
%% the first argument.
-callback handle_call(Msg :: term(), From :: term(), State :: term()) ->
{reply, Reply :: term(), NewState :: term()} |
{noreply, NewState :: term()} |
{error, Reason :: term(), NewState :: term()}.
%% This callback is invoked by the channel after it has shut down and
%% just before its process exits.
-callback terminate(Reason :: term(), State :: term()) -> any().
%%---------------------------------------------------------------------------
%% Interface
%%---------------------------------------------------------------------------
%% @type ok_error() = {ok, state()} | {error, reason(), state()}.
%% Denotes a successful or an error return from a consumer module call.
start_link(ConsumerModule, ExtraParams, Identity) ->
gen_server2:start_link(
?MODULE, [ConsumerModule, ExtraParams, Identity], []).
%% @spec (Consumer, Msg) -> ok
%% where
%% Consumer = pid()
%% Msg = any()
%%
%% @doc This function is used to perform arbitrary calls into the
%% consumer module.
call_consumer(Pid, Msg) ->
gen_server2:call(Pid, {consumer_call, Msg}, amqp_util:call_timeout()).
%% @spec (Consumer, Method, Args) -> ok
%% where
%% Consumer = pid()
%% Method = amqp_method()
%% Args = any()
%%
%% @doc This function is used by amqp_channel to forward received
%% methods and deliveries to the consumer module.
call_consumer(Pid, Method, Args) ->
gen_server2:call(Pid, {consumer_call, Method, Args}, amqp_util:call_timeout()).
call_consumer(Pid, Method, Args, DeliveryCtx) ->
gen_server2:call(Pid, {consumer_call, Method, Args, DeliveryCtx}, amqp_util:call_timeout()).
%%---------------------------------------------------------------------------
%% gen_server2 callbacks
%%---------------------------------------------------------------------------
init([ConsumerModule, ExtraParams, Identity]) ->
?store_proc_name(Identity),
case ConsumerModule:init(ExtraParams) of
{ok, MState} ->
{ok, #state{module = ConsumerModule, module_state = MState}};
{stop, Reason} ->
{stop, Reason};
ignore ->
ignore
end.
prioritise_info({'DOWN', _MRef, process, _Pid, _Info}, _Len, _State) -> 1;
prioritise_info(_, _Len, _State) -> 0.
consumer_call_reply(Return, State) ->
case Return of
{ok, NewMState} ->
{reply, ok, State#state{module_state = NewMState}};
{error, Reason, NewMState} ->
{stop, {error, Reason}, {error, Reason},
State#state{module_state = NewMState}}
end.
handle_call({consumer_call, Msg}, From,
State = #state{module = ConsumerModule,
module_state = MState}) ->
case ConsumerModule:handle_call(Msg, From, MState) of
{noreply, NewMState} ->
{noreply, State#state{module_state = NewMState}};
{reply, Reply, NewMState} ->
{reply, Reply, State#state{module_state = NewMState}};
{error, Reason, NewMState} ->
{stop, {error, Reason}, {error, Reason},
State#state{module_state = NewMState}}
end;
handle_call({consumer_call, Method, Args}, _From,
State = #state{module = ConsumerModule,
module_state = MState}) ->
Return =
case Method of
#'basic.consume'{} ->
ConsumerModule:handle_consume(Method, Args, MState);
#'basic.consume_ok'{} ->
ConsumerModule:handle_consume_ok(Method, Args, MState);
#'basic.cancel'{} ->
case Args of
none -> %% server-sent
ConsumerModule:handle_server_cancel(Method, MState);
Pid when is_pid(Pid) -> %% client-sent
ConsumerModule:handle_cancel(Method, MState)
end;
#'basic.cancel_ok'{} ->
ConsumerModule:handle_cancel_ok(Method, Args, MState);
#'basic.deliver'{} ->
ConsumerModule:handle_deliver(Method, Args, MState)
end,
consumer_call_reply(Return, State);
%% only supposed to be used with basic.deliver
handle_call({consumer_call, Method = #'basic.deliver'{}, Args, DeliveryCtx}, _From,
State = #state{module = ConsumerModule,
module_state = MState}) ->
Return = ConsumerModule:handle_deliver(Method, Args, DeliveryCtx, MState),
consumer_call_reply(Return, State).
handle_cast(_What, State) ->
{noreply, State}.
handle_info(Info, State = #state{module_state = MState,
module = ConsumerModule}) ->
case ConsumerModule:handle_info(Info, MState) of
{ok, NewMState} ->
{noreply, State#state{module_state = NewMState}};
{error, Reason, NewMState} ->
{stop, {error, Reason}, State#state{module_state = NewMState}}
end.
terminate(Reason, #state{module = ConsumerModule, module_state = MState}) ->
ConsumerModule:terminate(Reason, MState).
code_change(_OldVsn, State, _Extra) ->
{ok, State}.