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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
## 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-2024 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
defmodule RabbitMQ.CLI.Core.Config do
alias RabbitMQ.CLI.{
CommandBehaviour,
FormatterBehaviour,
PrinterBehaviour
}
alias RabbitMQ.CLI.Core.Helpers
#
# Environment
#
def get_option(name, opts \\ %{}) do
raw_option =
opts[name] ||
get_system_option(name, opts) ||
default(name)
normalise(name, raw_option)
end
def output_less?(opts) do
Map.get(opts, :silent, false) || Map.get(opts, :quiet, false)
end
def normalise(:node, nil), do: nil
def normalise(:node, node) when not is_atom(node) do
RabbitMQ.CLI.Core.DataCoercion.to_atom(node)
end
def normalise(:erlang_cookie, nil), do: nil
def normalise(:erlang_cookie, c) when not is_atom(c) do
RabbitMQ.CLI.Core.DataCoercion.to_atom(c)
end
def normalise(:longnames, true), do: :longnames
def normalise(:longnames, "true"), do: :longnames
def normalise(:longnames, ~c"true"), do: :longnames
def normalise(:longnames, "\"true\""), do: :longnames
def normalise(:longnames, _val), do: :shortnames
def normalise(_, value), do: value
def get_system_option(:script_name, _) do
Path.basename(:escript.script_name())
|> Path.rootname()
|> String.to_atom()
end
def get_system_option(:aliases_file, _) do
System.get_env("RABBITMQ_CLI_ALIASES_FILE")
end
def get_system_option(:erlang_cookie, _) do
System.get_env("RABBITMQ_ERLANG_COOKIE")
end
def get_system_option(:node, %{offline: true} = opts) do
remote_node =
case opts[:node] do
nil -> nil
val -> Helpers.normalise_node_option(val, opts[:longnames], opts)
end
context = get_env_context(remote_node, true)
get_val_from_env_context(context, :node)
end
def get_system_option(:node, opts) do
remote_node =
case opts[:node] do
nil -> nil
val -> Helpers.normalise_node_option(val, opts[:longnames], opts)
end
context = get_env_context(remote_node, false)
get_val_from_env_context(context, :node)
end
def get_system_option(name, opts) do
work_offline = opts[:offline] == true
remote_node =
case name do
:longnames -> nil
:rabbitmq_home -> nil
_ -> node_flag_or_default(opts)
end
context = get_env_context(remote_node, work_offline)
val0 = get_val_from_env_context(context, name)
val =
cond do
remote_node != nil and
val0 == :undefined and
(name == :data_dir or name == :feature_flags_file or name == :plugins_dir or
name == :enabled_plugins_file) ->
context1 = get_env_context(nil, true)
get_val_from_env_context(context1, name)
true ->
val0
end
case val do
:undefined -> nil
_ -> val
end
end
def get_env_context(nil, _) do
:rabbit_env.get_context()
end
def get_env_context(remote_node, work_offline) do
case work_offline do
true -> :rabbit_env.get_context(:offline)
false -> :rabbit_env.get_context(remote_node)
end
end
def get_val_from_env_context(context, name) do
case name do
:node -> context[:nodename]
:longnames -> context[:nodename_type] == :longnames
:rabbitmq_home -> context[:rabbitmq_home]
:data_dir -> context[:data_dir]
:plugins_dir -> context[:plugins_path]
:plugins_expand_dir -> context[:plugins_expand_dir]
:feature_flags_file -> context[:feature_flags_file]
:enabled_plugins_file -> context[:enabled_plugins_file]
end
end
def node_flag_or_default(opts) do
case opts[:node] do
nil ->
# Just in case `opts` was not normalized yet (to get the
# default node), we do it here as well.
case Helpers.normalise_node_option(opts) do
{:error, _} -> nil
{:ok, normalized_opts} -> normalized_opts[:node]
end
node ->
node
end
end
def default(:script_name), do: :rabbitmqctl
def default(:node), do: :rabbit
def default(_), do: nil
#
# Formatters and Printers
#
def get_formatter(command, %{formatter: formatter}) do
module_name = FormatterBehaviour.module_name(formatter)
case Code.ensure_loaded(module_name) do
{:module, _} -> module_name
{:error, :nofile} -> CommandBehaviour.formatter(command, default_formatter())
end
end
def get_formatter(command, _) do
CommandBehaviour.formatter(command, default_formatter())
end
def get_printer(command, %{printer: printer}) do
module_name = PrinterBehaviour.module_name(printer)
case Code.ensure_loaded(module_name) do
{:module, _} -> module_name
{:error, :nofile} -> CommandBehaviour.printer(command, default_printer())
end
end
def get_printer(command, _) do
CommandBehaviour.printer(command, default_printer())
end
def default_formatter() do
RabbitMQ.CLI.Formatters.String
end
def default_printer() do
RabbitMQ.CLI.Printers.StdIO
end
end
|