/usr/lib/python2.7/dist-packages/requestbuilder/command.py is in python-requestbuilder 0.2.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 | # Copyright (c) 2012-2014, Eucalyptus Systems, Inc.
#
# Permission to use, copy, modify, and/or distribute this software for
# any purpose with or without fee is hereby granted, provided that the
# above copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
from __future__ import absolute_import
import argparse
import bdb
import logging
import os.path
import signal
import sys
import textwrap
import traceback
try:
import epdb
except ImportError:
import pdb
from requestbuilder import Arg, MutuallyExclusiveArgList
from requestbuilder.config import ConfigData, ConfigView
from requestbuilder.exceptions import ArgumentError
from requestbuilder.logging import configure_root_logger
from requestbuilder.suite import RequestBuilder
from requestbuilder.util import add_default_routes, aggregate_subclass_fields
class BaseCommand(object):
'''
The basis for a command line tool. To invoke this as a command line tool,
call the run() method on the class. Arguments will be parsed from the
command line. To invoke this in another context, such as from inside
another command, pass keyword arguments to __init__() with names that match
those stored by the argument parser and then call main() to retrieve a
result.
The general workflow of a command involves two methods: main(), which
inspects the arguments stored in self.args, does something, and returns a
result; and print_result(), which takes the output of main() and prints it
to stdout. By default, both of these methods do nothing. It is up to you
to implement them to do what the tool is designed to do.
Important members of this class include:
- DESCRIPTION: a string that describes the tool. This becomes part of
the command line help string.
- USAGE: a usage message for the command line help string. If this
is None, one will be generated automatically.
- ARGS: a list of Arg and/or MutuallyExclusiveArgGroup objects
are used to generate command line arguments. Inheriting
classes needing to add command line arguments should
contain their own ARGS lists, which are combined with
those of their parent classes.
'''
DESCRIPTION = ''
USAGE = None
ARGS = []
DEFAULT_ROUTES = ()
SUITE = RequestBuilder
__CONFIGURED_FROM_CLI = False
def __init__(self, config=None, loglevel=None, _do_cli=False, **kwargs):
self.args = kwargs
self.config = config # created by _process_configfiles if None
self.log = None # created by _configure_logging
self.suite = self.SUITE()
self._arg_routes = {} # arg name -> tuple of callables or dicts
self._cli_parser = None # created by _build_parser
self.__debug = False
self._configure_logging(loglevel)
self._process_configfiles()
if _do_cli:
if BaseCommand.__CONFIGURED_FROM_CLI:
self.log.warn('global state being configured a second time; '
'bugs may result (usual cause is calling run() '
'for chained commands instead of main())')
self._configure_global_logging()
BaseCommand.__CONFIGURED_FROM_CLI = True
# We need to enforce arg constraints in one location to make this
# framework equally useful for chained commands and those driven
# directly from the command line. Thus, we do most of the parsing/
# validation work before __init__ returns as opposed to putting it
# off until we hit CLI-specific code.
#
# Derived classes MUST call this method to ensure things stay sane.
self.__do_cli = _do_cli
self._post_init()
def _post_init(self):
self._build_parser()
if self.__do_cli:
# Distribute CLI args to the various places that need them
self.process_cli_args()
self.distribute_args()
try:
self.configure()
except ArgumentError as err:
if self.__do_cli and not self.__debug:
# This is the only context in which we have a parser object,
# so if we don't handle this here and now the caller will have
# to handle it without one, which means no usage info for the
# user.
#
# This is contingent on self.__debug and not self.debug because
# run(), having no idea whether the config enables debugging or
# not, is going to terminate the program anyway regardless of
# that.
self._cli_parser.error(str(err))
else:
raise
@classmethod
def from_other(cls, other, **kwargs):
kwargs.setdefault('loglevel', other.log.level)
new = cls(config=other.config, **kwargs)
# That already calls configure
return new
def _configure_logging(self, loglevel):
self.log = logging.getLogger(self.name)
if loglevel is not None:
self.log.setLevel(loglevel)
elif self.debug:
self.log.setLevel(logging.DEBUG)
def _process_configfiles(self):
if self.config is None:
config_files = self.suite.list_config_files()
config_data = ConfigData(config_files)
self.config = ConfigView(config_data)
# Now that we have a config file we should check to see if it wants
# us to turn on debugging
if self.debug:
self.log.setLevel(logging.DEBUG)
self.config.log.setLevel(logging.DEBUG)
def _configure_global_logging(self):
if self.config.get_global_option('debug') in ('color', 'colour'):
configure_root_logger(use_color=True)
else:
configure_root_logger()
def _build_parser(self):
description = '\n\n'.join([textwrap.fill(textwrap.dedent(para))
for para in self.DESCRIPTION.split('\n\n')])
parser = argparse.ArgumentParser(description=description,
formatter_class=argparse.RawDescriptionHelpFormatter,
usage=self.USAGE, add_help=False)
arg_objs = self.collect_arg_objs()
self.populate_parser(parser, arg_objs)
# Low-level basic args that affect the core of the framework
# These don't actually show up once CLI args finish processing.
parser.add_argument('--debug', action='store_true', dest='_debug',
default=argparse.SUPPRESS,
help='show debugging output')
parser.add_argument('--debugger', action='store_true', dest='_debugger',
default=argparse.SUPPRESS,
help='launch interactive debugger on error')
parser.add_argument('--version', action='version',
version=self.suite.format_version(),
help="show the program's version and exit")
if any('-h' in arg_obj.pargs for arg_obj in arg_objs
if isinstance(arg_obj, Arg)):
parser.add_argument('--help', action='help',
default=argparse.SUPPRESS,
help='show this help message and exit')
else:
parser.add_argument('-h', '--help', action='help',
default=argparse.SUPPRESS,
help='show this help message and exit')
self._cli_parser = parser
def collect_arg_objs(self):
arg_objs = aggregate_subclass_fields(self.__class__, 'ARGS')
add_default_routes(arg_objs, self.DEFAULT_ROUTES)
return arg_objs
def populate_parser(self, parser, arg_objs):
for arg_obj in arg_objs:
self.__add_arg_to_cli_parser(arg_obj, parser)
def __add_arg_to_cli_parser(self, arglike_obj, parser):
# Returns the args the parser was populated with
if isinstance(arglike_obj, Arg):
if arglike_obj.kwargs.get('dest') is argparse.SUPPRESS:
# Treat it like it doesn't exist at all
return []
else:
arg = parser.add_argument(*arglike_obj.pargs,
**arglike_obj.kwargs)
if arglike_obj.routes is None:
self._arg_routes[arg.dest] = (None,)
else:
self._arg_routes[arg.dest] = arglike_obj.routes
return [arg]
elif isinstance(arglike_obj, MutuallyExclusiveArgList):
exgroup = parser.add_mutually_exclusive_group(
required=arglike_obj.is_required)
args = []
for group_arg in arglike_obj:
args.extend(self.__add_arg_to_cli_parser(group_arg, exgroup))
return args
elif isinstance(arglike_obj, list) or isinstance(arglike_obj, tuple):
args = []
for group_arg in arglike_obj:
args.extend(self.__add_arg_to_cli_parser(group_arg, parser))
return args
else:
raise TypeError('Unknown argument type ' +
arglike_obj.__class__.__name__)
def process_cli_args(self):
cli_args = vars(self._cli_parser.parse_args())
if cli_args.pop('_debug', False):
self.__debug = True
if cli_args.pop('_debugger', False):
self.__debug = True
sys.excepthook = _debugger_except_hook
signal.signal(signal.SIGUSR1, _debugger_usr1_handler)
# Everything goes in self.args. distribute_args() also puts them
# elsewhere later on in the process.
self.args.update(cli_args)
redacted = type('REDACTED', (),
{'__repr__': lambda self: '<redacted>'})()
for key in list(cli_args.keys()):
if (('password' in key.lower() or 'secret' in key.lower()) and
cli_args[key] is not None):
# This makes it slightly more obvious that this is redacted by
# the framework and not just a string by removing quotes.
cli_args[key] = redacted
self.log.debug('parsed arguments: ' + str(cli_args))
def distribute_args(self):
for key, val in self.args.iteritems():
# If a location to route this to was supplied, put it there, too.
if key not in self._arg_routes:
raise TypeError('got unrecognized arg: "{0}"'.format(key))
routes = self._arg_routes[key]
for route in routes:
if route is not None:
if callable(route):
# If it's callable, call it to get the actual
# destination dict. This is needed to allow Arg
# objects to refer to instance attributes from the
# context of the class.
route = route(self)
# At this point we had better have a dict.
route[key] = val
def configure(self):
# TODO: Come up with something that can enforce arg constraints based
# on the info we can get from self._cli_parser
pass
@classmethod
def run(cls):
try:
cmd = cls(_do_cli=True)
except Exception as err:
msg_prefix = '{0}: error:'.format(os.path.basename(sys.argv[0]))
if isinstance(err, EnvironmentError):
# These don't have regular 'args' attributes, and they occur
# frequently enough they we handle them specially.
err_bits = [msg_prefix]
if getattr(err, 'strerror', None):
err_bits.append(err.strerror)
if getattr(err, 'filename', None):
err_bits[-1] += ':'
err_bits.append(err.filename)
print >> sys.stderr, ' '.join(err_bits)
else:
if len(err.args) > 0 and err.args[0]:
print >> sys.stderr, msg_prefix, err.args[0]
else:
print >> sys.stderr, msg_prefix, str(err)
# Since we don't even have a config file to consult our options for
# determining when debugging is on are limited to what we got at
# the command line.
if any(arg in sys.argv for arg in ('--debug', '--debugger')):
raise
sys.exit(1)
try:
result = cmd.main()
cmd.print_result(result)
except Exception as err:
cmd.handle_cli_exception(err)
@property
def name(self):
return self.__class__.__name__
def main(self):
'''
The main processing method. main() is expected to do something with
self.args and return a result.
'''
pass
def print_result(self, data):
'''
Take a result produced by main() and print it to stdout.
'''
pass
@property
def debug(self):
if self.__config_enables_debugging():
return True
if self.__debug:
return True
if any(arg in sys.argv for arg in ('--debug', '--debugger')):
# In case an error occurs during argument parsing
return True
return False
def handle_cli_exception(self, err):
msg_prefix = '{0}: error:'.format(os.path.basename(sys.argv[0]))
if isinstance(err, ArgumentError) and self.__do_cli and not self.debug:
# Note that, unlike _post_init, we get to use self.debug instead
# of self.__debug
self._cli_parser.error(str(err))
if isinstance(err, EnvironmentError):
# These don't have regular 'args' attributes, and they occur
# frequently enough they we handle them specially.
err_bits = [msg_prefix]
if getattr(err, 'strerror', None):
err_bits.append(err.strerror)
if getattr(err, 'filename', None):
err_bits[-1] += ':'
err_bits.append(err.filename)
print >> sys.stderr, ' '.join(err_bits)
else:
if len(err.args) > 0 and err.args[0]:
print >> sys.stderr, msg_prefix, err.args[0]
else:
print >> sys.stderr, msg_prefix, str(err)
if self.debug:
raise
sys.exit(1)
def __config_enables_debugging(self):
if self.config is None:
return False
if self.config.get_global_option('debug') in ('color', 'colour'):
return True
if self.config.convert_to_bool(self.config.get_global_option('debug')):
return True
return False
def _debugger_except_hook(type_, value, tracebk):
'''
Launch epdb (or pdb if epdb is unavailable) when an uncaught exception
occurs.
'''
if type_ is bdb.BdbQuit:
sys.exit(1)
sys.excepthook = sys.__excepthook__
if sys.stdout.isatty() and sys.stdin.isatty():
if 'epdb' in sys.modules:
epdb.post_mortem(tracebk, type_, value)
else:
pdb.post_mortem(tracebk)
else:
traceback.print_tb(tracebk)
sys.exit(1)
def _debugger_usr1_handler(_, frame):
"""
Show a traceback and local variables when sent SIGUSR1. Note that
this could cause exceptions due to interrupted system calls.
"""
frame_dict = {'_frame': frame}
frame_dict.update(frame.f_globals)
frame_dict.update(frame.f_locals)
print >> sys.stderr, ''.join(traceback.format_stack(frame))
|