2016-08-18 21:56:21 +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 Developer of the Original Code is GoPivotal, Inc.
|
2019-01-20 11:10:59 +08:00
|
|
|
## Copyright (c) 2007-2019 Pivotal Software, Inc. All rights reserved.
|
2016-08-18 21:56:21 +08:00
|
|
|
|
2016-08-22 19:58:37 +08:00
|
|
|
defmodule RabbitMQ.CLI.Printers.StdIO do
|
2016-11-16 21:46:36 +08:00
|
|
|
@behaviour RabbitMQ.CLI.PrinterBehaviour
|
2016-08-18 21:56:21 +08:00
|
|
|
|
2016-08-22 21:13:38 +08:00
|
|
|
def init(_), do: {:ok, :ok}
|
|
|
|
def finish(_), do: :ok
|
2016-08-18 21:56:21 +08:00
|
|
|
|
2016-08-22 21:13:38 +08:00
|
|
|
def print_output(nil, _), do: :ok
|
2016-11-10 02:18:19 +08:00
|
|
|
def print_output(output, _) when is_list(output) do
|
|
|
|
for line <- output do
|
|
|
|
IO.puts(line)
|
|
|
|
end
|
|
|
|
end
|
2016-08-18 21:56:21 +08:00
|
|
|
def print_output(output, _) do
|
2016-08-22 19:58:37 +08:00
|
|
|
IO.puts(output)
|
2016-08-18 21:56:21 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def print_ok(_) do
|
|
|
|
:ok
|
|
|
|
end
|
2017-01-10 22:42:40 +08:00
|
|
|
end
|