"""This is a special subtool that is run when no subtool is specified.
It just provides a welcome message and simple usage instructions.
"""
from dex.tools import ToolBase, get_tool_names
from dex.utils.Exceptions import Error
from dex.utils.ReturnCode import ReturnCode
class Tool(ToolBase):
"""Welcome to DExTer (Debugging Experience Tester).
Please choose a subtool from the list below. Use 'dexter.py help' for more
information.
"""
@property
def name(self):
return "DExTer"
def add_tool_arguments(self, parser, defaults):
parser.description = Tool.__doc__
parser.add_argument(
"subtool",
choices=[t for t in get_tool_names() if not t.endswith("-")],
nargs="?",
help="name of subtool",
)
parser.add_argument(
"subtool_options",
metavar="subtool-options",
nargs="*",
help="subtool specific options",
)
def handle_options(self, defaults):
if not self.context.options.subtool:
raise Error(
"<d>no subtool specified</>\n\n{}\n".format(self.parser.format_help())
)
def go(self) -> ReturnCode:
return ReturnCode._ERROR