bfae2c7e82
Use "-v" option to show request/response dumps for configuration commands (construct, delete, etc.; get_* calls won't be verbose as it produces too much output) Change-Id: Ib034a38e07689477c78029db5e612ddd2553d0bd Signed-off-by: Karol Latecki <karol.latecki@intel.com> Reviewed-on: https://review.gerrithub.io/419234 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Pawel Kaminski <pawelx.kaminski@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com>
42 lines
1.2 KiB
Python
Executable File
42 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
import argparse
|
|
from os import getuid
|
|
from configshell_fb import ConfigShell
|
|
from spdkcli import UIRoot
|
|
|
|
|
|
def main():
|
|
"""
|
|
Start SPDK CLI
|
|
:return:
|
|
"""
|
|
shell = ConfigShell("~/.scripts")
|
|
|
|
parser = argparse.ArgumentParser(description="SPDK command line interface")
|
|
parser.add_argument("-s", dest="socket", help="RPC socket path", default="/var/tmp/spdk.sock")
|
|
parser.add_argument("-v", dest="verbose", help="Print request/response JSON for configuration calls",
|
|
default=False, action="store_true")
|
|
parser.add_argument("commands", metavar="command", type=str, nargs="*", default="",
|
|
help="commands to execute by SPDKCli as one-line command")
|
|
args = parser.parse_args()
|
|
|
|
root_node = UIRoot(args.socket, shell)
|
|
root_node.verbose = args.verbose
|
|
try:
|
|
root_node.refresh()
|
|
except BaseException:
|
|
pass
|
|
|
|
if len(args.commands) > 0:
|
|
shell.run_cmdline(" ".join(args.commands))
|
|
sys.exit(0)
|
|
|
|
shell.con.display("SPDK CLI v0.1")
|
|
shell.con.display("")
|
|
shell.run_interactive()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|