Skip to content
Snippets Groups Projects
Commit 363c4626 authored by Seblu's avatar Seblu
Browse files

VmCommand now use TqlCommand

parent d4060c39
No related branches found
No related tags found
No related merge requests found
...@@ -6,13 +6,13 @@ CloudControl VM related commands ...@@ -6,13 +6,13 @@ CloudControl VM related commands
from cccli.exception import * from cccli.exception import *
from sjrpc.core.exceptions import * from sjrpc.core.exceptions import *
from cccli.printer import Printer, color from cccli.printer import Printer, color
from cccli.command.command import OptionCommand from cccli.command.command import TqlCommand
class VmCommand(OptionCommand): class VmCommand(TqlCommand):
'''Command for vm style''' '''Command for vm style'''
def __init__(self, cli, argv0): def __init__(self, cli, argv0):
OptionCommand.__init__(self, cli, argv0) TqlCommand.__init__(self, cli, argv0)
self.set_usage("%prog [options] <tql>") self.set_usage("%prog [options] <tql>")
self.add_option("--raw", action="store_true", dest="raw", self.add_option("--raw", action="store_true", dest="raw",
help="Don't append filter on request") help="Don't append filter on request")
...@@ -22,16 +22,17 @@ class VmCommand(OptionCommand): ...@@ -22,16 +22,17 @@ class VmCommand(OptionCommand):
help="Don't ask confirmation (Dangerous)") help="Don't ask confirmation (Dangerous)")
def _vm_action(self, argv, filters=None): def _vm_action(self, argv, filters=None):
self.parse_args() # parse args
if len(args) == 0: self.parse_args(argv)
if len(self.args) == 0:
raise cmdBadArgument() raise cmdBadArgument()
tql = str.join("", args) tql = str.join("", self.args)
# append securty options by command name # append securty options by command name
if filters is not None and not self.options.raw: if filters is not None and not self.options.raw:
tql += filters tql += filters
if self.options.direct: if self.options.direct:
try: try:
objs = self.cli.rpc.call(argv[0], tql) objs = self.cli.rpc.call(self.args[0], tql)
except RpcError as e: except RpcError as e:
raise cmdError("RPCError: %s"%str(e)) raise cmdError("RPCError: %s"%str(e))
else: else:
...@@ -43,7 +44,7 @@ class VmCommand(OptionCommand): ...@@ -43,7 +44,7 @@ class VmCommand(OptionCommand):
# no result, goodbye # no result, goodbye
if len(objs) == 0: if len(objs) == 0:
raise cmdWarning("tql: '%s': No result."%tql) raise cmdWarning("tql: '%s': No result."%tql)
self.printer.out("You will %s:"%argv[0]) self.printer.out("You will %s:"%self.args[0])
for obj in objs: for obj in objs:
self.printer.out("%sid:%s%s%s"%(color["green"],color["yellow"],obj["id"],color["reset"])) self.printer.out("%sid:%s%s%s"%(color["green"],color["yellow"],obj["id"],color["reset"]))
self.printer.out("%sCount: %s%s"%(color["green"],color["reset"], len(objs))) self.printer.out("%sCount: %s%s"%(color["green"],color["reset"], len(objs)))
......
...@@ -147,7 +147,7 @@ class Printer(object): ...@@ -147,7 +147,7 @@ class Printer(object):
h = list(self.history) h = list(self.history)
self.history.clear() self.history.clear()
try: try:
r = self.getline(prompt, history=False) r = self.getline(prompt)
finally: finally:
self.history.load(h) self.history.load(h)
return r return r
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment