1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
## 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) 2007-2023 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
defmodule RabbitMQ.CLI.Queues.Commands.PeekCommand do
alias RabbitMQ.CLI.Core.DocGuide
@behaviour RabbitMQ.CLI.CommandBehaviour
def scopes(), do: [:queues]
use RabbitMQ.CLI.Core.AcceptsDefaultSwitchesAndTimeout
use RabbitMQ.CLI.Core.MergesDefaultVirtualHost
def validate(args, _) when length(args) < 2 do
{:validation_failure, :not_enough_args}
end
def validate(args, _) when length(args) > 2 do
{:validation_failure, :too_many_args}
end
def validate([_, raw_pos], _) do
pos =
case Integer.parse(raw_pos) do
{n, _} -> n
:error -> :error
end
invalid_pos = {:validation_failure, "position value must be a positive integer"}
case pos do
:error -> invalid_pos
num when num < 1 -> invalid_pos
num when num >= 1 -> :ok
end
end
use RabbitMQ.CLI.Core.RequiresRabbitAppRunning
def run([name, pos] = _args, %{node: node_name, vhost: vhost}) do
{pos, _} = Integer.parse(pos)
case :rabbit_misc.rpc_call(node_name, :rabbit_quorum_queue, :peek, [vhost, name, pos]) do
{:error, :classic_queue_not_supported} ->
{:error, "Cannot peek into a classic queue"}
{:ok, msg} ->
{:ok, msg}
err ->
err
end
end
def output({:error, :not_found}, %{vhost: vhost, formatter: "json"}) do
{:error,
%{
"result" => "error",
"message" => "Target queue was not found in virtual host '#{vhost}'"
}}
end
def output({:error, :no_message_at_pos}, %{formatter: "json"}) do
{:error,
%{
"result" => "error",
"message" => "Target queue does not have a message at that position"
}}
end
def output({:error, error}, %{formatter: "json"}) do
{:error,
%{
"result" => "error",
"message" => "Failed to perform the operation: #{error}"
}}
end
def output({:error, :not_found}, %{vhost: vhost}) do
{:error, "Target queue was not found in virtual host '#{vhost}'"}
end
def output({:error, :no_message_at_pos}, _) do
{:error, "Target queue does not have a message at that position"}
end
def output({:ok, msg}, %{formatter: "json"}) do
{:ok, %{"result" => "ok", "message" => Enum.into(msg, %{})}}
end
def output({:ok, msg}, _) do
res = Enum.map(msg, fn {k, v} -> [{"keys", k}, {"values", v}] end)
{:stream, res}
end
use RabbitMQ.CLI.DefaultOutput
def formatter(), do: RabbitMQ.CLI.Formatters.PrettyTable
def usage() do
"peek [--vhost <vhost>] <queue> <position>"
end
def usage_additional do
[
["<queue>", "Name of the queue", "<position>", "Position in the queue, starts at 1"]
]
end
def help_section(), do: :observability_and_health_checks
def usage_doc_guides() do
[
DocGuide.quorum_queues()
]
end
def description(), do: "Peeks at the given position of a quorum queue"
def banner([name, pos], %{node: node_name}),
do: "Peeking at quorum queue #{name} at position #{pos} on node #{node_name} ..."
end
|