2010-10-28 05:14:19 +08:00
|
|
|
%% The contents of this file are subject to the Mozilla Public License
|
|
|
|
|
%% Version 1.1 (the "License"); you may not use this file except in
|
|
|
|
|
%% compliance with the License. You may obtain a copy of the License at
|
|
|
|
|
%% http://www.mozilla.org/MPL/
|
|
|
|
|
%%
|
|
|
|
|
%% Software distributed under the License is distributed on an "AS IS"
|
|
|
|
|
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
|
%% License for the specific language governing rights and limitations
|
|
|
|
|
%% under the License.
|
|
|
|
|
%%
|
|
|
|
|
%% The Original Code is RabbitMQ.
|
|
|
|
|
%%
|
|
|
|
|
%% The Initial Developers of the Original Code are LShift Ltd,
|
|
|
|
|
%% Cohesive Financial Technologies LLC, and Rabbit Technologies Ltd.
|
|
|
|
|
%%
|
|
|
|
|
%% Portions created before 22-Nov-2008 00:00:00 GMT by LShift Ltd,
|
|
|
|
|
%% Cohesive Financial Technologies LLC, or Rabbit Technologies Ltd
|
|
|
|
|
%% are Copyright (C) 2007-2008 LShift Ltd, Cohesive Financial
|
|
|
|
|
%% Technologies LLC, and Rabbit Technologies Ltd.
|
|
|
|
|
%%
|
|
|
|
|
%% Portions created by LShift Ltd are Copyright (C) 2007-2009 LShift
|
|
|
|
|
%% Ltd. Portions created by Cohesive Financial Technologies LLC are
|
|
|
|
|
%% Copyright (C) 2007-2009 Cohesive Financial Technologies
|
|
|
|
|
%% LLC. Portions created by Rabbit Technologies Ltd are Copyright
|
|
|
|
|
%% (C) 2007-2009 Rabbit Technologies Ltd.
|
|
|
|
|
%%
|
|
|
|
|
%% All Rights Reserved.
|
|
|
|
|
%%
|
|
|
|
|
%% Contributor(s): ______________________________________.
|
|
|
|
|
%%
|
|
|
|
|
-module(rabbit_stomp_processor).
|
|
|
|
|
-behaviour(gen_server).
|
|
|
|
|
|
|
|
|
|
-export([start_link/1, process_frame/2]).
|
|
|
|
|
-export([init/1, handle_call/3, handle_cast/2, handle_info/2,
|
|
|
|
|
code_change/3, terminate/2]).
|
|
|
|
|
|
|
|
|
|
-include_lib("amqp_client/include/amqp_client.hrl").
|
|
|
|
|
-include("rabbit_stomp_frame.hrl").
|
|
|
|
|
|
|
|
|
|
-record(state, {socket, session_id, channel, connection, subscriptions}).
|
|
|
|
|
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
%% Public API
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
start_link(Sock) ->
|
|
|
|
|
gen_server:start_link(?MODULE, [Sock], []).
|
|
|
|
|
|
|
|
|
|
process_frame(Pid, Frame = #stomp_frame{command = Command}) ->
|
|
|
|
|
gen_server:cast(Pid, {Command, Frame}).
|
|
|
|
|
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
%% Basic gen_server callbacks
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
init([Sock]) ->
|
|
|
|
|
process_flag(trap_exit, true),
|
|
|
|
|
{ok,
|
|
|
|
|
#state {
|
|
|
|
|
socket = Sock,
|
|
|
|
|
session_id = none,
|
|
|
|
|
channel = none,
|
|
|
|
|
connection = none,
|
|
|
|
|
subscriptions = dict:new()}
|
|
|
|
|
}.
|
|
|
|
|
|
|
|
|
|
terminate(_Reason, State) ->
|
|
|
|
|
shutdown_channel_and_connection(State).
|
|
|
|
|
|
|
|
|
|
handle_cast({"CONNECT", Frame}, State = #state{channel = none}) ->
|
|
|
|
|
{ok, DefaultVHost} = application:get_env(rabbit, default_vhost),
|
|
|
|
|
with_error_unwrapping(
|
|
|
|
|
fun() ->
|
|
|
|
|
do_login(rabbit_stomp_frame:header(Frame, "login"),
|
|
|
|
|
rabbit_stomp_frame:header(Frame, "passcode"),
|
2010-11-09 18:31:43 +08:00
|
|
|
rabbit_stomp_frame:header(Frame, "host",
|
2010-10-28 05:14:19 +08:00
|
|
|
binary_to_list(DefaultVHost)),
|
|
|
|
|
State)
|
|
|
|
|
end, State);
|
|
|
|
|
|
|
|
|
|
handle_cast(_Request, State = #state{channel = none}) ->
|
|
|
|
|
{noreply, send_error("Illegal command",
|
|
|
|
|
"You must log in using CONNECT first\n",
|
|
|
|
|
State)};
|
|
|
|
|
|
|
|
|
|
handle_cast({Command, Frame}, State) ->
|
|
|
|
|
ensure_receipt(Frame, State),
|
|
|
|
|
with_error_unwrapping(
|
|
|
|
|
fun() ->
|
|
|
|
|
handle_frame(Command, Frame, State)
|
|
|
|
|
end, State).
|
|
|
|
|
|
|
|
|
|
handle_info(#'basic.consume_ok'{}, State) ->
|
|
|
|
|
{noreply, State};
|
|
|
|
|
handle_info({Delivery = #'basic.deliver'{},
|
|
|
|
|
#amqp_msg{props = Props, payload = Payload}}, State) ->
|
|
|
|
|
{noreply, send_delivery(Delivery, Props, Payload, State)}.
|
|
|
|
|
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
%% Frame handlers
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
handle_frame("DISCONNECT", _Frame, State) ->
|
|
|
|
|
%% We'll get to shutdown the channels in terminate
|
|
|
|
|
{stop, normal, State};
|
|
|
|
|
|
|
|
|
|
handle_frame("SUBSCRIBE", Frame, State) ->
|
|
|
|
|
with_destination("SUBSCRIBE", Frame, State, fun do_subscribe/4);
|
|
|
|
|
|
|
|
|
|
handle_frame("UNSUBSCRIBE", Frame, State = #state{subscriptions = Subs}) ->
|
|
|
|
|
ConsumerTag = case rabbit_stomp_frame:header(Frame, "id") of
|
|
|
|
|
{ok, IdStr} ->
|
|
|
|
|
list_to_binary("T_" ++ IdStr);
|
|
|
|
|
not_found ->
|
|
|
|
|
case rabbit_stomp_frame:header(Frame,
|
|
|
|
|
"destination") of
|
|
|
|
|
{ok, QueueStr} ->
|
|
|
|
|
list_to_binary("Q_" ++ QueueStr);
|
|
|
|
|
not_found ->
|
|
|
|
|
missing
|
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
if
|
|
|
|
|
ConsumerTag == missing ->
|
|
|
|
|
{noreply, send_error("Missing destination or id",
|
|
|
|
|
"UNSUBSCRIBE must include a 'destination' "
|
|
|
|
|
"or 'id' header\n",
|
|
|
|
|
State)};
|
|
|
|
|
true ->
|
|
|
|
|
{noreply,
|
|
|
|
|
send_method(#'basic.cancel'{consumer_tag = ConsumerTag,
|
|
|
|
|
nowait = true},
|
|
|
|
|
State#state{subscriptions =
|
|
|
|
|
dict:erase(ConsumerTag, Subs)})}
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
handle_frame("SEND", Frame, State) ->
|
|
|
|
|
with_destination("SEND", Frame, State, fun do_send/4);
|
|
|
|
|
|
|
|
|
|
handle_frame("ACK", Frame, State = #state{session_id = SessionId,
|
|
|
|
|
subscriptions = Subs}) ->
|
|
|
|
|
case rabbit_stomp_frame:header(Frame, "message-id") of
|
|
|
|
|
{ok, IdStr} ->
|
|
|
|
|
case rabbit_stomp_util:parse_message_id(IdStr) of
|
|
|
|
|
{ok, {ConsumerTag, SessionId, DeliveryTag}} ->
|
|
|
|
|
{_DestHdr, SubChannel} = dict:fetch(ConsumerTag, Subs),
|
|
|
|
|
|
|
|
|
|
Method = #'basic.ack'{delivery_tag = DeliveryTag,
|
|
|
|
|
multiple = false},
|
|
|
|
|
|
|
|
|
|
case transactional(Frame) of
|
|
|
|
|
{yes, Transaction} ->
|
|
|
|
|
extend_transaction(Transaction,
|
|
|
|
|
{SubChannel, Method},
|
|
|
|
|
State);
|
|
|
|
|
no ->
|
|
|
|
|
amqp_channel:call(SubChannel, Method),
|
|
|
|
|
{noreply, State}
|
|
|
|
|
end;
|
|
|
|
|
_ ->
|
|
|
|
|
{noreply,
|
|
|
|
|
send_error(
|
|
|
|
|
"Invalid message-id",
|
|
|
|
|
"ACK must include a valid 'message-id' header\n",
|
|
|
|
|
State)}
|
|
|
|
|
end;
|
|
|
|
|
not_found ->
|
|
|
|
|
{noreply, send_error("Missing message-id",
|
|
|
|
|
"ACK must include a 'message-id' header\n",
|
|
|
|
|
State)}
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
handle_frame("BEGIN", Frame, State) ->
|
|
|
|
|
transactional_action(Frame, "BEGIN", fun begin_transaction/2, State);
|
|
|
|
|
|
|
|
|
|
handle_frame("COMMIT", Frame, State) ->
|
|
|
|
|
transactional_action(Frame, "COMMIT", fun commit_transaction/2, State);
|
|
|
|
|
|
|
|
|
|
handle_frame("ABORT", Frame, State) ->
|
|
|
|
|
transactional_action(Frame, "ABORT", fun abort_transaction/2, State);
|
|
|
|
|
|
|
|
|
|
handle_frame(Command, _Frame, State) ->
|
|
|
|
|
{noreply, send_error("Bad command",
|
|
|
|
|
"Could not interpret command " ++ Command ++ "\n",
|
|
|
|
|
State)}.
|
|
|
|
|
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
%% Internal helpers for processing frames callbacks
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
with_destination(Command, Frame, State, Fun) ->
|
|
|
|
|
case rabbit_stomp_frame:header(Frame, "destination") of
|
|
|
|
|
{ok, DestHdr} ->
|
|
|
|
|
case rabbit_stomp_util:parse_destination(DestHdr) of
|
|
|
|
|
{ok, Destination} ->
|
|
|
|
|
Fun(Destination, DestHdr, Frame, State);
|
|
|
|
|
{error, {invalid_destination, Type, Content}} ->
|
|
|
|
|
{noreply, send_error("Invalid destination",
|
|
|
|
|
"'~s' is not a valid ~p destination\n",
|
|
|
|
|
[Content, Type],
|
|
|
|
|
State)};
|
|
|
|
|
{error, {unknown_destination, Content}} ->
|
|
|
|
|
{noreply, send_error("Unknown destination",
|
|
|
|
|
"'~s' is not a valid destination.\n" ++
|
|
|
|
|
"Valid exchange types are: " ++
|
|
|
|
|
"/exchange, /topic or /queue.\n",
|
|
|
|
|
[Content],
|
|
|
|
|
State)}
|
|
|
|
|
end;
|
|
|
|
|
not_found ->
|
|
|
|
|
{noreply, send_error("Missing destination",
|
|
|
|
|
"~p must include a 'destination' header\n",
|
|
|
|
|
[Command],
|
|
|
|
|
State)}
|
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
|
do_login({ok, Login}, {ok, Passcode}, VirtualHost, State) ->
|
|
|
|
|
{ok, Connection} = amqp_connection:start(
|
|
|
|
|
direct, #amqp_params{
|
|
|
|
|
username = list_to_binary(Login),
|
|
|
|
|
password = list_to_binary(Passcode),
|
|
|
|
|
virtual_host = list_to_binary(VirtualHost)}),
|
|
|
|
|
{ok, Channel} = amqp_connection:open_channel(Connection),
|
|
|
|
|
SessionId = rabbit_guid:string_guid("session"),
|
|
|
|
|
{noreply, send_frame("CONNECTED",
|
|
|
|
|
[{"session", SessionId}],
|
|
|
|
|
"",
|
|
|
|
|
State#state{session_id = SessionId,
|
|
|
|
|
channel = Channel,
|
|
|
|
|
connection = Connection})};
|
|
|
|
|
do_login(_, _, _, State) ->
|
|
|
|
|
{noreply, send_error("Bad CONNECT", "Missing login or passcode header(s)\n",
|
|
|
|
|
State)}.
|
|
|
|
|
|
|
|
|
|
do_subscribe(Destination, DestHdr, Frame,
|
|
|
|
|
State = #state{subscriptions = Subs,
|
|
|
|
|
connection = Connection,
|
|
|
|
|
channel = MainChannel}) ->
|
|
|
|
|
|
|
|
|
|
Channel = case Destination of
|
|
|
|
|
{queue, _} ->
|
|
|
|
|
{ok, Channel1} = amqp_connection:open_channel(Connection),
|
|
|
|
|
amqp_channel:call(Channel1,
|
|
|
|
|
#'basic.qos'{prefetch_size = 0,
|
|
|
|
|
prefetch_count = 1,
|
|
|
|
|
global = false}),
|
|
|
|
|
Channel1;
|
|
|
|
|
_ -> MainChannel
|
|
|
|
|
end,
|
|
|
|
|
|
2010-10-28 15:59:43 +08:00
|
|
|
AckMode = rabbit_stomp_util:ack_mode(Frame),
|
2010-10-28 05:14:19 +08:00
|
|
|
|
|
|
|
|
{ok, Queue} = ensure_queue(subscribe, Destination, Channel),
|
|
|
|
|
|
2010-10-28 16:17:38 +08:00
|
|
|
{ok, ConsumerTag} = rabbit_stomp_util:consumer_tag(Frame),
|
2010-10-28 05:14:19 +08:00
|
|
|
|
|
|
|
|
amqp_channel:subscribe(Channel,
|
|
|
|
|
#'basic.consume'{
|
|
|
|
|
queue = Queue,
|
|
|
|
|
consumer_tag = ConsumerTag,
|
|
|
|
|
no_local = false,
|
|
|
|
|
no_ack = (AckMode == auto),
|
|
|
|
|
exclusive = false},
|
|
|
|
|
self()),
|
|
|
|
|
|
|
|
|
|
ExchangeAndKey = rabbit_stomp_util:parse_routing_information(Destination),
|
|
|
|
|
ok = ensure_queue_binding(Queue, ExchangeAndKey, Channel),
|
|
|
|
|
|
|
|
|
|
{noreply,
|
|
|
|
|
State#state{subscriptions =
|
|
|
|
|
dict:store(ConsumerTag, {DestHdr, Channel}, Subs)}}.
|
|
|
|
|
|
|
|
|
|
do_send(Destination, _DestHdr,
|
2010-10-28 19:57:58 +08:00
|
|
|
Frame = #stomp_frame{body_iolist = BodyFragments},
|
2010-10-28 05:14:19 +08:00
|
|
|
State = #state{channel = Channel}) ->
|
|
|
|
|
{ok, _Q} = ensure_queue(send, Destination, Channel),
|
|
|
|
|
|
2010-10-28 19:57:58 +08:00
|
|
|
Props = rabbit_stomp_util:message_properties(Frame),
|
2010-10-28 05:14:19 +08:00
|
|
|
|
|
|
|
|
{Exchange, RoutingKey} =
|
|
|
|
|
rabbit_stomp_util:parse_routing_information(Destination),
|
|
|
|
|
|
|
|
|
|
Method = #'basic.publish'{
|
|
|
|
|
exchange = list_to_binary(Exchange),
|
|
|
|
|
routing_key = list_to_binary(RoutingKey),
|
|
|
|
|
mandatory = false,
|
|
|
|
|
immediate = false},
|
|
|
|
|
|
|
|
|
|
case transactional(Frame) of
|
|
|
|
|
{yes, Transaction} ->
|
|
|
|
|
extend_transaction(Transaction,
|
|
|
|
|
{Method, Props, BodyFragments},
|
|
|
|
|
State);
|
|
|
|
|
no ->
|
|
|
|
|
{noreply, send_method(Method, Props, BodyFragments, State)}
|
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
|
ensure_receipt(Frame, State) ->
|
|
|
|
|
case rabbit_stomp_frame:header(Frame, "receipt") of
|
|
|
|
|
{ok, Id} -> send_frame("RECEIPT", [{"receipt-id", Id}], "", State);
|
|
|
|
|
not_found -> State
|
|
|
|
|
end.
|
|
|
|
|
|
2010-10-28 19:04:40 +08:00
|
|
|
send_delivery(Delivery = #'basic.deliver'{consumer_tag = ConsumerTag},
|
|
|
|
|
Properties, Body,
|
|
|
|
|
State = #state{session_id = SessionId,
|
|
|
|
|
subscriptions = Subs}) ->
|
2010-10-28 05:14:19 +08:00
|
|
|
{Destination, _SubChannel} = dict:fetch(ConsumerTag, Subs),
|
|
|
|
|
|
|
|
|
|
send_frame(
|
|
|
|
|
"MESSAGE",
|
2010-10-28 19:04:40 +08:00
|
|
|
rabbit_stomp_util:message_headers(Destination, SessionId,
|
|
|
|
|
Delivery, Properties),
|
2010-10-28 05:14:19 +08:00
|
|
|
Body,
|
|
|
|
|
State).
|
|
|
|
|
|
|
|
|
|
send_method(Method, State = #state{channel = Channel}) ->
|
|
|
|
|
amqp_channel:call(Channel, Method),
|
|
|
|
|
State.
|
|
|
|
|
|
|
|
|
|
send_method(Method, Properties, BodyFragments,
|
|
|
|
|
State = #state{channel = Channel}) ->
|
|
|
|
|
amqp_channel:call(Channel,Method, #amqp_msg{
|
|
|
|
|
props = Properties,
|
|
|
|
|
payload = lists:reverse(BodyFragments)}),
|
|
|
|
|
State.
|
|
|
|
|
|
|
|
|
|
with_error_unwrapping(Fun, State) ->
|
|
|
|
|
case catch Fun() of
|
|
|
|
|
{'EXIT',
|
|
|
|
|
{{server_initiated_close, ReplyCode, Explanation}, _}} ->
|
|
|
|
|
{noreply,
|
|
|
|
|
explain_amqp_death(ReplyCode, Explanation, State)};
|
|
|
|
|
{'EXIT', Reason} ->
|
|
|
|
|
{noreply,
|
|
|
|
|
send_priv_error("Processing error", "Processing error\n",
|
|
|
|
|
Reason, State)};
|
|
|
|
|
Result ->
|
|
|
|
|
Result
|
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
|
shutdown_channel_and_connection(State = #state{channel = Channel,
|
|
|
|
|
connection = Connection,
|
|
|
|
|
subscriptions = Subs}) ->
|
|
|
|
|
dict:fold(
|
|
|
|
|
fun(_ConsumerTag, {_DestHdr, SubChannel}, Acc) ->
|
|
|
|
|
case SubChannel of
|
|
|
|
|
Channel -> Acc;
|
|
|
|
|
_ ->
|
|
|
|
|
amqp_channel:close(SubChannel),
|
|
|
|
|
Acc
|
|
|
|
|
end
|
|
|
|
|
end, 0, Subs),
|
|
|
|
|
|
|
|
|
|
amqp_channel:close(Channel),
|
|
|
|
|
amqp_connection:close(Connection),
|
|
|
|
|
State#state{channel = none, connection = none}.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
%% Transaction Support
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
transactional(Frame) ->
|
|
|
|
|
case rabbit_stomp_frame:header(Frame, "transaction") of
|
|
|
|
|
{ok, Transaction} ->
|
|
|
|
|
{yes, Transaction};
|
|
|
|
|
not_found ->
|
|
|
|
|
no
|
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
|
transactional_action(Frame, Name, Fun, State) ->
|
|
|
|
|
case transactional(Frame) of
|
|
|
|
|
{yes, Transaction} ->
|
|
|
|
|
Fun(Transaction, State);
|
|
|
|
|
no ->
|
|
|
|
|
{noreply, send_error("Missing transaction",
|
|
|
|
|
Name ++ " must include a 'transaction' header\n",
|
|
|
|
|
State)}
|
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
|
with_transaction(Transaction, State, Fun) ->
|
|
|
|
|
case get({transaction, Transaction}) of
|
|
|
|
|
undefined ->
|
|
|
|
|
{noreply, send_error("Bad transaction",
|
|
|
|
|
"Invalid transaction identifier: ~p\n",
|
|
|
|
|
[Transaction],
|
|
|
|
|
State)};
|
|
|
|
|
Actions ->
|
|
|
|
|
Fun(Actions, State)
|
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
|
begin_transaction(Transaction, State) ->
|
|
|
|
|
put({transaction, Transaction}, []),
|
|
|
|
|
{noreply, State}.
|
|
|
|
|
|
|
|
|
|
extend_transaction(Transaction, Action, State0) ->
|
|
|
|
|
with_transaction(
|
|
|
|
|
Transaction, State0,
|
|
|
|
|
fun (Actions, State) ->
|
|
|
|
|
put({transaction, Transaction}, [Action | Actions]),
|
|
|
|
|
{noreply, State}
|
|
|
|
|
end).
|
|
|
|
|
|
|
|
|
|
commit_transaction(Transaction, State0) ->
|
|
|
|
|
with_transaction(
|
|
|
|
|
Transaction, State0,
|
|
|
|
|
fun (Actions, State) ->
|
|
|
|
|
FinalState = lists:foldr(fun perform_transaction_action/2,
|
|
|
|
|
State,
|
|
|
|
|
Actions),
|
|
|
|
|
erase({transaction, Transaction}),
|
|
|
|
|
{noreply, FinalState}
|
|
|
|
|
end).
|
|
|
|
|
|
|
|
|
|
abort_transaction(Transaction, State0) ->
|
|
|
|
|
with_transaction(
|
|
|
|
|
Transaction, State0,
|
|
|
|
|
fun (_Actions, State) ->
|
|
|
|
|
erase({transaction, Transaction}),
|
|
|
|
|
{noreply, State}
|
|
|
|
|
end).
|
|
|
|
|
|
|
|
|
|
perform_transaction_action({Method}, State) ->
|
|
|
|
|
send_method(Method, State);
|
|
|
|
|
perform_transaction_action({Channel, Method}, State) ->
|
|
|
|
|
amqp_channel:call(Channel, Method),
|
|
|
|
|
State;
|
|
|
|
|
perform_transaction_action({Method, Props, BodyFragments}, State) ->
|
|
|
|
|
send_method(Method, Props, BodyFragments, State).
|
|
|
|
|
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
%% Queue and Binding Setup
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
ensure_queue(subscribe, {exchange, _}, Channel) ->
|
|
|
|
|
%% Create anonymous, exclusive queue for SUBSCRIBE on /exchange destinations
|
|
|
|
|
#'queue.declare_ok'{queue = Queue} =
|
|
|
|
|
amqp_channel:call(Channel, #'queue.declare'{auto_delete = true,
|
|
|
|
|
exclusive = true}),
|
|
|
|
|
{ok, Queue};
|
|
|
|
|
ensure_queue(send, {exchange, _}, _Channel) ->
|
|
|
|
|
%% Don't create queues on SEND for /exchange destinations
|
|
|
|
|
{ok, undefined};
|
|
|
|
|
ensure_queue(_, {queue, Name}, Channel) ->
|
|
|
|
|
%% Always create named queue for /queue destinations
|
|
|
|
|
Queue = list_to_binary(Name),
|
|
|
|
|
#'queue.declare_ok'{queue = Queue} =
|
|
|
|
|
amqp_channel:call(Channel,
|
|
|
|
|
#'queue.declare'{durable = true,
|
|
|
|
|
queue = Queue}),
|
|
|
|
|
{ok, Queue};
|
|
|
|
|
ensure_queue(subscribe, {topic, _}, Channel) ->
|
|
|
|
|
%% Create anonymous, exclusive queue for SUBSCRIBE on /topic destinations
|
|
|
|
|
#'queue.declare_ok'{queue = Queue} =
|
|
|
|
|
amqp_channel:call(Channel, #'queue.declare'{auto_delete = true,
|
|
|
|
|
exclusive = true}),
|
|
|
|
|
{ok, Queue};
|
|
|
|
|
ensure_queue(send, {topic, _}, _Channel) ->
|
|
|
|
|
%% Don't create queues on SEND for /topic destinations
|
|
|
|
|
{ok, undefined}.
|
|
|
|
|
|
|
|
|
|
ensure_queue_binding(Queue, {"", Queue}, _Channel) ->
|
|
|
|
|
%% i.e., we should only be asked to bind to the default exchange a
|
|
|
|
|
%% queue with its own name
|
|
|
|
|
ok;
|
|
|
|
|
ensure_queue_binding(Queue, {Exchange, RoutingKey}, Channel) ->
|
|
|
|
|
#'queue.bind_ok'{} =
|
|
|
|
|
amqp_channel:call(Channel,
|
|
|
|
|
#'queue.bind'{
|
|
|
|
|
queue = Queue,
|
|
|
|
|
exchange = list_to_binary(Exchange),
|
|
|
|
|
routing_key = list_to_binary(RoutingKey)}),
|
|
|
|
|
ok.
|
|
|
|
|
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
%% Frame sending utilities
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
send_frame(Command, Headers, BodyFragments, State) ->
|
|
|
|
|
send_frame(#stomp_frame{command = Command,
|
|
|
|
|
headers = Headers,
|
|
|
|
|
body_iolist = BodyFragments},
|
|
|
|
|
State).
|
|
|
|
|
|
|
|
|
|
send_frame(Frame, State = #state{socket = Sock}) ->
|
|
|
|
|
%% We ignore certain errors here, as we will be receiving an
|
|
|
|
|
%% asynchronous notification of the same (or a related) fault
|
|
|
|
|
%% shortly anyway. See bug 21365.
|
|
|
|
|
%% io:format("Sending ~p~n", [Frame]),
|
|
|
|
|
case gen_tcp:send(Sock, rabbit_stomp_frame:serialize(Frame)) of
|
|
|
|
|
ok -> State;
|
|
|
|
|
{error, closed} -> State;
|
|
|
|
|
{error, enotconn} -> State;
|
|
|
|
|
{error, Code} ->
|
|
|
|
|
error_logger:error_msg("Error sending STOMP frame ~p: ~p~n",
|
|
|
|
|
[Frame#stomp_frame.command,
|
|
|
|
|
Code]),
|
|
|
|
|
State
|
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
|
explain_amqp_death(ReplyCode, Explanation, State) ->
|
|
|
|
|
ErrorName = ?PROTOCOL:amqp_exception(ReplyCode),
|
|
|
|
|
send_error(atom_to_list(ErrorName), "~s\n",
|
|
|
|
|
[Explanation], State).
|
|
|
|
|
|
|
|
|
|
send_error(Message, Detail, State) ->
|
|
|
|
|
send_priv_error(Message, Detail, none, State).
|
|
|
|
|
|
|
|
|
|
send_error(Message, Format, Args, State) ->
|
|
|
|
|
send_priv_error(Message, Format, Args, none, State).
|
|
|
|
|
|
|
|
|
|
send_priv_error(Message, Detail, ServerPrivateDetail, State) ->
|
|
|
|
|
error_logger:error_msg("STOMP error frame sent:~n" ++
|
|
|
|
|
"Message: ~p~n" ++
|
|
|
|
|
"Detail: ~p~n" ++
|
|
|
|
|
"Server private detail: ~p~n",
|
|
|
|
|
[Message, Detail, ServerPrivateDetail]),
|
|
|
|
|
send_frame("ERROR", [{"message", Message},
|
|
|
|
|
{"content-type", "text/plain"}], Detail, State).
|
|
|
|
|
|
|
|
|
|
send_priv_error(Message, Format, Args, ServerPrivateDetail, State) ->
|
|
|
|
|
send_priv_error(Message, lists:flatten(io_lib:format(Format, Args)),
|
|
|
|
|
ServerPrivateDetail, State).
|
|
|
|
|
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
%% Skeleton gen_server callbacks
|
|
|
|
|
%%----------------------------------------------------------------------------
|
|
|
|
|
handle_call(_Cmd, _From, State) ->
|
|
|
|
|
State.
|
|
|
|
|
|
|
|
|
|
code_change(_OldVsn, State, _Extra) ->
|
|
|
|
|
{ok, State}.
|
|
|
|
|
|