summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2014-01-08 17:53:41 +0000
committerMatthias Radestock <matthias@rabbitmq.com>2014-01-08 17:53:41 +0000
commit0ff332cd199a119e3441d57ba05094a9edf7b922 (patch)
treebd1ac8eb7101aaf8a4fd237c7d0c0e32bb436c10
parentc8ab5ed6172aa977b3ebacf3c799076d9388bf16 (diff)
downloadrabbitmq-server-0ff332cd199a119e3441d57ba05094a9edf7b922.tar.gz
cosmetic: whitespace
-rw-r--r--src/rabbit_channel.erl102
1 files changed, 48 insertions, 54 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl
index a3a0c754..62e6994e 100644
--- a/src/rabbit_channel.erl
+++ b/src/rabbit_channel.erl
@@ -681,12 +681,11 @@ handle_method(#'basic.publish'{exchange = ExchangeNameBin,
handle_method(#'basic.nack'{delivery_tag = DeliveryTag,
multiple = Multiple,
- requeue = Requeue},
- _, State) ->
+ requeue = Requeue}, _, State) ->
reject(DeliveryTag, Requeue, Multiple, State);
handle_method(#'basic.ack'{delivery_tag = DeliveryTag,
- multiple = Multiple},
+ multiple = Multiple},
_, State = #ch{unacked_message_q = UAMQ, tx = Tx}) ->
{Acked, Remaining} = collect_acks(UAMQ, DeliveryTag, Multiple),
State1 = State#ch{unacked_message_q = Remaining},
@@ -697,8 +696,7 @@ handle_method(#'basic.ack'{delivery_tag = DeliveryTag,
State1#ch{tx = {Msgs, Acks1}}
end};
-handle_method(#'basic.get'{queue = QueueNameBin,
- no_ack = NoAck},
+handle_method(#'basic.get'{queue = QueueNameBin, no_ack = NoAck},
_, State = #ch{writer_pid = WriterPid,
conn_pid = ConnPid,
limiter = Limiter,
@@ -736,9 +734,9 @@ handle_method(#'basic.consume'{queue = QueueNameBin,
exclusive = ExclusiveConsume,
nowait = NoWait,
arguments = Args},
- _, State = #ch{conn_pid = ConnPid,
- limiter = Limiter,
- consumer_mapping = ConsumerMapping}) ->
+ _, State = #ch{conn_pid = ConnPid,
+ limiter = Limiter,
+ consumer_mapping = ConsumerMapping}) ->
case dict:find(ConsumerTag, ConsumerMapping) of
error ->
QueueName = expand_queue_name_shortcut(QueueNameBin, State),
@@ -788,8 +786,7 @@ handle_method(#'basic.consume'{queue = QueueNameBin,
not_allowed, "attempt to reuse consumer tag '~s'", [ConsumerTag])
end;
-handle_method(#'basic.cancel'{consumer_tag = ConsumerTag,
- nowait = NoWait},
+handle_method(#'basic.cancel'{consumer_tag = ConsumerTag, nowait = NoWait},
_, State = #ch{consumer_mapping = ConsumerMapping,
queue_consumers = QCons}) ->
OkMsg = #'basic.cancel_ok'{consumer_tag = ConsumerTag},
@@ -836,13 +833,13 @@ handle_method(#'basic.qos'{prefetch_size = Size}, _, _State) when Size /= 0 ->
rabbit_misc:protocol_error(not_implemented,
"prefetch_size!=0 (~w)", [Size]);
-handle_method(#'basic.qos'{prefetch_count = 0}, _,
- State = #ch{limiter = Limiter}) ->
+handle_method(#'basic.qos'{prefetch_count = 0},
+ _, State = #ch{limiter = Limiter}) ->
Limiter1 = rabbit_limiter:unlimit_prefetch(Limiter),
{reply, #'basic.qos_ok'{}, State#ch{limiter = Limiter1}};
-handle_method(#'basic.qos'{prefetch_count = PrefetchCount}, _,
- State = #ch{limiter = Limiter, unacked_message_q = UAMQ}) ->
+handle_method(#'basic.qos'{prefetch_count = PrefetchCount},
+ _, State = #ch{limiter = Limiter, unacked_message_q = UAMQ}) ->
%% TODO queue:len(UAMQ) is not strictly right since that counts
%% unacked messages from basic.get too. Pretty obscure though.
Limiter1 = rabbit_limiter:limit_prefetch(Limiter,
@@ -851,8 +848,7 @@ handle_method(#'basic.qos'{prefetch_count = PrefetchCount}, _,
maybe_limit_queues(Limiter, Limiter1, State#ch{limiter = Limiter1})};
handle_method(#'basic.recover_async'{requeue = true},
- _, State = #ch{unacked_message_q = UAMQ,
- limiter = Limiter}) ->
+ _, State = #ch{unacked_message_q = UAMQ, limiter = Limiter}) ->
OkFun = fun () -> ok end,
UAMQL = queue:to_list(UAMQ),
foreach_per_queue(
@@ -874,19 +870,18 @@ handle_method(#'basic.recover'{requeue = Requeue}, Content, State) ->
Content, State),
{reply, #'basic.recover_ok'{}, State1};
-handle_method(#'basic.reject'{delivery_tag = DeliveryTag,
- requeue = Requeue},
+handle_method(#'basic.reject'{delivery_tag = DeliveryTag, requeue = Requeue},
_, State) ->
reject(DeliveryTag, Requeue, false, State);
-handle_method(#'exchange.declare'{exchange = ExchangeNameBin,
- type = TypeNameBin,
- passive = false,
- durable = Durable,
+handle_method(#'exchange.declare'{exchange = ExchangeNameBin,
+ type = TypeNameBin,
+ passive = false,
+ durable = Durable,
auto_delete = AutoDelete,
- internal = Internal,
- nowait = NoWait,
- arguments = Args},
+ internal = Internal,
+ nowait = NoWait,
+ arguments = Args},
_, State = #ch{virtual_host = VHostPath}) ->
CheckedType = rabbit_exchange:check_type(TypeNameBin),
ExchangeName = rabbit_misc:r(VHostPath, exchange, ExchangeNameBin),
@@ -919,17 +914,17 @@ handle_method(#'exchange.declare'{exchange = ExchangeNameBin,
return_ok(State, NoWait, #'exchange.declare_ok'{});
handle_method(#'exchange.declare'{exchange = ExchangeNameBin,
- passive = true,
- nowait = NoWait},
+ passive = true,
+ nowait = NoWait},
_, State = #ch{virtual_host = VHostPath}) ->
ExchangeName = rabbit_misc:r(VHostPath, exchange, ExchangeNameBin),
check_not_default_exchange(ExchangeName),
_ = rabbit_exchange:lookup_or_die(ExchangeName),
return_ok(State, NoWait, #'exchange.declare_ok'{});
-handle_method(#'exchange.delete'{exchange = ExchangeNameBin,
+handle_method(#'exchange.delete'{exchange = ExchangeNameBin,
if_unused = IfUnused,
- nowait = NoWait},
+ nowait = NoWait},
_, State = #ch{virtual_host = VHostPath}) ->
ExchangeName = rabbit_misc:r(VHostPath, exchange, ExchangeNameBin),
check_not_default_exchange(ExchangeName),
@@ -944,19 +939,19 @@ handle_method(#'exchange.delete'{exchange = ExchangeNameBin,
end;
handle_method(#'exchange.bind'{destination = DestinationNameBin,
- source = SourceNameBin,
+ source = SourceNameBin,
routing_key = RoutingKey,
- nowait = NoWait,
- arguments = Arguments}, _, State) ->
+ nowait = NoWait,
+ arguments = Arguments}, _, State) ->
binding_action(fun rabbit_binding:add/2,
SourceNameBin, exchange, DestinationNameBin, RoutingKey,
Arguments, #'exchange.bind_ok'{}, NoWait, State);
handle_method(#'exchange.unbind'{destination = DestinationNameBin,
- source = SourceNameBin,
+ source = SourceNameBin,
routing_key = RoutingKey,
- nowait = NoWait,
- arguments = Arguments}, _, State) ->
+ nowait = NoWait,
+ arguments = Arguments}, _, State) ->
binding_action(fun rabbit_binding:remove/2,
SourceNameBin, exchange, DestinationNameBin, RoutingKey,
Arguments, #'exchange.unbind_ok'{}, NoWait, State);
@@ -1048,10 +1043,10 @@ handle_method(#'queue.declare'{queue = QueueNameBin,
return_queue_declare_ok(QueueName, NoWait, MessageCount, ConsumerCount,
State);
-handle_method(#'queue.delete'{queue = QueueNameBin,
+handle_method(#'queue.delete'{queue = QueueNameBin,
if_unused = IfUnused,
- if_empty = IfEmpty,
- nowait = NoWait},
+ if_empty = IfEmpty,
+ nowait = NoWait},
_, State = #ch{conn_pid = ConnPid}) ->
QueueName = expand_queue_name_shortcut(QueueNameBin, State),
check_configure_permitted(QueueName, State),
@@ -1073,25 +1068,24 @@ handle_method(#'queue.delete'{queue = QueueNameBin,
#'queue.delete_ok'{message_count = PurgedMessageCount})
end;
-handle_method(#'queue.bind'{queue = QueueNameBin,
- exchange = ExchangeNameBin,
+handle_method(#'queue.bind'{queue = QueueNameBin,
+ exchange = ExchangeNameBin,
routing_key = RoutingKey,
- nowait = NoWait,
- arguments = Arguments}, _, State) ->
+ nowait = NoWait,
+ arguments = Arguments}, _, State) ->
binding_action(fun rabbit_binding:add/2,
ExchangeNameBin, queue, QueueNameBin, RoutingKey, Arguments,
#'queue.bind_ok'{}, NoWait, State);
-handle_method(#'queue.unbind'{queue = QueueNameBin,
- exchange = ExchangeNameBin,
+handle_method(#'queue.unbind'{queue = QueueNameBin,
+ exchange = ExchangeNameBin,
routing_key = RoutingKey,
- arguments = Arguments}, _, State) ->
+ arguments = Arguments}, _, State) ->
binding_action(fun rabbit_binding:remove/2,
ExchangeNameBin, queue, QueueNameBin, RoutingKey, Arguments,
#'queue.unbind_ok'{}, false, State);
-handle_method(#'queue.purge'{queue = QueueNameBin,
- nowait = NoWait},
+handle_method(#'queue.purge'{queue = QueueNameBin, nowait = NoWait},
_, State = #ch{conn_pid = ConnPid}) ->
QueueName = expand_queue_name_shortcut(QueueNameBin, State),
check_read_permitted(QueueName, State),
@@ -1139,15 +1133,15 @@ handle_method(#'confirm.select'{nowait = NoWait}, _, State) ->
return_ok(State#ch{confirm_enabled = true},
NoWait, #'confirm.select_ok'{});
-handle_method(#'channel.flow'{active = true}, _,
- State = #ch{limiter = Limiter}) ->
+handle_method(#'channel.flow'{active = true},
+ _, State = #ch{limiter = Limiter}) ->
Limiter1 = rabbit_limiter:unblock(Limiter),
{reply, #'channel.flow_ok'{active = true},
maybe_limit_queues(Limiter, Limiter1, State#ch{limiter = Limiter1})};
-handle_method(#'channel.flow'{active = false}, _,
- State = #ch{consumer_mapping = Consumers,
- limiter = Limiter}) ->
+handle_method(#'channel.flow'{active = false},
+ _, State = #ch{consumer_mapping = Consumers,
+ limiter = Limiter}) ->
case rabbit_limiter:is_blocked(Limiter) of
true -> {noreply, maybe_send_flow_ok(State)};
false -> Limiter1 = rabbit_limiter:block(Limiter),
@@ -1172,8 +1166,8 @@ handle_method(#'channel.flow'{active = false}, _,
handle_method(#'basic.credit'{consumer_tag = CTag,
credit = Credit,
- drain = Drain}, _,
- State = #ch{consumer_mapping = Consumers}) ->
+ drain = Drain},
+ _, State = #ch{consumer_mapping = Consumers}) ->
case dict:find(CTag, Consumers) of
{ok, Q} -> ok = rabbit_amqqueue:credit(
Q, self(), CTag, Credit, Drain),